2011-01-17 20:54:58 +01:00
|
|
|
/* SSNES - A Super Nintendo Entertainment System (SNES) Emulator frontend for libsnes.
|
2011-01-23 20:29:28 +01:00
|
|
|
* Copyright (C) 2010-2011 - Hans-Kristian Arntzen
|
2010-12-24 01:33:40 +01:00
|
|
|
*
|
|
|
|
* Some code herein may be based on code found in BSNES.
|
|
|
|
*
|
|
|
|
* SSNES is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* SSNES is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with SSNES.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
#ifndef __SSNES_GENERAL_H
|
|
|
|
#define __SSNES_GENERAL_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2010-12-29 19:00:21 +01:00
|
|
|
#include "driver.h"
|
2010-12-29 19:43:17 +01:00
|
|
|
#include <stdio.h>
|
2011-01-03 20:46:50 +01:00
|
|
|
#include "record/ffemu.h"
|
2011-01-23 02:23:20 +01:00
|
|
|
#include "message.h"
|
2011-01-31 16:48:42 +01:00
|
|
|
#include "rewind.h"
|
2011-02-02 12:10:27 +01:00
|
|
|
#include "movie.h"
|
2011-02-10 21:16:59 +01:00
|
|
|
#include "autosave.h"
|
2011-01-07 17:59:53 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2011-01-05 20:07:55 +01:00
|
|
|
#include "config.h"
|
2011-01-07 17:59:53 +01:00
|
|
|
#endif
|
|
|
|
|
2011-01-07 11:09:56 +01:00
|
|
|
#ifdef HAVE_SRC
|
|
|
|
#include <samplerate.h>
|
2011-02-06 13:29:48 +01:00
|
|
|
#else
|
|
|
|
#include "audio/hermite.h"
|
2011-01-07 11:09:56 +01:00
|
|
|
#endif
|
2010-12-24 01:26:36 +01:00
|
|
|
|
|
|
|
|
2011-01-10 16:53:37 +01:00
|
|
|
#define MAX_PLAYERS 5
|
2011-02-05 20:46:58 +01:00
|
|
|
#define MAX_BINDS 25 // Needs to be increased every time there are new binds added.
|
2011-01-10 16:53:37 +01:00
|
|
|
#define SSNES_NO_JOYPAD 0xFFFF
|
2010-12-29 19:00:21 +01:00
|
|
|
struct settings
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 20:05:57 +01:00
|
|
|
char driver[32];
|
2010-12-29 19:00:21 +01:00
|
|
|
float xscale;
|
|
|
|
float yscale;
|
2010-12-29 19:18:37 +01:00
|
|
|
bool fullscreen;
|
2010-12-29 19:00:21 +01:00
|
|
|
unsigned fullscreen_x;
|
|
|
|
unsigned fullscreen_y;
|
|
|
|
bool vsync;
|
|
|
|
bool smooth;
|
|
|
|
bool force_aspect;
|
2011-01-06 20:01:32 +01:00
|
|
|
float aspect_ratio;
|
2010-12-29 19:00:21 +01:00
|
|
|
char cg_shader_path[256];
|
2011-01-05 17:32:30 +01:00
|
|
|
char bsnes_shader_path[256];
|
2010-12-30 01:33:40 +01:00
|
|
|
unsigned filter;
|
2011-01-23 03:16:14 +01:00
|
|
|
|
2011-01-23 02:48:06 +01:00
|
|
|
char font_path[256];
|
|
|
|
unsigned font_size;
|
2011-01-23 02:59:44 +01:00
|
|
|
float msg_pos_x;
|
|
|
|
float msg_pos_y;
|
2011-01-23 03:16:14 +01:00
|
|
|
|
2010-12-29 19:00:21 +01:00
|
|
|
} video;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 20:05:57 +01:00
|
|
|
char driver[32];
|
2010-12-29 19:00:21 +01:00
|
|
|
bool enable;
|
|
|
|
unsigned out_rate;
|
2011-01-29 18:42:21 +01:00
|
|
|
float in_rate;
|
|
|
|
float rate_step;
|
2010-12-29 19:00:21 +01:00
|
|
|
char device[256];
|
|
|
|
unsigned latency;
|
|
|
|
bool sync;
|
|
|
|
int src_quality;
|
|
|
|
} audio;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 20:05:57 +01:00
|
|
|
char driver[32];
|
2010-12-29 19:00:21 +01:00
|
|
|
struct snes_keybind binds[MAX_PLAYERS][MAX_BINDS];
|
2010-12-29 20:05:57 +01:00
|
|
|
float axis_threshold;
|
2011-01-10 16:53:37 +01:00
|
|
|
unsigned joypad_map[MAX_PLAYERS];
|
2010-12-29 19:00:21 +01:00
|
|
|
} input;
|
2010-12-30 13:54:49 +01:00
|
|
|
|
|
|
|
char libsnes[256];
|
2011-01-31 18:06:57 +01:00
|
|
|
|
|
|
|
bool rewind_enable;
|
|
|
|
unsigned rewind_buffer_size;
|
2011-02-01 17:30:18 +01:00
|
|
|
unsigned rewind_granularity;
|
2011-02-05 21:45:44 +01:00
|
|
|
|
|
|
|
bool pause_nonactive;
|
2011-02-10 21:16:59 +01:00
|
|
|
unsigned autosave_interval;
|
2010-12-29 19:00:21 +01:00
|
|
|
};
|
|
|
|
|
2011-01-12 18:05:57 +01:00
|
|
|
enum ssnes_game_type
|
|
|
|
{
|
|
|
|
SSNES_CART_NORMAL = 0,
|
2011-01-12 21:57:55 +01:00
|
|
|
SSNES_CART_SGB,
|
|
|
|
SSNES_CART_BSX,
|
|
|
|
SSNES_CART_BSX_SLOTTED,
|
|
|
|
SSNES_CART_SUFAMI,
|
2011-01-12 18:05:57 +01:00
|
|
|
};
|
|
|
|
|
2010-12-29 19:18:37 +01:00
|
|
|
struct global
|
|
|
|
{
|
|
|
|
bool verbose;
|
|
|
|
bool audio_active;
|
|
|
|
bool video_active;
|
2010-12-29 19:43:17 +01:00
|
|
|
|
2011-01-10 14:29:00 +01:00
|
|
|
bool has_mouse[2];
|
|
|
|
bool has_scope[2];
|
2011-01-10 16:53:37 +01:00
|
|
|
bool has_justifier;
|
|
|
|
bool has_justifiers;
|
|
|
|
bool has_multitap;
|
2011-01-10 07:58:11 +01:00
|
|
|
|
2010-12-29 19:43:17 +01:00
|
|
|
FILE *rom_file;
|
2011-01-12 18:05:57 +01:00
|
|
|
enum ssnes_game_type game_type;
|
2011-02-02 11:47:05 +01:00
|
|
|
uint32_t cart_crc;
|
2011-01-12 18:05:57 +01:00
|
|
|
|
|
|
|
char gb_rom_path[256];
|
2011-01-12 21:57:55 +01:00
|
|
|
char bsx_rom_path[256];
|
|
|
|
char sufami_rom_path[2][256];
|
2011-01-12 18:05:57 +01:00
|
|
|
|
2011-01-19 12:54:19 +01:00
|
|
|
#ifdef HAVE_CONFIGFILE
|
2010-12-29 20:05:57 +01:00
|
|
|
char config_path[256];
|
2011-01-19 12:54:19 +01:00
|
|
|
#endif
|
2011-01-23 02:48:06 +01:00
|
|
|
|
2010-12-30 14:11:56 +01:00
|
|
|
char basename[256];
|
2011-01-08 19:15:18 +01:00
|
|
|
char savefile_name_srm[256];
|
2011-01-12 21:57:55 +01:00
|
|
|
char savefile_name_rtc[512]; // Make sure that fill_pathname has space.
|
|
|
|
char savefile_name_psrm[512];
|
|
|
|
char savefile_name_asrm[512];
|
|
|
|
char savefile_name_bsrm[512];
|
2011-01-08 19:15:18 +01:00
|
|
|
char savestate_name[256];
|
2011-01-03 20:46:50 +01:00
|
|
|
|
2011-01-23 23:09:54 +01:00
|
|
|
unsigned state_slot;
|
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
struct
|
|
|
|
{
|
2011-02-06 13:29:48 +01:00
|
|
|
#ifdef HAVE_SRC
|
|
|
|
SRC_STATE *source;
|
|
|
|
#else
|
|
|
|
hermite_resampler_t *source;
|
|
|
|
#endif
|
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
float *data;
|
|
|
|
size_t data_ptr;
|
|
|
|
size_t chunk_size;
|
|
|
|
size_t nonblock_chunk_size;
|
|
|
|
size_t block_chunk_size;
|
|
|
|
|
2011-01-15 20:37:42 +01:00
|
|
|
bool use_float;
|
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
float *outsamples;
|
|
|
|
int16_t *conv_outsamples;
|
|
|
|
} audio_data;
|
|
|
|
|
2011-01-23 02:23:20 +01:00
|
|
|
msg_queue_t *msg_queue;
|
|
|
|
|
2011-01-31 16:48:42 +01:00
|
|
|
state_manager_t *state_manager;
|
|
|
|
void *state_buf;
|
2011-01-31 17:24:31 +01:00
|
|
|
bool frame_is_reverse;
|
2011-01-31 16:48:42 +01:00
|
|
|
|
2011-02-02 12:10:27 +01:00
|
|
|
bsv_movie_t *bsv_movie;
|
2011-02-02 13:37:01 +01:00
|
|
|
char bsv_movie_path[256];
|
2011-02-02 12:10:27 +01:00
|
|
|
bool bsv_movie_end;
|
|
|
|
bool bsv_movie_playback;
|
|
|
|
|
2011-02-05 20:46:58 +01:00
|
|
|
bool is_paused;
|
|
|
|
|
2011-02-10 21:16:59 +01:00
|
|
|
autosave_t *autosave;
|
|
|
|
|
2011-01-05 20:07:55 +01:00
|
|
|
#ifdef HAVE_FFMPEG
|
2011-01-03 20:46:50 +01:00
|
|
|
ffemu_t *rec;
|
2011-01-05 20:07:55 +01:00
|
|
|
char record_path[256];
|
|
|
|
bool recording;
|
|
|
|
#endif
|
2010-12-29 19:18:37 +01:00
|
|
|
};
|
|
|
|
|
2010-12-29 19:00:21 +01:00
|
|
|
void parse_config(void);
|
|
|
|
|
|
|
|
extern struct settings g_settings;
|
2010-12-29 19:18:37 +01:00
|
|
|
extern struct global g_extern;
|
|
|
|
|
|
|
|
#define SSNES_LOG(msg, args...) do { \
|
|
|
|
if (g_extern.verbose) \
|
|
|
|
fprintf(stderr, "SSNES: " msg, ##args); \
|
2011-01-07 17:59:53 +01:00
|
|
|
fflush(stderr); \
|
2010-12-29 19:18:37 +01:00
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define SSNES_ERR(msg, args...) do { \
|
2011-01-07 17:59:53 +01:00
|
|
|
fprintf(stderr, "SSNES [ERROR] :: " msg, ##args); \
|
|
|
|
fflush(stderr); \
|
2010-12-29 19:18:37 +01:00
|
|
|
} while(0)
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2011-01-05 19:29:29 +01:00
|
|
|
#define SSNES_WARN(msg, args...) do { \
|
2011-01-07 17:59:53 +01:00
|
|
|
fprintf(stderr, "SSNES [WARN] :: " msg, ##args); \
|
|
|
|
fflush(stderr); \
|
2011-01-05 19:29:29 +01:00
|
|
|
} while(0)
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
#endif
|