2012-04-21 23:13:50 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2013-01-01 01:37:37 +01:00
|
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
2010-12-24 01:33:40 +01:00
|
|
|
*
|
2012-04-21 23:13:50 +02:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2010-12-24 01:33:40 +01:00
|
|
|
* 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.
|
|
|
|
*
|
2012-04-21 23:13:50 +02:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2010-12-24 01:33:40 +01:00
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
2012-04-21 23:31:57 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2010-12-24 01:33:40 +01:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
#ifndef __RARCH_GENERAL_H
|
|
|
|
#define __RARCH_GENERAL_H
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2011-12-24 13:46:12 +01:00
|
|
|
#include "boolean.h"
|
2010-12-29 19:43:17 +01:00
|
|
|
#include <stdio.h>
|
2011-10-17 20:46:38 +02:00
|
|
|
#include <time.h>
|
2012-01-02 13:32:25 +01:00
|
|
|
#include <limits.h>
|
2012-01-14 16:08:54 +01:00
|
|
|
#include <setjmp.h>
|
2011-10-17 20:46:38 +02:00
|
|
|
#include "driver.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-03-07 19:12:14 +01:00
|
|
|
#include "dynamic.h"
|
2011-04-17 13:30:59 +02:00
|
|
|
#include "cheats.h"
|
2012-04-21 23:25:32 +02:00
|
|
|
#include "audio/ext/rarch_dsp.h"
|
2012-03-16 23:26:57 +01:00
|
|
|
#include "compat/strl.h"
|
2011-01-07 17:59:53 +01:00
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Platform-specific headers
|
|
|
|
// PS3
|
2012-07-01 13:33:30 +02:00
|
|
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2011-11-30 16:40:52 +01:00
|
|
|
#include <sys/timer.h>
|
2012-03-26 00:36:40 +02:00
|
|
|
#include "ps3/ps3_input.h"
|
2011-11-30 16:40:52 +01:00
|
|
|
#endif
|
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
// libxenon
|
2011-12-13 23:38:05 +01:00
|
|
|
#ifdef XENON
|
|
|
|
#include <time/time.h>
|
2012-01-10 22:08:24 +01:00
|
|
|
#endif
|
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
// Windows
|
2012-11-23 10:34:40 +01:00
|
|
|
#if defined(_WIN32) && !defined(_XBOX)
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2012-11-23 20:45:15 +01:00
|
|
|
#include "msvc/msvc_compat.h"
|
2012-11-23 10:34:40 +01:00
|
|
|
#endif
|
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
// XBox
|
|
|
|
#if defined(_XBOX)
|
|
|
|
#include <xtl.h>
|
2012-11-23 10:34:40 +01:00
|
|
|
#include "msvc/msvc_compat.h"
|
|
|
|
#endif
|
|
|
|
|
2013-01-10 09:33:26 +01:00
|
|
|
// Wii and PSL1GHT - for usleep (among others)
|
|
|
|
#if defined(GEKKO) || defined(__PSL1GHT__)
|
2012-11-23 20:45:15 +01:00
|
|
|
#include <unistd.h>
|
2011-12-13 23:38:05 +01:00
|
|
|
#endif
|
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
// PSP
|
|
|
|
#if defined(PSP)
|
|
|
|
#include <pspthreadman.h>
|
|
|
|
#endif
|
|
|
|
//////////////
|
|
|
|
|
|
|
|
// Some platforms do not set this value.
|
|
|
|
// Just assume a value. It's usually 4KiB.
|
|
|
|
// Platforms with a known value (like Win32)
|
|
|
|
// set this value explicitly in platform specific headers.
|
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 4096
|
2011-01-07 17:59:53 +01:00
|
|
|
#endif
|
|
|
|
|
2011-11-30 16:27:16 +01:00
|
|
|
#ifdef HAVE_NETPLAY
|
|
|
|
#include "netplay.h"
|
2012-05-28 00:27:53 +02:00
|
|
|
#endif
|
|
|
|
|
2012-07-24 02:47:28 +02:00
|
|
|
#ifdef HAVE_COMMAND
|
|
|
|
#include "command.h"
|
2011-11-30 16:27:16 +01:00
|
|
|
#endif
|
|
|
|
|
2012-02-23 23:19:23 +01:00
|
|
|
#include "audio/resampler.h"
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2012-02-02 21:02:36 +01:00
|
|
|
#define MAX_PLAYERS 8
|
2011-02-18 23:51:51 +01:00
|
|
|
|
2012-12-31 17:50:47 +01:00
|
|
|
enum dpad_emu_enums
|
|
|
|
{
|
|
|
|
DPAD_EMULATION_NONE = 0,
|
|
|
|
DPAD_EMULATION_LSTICK,
|
|
|
|
DPAD_EMULATION_RSTICK,
|
|
|
|
DPAD_EMULATION_LAST
|
|
|
|
};
|
|
|
|
|
2013-01-11 04:39:24 +01:00
|
|
|
enum menu_enums
|
|
|
|
{
|
|
|
|
MODE_EMULATION = 0,
|
|
|
|
MODE_LOAD_GAME,
|
|
|
|
MODE_INIT,
|
|
|
|
MODE_MENU,
|
|
|
|
MODE_MENU_PREINIT,
|
|
|
|
MODE_MENU_INGAME,
|
|
|
|
MODE_MENU_DRAW,
|
2013-01-11 07:49:32 +01:00
|
|
|
MODE_INFO_DRAW,
|
2013-01-11 06:56:05 +01:00
|
|
|
MODE_FPS_DRAW,
|
2013-01-11 08:15:23 +01:00
|
|
|
MODE_EXTLAUNCH_SALAMANDER,
|
|
|
|
MODE_EXTLAUNCH_CHANNEL,
|
|
|
|
MODE_EXTLAUNCH_MULTIMAN,
|
2013-01-11 04:39:24 +01:00
|
|
|
MODE_EXIT,
|
2013-01-11 08:15:23 +01:00
|
|
|
MODE_EXITSPAWN,
|
2013-01-11 04:39:24 +01:00
|
|
|
MODE_LOAD_FIRST_SHADER,
|
|
|
|
MODE_LOAD_SECOND_SHADER,
|
|
|
|
};
|
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// All config related settings go here.
|
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;
|
2012-10-05 14:15:54 +02:00
|
|
|
bool windowed_fullscreen;
|
2012-10-12 21:15:58 +02:00
|
|
|
unsigned monitor_index;
|
2010-12-29 19:00:21 +01:00
|
|
|
unsigned fullscreen_x;
|
|
|
|
unsigned fullscreen_y;
|
|
|
|
bool vsync;
|
|
|
|
bool smooth;
|
|
|
|
bool force_aspect;
|
2011-05-05 14:13:12 +02:00
|
|
|
bool crop_overscan;
|
2011-01-06 20:01:32 +01:00
|
|
|
float aspect_ratio;
|
2012-04-09 22:19:51 +02:00
|
|
|
bool aspect_ratio_auto;
|
2012-10-15 06:24:39 +02:00
|
|
|
unsigned aspect_ratio_idx;
|
2012-01-02 13:32:25 +01:00
|
|
|
char cg_shader_path[PATH_MAX];
|
|
|
|
char bsnes_shader_path[PATH_MAX];
|
|
|
|
char filter_path[PATH_MAX];
|
2012-04-21 23:25:32 +02:00
|
|
|
enum rarch_shader_type shader_type;
|
2011-11-18 15:14:56 +01:00
|
|
|
float refresh_rate;
|
2011-01-23 03:16:14 +01:00
|
|
|
|
2011-03-06 18:19:31 +01:00
|
|
|
bool render_to_texture;
|
2012-10-15 06:24:39 +02:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
float scale_x;
|
|
|
|
float scale_y;
|
|
|
|
} fbo;
|
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char second_pass_shader[PATH_MAX];
|
2011-03-06 18:19:31 +01:00
|
|
|
bool second_pass_smooth;
|
2012-01-02 13:32:25 +01:00
|
|
|
char shader_dir[PATH_MAX];
|
2011-03-06 18:19:31 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char font_path[PATH_MAX];
|
2011-01-23 02:48:06 +01:00
|
|
|
unsigned font_size;
|
2011-11-10 00:15:41 +01:00
|
|
|
bool font_enable;
|
2012-01-11 22:52:25 +01:00
|
|
|
bool font_scale;
|
2011-01-23 02:59:44 +01:00
|
|
|
float msg_pos_x;
|
|
|
|
float msg_pos_y;
|
2011-09-05 17:00:28 +02:00
|
|
|
float msg_color_r;
|
|
|
|
float msg_color_g;
|
|
|
|
float msg_color_b;
|
2011-01-23 03:16:14 +01:00
|
|
|
|
2011-08-07 15:00:34 +02:00
|
|
|
bool disable_composition;
|
2011-05-11 17:52:16 +02:00
|
|
|
|
2011-08-11 05:25:31 +02:00
|
|
|
bool post_filter_record;
|
2012-08-25 22:38:49 +02:00
|
|
|
bool gpu_record;
|
2012-08-26 21:18:00 +02:00
|
|
|
bool gpu_screenshot;
|
2011-08-11 05:25:31 +02:00
|
|
|
|
2012-04-01 16:12:04 +02:00
|
|
|
bool allow_rotate;
|
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;
|
2012-01-02 13:32:25 +01:00
|
|
|
char device[PATH_MAX];
|
2010-12-29 19:00:21 +01:00
|
|
|
unsigned latency;
|
|
|
|
bool sync;
|
2011-05-13 21:05:28 +02:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char dsp_plugin[PATH_MAX];
|
2012-02-14 01:16:37 +01:00
|
|
|
|
|
|
|
bool rate_control;
|
|
|
|
float rate_control_delta;
|
2012-11-03 14:15:03 +01:00
|
|
|
float volume; // dB scale
|
2010-12-29 19:00:21 +01:00
|
|
|
} audio;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 20:05:57 +01:00
|
|
|
char driver[32];
|
2012-07-07 17:19:32 +02:00
|
|
|
struct retro_keybind binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
|
2010-12-29 20:05:57 +01:00
|
|
|
float axis_threshold;
|
2012-01-30 01:20:35 +01:00
|
|
|
int joypad_map[MAX_PLAYERS];
|
2013-01-02 17:23:31 +01:00
|
|
|
unsigned dpad_emulation[MAX_PLAYERS];
|
2013-01-05 17:09:13 +01:00
|
|
|
bool debug_enable;
|
2013-01-05 04:58:30 +01:00
|
|
|
#ifdef ANDROID
|
|
|
|
bool autodetect_enable;
|
|
|
|
#endif
|
2012-04-21 23:25:32 +02:00
|
|
|
#ifdef RARCH_CONSOLE
|
2012-10-15 06:24:39 +02:00
|
|
|
unsigned map_dpad_to_stick;
|
2012-07-28 01:37:15 +02:00
|
|
|
unsigned device[MAX_PLAYERS];
|
2012-03-03 14:57:28 +01:00
|
|
|
#endif
|
2011-02-20 12:12:53 +01:00
|
|
|
bool netplay_client_swap_input;
|
2012-10-01 22:15:48 +02:00
|
|
|
|
|
|
|
unsigned turbo_period;
|
|
|
|
unsigned turbo_duty_cycle;
|
2012-12-20 20:23:53 +01:00
|
|
|
|
|
|
|
char overlay[PATH_MAX];
|
2010-12-29 19:00:21 +01:00
|
|
|
} input;
|
2010-12-30 13:54:49 +01:00
|
|
|
|
2012-04-07 12:17:40 +02:00
|
|
|
char libretro[PATH_MAX];
|
2012-01-02 13:32:25 +01:00
|
|
|
char cheat_database[PATH_MAX];
|
|
|
|
char cheat_settings_path[PATH_MAX];
|
2011-01-31 18:06:57 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char screenshot_directory[PATH_MAX];
|
2012-06-12 00:28:34 +02:00
|
|
|
char system_directory[PATH_MAX];
|
2011-05-15 17:16:29 +02:00
|
|
|
|
2011-01-31 18:06:57 +01:00
|
|
|
bool rewind_enable;
|
2011-11-01 21:00:41 +01:00
|
|
|
size_t rewind_buffer_size;
|
2011-02-01 17:30:18 +01:00
|
|
|
unsigned rewind_granularity;
|
2011-02-05 21:45:44 +01:00
|
|
|
|
2012-03-04 12:01:07 +01:00
|
|
|
float slowmotion_ratio;
|
|
|
|
|
2011-02-05 21:45:44 +01:00
|
|
|
bool pause_nonactive;
|
2011-02-10 21:16:59 +01:00
|
|
|
unsigned autosave_interval;
|
2011-09-16 15:32:21 +02:00
|
|
|
|
|
|
|
bool block_sram_overwrite;
|
2011-09-27 15:31:25 +02:00
|
|
|
bool savestate_auto_index;
|
2012-06-02 21:33:37 +02:00
|
|
|
bool savestate_auto_save;
|
2012-05-27 14:12:29 +02:00
|
|
|
|
|
|
|
bool network_cmd_enable;
|
|
|
|
uint16_t network_cmd_port;
|
2012-07-24 02:47:28 +02:00
|
|
|
bool stdin_cmd_enable;
|
2010-12-29 19:00:21 +01:00
|
|
|
};
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
enum rarch_game_type
|
2011-01-12 18:05:57 +01:00
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_CART_NORMAL = 0,
|
|
|
|
RARCH_CART_SGB,
|
|
|
|
RARCH_CART_BSX,
|
|
|
|
RARCH_CART_BSX_SLOTTED,
|
|
|
|
RARCH_CART_SUFAMI
|
2011-01-12 18:05:57 +01:00
|
|
|
};
|
|
|
|
|
2012-10-28 00:38:31 +02:00
|
|
|
typedef struct rarch_boolean_state
|
2012-10-15 06:24:39 +02:00
|
|
|
{
|
|
|
|
bool enable;
|
|
|
|
unsigned value;
|
|
|
|
} rarch_boolean_state_t;
|
|
|
|
|
2012-10-28 00:38:31 +02:00
|
|
|
typedef struct rarch_resolution
|
2012-10-15 06:24:39 +02:00
|
|
|
{
|
|
|
|
unsigned idx;
|
|
|
|
unsigned id;
|
|
|
|
} rarch_resolution_t;
|
|
|
|
|
2012-10-28 00:38:31 +02:00
|
|
|
typedef struct rarch_viewport
|
2012-10-15 06:24:39 +02:00
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2013-01-11 16:23:04 +01:00
|
|
|
unsigned full_width;
|
|
|
|
unsigned full_height;
|
2012-10-15 06:24:39 +02:00
|
|
|
} rarch_viewport_t;
|
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// All run-time- / command line flag-related globals go here.
|
2010-12-29 19:18:37 +01:00
|
|
|
struct global
|
|
|
|
{
|
|
|
|
bool verbose;
|
|
|
|
bool audio_active;
|
|
|
|
bool video_active;
|
2011-07-09 08:37:08 +02:00
|
|
|
bool force_fullscreen;
|
2010-12-29 19:43:17 +01:00
|
|
|
|
2012-08-16 21:20:38 +02:00
|
|
|
bool disconnect_device[MAX_PLAYERS];
|
|
|
|
bool has_mouse[MAX_PLAYERS];
|
|
|
|
bool has_dualanalog[MAX_PLAYERS];
|
|
|
|
bool has_scope;
|
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;
|
2012-04-21 23:25:32 +02:00
|
|
|
enum rarch_game_type game_type;
|
2011-02-02 11:47:05 +01:00
|
|
|
uint32_t cart_crc;
|
2011-01-12 18:05:57 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char gb_rom_path[PATH_MAX];
|
|
|
|
char bsx_rom_path[PATH_MAX];
|
|
|
|
char sufami_rom_path[2][PATH_MAX];
|
2011-02-11 14:27:19 +01:00
|
|
|
bool has_set_save_path;
|
|
|
|
bool has_set_state_path;
|
2011-01-12 18:05:57 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char config_path[PATH_MAX];
|
2012-09-11 00:10:44 +02:00
|
|
|
char append_config_path[PATH_MAX];
|
2012-11-26 02:46:40 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_FILE_LOGGER
|
|
|
|
char default_log_file[PATH_MAX];
|
|
|
|
#endif
|
2011-01-23 02:48:06 +01:00
|
|
|
|
2012-01-02 13:32:25 +01:00
|
|
|
char basename[PATH_MAX];
|
2012-04-07 11:55:37 +02:00
|
|
|
char fullpath[PATH_MAX];
|
2012-01-02 13:32:25 +01:00
|
|
|
char savefile_name_srm[PATH_MAX];
|
|
|
|
char savefile_name_rtc[PATH_MAX]; // Make sure that fill_pathname has space.
|
|
|
|
char savefile_name_psrm[PATH_MAX];
|
|
|
|
char savefile_name_asrm[PATH_MAX];
|
|
|
|
char savefile_name_bsrm[PATH_MAX];
|
|
|
|
char savestate_name[PATH_MAX];
|
|
|
|
char xml_name[PATH_MAX];
|
2011-08-18 00:24:57 +02:00
|
|
|
|
2012-03-20 23:45:58 +01:00
|
|
|
bool block_patch;
|
2011-08-18 00:24:57 +02:00
|
|
|
bool ups_pref;
|
|
|
|
bool bps_pref;
|
2012-03-20 23:08:34 +01:00
|
|
|
bool ips_pref;
|
2012-01-02 13:32:25 +01:00
|
|
|
char ups_name[PATH_MAX];
|
|
|
|
char bps_name[PATH_MAX];
|
2012-03-20 23:08:34 +01:00
|
|
|
char ips_name[PATH_MAX];
|
2011-01-03 20:46:50 +01:00
|
|
|
|
2011-01-23 23:09:54 +01:00
|
|
|
unsigned state_slot;
|
|
|
|
|
2011-10-27 23:40:34 +02:00
|
|
|
struct
|
|
|
|
{
|
2012-04-05 11:47:43 +02:00
|
|
|
struct retro_system_info info;
|
2012-04-07 11:55:37 +02:00
|
|
|
struct retro_system_av_info av_info;
|
2012-02-06 15:51:35 +01:00
|
|
|
|
|
|
|
char *environment;
|
|
|
|
char *environment_split;
|
2012-04-01 19:20:37 +02:00
|
|
|
|
|
|
|
unsigned rotation;
|
2012-05-22 20:14:07 +02:00
|
|
|
bool shutdown;
|
2012-06-01 16:50:38 +02:00
|
|
|
unsigned performance_level;
|
2012-10-20 01:12:02 +02:00
|
|
|
enum retro_pixel_format pix_fmt;
|
2012-08-15 20:43:26 +02:00
|
|
|
|
2013-01-10 08:46:46 +01:00
|
|
|
bool block_extract;
|
2012-08-15 20:43:26 +02:00
|
|
|
bool force_nonblock;
|
2012-09-09 23:35:23 +02:00
|
|
|
|
2012-10-01 22:15:48 +02:00
|
|
|
const char *input_desc_btn[MAX_PLAYERS][RARCH_FIRST_CUSTOM_BIND];
|
2013-01-09 07:07:46 +01:00
|
|
|
char valid_extensions[PATH_MAX];
|
2012-11-25 20:23:31 -05:00
|
|
|
|
|
|
|
retro_keyboard_event_t key_event;
|
2011-10-27 23:40:34 +02:00
|
|
|
} system;
|
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
struct
|
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
rarch_resampler_t *source;
|
2011-02-06 13:29:48 +01:00
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
float *data;
|
2012-07-06 17:36:37 +02:00
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
size_t data_ptr;
|
|
|
|
size_t chunk_size;
|
|
|
|
size_t nonblock_chunk_size;
|
|
|
|
size_t block_chunk_size;
|
|
|
|
|
2011-10-15 16:16:13 +02:00
|
|
|
double src_ratio;
|
|
|
|
|
2011-01-15 20:37:42 +01:00
|
|
|
bool use_float;
|
2011-11-26 15:54:58 +01:00
|
|
|
bool mute;
|
2011-01-15 20:37:42 +01:00
|
|
|
|
2012-07-06 17:36:37 +02:00
|
|
|
sample_t *outsamples;
|
2011-01-14 15:34:38 +01:00
|
|
|
int16_t *conv_outsamples;
|
2011-05-13 21:05:28 +02:00
|
|
|
|
2011-10-15 14:33:41 +02:00
|
|
|
int16_t *rewind_buf;
|
|
|
|
size_t rewind_ptr;
|
|
|
|
size_t rewind_size;
|
|
|
|
|
2011-05-13 21:05:28 +02:00
|
|
|
dylib_t dsp_lib;
|
2012-04-21 23:25:32 +02:00
|
|
|
const rarch_dsp_plugin_t *dsp_plugin;
|
2011-05-13 21:05:28 +02:00
|
|
|
void *dsp_handle;
|
2012-02-14 01:16:37 +01:00
|
|
|
|
|
|
|
bool rate_control;
|
|
|
|
double orig_src_ratio;
|
|
|
|
size_t driver_buffer_size;
|
2012-11-03 14:15:03 +01:00
|
|
|
|
|
|
|
float volume_db;
|
|
|
|
float volume_gain;
|
2011-01-14 15:34:38 +01:00
|
|
|
} audio_data;
|
|
|
|
|
2011-03-07 19:12:14 +01: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);
|
2012-10-21 22:58:33 +02:00
|
|
|
|
|
|
|
// CPU filters only work on *XRGB1555*. We have to convert to XRGB1555 first.
|
|
|
|
struct scaler_ctx scaler;
|
2012-10-21 23:24:25 +02:00
|
|
|
uint16_t *scaler_out;
|
2011-03-07 19:12:14 +01:00
|
|
|
} filter;
|
|
|
|
|
2011-01-23 02:23:20 +01:00
|
|
|
msg_queue_t *msg_queue;
|
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// Rewind support.
|
2011-01-31 16:48:42 +01:00
|
|
|
state_manager_t *state_manager;
|
|
|
|
void *state_buf;
|
2011-12-27 18:19:45 +01:00
|
|
|
size_t state_size;
|
2011-01-31 17:24:31 +01:00
|
|
|
bool frame_is_reverse;
|
2011-01-31 16:48:42 +01:00
|
|
|
|
2012-03-26 00:04:12 +02:00
|
|
|
#ifdef HAVE_BSV_MOVIE
|
2011-11-20 20:19:05 +01:00
|
|
|
// Movie playback/recording support.
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
bsv_movie_t *movie;
|
2012-01-02 13:32:25 +01:00
|
|
|
char movie_path[PATH_MAX];
|
2011-11-20 20:19:05 +01:00
|
|
|
bool movie_playback;
|
|
|
|
|
|
|
|
// Immediate playback/recording.
|
2012-01-02 13:32:25 +01:00
|
|
|
char movie_start_path[PATH_MAX];
|
2011-11-20 20:19:05 +01:00
|
|
|
bool movie_start_recording;
|
|
|
|
bool movie_start_playback;
|
|
|
|
bool movie_end;
|
|
|
|
} bsv;
|
2012-03-26 00:04:12 +02:00
|
|
|
#endif
|
2011-11-20 20:19:05 +01:00
|
|
|
|
|
|
|
bool sram_load_disable;
|
|
|
|
bool sram_save_disable;
|
2012-01-14 14:08:43 +01:00
|
|
|
bool use_sram;
|
2011-11-18 18:03:24 +01:00
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// Pausing support
|
2011-02-05 20:46:58 +01:00
|
|
|
bool is_paused;
|
2011-10-17 21:30:58 +02:00
|
|
|
bool is_oneshot;
|
2012-03-04 12:01:07 +01:00
|
|
|
bool is_slowmotion;
|
2011-02-05 20:46:58 +01:00
|
|
|
|
2012-10-01 22:15:48 +02:00
|
|
|
// Turbo support
|
|
|
|
bool turbo_frame_enable[MAX_PLAYERS];
|
|
|
|
uint16_t turbo_enable[MAX_PLAYERS];
|
|
|
|
unsigned turbo_count;
|
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// Autosave support.
|
2011-02-11 13:44:31 +01:00
|
|
|
autosave_t *autosave[2];
|
2011-02-10 21:16:59 +01:00
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// Netplay.
|
2011-11-30 16:41:00 +01:00
|
|
|
#ifdef HAVE_NETPLAY
|
2011-02-13 16:40:24 +01:00
|
|
|
netplay_t *netplay;
|
2012-01-02 13:32:25 +01:00
|
|
|
char netplay_server[PATH_MAX];
|
2011-02-13 16:40:24 +01:00
|
|
|
bool netplay_enable;
|
2011-02-13 17:45:14 +01:00
|
|
|
bool netplay_is_client;
|
2012-01-11 19:22:18 +01:00
|
|
|
bool netplay_is_spectate;
|
2011-02-15 15:32:26 +01:00
|
|
|
unsigned netplay_sync_frames;
|
2011-02-18 14:49:15 +01:00
|
|
|
uint16_t netplay_port;
|
2012-01-21 18:12:42 +01:00
|
|
|
char netplay_nick[32];
|
2011-11-30 16:41:00 +01:00
|
|
|
#endif
|
2011-02-13 16:40:24 +01:00
|
|
|
|
2011-02-18 23:51:51 +01:00
|
|
|
// FFmpeg record.
|
2011-01-05 20:07:55 +01:00
|
|
|
#ifdef HAVE_FFMPEG
|
2011-01-03 20:46:50 +01:00
|
|
|
ffemu_t *rec;
|
2012-01-02 13:32:25 +01:00
|
|
|
char record_path[PATH_MAX];
|
2012-11-23 22:46:21 +01:00
|
|
|
char record_config[PATH_MAX];
|
2011-01-05 20:07:55 +01:00
|
|
|
bool recording;
|
2011-10-06 23:43:48 +02:00
|
|
|
unsigned record_width;
|
|
|
|
unsigned record_height;
|
2012-08-25 22:38:49 +02:00
|
|
|
|
|
|
|
uint8_t *record_gpu_buffer;
|
|
|
|
size_t record_gpu_width;
|
|
|
|
size_t record_gpu_height;
|
2011-01-05 20:07:55 +01:00
|
|
|
#endif
|
2011-03-17 01:25:44 +01:00
|
|
|
|
2011-10-18 17:26:15 +02:00
|
|
|
struct
|
|
|
|
{
|
2012-04-05 11:47:43 +02:00
|
|
|
const void *data;
|
2011-10-18 17:26:15 +02:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2012-04-05 11:47:43 +02:00
|
|
|
size_t pitch;
|
2011-10-18 17:26:15 +02:00
|
|
|
} frame_cache;
|
|
|
|
|
2012-12-14 20:33:07 +01:00
|
|
|
unsigned frame_count;
|
2013-01-07 23:58:00 -05:00
|
|
|
// two timers, the first for handling menu and exit button delays, the second for scrolling delays
|
|
|
|
unsigned delay_timer[2];
|
2011-03-17 01:25:44 +01:00
|
|
|
char title_buf[64];
|
2011-03-29 18:04:41 +02:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-06-23 15:31:22 +02:00
|
|
|
struct string_list *list;
|
2011-03-29 18:04:41 +02:00
|
|
|
size_t ptr;
|
|
|
|
} shader_dir;
|
2011-04-17 12:29:58 +02:00
|
|
|
|
2011-05-15 17:16:29 +02:00
|
|
|
char sha256[64 + 1];
|
|
|
|
|
2012-10-15 09:57:08 +02:00
|
|
|
cheat_manager_t *cheat;
|
2012-10-14 20:34:16 +02:00
|
|
|
|
2013-01-10 06:45:44 +01:00
|
|
|
bool block_config_read;
|
|
|
|
|
2012-10-15 09:57:08 +02:00
|
|
|
// Settings and/or global state that is specific to a console-style implementation.
|
2012-10-14 20:34:16 +02:00
|
|
|
struct
|
|
|
|
{
|
2012-10-15 06:24:39 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
unsigned input_loop;
|
2012-10-15 09:57:08 +02:00
|
|
|
float font_size;
|
2012-10-15 06:24:39 +02:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-11-20 06:08:58 +01:00
|
|
|
rarch_boolean_state_t rmenu_widescreen;
|
2012-10-15 06:24:39 +02:00
|
|
|
rarch_boolean_state_t rmenu_hd;
|
|
|
|
} state;
|
|
|
|
} rmenu;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
2012-10-15 09:57:08 +02:00
|
|
|
{
|
2012-10-15 06:24:39 +02:00
|
|
|
rarch_resolution_t current;
|
|
|
|
rarch_resolution_t initial;
|
2012-10-15 09:57:08 +02:00
|
|
|
uint32_t *list;
|
|
|
|
unsigned count;
|
|
|
|
bool check;
|
|
|
|
} resolutions;
|
2012-10-15 06:24:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
rarch_viewport_t custom_vp;
|
|
|
|
} viewports;
|
|
|
|
|
|
|
|
unsigned orientation;
|
|
|
|
float overscan_amount;
|
|
|
|
unsigned gamma_correction;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
rarch_boolean_state_t triple_buffering;
|
|
|
|
rarch_boolean_state_t overscan;
|
|
|
|
rarch_boolean_state_t flicker_filter;
|
|
|
|
rarch_boolean_state_t soft_filter;
|
|
|
|
rarch_boolean_state_t screenshots;
|
|
|
|
rarch_boolean_state_t throttle;
|
|
|
|
} state;
|
|
|
|
} screen;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-10-15 09:57:08 +02:00
|
|
|
rarch_boolean_state_t custom_bgm;
|
|
|
|
unsigned mode;
|
2012-10-15 06:24:39 +02:00
|
|
|
#ifdef _XBOX1
|
2012-10-15 09:57:08 +02:00
|
|
|
unsigned volume_level;
|
2012-10-15 06:24:39 +02:00
|
|
|
#endif
|
|
|
|
} sound;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
char default_rom_startup_dir[PATH_MAX];
|
2012-10-15 09:57:08 +02:00
|
|
|
char default_savestate_dir[PATH_MAX];
|
|
|
|
char default_sram_dir[PATH_MAX];
|
2012-10-15 06:24:39 +02:00
|
|
|
} paths;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
rarch_boolean_state_t default_sram_dir;
|
|
|
|
rarch_boolean_state_t default_savestate_dir;
|
|
|
|
} state;
|
|
|
|
} main_wrap;
|
|
|
|
|
|
|
|
#ifdef HAVE_OSKUTIL
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
oskutil_params oskutil_handle;
|
|
|
|
} misc;
|
|
|
|
#endif
|
2012-10-14 20:34:16 +02:00
|
|
|
} console;
|
|
|
|
|
2012-12-14 02:06:14 +01:00
|
|
|
uint64_t lifecycle_state;
|
2013-01-10 18:19:52 +01:00
|
|
|
uint32_t lifecycle_menu_state;
|
2012-12-14 02:06:14 +01:00
|
|
|
|
2012-10-14 20:34:16 +02:00
|
|
|
struct
|
|
|
|
{
|
2012-10-15 06:24:39 +02:00
|
|
|
char cgp_path[PATH_MAX];
|
|
|
|
char input_cfg_path[PATH_MAX];
|
2012-10-14 20:45:30 +02:00
|
|
|
#ifdef HAVE_ZLIB
|
|
|
|
unsigned zip_extract_mode;
|
2012-10-15 06:24:39 +02:00
|
|
|
#endif
|
|
|
|
} file_state;
|
2012-10-14 20:34:16 +02:00
|
|
|
|
2012-11-26 16:59:00 +01:00
|
|
|
// If this is non-NULL. RARCH_LOG and friends will write to this file.
|
|
|
|
FILE *log_file;
|
|
|
|
|
2013-01-05 23:44:49 +01:00
|
|
|
bool main_is_init;
|
2012-01-14 16:08:54 +01:00
|
|
|
bool error_in_init;
|
|
|
|
char error_string[1024];
|
|
|
|
jmp_buf error_sjlj_context;
|
2010-12-29 19:18:37 +01:00
|
|
|
};
|
|
|
|
|
2013-01-06 03:06:47 +01:00
|
|
|
struct rarch_main_wrap
|
|
|
|
{
|
|
|
|
const char *rom_path;
|
|
|
|
const char *sram_path;
|
|
|
|
const char *state_path;
|
|
|
|
const char *config_path;
|
|
|
|
const char *libretro_path;
|
|
|
|
bool verbose;
|
|
|
|
};
|
|
|
|
|
2012-02-13 20:57:32 +01:00
|
|
|
// Public functions
|
2012-01-28 15:47:02 +01:00
|
|
|
void config_load(void);
|
2012-01-12 22:53:14 +01:00
|
|
|
void config_set_defaults(void);
|
2012-05-07 23:20:13 +02:00
|
|
|
const char *config_get_default_video(void);
|
|
|
|
const char *config_get_default_audio(void);
|
|
|
|
const char *config_get_default_input(void);
|
2012-01-28 16:49:06 +01:00
|
|
|
|
2012-02-13 19:20:24 +01:00
|
|
|
#include "conf/config_file.h"
|
2012-01-28 15:47:02 +01:00
|
|
|
bool config_load_file(const char *path);
|
2013-01-05 22:18:59 +01:00
|
|
|
#ifdef RARCH_CONSOLE
|
|
|
|
bool config_save_file(const char *path);
|
|
|
|
#endif
|
2012-02-29 19:25:54 +01:00
|
|
|
bool config_read_keybinds(const char *path);
|
2012-02-29 19:07:25 +01:00
|
|
|
bool config_save_keybinds(const char *path);
|
2010-12-29 19:00:21 +01:00
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
void rarch_game_reset(void);
|
|
|
|
void rarch_main_clear_state(void);
|
2013-01-08 22:52:56 +01:00
|
|
|
void rarch_init_system_info(void);
|
2012-10-15 21:49:35 +02:00
|
|
|
int rarch_main(int argc, char *argv[]);
|
2013-01-06 03:06:47 +01:00
|
|
|
int rarch_main_init_wrap(const struct rarch_main_wrap *args);
|
2012-04-21 23:25:32 +02:00
|
|
|
int rarch_main_init(int argc, char *argv[]);
|
|
|
|
bool rarch_main_iterate(void);
|
|
|
|
void rarch_main_deinit(void);
|
|
|
|
void rarch_render_cached_frame(void);
|
2012-05-28 23:30:29 +02:00
|
|
|
void rarch_init_msg_queue(void);
|
2012-05-30 01:20:14 +02:00
|
|
|
void rarch_deinit_msg_queue(void);
|
2012-04-21 23:25:32 +02:00
|
|
|
|
|
|
|
void rarch_load_state(void);
|
|
|
|
void rarch_save_state(void);
|
|
|
|
void rarch_state_slot_increase(void);
|
|
|
|
void rarch_state_slot_decrease(void);
|
2012-02-13 20:57:32 +01:00
|
|
|
/////////
|
|
|
|
|
|
|
|
// Public data structures
|
2010-12-29 19:00:21 +01:00
|
|
|
extern struct settings g_settings;
|
2010-12-29 19:18:37 +01:00
|
|
|
extern struct global g_extern;
|
2012-02-13 20:57:32 +01:00
|
|
|
/////////
|
2010-12-29 19:18:37 +01:00
|
|
|
|
2012-07-28 17:32:30 +02:00
|
|
|
#include "retroarch_logger.h"
|
2011-01-05 19:29:29 +01:00
|
|
|
|
2011-10-27 23:40:34 +02:00
|
|
|
#ifndef max
|
|
|
|
#define max(a, b) ((a) > (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef min
|
|
|
|
#define min(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
2012-10-26 23:15:34 +02:00
|
|
|
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
|
2012-04-21 23:25:32 +02:00
|
|
|
#define RARCH_SCALE_BASE 256
|
2011-10-27 23:40:34 +02:00
|
|
|
|
2011-03-07 19:12:14 +01: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;
|
|
|
|
}
|
|
|
|
|
2012-11-21 20:47:20 +01:00
|
|
|
static inline uint32_t prev_pow2(uint32_t v)
|
|
|
|
{
|
|
|
|
v |= v >> 1;
|
|
|
|
v |= v >> 2;
|
|
|
|
v |= v >> 4;
|
|
|
|
v |= v >> 8;
|
|
|
|
v |= v >> 16;
|
|
|
|
return v - (v >> 1);
|
|
|
|
}
|
|
|
|
|
2011-07-26 00:53:24 +02: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];
|
|
|
|
}
|
|
|
|
|
2012-03-25 23:48:27 +02:00
|
|
|
static inline uint32_t swap_if_big32(uint32_t val)
|
|
|
|
{
|
|
|
|
if (is_little_endian()) // Little-endian
|
|
|
|
return val;
|
|
|
|
else
|
|
|
|
return (val >> 24) | ((val >> 8) & 0xFF00) | ((val << 8) & 0xFF0000) | (val << 24);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint32_t swap_if_little32(uint32_t val)
|
|
|
|
{
|
|
|
|
if (is_little_endian())
|
|
|
|
return (val >> 24) | ((val >> 8) & 0xFF00) | ((val << 8) & 0xFF0000) | (val << 24);
|
|
|
|
else
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t swap_if_big16(uint16_t val)
|
|
|
|
{
|
|
|
|
if (is_little_endian())
|
|
|
|
return val;
|
|
|
|
else
|
|
|
|
return (val >> 8) | (val << 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t swap_if_little16(uint16_t val)
|
|
|
|
{
|
|
|
|
if (is_little_endian())
|
|
|
|
return (val >> 8) | (val << 8);
|
|
|
|
else
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2012-11-03 14:15:03 +01:00
|
|
|
static inline float db_to_gain(float db)
|
|
|
|
{
|
|
|
|
return powf(10.0f, db / 20.0f);
|
|
|
|
}
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
static inline void rarch_sleep(unsigned msec)
|
2011-10-17 20:46:38 +02:00
|
|
|
{
|
2012-07-01 13:33:30 +02:00
|
|
|
#if defined(__CELLOS_LV2__) && !defined(__PSL1GHT__)
|
2011-11-30 16:40:52 +01:00
|
|
|
sys_timer_usleep(1000 * msec);
|
2012-11-23 18:51:26 +01:00
|
|
|
#elif defined(PSP)
|
|
|
|
sceKernelDelayThread(1000 * msec);
|
2012-06-25 00:03:56 +02:00
|
|
|
#elif defined(_WIN32)
|
2011-11-30 16:26:23 +01:00
|
|
|
Sleep(msec);
|
2011-12-10 17:41:16 +01:00
|
|
|
#elif defined(XENON)
|
2011-12-13 23:38:05 +01:00
|
|
|
udelay(1000 * msec);
|
2013-01-10 09:33:26 +01:00
|
|
|
#elif defined(GEKKO) || defined(__PSL1GHT__)
|
2011-12-14 12:49:13 +01:00
|
|
|
usleep(1000 * msec);
|
2011-10-17 20:46:38 +02:00
|
|
|
#else
|
2011-12-24 13:46:12 +01:00
|
|
|
struct timespec tv = {0};
|
|
|
|
tv.tv_sec = msec / 1000;
|
|
|
|
tv.tv_nsec = (msec % 1000) * 1000000;
|
2011-10-17 20:46:38 +02:00
|
|
|
nanosleep(&tv, NULL);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-11-18 17:08:28 +01:00
|
|
|
#define rarch_assert(cond) do { \
|
|
|
|
if (!(cond)) { RARCH_ERR("Assertion failed at %s:%d.\n", __FILE__, __LINE__); exit(2); } \
|
|
|
|
} while(0)
|
2011-12-25 12:13:19 +01:00
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
static inline void rarch_fail(int error_code, const char *error)
|
2012-01-14 16:08:54 +01:00
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
// We cannot longjmp unless we're in rarch_main_init().
|
2012-01-14 16:08:54 +01:00
|
|
|
// If not, something went very wrong, and we should just exit right away.
|
2012-04-21 23:25:32 +02:00
|
|
|
rarch_assert(g_extern.error_in_init);
|
2012-01-14 16:08:54 +01:00
|
|
|
|
|
|
|
strlcpy(g_extern.error_string, error, sizeof(g_extern.error_string));
|
|
|
|
longjmp(g_extern.error_sjlj_context, error_code);
|
|
|
|
}
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
#endif
|
2011-03-07 19:12:14 +01:00
|
|
|
|
|
|
|
|