2010-12-24 00:33:40 +00:00
|
|
|
/* SSNES - A Super Ninteno Entertainment System (SNES) Emulator frontend for libsnes.
|
|
|
|
* Copyright (C) 2010 - Hans-Kristian Arntzen
|
|
|
|
*
|
|
|
|
* 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-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>
|
|
|
|
#endif
|
2010-12-24 00:26:36 +00:00
|
|
|
|
|
|
|
|
2011-01-08 17:37:45 +00:00
|
|
|
#define MAX_PLAYERS 2 // Should be 5 when multi-tap stuff is added ...
|
|
|
|
#define MAX_BINDS 18 // Needs to be increased every time there are new binds added.
|
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-01-06 19:01:32 +00:00
|
|
|
float aspect_ratio;
|
2010-12-29 18:00:21 +00:00
|
|
|
char cg_shader_path[256];
|
2011-01-05 16:32:30 +00:00
|
|
|
char bsnes_shader_path[256];
|
2010-12-30 00:33:40 +00:00
|
|
|
unsigned filter;
|
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;
|
|
|
|
unsigned in_rate;
|
|
|
|
char device[256];
|
|
|
|
unsigned latency;
|
|
|
|
bool sync;
|
|
|
|
int src_quality;
|
|
|
|
} 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;
|
2010-12-29 18:00:21 +00:00
|
|
|
} input;
|
2010-12-30 12:54:49 +00:00
|
|
|
|
|
|
|
char libsnes[256];
|
2010-12-29 18:00:21 +00:00
|
|
|
};
|
|
|
|
|
2010-12-29 18:18:37 +00:00
|
|
|
struct global
|
|
|
|
{
|
|
|
|
bool verbose;
|
|
|
|
SRC_STATE *source;
|
|
|
|
bool audio_active;
|
|
|
|
bool video_active;
|
2010-12-29 18:43:17 +00:00
|
|
|
|
|
|
|
FILE *rom_file;
|
|
|
|
char savefile_name_srm[256];
|
2010-12-29 19:05:57 +00:00
|
|
|
char config_path[256];
|
2010-12-30 13:11:56 +00:00
|
|
|
char basename[256];
|
2011-01-03 19:46:50 +00:00
|
|
|
|
2011-01-05 19:07:55 +00:00
|
|
|
#ifdef HAVE_FFMPEG
|
2011-01-03 19:46:50 +00:00
|
|
|
ffemu_t *rec;
|
2011-01-05 19:07:55 +00:00
|
|
|
char record_path[256];
|
|
|
|
bool recording;
|
|
|
|
#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;
|
|
|
|
|
|
|
|
#define SSNES_LOG(msg, args...) do { \
|
|
|
|
if (g_extern.verbose) \
|
|
|
|
fprintf(stderr, "SSNES: " msg, ##args); \
|
2011-01-07 16:59:53 +00:00
|
|
|
fflush(stderr); \
|
2010-12-29 18:18:37 +00:00
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define SSNES_ERR(msg, args...) do { \
|
2011-01-07 16:59:53 +00:00
|
|
|
fprintf(stderr, "SSNES [ERROR] :: " msg, ##args); \
|
|
|
|
fflush(stderr); \
|
2010-12-29 18:18:37 +00:00
|
|
|
} while(0)
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2011-01-05 18:29:29 +00:00
|
|
|
#define SSNES_WARN(msg, args...) do { \
|
2011-01-07 16:59:53 +00:00
|
|
|
fprintf(stderr, "SSNES [WARN] :: " msg, ##args); \
|
|
|
|
fflush(stderr); \
|
2011-01-05 18:29:29 +00:00
|
|
|
} while(0)
|
|
|
|
|
2010-12-24 00:26:36 +00:00
|
|
|
#endif
|