2011-01-17 19:54:58 +00:00
|
|
|
/* SSNES - A Super Nintendo Entertainment System (SNES) Emulator frontend for libsnes.
|
2011-01-23 19:29:28 +00:00
|
|
|
* Copyright (C) 2010-2011 - Hans-Kristian Arntzen
|
2010-12-24 00:33:40 +00: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 00:26:36 +00:00
|
|
|
#ifndef __SSNES_GENERAL_H
|
|
|
|
#define __SSNES_GENERAL_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2010-12-29 18:00:21 +00:00
|
|
|
#include "driver.h"
|
2010-12-29 18:43:17 +00:00
|
|
|
#include <stdio.h>
|
2011-01-03 19:46:50 +00:00
|
|
|
#include "record/ffemu.h"
|
2011-01-23 01:23:20 +00:00
|
|
|
#include "message.h"
|
2011-01-31 15:48:42 +00:00
|
|
|
#include "rewind.h"
|
2011-02-02 11:10:27 +00:00
|
|
|
#include "movie.h"
|
2011-02-10 20:16:59 +00:00
|
|
|
#include "autosave.h"
|
2011-02-13 15:40:24 +00:00
|
|
|
#include "netplay.h"
|
2011-03-07 18:12:14 +00:00
|
|
|
#include "dynamic.h"
|
2011-04-17 11:30:59 +00:00
|
|
|
#include "cheats.h"
|
2011-05-13 19:05:28 +00:00
|
|
|
#include "audio/ext/ssnes_dsp.h"
|
2011-01-07 16:59:53 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2011-01-05 19:07:55 +00:00
|
|
|
#include "config.h"
|
2011-01-07 16:59:53 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-07 10:09:56 +00:00
|
|
|
#ifdef HAVE_SRC
|
|
|
|
#include <samplerate.h>
|
2011-02-06 12:29:48 +00:00
|
|
|
#else
|
|
|
|
#include "audio/hermite.h"
|
2011-01-07 10:09:56 +00:00
|
|
|
#endif
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2011-08-22 15:05:27 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <sys/param.h> // MAXPATHLEN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAXPATHLEN
|
|
|
|
#ifdef PATH_MAX
|
|
|
|
#define MAXPATHLEN PATH_MAX
|
|
|
|
#else
|
|
|
|
#define MAXPATHLEN 512
|
|
|
|
#endif
|
|
|
|
#endif
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2011-01-10 15:53:37 +00:00
|
|
|
#define MAX_PLAYERS 5
|
2011-09-06 17:53:22 +00:00
|
|
|
#define MAX_BINDS (SSNES_BIND_LIST_END + 1)
|
2011-01-10 15:53:37 +00:00
|
|
|
#define SSNES_NO_JOYPAD 0xFFFF
|
2011-02-18 22:51:51 +00:00
|
|
|
|
2011-02-28 15:59:31 +00:00
|
|
|
enum ssnes_shader_type
|
|
|
|
{
|
|
|
|
SSNES_SHADER_CG,
|
|
|
|
SSNES_SHADER_BSNES,
|
|
|
|
SSNES_SHADER_AUTO,
|
|
|
|
SSNES_SHADER_NONE
|
|
|
|
};
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// All config related settings go here.
|
2010-12-29 18:00:21 +00:00
|
|
|
struct settings
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 19:05:57 +00:00
|
|
|
char driver[32];
|
2010-12-29 18:00:21 +00:00
|
|
|
float xscale;
|
|
|
|
float yscale;
|
2010-12-29 18:18:37 +00:00
|
|
|
bool fullscreen;
|
2010-12-29 18:00:21 +00:00
|
|
|
unsigned fullscreen_x;
|
|
|
|
unsigned fullscreen_y;
|
|
|
|
bool vsync;
|
|
|
|
bool smooth;
|
|
|
|
bool force_aspect;
|
2011-05-05 12:13:12 +00:00
|
|
|
bool crop_overscan;
|
2011-01-06 19:01:32 +00:00
|
|
|
float aspect_ratio;
|
2011-08-22 15:05:27 +00:00
|
|
|
char cg_shader_path[MAXPATHLEN];
|
|
|
|
char bsnes_shader_path[MAXPATHLEN];
|
|
|
|
char filter_path[MAXPATHLEN];
|
2011-02-28 15:59:31 +00:00
|
|
|
enum ssnes_shader_type shader_type;
|
2011-01-23 02:16:14 +00:00
|
|
|
|
2011-03-06 17:19:31 +00:00
|
|
|
bool render_to_texture;
|
|
|
|
double fbo_scale_x;
|
|
|
|
double fbo_scale_y;
|
2011-08-22 15:05:27 +00:00
|
|
|
char second_pass_shader[MAXPATHLEN];
|
2011-03-06 17:19:31 +00:00
|
|
|
bool second_pass_smooth;
|
2011-08-22 15:05:27 +00:00
|
|
|
char shader_dir[MAXPATHLEN];
|
2011-03-06 17:19:31 +00:00
|
|
|
|
2011-08-22 15:05:27 +00:00
|
|
|
char font_path[MAXPATHLEN];
|
2011-01-23 01:48:06 +00:00
|
|
|
unsigned font_size;
|
2011-01-23 01:59:44 +00:00
|
|
|
float msg_pos_x;
|
|
|
|
float msg_pos_y;
|
2011-09-05 15:00:28 +00:00
|
|
|
float msg_color_r;
|
|
|
|
float msg_color_g;
|
|
|
|
float msg_color_b;
|
2011-01-23 02:16:14 +00:00
|
|
|
|
2011-04-21 11:12:45 +00:00
|
|
|
bool force_16bit;
|
2011-08-07 13:00:34 +00:00
|
|
|
bool disable_composition;
|
2011-05-11 15:52:16 +00:00
|
|
|
|
2011-08-11 03:25:31 +00:00
|
|
|
bool hires_record;
|
|
|
|
bool post_filter_record;
|
|
|
|
|
2011-08-22 15:05:27 +00:00
|
|
|
char external_driver[MAXPATHLEN];
|
2010-12-29 18:00:21 +00:00
|
|
|
} video;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 19:05:57 +00:00
|
|
|
char driver[32];
|
2010-12-29 18:00:21 +00:00
|
|
|
bool enable;
|
|
|
|
unsigned out_rate;
|
2011-01-29 17:42:21 +00:00
|
|
|
float in_rate;
|
|
|
|
float rate_step;
|
2011-08-22 15:05:27 +00:00
|
|
|
char device[MAXPATHLEN];
|
2010-12-29 18:00:21 +00:00
|
|
|
unsigned latency;
|
|
|
|
bool sync;
|
|
|
|
int src_quality;
|
2011-05-13 19:05:28 +00:00
|
|
|
|
2011-08-22 15:05:27 +00:00
|
|
|
char dsp_plugin[MAXPATHLEN];
|
|
|
|
char external_driver[MAXPATHLEN];
|
2010-12-29 18:00:21 +00:00
|
|
|
} audio;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 19:05:57 +00:00
|
|
|
char driver[32];
|
2010-12-29 18:00:21 +00:00
|
|
|
struct snes_keybind binds[MAX_PLAYERS][MAX_BINDS];
|
2010-12-29 19:05:57 +00:00
|
|
|
float axis_threshold;
|
2011-01-10 15:53:37 +00:00
|
|
|
unsigned joypad_map[MAX_PLAYERS];
|
2011-02-20 11:12:53 +00:00
|
|
|
bool netplay_client_swap_input;
|
2010-12-29 18:00:21 +00:00
|
|
|
} input;
|
2010-12-30 12:54:49 +00:00
|
|
|
|
2011-08-22 15:05:27 +00:00
|
|
|
char libsnes[MAXPATHLEN];
|
|
|
|
char cheat_database[MAXPATHLEN];
|
2011-09-05 15:57:30 +00:00
|
|
|
char cheat_settings_path[MAXPATHLEN];
|
2011-01-31 17:06:57 +00:00
|
|
|
|
2011-08-22 15:05:27 +00:00
|
|
|
char screenshot_directory[MAXPATHLEN];
|
2011-05-15 15:16:29 +00:00
|
|
|
|
2011-01-31 17:06:57 +00:00
|
|
|
bool rewind_enable;
|
|
|
|
unsigned rewind_buffer_size;
|
2011-02-01 16:30:18 +00:00
|
|
|
unsigned rewind_granularity;
|
2011-02-05 20:45:44 +00:00
|
|
|
|
|
|
|
bool pause_nonactive;
|
2011-02-10 20:16:59 +00:00
|
|
|
unsigned autosave_interval;
|
2010-12-29 18:00:21 +00:00
|
|
|
};
|
|
|
|
|
2011-01-12 17:05:57 +00:00
|
|
|
enum ssnes_game_type
|
|
|
|
{
|
|
|
|
SSNES_CART_NORMAL = 0,
|
2011-01-12 20:57:55 +00:00
|
|
|
SSNES_CART_SGB,
|
|
|
|
SSNES_CART_BSX,
|
|
|
|
SSNES_CART_BSX_SLOTTED,
|
|
|
|
SSNES_CART_SUFAMI,
|
2011-01-12 17:05:57 +00:00
|
|
|
};
|
|
|
|
|
2011-02-28 15:59:31 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// All run-time- / command line flag-related globals go here.
|
2010-12-29 18:18:37 +00:00
|
|
|
struct global
|
|
|
|
{
|
|
|
|
bool verbose;
|
|
|
|
bool audio_active;
|
|
|
|
bool video_active;
|
2011-07-09 06:37:08 +00:00
|
|
|
bool force_fullscreen;
|
2010-12-29 18:43:17 +00:00
|
|
|
|
2011-01-10 13:29:00 +00:00
|
|
|
bool has_mouse[2];
|
|
|
|
bool has_scope[2];
|
2011-01-10 15:53:37 +00:00
|
|
|
bool has_justifier;
|
|
|
|
bool has_justifiers;
|
|
|
|
bool has_multitap;
|
2011-06-19 09:11:04 +00:00
|
|
|
bool disconnect_device[2];
|
2011-01-10 06:58:11 +00:00
|
|
|
|
2010-12-29 18:43:17 +00:00
|
|
|
FILE *rom_file;
|
2011-01-12 17:05:57 +00:00
|
|
|
enum ssnes_game_type game_type;
|
2011-02-02 10:47:05 +00:00
|
|
|
uint32_t cart_crc;
|
2011-01-12 17:05:57 +00:00
|
|
|
|
2011-08-22 15:05:27 +00:00
|
|
|
char gb_rom_path[MAXPATHLEN];
|
|
|
|
char bsx_rom_path[MAXPATHLEN];
|
|
|
|
char sufami_rom_path[2][MAXPATHLEN];
|
2011-02-11 13:27:19 +00:00
|
|
|
bool has_set_save_path;
|
|
|
|
bool has_set_state_path;
|
2011-01-12 17:05:57 +00:00
|
|
|
|
2011-01-19 11:54:19 +00:00
|
|
|
#ifdef HAVE_CONFIGFILE
|
2011-08-22 15:05:27 +00:00
|
|
|
char config_path[MAXPATHLEN];
|
2011-01-19 11:54:19 +00:00
|
|
|
#endif
|
2011-01-23 01:48:06 +00:00
|
|
|
|
2011-08-22 15:05:27 +00:00
|
|
|
char basename[MAXPATHLEN];
|
|
|
|
char savefile_name_srm[MAXPATHLEN];
|
|
|
|
char savefile_name_rtc[MAXPATHLEN]; // Make sure that fill_pathname has space.
|
|
|
|
char savefile_name_psrm[MAXPATHLEN];
|
|
|
|
char savefile_name_asrm[MAXPATHLEN];
|
|
|
|
char savefile_name_bsrm[MAXPATHLEN];
|
|
|
|
char savestate_name[MAXPATHLEN];
|
|
|
|
char xml_name[MAXPATHLEN];
|
2011-08-17 22:24:57 +00:00
|
|
|
|
|
|
|
bool ups_pref;
|
|
|
|
bool bps_pref;
|
2011-08-22 15:05:27 +00:00
|
|
|
char ups_name[MAXPATHLEN];
|
|
|
|
char bps_name[MAXPATHLEN];
|
2011-01-03 19:46:50 +00:00
|
|
|
|
2011-01-23 22:09:54 +00:00
|
|
|
unsigned state_slot;
|
|
|
|
|
2011-01-14 14:34:38 +00:00
|
|
|
struct
|
|
|
|
{
|
2011-02-06 12:29:48 +00:00
|
|
|
#ifdef HAVE_SRC
|
|
|
|
SRC_STATE *source;
|
|
|
|
#else
|
|
|
|
hermite_resampler_t *source;
|
|
|
|
#endif
|
|
|
|
|
2011-01-14 14:34:38 +00:00
|
|
|
float *data;
|
|
|
|
size_t data_ptr;
|
|
|
|
size_t chunk_size;
|
|
|
|
size_t nonblock_chunk_size;
|
|
|
|
size_t block_chunk_size;
|
|
|
|
|
2011-01-15 19:37:42 +00:00
|
|
|
bool use_float;
|
|
|
|
|
2011-01-14 14:34:38 +00:00
|
|
|
float *outsamples;
|
|
|
|
int16_t *conv_outsamples;
|
2011-05-13 19:05:28 +00:00
|
|
|
|
|
|
|
dylib_t dsp_lib;
|
|
|
|
const ssnes_dsp_plugin_t *dsp_plugin;
|
|
|
|
void *dsp_handle;
|
2011-01-14 14:34:38 +00:00
|
|
|
} audio_data;
|
|
|
|
|
2011-03-07 18:12:14 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
bool active;
|
|
|
|
uint32_t *buffer;
|
|
|
|
uint32_t *colormap;
|
|
|
|
unsigned pitch;
|
|
|
|
dylib_t lib;
|
|
|
|
unsigned scale;
|
|
|
|
|
|
|
|
void (*psize)(unsigned *width, unsigned *height);
|
|
|
|
void (*prender)(uint32_t *colormap, uint32_t *output, unsigned outpitch,
|
|
|
|
const uint16_t *input, unsigned pitch, unsigned width, unsigned height);
|
|
|
|
} filter;
|
|
|
|
|
2011-01-23 01:23:20 +00:00
|
|
|
msg_queue_t *msg_queue;
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Rewind support.
|
2011-01-31 15:48:42 +00:00
|
|
|
state_manager_t *state_manager;
|
|
|
|
void *state_buf;
|
2011-01-31 16:24:31 +00:00
|
|
|
bool frame_is_reverse;
|
2011-01-31 15:48:42 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Movie record support
|
2011-02-02 11:10:27 +00:00
|
|
|
bsv_movie_t *bsv_movie;
|
2011-08-22 15:05:27 +00:00
|
|
|
char bsv_movie_path[MAXPATHLEN];
|
2011-02-02 11:10:27 +00:00
|
|
|
bool bsv_movie_end;
|
|
|
|
bool bsv_movie_playback;
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Pausing support
|
2011-02-05 19:46:58 +00:00
|
|
|
bool is_paused;
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Autosave support.
|
2011-02-11 12:44:31 +00:00
|
|
|
autosave_t *autosave[2];
|
2011-02-10 20:16:59 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Netplay.
|
2011-02-13 15:40:24 +00:00
|
|
|
netplay_t *netplay;
|
2011-08-22 15:05:27 +00:00
|
|
|
char netplay_server[MAXPATHLEN];
|
2011-02-13 15:40:24 +00:00
|
|
|
bool netplay_enable;
|
2011-02-13 16:45:14 +00:00
|
|
|
bool netplay_is_client;
|
2011-02-15 14:32:26 +00:00
|
|
|
unsigned netplay_sync_frames;
|
2011-02-18 13:49:15 +00:00
|
|
|
uint16_t netplay_port;
|
2011-02-13 15:40:24 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// FFmpeg record.
|
2011-01-05 19:07:55 +00:00
|
|
|
#ifdef HAVE_FFMPEG
|
2011-01-03 19:46:50 +00:00
|
|
|
ffemu_t *rec;
|
2011-08-22 15:05:27 +00:00
|
|
|
char record_path[MAXPATHLEN];
|
2011-01-05 19:07:55 +00:00
|
|
|
bool recording;
|
|
|
|
#endif
|
2011-03-17 00:25:44 +00:00
|
|
|
|
|
|
|
char title_buf[64];
|
2011-03-29 16:04:41 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
char** elems;
|
|
|
|
size_t size;
|
|
|
|
size_t ptr;
|
|
|
|
} shader_dir;
|
2011-04-17 10:29:58 +00:00
|
|
|
|
2011-05-15 15:16:29 +00:00
|
|
|
char sha256[64 + 1];
|
|
|
|
|
|
|
|
bool do_screenshot;
|
2011-04-17 11:30:59 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_XML
|
|
|
|
cheat_manager_t *cheat;
|
|
|
|
#endif
|
2010-12-29 18:18:37 +00:00
|
|
|
};
|
|
|
|
|
2010-12-29 18:00:21 +00:00
|
|
|
void parse_config(void);
|
|
|
|
|
|
|
|
extern struct settings g_settings;
|
2010-12-29 18:18:37 +00:00
|
|
|
extern struct global g_extern;
|
|
|
|
|
2011-05-31 13:03:59 +00:00
|
|
|
#define SSNES_LOG(...) do { \
|
2010-12-29 18:18:37 +00:00
|
|
|
if (g_extern.verbose) \
|
2011-05-31 13:03:59 +00:00
|
|
|
fprintf(stderr, "SSNES: " __VA_ARGS__); \
|
2011-01-07 16:59:53 +00:00
|
|
|
fflush(stderr); \
|
2010-12-29 18:18:37 +00:00
|
|
|
} while(0)
|
|
|
|
|
2011-05-31 13:03:59 +00:00
|
|
|
#define SSNES_ERR(...) do { \
|
|
|
|
fprintf(stderr, "SSNES [ERROR] :: " __VA_ARGS__); \
|
2011-01-07 16:59:53 +00:00
|
|
|
fflush(stderr); \
|
2010-12-29 18:18:37 +00:00
|
|
|
} while(0)
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2011-05-31 13:03:59 +00:00
|
|
|
#define SSNES_WARN(...) do { \
|
|
|
|
fprintf(stderr, "SSNES [WARN] :: " __VA_ARGS__); \
|
2011-01-07 16:59:53 +00:00
|
|
|
fflush(stderr); \
|
2011-01-05 18:29:29 +00:00
|
|
|
} while(0)
|
|
|
|
|
2011-03-07 18:12:14 +00:00
|
|
|
static inline uint32_t next_pow2(uint32_t v)
|
|
|
|
{
|
|
|
|
v--;
|
|
|
|
v |= v >> 1;
|
|
|
|
v |= v >> 2;
|
|
|
|
v |= v >> 4;
|
|
|
|
v |= v >> 8;
|
|
|
|
v |= v >> 16;
|
|
|
|
v++;
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2011-07-25 22:53:24 +00:00
|
|
|
static inline uint8_t is_little_endian(void)
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
uint16_t x;
|
|
|
|
uint8_t y[2];
|
|
|
|
} u;
|
|
|
|
|
|
|
|
u.x = 1;
|
|
|
|
return u.y[0];
|
|
|
|
}
|
|
|
|
|
2010-12-24 00:26:36 +00:00
|
|
|
#endif
|
2011-03-07 18:12:14 +00:00
|
|
|
|
|
|
|
|