2012-04-21 21:13:50 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
2010-12-24 00:33:40 +00:00
|
|
|
*
|
2012-04-21 21:13:50 +00:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2010-12-24 00:33:40 +00: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 21:13:50 +00:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2010-12-24 00:33:40 +00: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 21:31:57 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2010-12-24 00:33:40 +00:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
#ifndef __RARCH_GENERAL_H
|
|
|
|
#define __RARCH_GENERAL_H
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2011-12-24 12:46:12 +00:00
|
|
|
#include "boolean.h"
|
2010-12-29 18:43:17 +00:00
|
|
|
#include <stdio.h>
|
2012-01-02 12:32:25 +00:00
|
|
|
#include <limits.h>
|
2012-01-14 15:08:54 +00:00
|
|
|
#include <setjmp.h>
|
2011-10-17 18:46:38 +00:00
|
|
|
#include "driver.h"
|
2011-01-03 19:46:50 +00:00
|
|
|
#include "record/ffemu.h"
|
2013-11-06 14:08:54 +00:00
|
|
|
#include "message_queue.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-03-07 18:12:14 +00:00
|
|
|
#include "dynamic.h"
|
2011-04-17 11:30:59 +00:00
|
|
|
#include "cheats.h"
|
2014-05-20 10:28:33 +00:00
|
|
|
#include "audio/dsp_filter.h"
|
2012-03-16 22:26:57 +00:00
|
|
|
#include "compat/strl.h"
|
2013-04-04 11:58:30 +00:00
|
|
|
#include "core_options.h"
|
2014-09-03 12:57:29 +00:00
|
|
|
#include "core_info.h"
|
2013-11-06 13:21:12 +00:00
|
|
|
#include "miscellaneous.h"
|
2014-04-14 20:56:15 +00:00
|
|
|
#include "gfx/filter.h"
|
2011-01-07 16:59:53 +00:00
|
|
|
|
2014-08-15 15:24:28 +00:00
|
|
|
#include "playlist.h"
|
2014-07-25 18:52:36 +00:00
|
|
|
|
2012-11-23 19:45:15 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-04 13:01:38 +00:00
|
|
|
#ifndef PACKAGE_VERSION
|
2013-07-06 17:18:41 +00:00
|
|
|
#ifdef __QNX__
|
|
|
|
/* FIXME - avoid too many decimal points in number error */
|
2014-01-20 14:00:21 +00:00
|
|
|
#define PACKAGE_VERSION "1002"
|
2013-07-06 17:18:41 +00:00
|
|
|
#else
|
2014-01-20 14:00:21 +00:00
|
|
|
#define PACKAGE_VERSION "1.0.0.2"
|
2013-07-04 13:01:38 +00:00
|
|
|
#endif
|
2013-07-06 17:18:41 +00:00
|
|
|
#endif
|
2013-07-04 13:01:38 +00:00
|
|
|
|
2012-11-23 19:45:15 +00:00
|
|
|
// Platform-specific headers
|
|
|
|
// Windows
|
2013-04-11 20:35:15 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#ifdef _XBOX
|
|
|
|
#include <xtl.h>
|
|
|
|
#else
|
2012-11-23 09:34:40 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
#include "msvc/msvc_compat.h"
|
|
|
|
#endif
|
|
|
|
|
2013-01-10 08:33:26 +00:00
|
|
|
// Wii and PSL1GHT - for usleep (among others)
|
2013-05-25 16:07:30 +00:00
|
|
|
#if defined(GEKKO) || defined(__PSL1GHT__) || defined(__QNX__)
|
2012-11-23 19:45:15 +00:00
|
|
|
#include <unistd.h>
|
2011-12-13 22:38:05 +00:00
|
|
|
#endif
|
|
|
|
|
2012-11-23 19:45:15 +00:00
|
|
|
// PSP
|
|
|
|
#if defined(PSP)
|
|
|
|
#include <pspthreadman.h>
|
|
|
|
#endif
|
|
|
|
//////////////
|
|
|
|
|
2011-11-30 15:27:16 +00:00
|
|
|
#ifdef HAVE_NETPLAY
|
|
|
|
#include "netplay.h"
|
2012-05-27 22:27:53 +00:00
|
|
|
#endif
|
|
|
|
|
2012-07-24 00:47:28 +00:00
|
|
|
#ifdef HAVE_COMMAND
|
|
|
|
#include "command.h"
|
2011-11-30 15:27:16 +00:00
|
|
|
#endif
|
|
|
|
|
2012-02-23 22:19:23 +00:00
|
|
|
#include "audio/resampler.h"
|
2010-12-24 00:26:36 +00:00
|
|
|
|
2013-02-09 09:36:39 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-09-04 14:15:34 +00:00
|
|
|
#define MAX_PLAYERS 16
|
2011-02-18 22:51:51 +00:00
|
|
|
|
2014-07-22 00:14:52 +00:00
|
|
|
enum basic_event
|
|
|
|
{
|
2014-08-13 18:07:45 +00:00
|
|
|
RARCH_CMD_NONE = 0,
|
|
|
|
RARCH_CMD_RESET,
|
2014-07-22 01:12:56 +00:00
|
|
|
RARCH_CMD_LOAD_CONTENT,
|
2014-07-22 01:34:28 +00:00
|
|
|
RARCH_CMD_LOAD_CORE,
|
2014-07-22 00:14:52 +00:00
|
|
|
RARCH_CMD_LOAD_STATE,
|
|
|
|
RARCH_CMD_SAVE_STATE,
|
2014-07-22 01:17:47 +00:00
|
|
|
RARCH_CMD_TAKE_SCREENSHOT,
|
2014-07-25 20:11:34 +00:00
|
|
|
RARCH_CMD_PREPARE_DUMMY,
|
2014-07-22 01:12:56 +00:00
|
|
|
RARCH_CMD_QUIT,
|
2014-08-02 01:56:19 +00:00
|
|
|
RARCH_CMD_REINIT,
|
2014-08-02 02:01:25 +00:00
|
|
|
RARCH_CMD_REWIND,
|
2014-08-02 02:11:06 +00:00
|
|
|
RARCH_CMD_AUTOSAVE,
|
2014-08-02 10:08:53 +00:00
|
|
|
RARCH_CMD_AUDIO_STOP,
|
|
|
|
RARCH_CMD_AUDIO_START,
|
2014-08-02 10:36:48 +00:00
|
|
|
RARCH_CMD_OVERLAY_INIT,
|
2014-08-02 11:40:38 +00:00
|
|
|
RARCH_CMD_OVERLAY_DEINIT,
|
2014-08-13 18:09:53 +00:00
|
|
|
RARCH_CMD_OVERLAY_REINIT,
|
2014-08-16 17:16:11 +00:00
|
|
|
RARCH_CMD_OVERLAY_SET_SCALE_FACTOR,
|
|
|
|
RARCH_CMD_OVERLAY_SET_ALPHA_MOD,
|
2014-08-02 11:40:38 +00:00
|
|
|
RARCH_CMD_DSP_FILTER_INIT,
|
|
|
|
RARCH_CMD_DSP_FILTER_DEINIT,
|
2014-08-02 12:17:20 +00:00
|
|
|
RARCH_CMD_RECORD_INIT,
|
|
|
|
RARCH_CMD_RECORD_DEINIT,
|
2014-08-02 15:42:01 +00:00
|
|
|
RARCH_CMD_HISTORY_DEINIT,
|
|
|
|
RARCH_CMD_HISTORY_INIT,
|
2014-08-16 04:23:51 +00:00
|
|
|
RARCH_CMD_CORE_INFO_INIT,
|
2014-08-16 16:56:56 +00:00
|
|
|
RARCH_CMD_AUDIO_SET_BLOCKING_STATE,
|
|
|
|
RARCH_CMD_AUDIO_SET_NONBLOCKING_STATE,
|
2014-08-16 16:39:18 +00:00
|
|
|
RARCH_CMD_VIDEO_APPLY_STATE_CHANGES,
|
|
|
|
RARCH_CMD_VIDEO_SET_BLOCKING_STATE,
|
|
|
|
RARCH_CMD_VIDEO_SET_NONBLOCKING_STATE,
|
2014-08-16 16:46:43 +00:00
|
|
|
RARCH_CMD_VIDEO_SET_ASPECT_RATIO,
|
2014-08-20 21:11:14 +00:00
|
|
|
RARCH_CMD_RESET_CONTEXT,
|
2014-08-27 22:08:13 +00:00
|
|
|
RARCH_CMD_RESTART_RETROARCH,
|
2014-08-27 21:44:23 +00:00
|
|
|
RARCH_CMD_QUIT_RETROARCH,
|
2014-08-27 22:08:13 +00:00
|
|
|
RARCH_CMD_RESUME,
|
|
|
|
RARCH_CMD_MENU_SAVE_CONFIG,
|
2014-09-05 01:44:19 +00:00
|
|
|
RARCH_CMD_SHADERS_APPLY_CHANGES,
|
2014-07-22 00:14:52 +00:00
|
|
|
};
|
|
|
|
|
2014-09-03 16:16:49 +00:00
|
|
|
enum action_state
|
|
|
|
{
|
|
|
|
RARCH_ACTION_STATE_NONE = 0,
|
|
|
|
RARCH_ACTION_STATE_MENU_PREINIT,
|
2014-09-03 16:36:46 +00:00
|
|
|
RARCH_ACTION_STATE_MENU_PREINIT_FINISHED,
|
2014-09-03 16:16:49 +00:00
|
|
|
RARCH_ACTION_STATE_LOAD_CONTENT,
|
2014-09-03 16:36:46 +00:00
|
|
|
RARCH_ACTION_STATE_LOAD_CONTENT_FINISHED,
|
|
|
|
RARCH_ACTION_STATE_RUNNING,
|
|
|
|
RARCH_ACTION_STATE_RUNNING_FINISHED,
|
|
|
|
RARCH_ACTION_STATE_MENU_RUNNING,
|
|
|
|
RARCH_ACTION_STATE_MENU_RUNNING_FINISHED,
|
2014-09-03 16:16:49 +00:00
|
|
|
RARCH_ACTION_STATE_EXITSPAWN,
|
2014-09-05 03:57:27 +00:00
|
|
|
RARCH_ACTION_STATE_FLUSH_INPUT,
|
|
|
|
RARCH_ACTION_STATE_FLUSH_INPUT_FINISHED,
|
2014-09-03 16:16:49 +00:00
|
|
|
RARCH_ACTION_STATE_QUIT,
|
|
|
|
};
|
|
|
|
|
2013-01-11 03:39:24 +00:00
|
|
|
enum menu_enums
|
|
|
|
{
|
2013-01-13 02:34:55 +00:00
|
|
|
MODE_GAME = 0,
|
2013-01-11 03:39:24 +00:00
|
|
|
MODE_LOAD_GAME,
|
|
|
|
MODE_MENU,
|
2013-01-11 17:14:16 +00:00
|
|
|
MODE_MENU_WIDESCREEN,
|
|
|
|
MODE_MENU_HD,
|
2013-01-11 03:39:24 +00:00
|
|
|
MODE_MENU_PREINIT,
|
2013-01-11 07:15:23 +00:00
|
|
|
MODE_EXTLAUNCH_MULTIMAN,
|
|
|
|
MODE_EXITSPAWN,
|
2013-04-29 01:05:46 +00:00
|
|
|
MODE_EXITSPAWN_START_GAME,
|
2013-03-23 04:17:39 +00:00
|
|
|
MODE_EXITSPAWN_MULTIMAN,
|
2013-01-17 09:40:35 +00:00
|
|
|
MODE_OSK_ENTRY_SUCCESS,
|
|
|
|
MODE_OSK_ENTRY_FAIL,
|
2014-02-18 01:18:34 +00:00
|
|
|
MODE_CLEAR_INPUT,
|
2013-01-11 03:39:24 +00:00
|
|
|
};
|
|
|
|
|
2013-03-17 17:16:34 +00:00
|
|
|
enum sound_mode_enums
|
|
|
|
{
|
|
|
|
SOUND_MODE_NORMAL = 0,
|
|
|
|
#ifdef HAVE_RSOUND
|
|
|
|
SOUND_MODE_RSOUND,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_HEADSET
|
|
|
|
SOUND_MODE_HEADSET,
|
|
|
|
#endif
|
|
|
|
SOUND_MODE_LAST
|
|
|
|
};
|
|
|
|
|
2014-06-01 03:06:55 +00:00
|
|
|
struct defaults
|
|
|
|
{
|
2014-07-19 22:51:44 +00:00
|
|
|
char menu_config_dir[PATH_MAX];
|
2014-06-01 03:06:55 +00:00
|
|
|
char config_path[PATH_MAX];
|
2014-06-02 06:55:47 +00:00
|
|
|
char core_path[PATH_MAX];
|
2014-06-01 03:06:55 +00:00
|
|
|
char autoconfig_dir[PATH_MAX];
|
2014-06-01 03:52:16 +00:00
|
|
|
char audio_filter_dir[PATH_MAX];
|
2014-06-01 03:06:55 +00:00
|
|
|
char assets_dir[PATH_MAX];
|
|
|
|
char core_dir[PATH_MAX];
|
|
|
|
char core_info_dir[PATH_MAX];
|
|
|
|
char overlay_dir[PATH_MAX];
|
|
|
|
char port_dir[PATH_MAX];
|
|
|
|
char shader_dir[PATH_MAX];
|
|
|
|
char savestate_dir[PATH_MAX];
|
|
|
|
char sram_dir[PATH_MAX];
|
|
|
|
char screenshot_dir[PATH_MAX];
|
|
|
|
char system_dir[PATH_MAX];
|
2014-06-12 16:06:29 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int out_latency;
|
2014-06-12 23:10:14 +00:00
|
|
|
float video_refresh_rate;
|
|
|
|
bool video_threaded_enable;
|
2014-06-12 16:06:29 +00:00
|
|
|
} settings;
|
2014-06-01 03:06:55 +00:00
|
|
|
};
|
|
|
|
|
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];
|
2013-02-23 13:49:49 +00:00
|
|
|
char gl_context[32];
|
2014-08-11 21:57:57 +00:00
|
|
|
float scale;
|
2010-12-29 18:18:37 +00:00
|
|
|
bool fullscreen;
|
2012-10-05 12:15:54 +00:00
|
|
|
bool windowed_fullscreen;
|
2012-10-12 19:15:58 +00:00
|
|
|
unsigned monitor_index;
|
2010-12-29 18:00:21 +00:00
|
|
|
unsigned fullscreen_x;
|
|
|
|
unsigned fullscreen_y;
|
|
|
|
bool vsync;
|
2013-05-03 12:04:29 +00:00
|
|
|
bool hard_sync;
|
2013-08-30 07:35:13 +00:00
|
|
|
bool black_frame_insertion;
|
2013-09-01 11:20:10 +00:00
|
|
|
unsigned swap_interval;
|
2013-05-26 11:43:24 +00:00
|
|
|
unsigned hard_sync_frames;
|
2014-08-28 18:54:42 +00:00
|
|
|
unsigned frame_delay;
|
2014-08-11 09:00:11 +00:00
|
|
|
#ifdef GEKKO
|
2014-08-10 20:48:00 +00:00
|
|
|
unsigned viwidth;
|
2014-08-11 09:00:11 +00:00
|
|
|
#endif
|
2010-12-29 18:00:21 +00:00
|
|
|
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;
|
2012-04-09 20:19:51 +00:00
|
|
|
bool aspect_ratio_auto;
|
2013-01-29 18:28:33 +00:00
|
|
|
bool scale_integer;
|
2012-10-15 04:24:39 +00:00
|
|
|
unsigned aspect_ratio_idx;
|
2013-09-22 09:45:04 +00:00
|
|
|
unsigned rotation;
|
2013-04-06 23:38:11 +00:00
|
|
|
|
|
|
|
char shader_path[PATH_MAX];
|
|
|
|
bool shader_enable;
|
|
|
|
|
2014-08-19 17:38:33 +00:00
|
|
|
char softfilter_plugin[PATH_MAX];
|
2011-11-18 14:14:56 +00:00
|
|
|
float refresh_rate;
|
2013-02-16 01:21:43 +00:00
|
|
|
bool threaded;
|
2011-01-23 02:16:14 +00:00
|
|
|
|
2014-04-15 04:19:24 +00:00
|
|
|
char filter_dir[PATH_MAX];
|
2012-01-02 12:32:25 +00:00
|
|
|
char shader_dir[PATH_MAX];
|
2011-03-06 17:19:31 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char font_path[PATH_MAX];
|
2013-01-11 20:04:51 +00:00
|
|
|
float font_size;
|
2011-11-09 23:15:41 +00:00
|
|
|
bool font_enable;
|
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-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 post_filter_record;
|
2012-08-25 20:38:49 +00:00
|
|
|
bool gpu_record;
|
2012-08-26 19:18:00 +00:00
|
|
|
bool gpu_screenshot;
|
2011-08-11 03:25:31 +00:00
|
|
|
|
2012-04-01 14:12:04 +00:00
|
|
|
bool allow_rotate;
|
2014-04-19 14:37:39 +00:00
|
|
|
bool shared_context;
|
2010-12-29 18:00:21 +00:00
|
|
|
} video;
|
|
|
|
|
2014-01-27 00:32:05 +00:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
char driver[32];
|
|
|
|
} menu;
|
|
|
|
#endif
|
|
|
|
|
2013-11-11 13:26:57 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
char driver[32];
|
|
|
|
char device[PATH_MAX];
|
2014-04-06 20:59:16 +00:00
|
|
|
bool allow;
|
2013-11-11 13:26:57 +00:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
} camera;
|
|
|
|
|
2013-12-19 00:51:51 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
char driver[32];
|
2014-04-06 20:59:16 +00:00
|
|
|
bool allow;
|
2013-12-19 00:51:51 +00:00
|
|
|
int update_interval_ms;
|
|
|
|
int update_interval_distance;
|
|
|
|
} location;
|
|
|
|
|
2013-11-12 23:27:31 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
char driver[32];
|
2014-03-02 05:07:18 +00:00
|
|
|
bool enable;
|
2013-11-12 23:27:31 +00:00
|
|
|
} osk;
|
|
|
|
|
2010-12-29 18:00:21 +00:00
|
|
|
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;
|
2014-06-13 00:15:10 +00:00
|
|
|
unsigned block_frames;
|
2012-01-02 12:32:25 +00:00
|
|
|
char device[PATH_MAX];
|
2010-12-29 18:00:21 +00:00
|
|
|
unsigned latency;
|
|
|
|
bool sync;
|
2011-05-13 19:05:28 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char dsp_plugin[PATH_MAX];
|
2014-04-27 16:15:41 +00:00
|
|
|
char filter_dir[PATH_MAX];
|
2012-02-14 00:16:37 +00:00
|
|
|
|
|
|
|
bool rate_control;
|
|
|
|
float rate_control_delta;
|
2012-11-03 13:15:03 +00:00
|
|
|
float volume; // dB scale
|
2013-02-08 10:49:51 +00:00
|
|
|
char resampler[32];
|
2010-12-29 18:00:21 +00:00
|
|
|
} audio;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2010-12-29 19:05:57 +00:00
|
|
|
char driver[32];
|
2013-05-04 08:22:31 +00:00
|
|
|
char joypad_driver[32];
|
2013-12-08 15:05:05 +00:00
|
|
|
char keyboard_layout[64];
|
2012-07-07 15:19:32 +00:00
|
|
|
struct retro_keybind binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
|
2013-04-26 12:36:36 +00:00
|
|
|
|
|
|
|
// Set by autoconfiguration in joypad_autoconfig_dir. Does not override main binds.
|
|
|
|
struct retro_keybind autoconf_binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
|
2013-04-26 13:02:18 +00:00
|
|
|
bool autoconfigured[MAX_PLAYERS];
|
2013-04-26 12:36:36 +00:00
|
|
|
|
2013-09-22 09:08:09 +00:00
|
|
|
unsigned libretro_device[MAX_PLAYERS];
|
2014-01-08 16:31:14 +00:00
|
|
|
unsigned analog_dpad_mode[MAX_PLAYERS];
|
2013-09-22 09:08:09 +00:00
|
|
|
|
2010-12-29 19:05:57 +00:00
|
|
|
float axis_threshold;
|
2012-01-30 00:20:35 +00:00
|
|
|
int joypad_map[MAX_PLAYERS];
|
2013-03-13 15:06:13 +00:00
|
|
|
unsigned device[MAX_PLAYERS];
|
2013-03-15 00:22:52 +00:00
|
|
|
char device_names[MAX_PLAYERS][64];
|
2013-01-05 03:58:30 +00:00
|
|
|
bool autodetect_enable;
|
2011-02-20 11:12:53 +00:00
|
|
|
bool netplay_client_swap_input;
|
2012-10-01 20:15:48 +00:00
|
|
|
|
|
|
|
unsigned turbo_period;
|
|
|
|
unsigned turbo_duty_cycle;
|
2012-12-20 19:23:53 +00:00
|
|
|
|
|
|
|
char overlay[PATH_MAX];
|
2013-02-02 01:29:33 +00:00
|
|
|
float overlay_opacity;
|
2013-05-17 21:37:48 +00:00
|
|
|
float overlay_scale;
|
2013-04-26 12:36:36 +00:00
|
|
|
|
|
|
|
char autoconfig_dir[PATH_MAX];
|
2010-12-29 18:00:21 +00:00
|
|
|
} input;
|
2010-12-30 12:54:49 +00:00
|
|
|
|
2014-08-01 23:20:39 +00:00
|
|
|
int state_slot;
|
|
|
|
|
2013-04-04 11:58:30 +00:00
|
|
|
char core_options_path[PATH_MAX];
|
2014-07-28 01:28:27 +00:00
|
|
|
char content_history_path[PATH_MAX];
|
2014-08-12 02:57:31 +00:00
|
|
|
unsigned content_history_size;
|
2013-04-04 11:58:30 +00:00
|
|
|
|
2012-04-07 10:17:40 +00:00
|
|
|
char libretro[PATH_MAX];
|
2014-05-09 16:51:20 +00:00
|
|
|
char libretro_directory[PATH_MAX];
|
2014-03-01 11:02:48 +00:00
|
|
|
unsigned libretro_log_level;
|
2013-10-10 22:18:11 +00:00
|
|
|
char libretro_info_path[PATH_MAX];
|
2012-01-02 12:32:25 +00:00
|
|
|
char cheat_database[PATH_MAX];
|
|
|
|
char cheat_settings_path[PATH_MAX];
|
2011-01-31 17:06:57 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char screenshot_directory[PATH_MAX];
|
2012-06-11 22:28:34 +00:00
|
|
|
char system_directory[PATH_MAX];
|
2011-05-15 15:16:29 +00:00
|
|
|
|
2014-04-04 15:33:19 +00:00
|
|
|
char extraction_directory[PATH_MAX];
|
|
|
|
|
2011-01-31 17:06:57 +00:00
|
|
|
bool rewind_enable;
|
2011-11-01 20:00:41 +00:00
|
|
|
size_t rewind_buffer_size;
|
2011-02-01 16:30:18 +00:00
|
|
|
unsigned rewind_granularity;
|
2011-02-05 20:45:44 +00:00
|
|
|
|
2012-03-04 11:01:07 +00:00
|
|
|
float slowmotion_ratio;
|
2013-08-07 20:24:12 +00:00
|
|
|
float fastforward_ratio;
|
2012-03-04 11:01:07 +00:00
|
|
|
|
2011-02-05 20:45:44 +00:00
|
|
|
bool pause_nonactive;
|
2011-02-10 20:16:59 +00:00
|
|
|
unsigned autosave_interval;
|
2011-09-16 13:32:21 +00:00
|
|
|
|
|
|
|
bool block_sram_overwrite;
|
2011-09-27 13:31:25 +00:00
|
|
|
bool savestate_auto_index;
|
2012-06-02 19:33:37 +00:00
|
|
|
bool savestate_auto_save;
|
2013-01-24 18:24:40 +00:00
|
|
|
bool savestate_auto_load;
|
2012-05-27 12:12:29 +00:00
|
|
|
|
|
|
|
bool network_cmd_enable;
|
|
|
|
uint16_t network_cmd_port;
|
2012-07-24 00:47:28 +00:00
|
|
|
bool stdin_cmd_enable;
|
2013-03-17 20:37:41 +00:00
|
|
|
|
2013-12-25 01:31:35 +00:00
|
|
|
char content_directory[PATH_MAX];
|
2014-05-10 03:12:31 +00:00
|
|
|
char assets_directory[PATH_MAX];
|
2013-11-08 03:36:16 +00:00
|
|
|
#if defined(HAVE_MENU)
|
2014-06-10 00:06:10 +00:00
|
|
|
char menu_content_directory[PATH_MAX];
|
|
|
|
char menu_config_directory[PATH_MAX];
|
|
|
|
bool menu_show_start_screen;
|
2013-03-17 20:37:41 +00:00
|
|
|
#endif
|
2013-10-10 23:19:54 +00:00
|
|
|
bool fps_show;
|
2014-04-14 04:07:17 +00:00
|
|
|
bool load_dummy_on_core_shutdown;
|
2014-01-01 19:44:20 +00:00
|
|
|
|
|
|
|
bool core_specific_config;
|
2014-08-01 03:04:59 +00:00
|
|
|
|
|
|
|
char username[32];
|
2014-08-01 05:00:32 +00:00
|
|
|
unsigned int user_language;
|
2014-08-12 01:36:26 +00:00
|
|
|
|
|
|
|
bool config_save_on_exit;
|
2010-12-29 18:00:21 +00:00
|
|
|
};
|
|
|
|
|
2012-10-27 22:38:31 +00:00
|
|
|
typedef struct rarch_resolution
|
2012-10-15 04:24:39 +00:00
|
|
|
{
|
|
|
|
unsigned idx;
|
|
|
|
unsigned id;
|
|
|
|
} rarch_resolution_t;
|
|
|
|
|
2012-10-27 22:38:31 +00:00
|
|
|
typedef struct rarch_viewport
|
2012-10-15 04:24:39 +00:00
|
|
|
{
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2013-01-11 15:23:04 +00:00
|
|
|
unsigned full_width;
|
|
|
|
unsigned full_height;
|
2012-10-15 04:24:39 +00:00
|
|
|
} rarch_viewport_t;
|
|
|
|
|
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
|
|
|
|
{
|
2014-07-17 22:39:31 +00:00
|
|
|
bool verbosity;
|
2014-06-01 20:06:52 +00:00
|
|
|
bool perfcnt_enable;
|
2010-12-29 18:18:37 +00:00
|
|
|
bool audio_active;
|
|
|
|
bool video_active;
|
2013-11-11 13:26:57 +00:00
|
|
|
bool camera_active;
|
2013-12-19 00:51:51 +00:00
|
|
|
bool location_active;
|
2013-11-12 23:27:31 +00:00
|
|
|
bool osk_active;
|
2011-07-09 06:37:08 +00:00
|
|
|
bool force_fullscreen;
|
2010-12-29 18:43:17 +00:00
|
|
|
|
2014-07-28 17:49:07 +00:00
|
|
|
struct string_list *temporary_content;
|
2014-04-04 12:58:42 +00:00
|
|
|
|
2014-08-15 15:24:28 +00:00
|
|
|
content_playlist_t *history;
|
2014-09-03 12:57:29 +00:00
|
|
|
core_info_list_t *core_info;
|
|
|
|
core_info_t *core_info_current;
|
2014-07-25 18:52:36 +00:00
|
|
|
|
2014-08-12 01:19:02 +00:00
|
|
|
uint32_t content_crc;
|
2011-01-12 17:05:57 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char gb_rom_path[PATH_MAX];
|
|
|
|
char bsx_rom_path[PATH_MAX];
|
|
|
|
char sufami_rom_path[2][PATH_MAX];
|
2011-02-11 13:27:19 +00:00
|
|
|
bool has_set_save_path;
|
|
|
|
bool has_set_state_path;
|
2013-09-22 09:08:09 +00:00
|
|
|
bool has_set_libretro_device[MAX_PLAYERS];
|
2013-12-28 22:29:34 +00:00
|
|
|
bool has_set_libretro;
|
2014-05-09 16:51:20 +00:00
|
|
|
bool has_set_libretro_directory;
|
2014-05-26 09:07:59 +00:00
|
|
|
bool has_set_verbosity;
|
2011-01-12 17:05:57 +00:00
|
|
|
|
2014-06-09 22:01:03 +00:00
|
|
|
bool has_set_netplay_mode;
|
2014-08-01 03:04:59 +00:00
|
|
|
bool has_set_username;
|
2014-06-09 22:01:03 +00:00
|
|
|
bool has_set_netplay_ip_address;
|
|
|
|
bool has_set_netplay_delay_frames;
|
|
|
|
bool has_set_netplay_ip_port;
|
|
|
|
|
2014-01-02 16:25:05 +00:00
|
|
|
// Config associated with global "default" config.
|
2012-01-02 12:32:25 +00:00
|
|
|
char config_path[PATH_MAX];
|
2012-09-10 22:10:44 +00:00
|
|
|
char append_config_path[PATH_MAX];
|
2013-05-05 14:29:32 +00:00
|
|
|
char input_config_path[PATH_MAX];
|
2012-11-26 01:46:40 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_FILE_LOGGER
|
|
|
|
char default_log_file[PATH_MAX];
|
|
|
|
#endif
|
2011-01-23 01:48:06 +00:00
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char basename[PATH_MAX];
|
2012-04-07 09:55:37 +00:00
|
|
|
char fullpath[PATH_MAX];
|
2014-04-04 12:58:42 +00:00
|
|
|
|
2014-09-02 15:05:15 +00:00
|
|
|
#ifdef HAVE_COMPRESSION
|
|
|
|
// In case of a compressed archive, this is the path to the archive. Fullpath contains everything
|
|
|
|
char carchive_path[PATH_MAX];
|
|
|
|
|
|
|
|
// True, in case of a compressed archive containing the rom.
|
|
|
|
bool is_carchive;
|
|
|
|
#endif
|
|
|
|
|
2014-07-28 18:01:27 +00:00
|
|
|
// A list of save types and associated paths for all content.
|
2014-04-04 12:58:42 +00:00
|
|
|
struct string_list *savefiles;
|
|
|
|
|
2014-07-28 18:01:27 +00:00
|
|
|
// For --subsystem content.
|
2014-04-04 12:58:42 +00:00
|
|
|
char subsystem[256];
|
|
|
|
struct string_list *subsystem_fullpaths;
|
|
|
|
|
|
|
|
char savefile_name[PATH_MAX];
|
2012-01-02 12:32:25 +00:00
|
|
|
char savestate_name[PATH_MAX];
|
2011-08-17 22:24:57 +00:00
|
|
|
|
2013-04-16 10:22:27 +00:00
|
|
|
// Used on reentrancy to use a savestate dir.
|
|
|
|
char savefile_dir[PATH_MAX];
|
|
|
|
char savestate_dir[PATH_MAX];
|
|
|
|
|
2013-05-22 20:31:16 +00:00
|
|
|
#ifdef HAVE_OVERLAY
|
|
|
|
char overlay_dir[PATH_MAX];
|
|
|
|
#endif
|
|
|
|
|
2012-03-20 22:45:58 +00:00
|
|
|
bool block_patch;
|
2011-08-17 22:24:57 +00:00
|
|
|
bool ups_pref;
|
|
|
|
bool bps_pref;
|
2012-03-20 22:08:34 +00:00
|
|
|
bool ips_pref;
|
2012-01-02 12:32:25 +00:00
|
|
|
char ups_name[PATH_MAX];
|
|
|
|
char bps_name[PATH_MAX];
|
2012-03-20 22:08:34 +00:00
|
|
|
char ips_name[PATH_MAX];
|
2011-01-03 19:46:50 +00:00
|
|
|
|
2011-01-23 22:09:54 +00:00
|
|
|
|
2013-08-07 20:24:12 +00:00
|
|
|
struct
|
|
|
|
{
|
2013-12-17 18:10:21 +00:00
|
|
|
retro_time_t minimum_frame_time;
|
|
|
|
retro_time_t last_frame_time;
|
2013-08-07 20:24:12 +00:00
|
|
|
} frame_limit;
|
|
|
|
|
2011-10-27 21:40:34 +00:00
|
|
|
struct
|
|
|
|
{
|
2012-04-05 09:47:43 +00:00
|
|
|
struct retro_system_info info;
|
2012-04-07 09:55:37 +00:00
|
|
|
struct retro_system_av_info av_info;
|
2013-03-17 21:05:15 +00:00
|
|
|
float aspect_ratio;
|
2012-02-06 14:51:35 +00:00
|
|
|
|
2012-04-01 17:20:37 +00:00
|
|
|
unsigned rotation;
|
2012-05-22 18:14:07 +00:00
|
|
|
bool shutdown;
|
2012-06-01 14:50:38 +00:00
|
|
|
unsigned performance_level;
|
2012-10-19 23:12:02 +00:00
|
|
|
enum retro_pixel_format pix_fmt;
|
2012-08-15 18:43:26 +00:00
|
|
|
|
2013-01-10 07:46:46 +00:00
|
|
|
bool block_extract;
|
2012-08-15 18:43:26 +00:00
|
|
|
bool force_nonblock;
|
2014-08-12 02:57:31 +00:00
|
|
|
bool no_content;
|
2012-09-09 21:35:23 +00:00
|
|
|
|
2012-10-01 20:15:48 +00:00
|
|
|
const char *input_desc_btn[MAX_PLAYERS][RARCH_FIRST_CUSTOM_BIND];
|
2013-01-09 06:07:46 +00:00
|
|
|
char valid_extensions[PATH_MAX];
|
2012-11-26 01:23:31 +00:00
|
|
|
|
|
|
|
retro_keyboard_event_t key_event;
|
2013-09-14 15:26:10 +00:00
|
|
|
|
|
|
|
struct retro_audio_callback audio_callback;
|
2013-07-14 11:09:53 +00:00
|
|
|
|
2013-02-21 22:44:07 +00:00
|
|
|
struct retro_disk_control_callback disk_control;
|
2013-03-27 15:15:15 +00:00
|
|
|
struct retro_hw_render_callback hw_render_callback;
|
2013-11-12 15:00:18 +00:00
|
|
|
struct retro_camera_callback camera_callback;
|
2013-12-19 01:54:46 +00:00
|
|
|
struct retro_location_callback location_callback;
|
2013-04-04 11:58:30 +00:00
|
|
|
|
2013-07-14 11:43:01 +00:00
|
|
|
struct retro_frame_time_callback frame_time;
|
|
|
|
retro_usec_t frame_time_last;
|
|
|
|
|
2013-04-04 11:58:30 +00:00
|
|
|
core_option_manager_t *core_options;
|
2014-04-04 12:58:42 +00:00
|
|
|
|
2014-04-04 15:04:01 +00:00
|
|
|
struct retro_subsystem_info *special;
|
2014-04-04 12:58:42 +00:00
|
|
|
unsigned num_special;
|
2014-04-12 11:22:24 +00:00
|
|
|
|
|
|
|
struct retro_controller_info *ports;
|
|
|
|
unsigned num_ports;
|
2011-10-27 21:40:34 +00:00
|
|
|
} system;
|
|
|
|
|
2011-01-14 14:34:38 +00:00
|
|
|
struct
|
|
|
|
{
|
2013-02-08 10:49:51 +00:00
|
|
|
void *resampler_data;
|
|
|
|
const rarch_resampler_t *resampler;
|
2011-02-06 12:29:48 +00:00
|
|
|
|
2011-01-14 14:34:38 +00:00
|
|
|
float *data;
|
2012-07-06 15:36:37 +00:00
|
|
|
|
2011-01-14 14:34:38 +00:00
|
|
|
size_t data_ptr;
|
|
|
|
size_t chunk_size;
|
|
|
|
size_t nonblock_chunk_size;
|
|
|
|
size_t block_chunk_size;
|
|
|
|
|
2011-10-15 14:16:13 +00:00
|
|
|
double src_ratio;
|
2014-07-23 05:15:57 +00:00
|
|
|
float in_rate;
|
2011-10-15 14:16:13 +00:00
|
|
|
|
2011-01-15 19:37:42 +00:00
|
|
|
bool use_float;
|
2011-11-26 14:54:58 +00:00
|
|
|
bool mute;
|
2011-01-15 19:37:42 +00:00
|
|
|
|
2013-02-16 11:30:26 +00:00
|
|
|
float *outsamples;
|
2011-01-14 14:34:38 +00:00
|
|
|
int16_t *conv_outsamples;
|
2011-05-13 19:05:28 +00:00
|
|
|
|
2011-10-15 12:33:41 +00:00
|
|
|
int16_t *rewind_buf;
|
|
|
|
size_t rewind_ptr;
|
|
|
|
size_t rewind_size;
|
|
|
|
|
2014-05-20 10:28:33 +00:00
|
|
|
rarch_dsp_filter_t *dsp;
|
2012-02-14 00:16:37 +00:00
|
|
|
|
|
|
|
bool rate_control;
|
|
|
|
double orig_src_ratio;
|
|
|
|
size_t driver_buffer_size;
|
2012-11-03 13:15:03 +00:00
|
|
|
|
|
|
|
float volume_db;
|
|
|
|
float volume_gain;
|
2013-02-04 20:46:56 +00:00
|
|
|
} audio_data;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2013-01-18 09:38:43 +00:00
|
|
|
#define AUDIO_BUFFER_FREE_SAMPLES_COUNT (8 * 1024)
|
|
|
|
unsigned buffer_free_samples[AUDIO_BUFFER_FREE_SAMPLES_COUNT];
|
|
|
|
uint64_t buffer_free_samples_count;
|
2013-02-04 20:46:56 +00:00
|
|
|
|
2013-02-10 00:42:56 +00:00
|
|
|
#define MEASURE_FRAME_TIME_SAMPLES_COUNT (2 * 1024)
|
2013-12-17 18:10:21 +00:00
|
|
|
retro_time_t frame_time_samples[MEASURE_FRAME_TIME_SAMPLES_COUNT];
|
2013-02-05 08:41:10 +00:00
|
|
|
uint64_t frame_time_samples_count;
|
2013-02-04 20:46:56 +00:00
|
|
|
} measure_data;
|
2011-01-14 14:34:38 +00:00
|
|
|
|
2011-03-07 18:12:14 +00:00
|
|
|
struct
|
|
|
|
{
|
2014-04-14 20:56:15 +00:00
|
|
|
rarch_softfilter_t *filter;
|
|
|
|
|
2014-04-14 22:03:55 +00:00
|
|
|
void *buffer;
|
2011-03-07 18:12:14 +00:00
|
|
|
unsigned scale;
|
2014-04-14 22:03:55 +00:00
|
|
|
unsigned out_bpp;
|
|
|
|
bool out_rgb32;
|
2011-03-07 18:12:14 +00:00
|
|
|
} filter;
|
|
|
|
|
2011-01-23 01:23:20 +00:00
|
|
|
msg_queue_t *msg_queue;
|
|
|
|
|
2013-08-25 13:51:42 +00:00
|
|
|
bool exec;
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Rewind support.
|
2011-01-31 15:48:42 +00:00
|
|
|
state_manager_t *state_manager;
|
2011-12-27 17:19:45 +00:00
|
|
|
size_t state_size;
|
2011-01-31 16:24:31 +00:00
|
|
|
bool frame_is_reverse;
|
2011-01-31 15:48:42 +00:00
|
|
|
|
2011-11-20 19:19:05 +00:00
|
|
|
// Movie playback/recording support.
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
bsv_movie_t *movie;
|
2012-01-02 12:32:25 +00:00
|
|
|
char movie_path[PATH_MAX];
|
2011-11-20 19:19:05 +00:00
|
|
|
bool movie_playback;
|
|
|
|
|
|
|
|
// Immediate playback/recording.
|
2012-01-02 12:32:25 +00:00
|
|
|
char movie_start_path[PATH_MAX];
|
2011-11-20 19:19:05 +00:00
|
|
|
bool movie_start_recording;
|
|
|
|
bool movie_start_playback;
|
|
|
|
bool movie_end;
|
|
|
|
} bsv;
|
|
|
|
|
2013-11-16 14:54:50 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
bool (*cb_init)(void *data);
|
|
|
|
bool (*cb_callback)(void *data);
|
|
|
|
} osk;
|
|
|
|
|
2011-11-20 19:19:05 +00:00
|
|
|
bool sram_load_disable;
|
|
|
|
bool sram_save_disable;
|
2012-01-14 13:08:43 +00:00
|
|
|
bool use_sram;
|
2011-11-18 17:03:24 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Pausing support
|
2011-02-05 19:46:58 +00:00
|
|
|
bool is_paused;
|
2011-10-17 19:30:58 +00:00
|
|
|
bool is_oneshot;
|
2012-03-04 11:01:07 +00:00
|
|
|
bool is_slowmotion;
|
2011-02-05 19:46:58 +00:00
|
|
|
|
2012-10-01 20:15:48 +00:00
|
|
|
// Turbo support
|
|
|
|
bool turbo_frame_enable[MAX_PLAYERS];
|
|
|
|
uint16_t turbo_enable[MAX_PLAYERS];
|
|
|
|
unsigned turbo_count;
|
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Autosave support.
|
2014-04-04 12:58:42 +00:00
|
|
|
autosave_t **autosave;
|
|
|
|
unsigned num_autosave;
|
2011-02-10 20:16:59 +00:00
|
|
|
|
2011-02-18 22:51:51 +00:00
|
|
|
// Netplay.
|
2011-11-30 15:41:00 +00:00
|
|
|
#ifdef HAVE_NETPLAY
|
2011-02-13 15:40:24 +00:00
|
|
|
netplay_t *netplay;
|
2012-01-02 12:32:25 +00:00
|
|
|
char netplay_server[PATH_MAX];
|
2011-02-13 15:40:24 +00:00
|
|
|
bool netplay_enable;
|
2011-02-13 16:45:14 +00:00
|
|
|
bool netplay_is_client;
|
2012-01-11 18:22:18 +00:00
|
|
|
bool netplay_is_spectate;
|
2011-02-15 14:32:26 +00:00
|
|
|
unsigned netplay_sync_frames;
|
2014-08-24 17:00:36 +00:00
|
|
|
unsigned netplay_port;
|
2011-11-30 15:41:00 +00:00
|
|
|
#endif
|
2011-02-13 15:40:24 +00:00
|
|
|
|
2014-08-12 03:28:43 +00:00
|
|
|
// Recording.
|
2014-05-04 09:47:55 +00:00
|
|
|
const ffemu_backend_t *rec_driver;
|
|
|
|
void *rec;
|
|
|
|
|
2012-01-02 12:32:25 +00:00
|
|
|
char record_path[PATH_MAX];
|
2012-11-23 21:46:21 +00:00
|
|
|
char record_config[PATH_MAX];
|
2014-08-12 03:28:43 +00:00
|
|
|
bool recording_enable;
|
2011-10-06 21:43:48 +00:00
|
|
|
unsigned record_width;
|
|
|
|
unsigned record_height;
|
2012-08-25 20:38:49 +00:00
|
|
|
|
|
|
|
uint8_t *record_gpu_buffer;
|
|
|
|
size_t record_gpu_width;
|
|
|
|
size_t record_gpu_height;
|
2011-03-17 00:25:44 +00:00
|
|
|
|
2011-10-18 15:26:15 +00:00
|
|
|
struct
|
|
|
|
{
|
2012-04-05 09:47:43 +00:00
|
|
|
const void *data;
|
2011-10-18 15:26:15 +00:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
2012-04-05 09:47:43 +00:00
|
|
|
size_t pitch;
|
2011-10-18 15:26:15 +00:00
|
|
|
} frame_cache;
|
|
|
|
|
2012-12-14 19:33:07 +00:00
|
|
|
unsigned frame_count;
|
2011-03-17 00:25:44 +00:00
|
|
|
char title_buf[64];
|
2011-03-29 16:04:41 +00:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-06-23 13:31:22 +00:00
|
|
|
struct string_list *list;
|
2011-03-29 16:04:41 +00:00
|
|
|
size_t ptr;
|
|
|
|
} shader_dir;
|
2011-04-17 10:29:58 +00:00
|
|
|
|
2014-04-15 04:19:24 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct string_list *list;
|
|
|
|
size_t ptr;
|
|
|
|
} filter_dir;
|
|
|
|
|
2011-05-15 15:16:29 +00:00
|
|
|
char sha256[64 + 1];
|
|
|
|
|
2012-10-15 07:57:08 +00:00
|
|
|
cheat_manager_t *cheat;
|
2012-10-14 18:34:16 +00:00
|
|
|
|
2013-01-10 05:45:44 +00:00
|
|
|
bool block_config_read;
|
|
|
|
|
2012-10-15 07:57:08 +00:00
|
|
|
// Settings and/or global state that is specific to a console-style implementation.
|
2012-10-14 18:34:16 +00:00
|
|
|
struct
|
|
|
|
{
|
2012-10-15 04:24:39 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct
|
2012-10-15 07:57:08 +00:00
|
|
|
{
|
2012-10-15 04:24:39 +00:00
|
|
|
rarch_resolution_t current;
|
|
|
|
rarch_resolution_t initial;
|
2012-10-15 07:57:08 +00:00
|
|
|
uint32_t *list;
|
|
|
|
unsigned count;
|
|
|
|
bool check;
|
|
|
|
} resolutions;
|
2012-10-15 04:24:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
rarch_viewport_t custom_vp;
|
|
|
|
} viewports;
|
|
|
|
|
|
|
|
unsigned gamma_correction;
|
2013-01-11 18:44:13 +00:00
|
|
|
unsigned char flicker_filter_index;
|
|
|
|
unsigned char soft_filter_index;
|
2013-04-06 15:44:07 +00:00
|
|
|
bool pal_enable;
|
2014-08-31 01:50:44 +00:00
|
|
|
bool pal60_enable;
|
2012-10-15 04:24:39 +00:00
|
|
|
} screen;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-10-15 07:57:08 +00:00
|
|
|
unsigned mode;
|
2014-08-31 02:03:04 +00:00
|
|
|
bool system_bgm_enable;
|
2012-10-15 04:24:39 +00:00
|
|
|
} sound;
|
2014-08-31 02:03:04 +00:00
|
|
|
|
2014-08-31 02:07:07 +00:00
|
|
|
bool flickerfilter_enable;
|
2014-08-31 01:38:21 +00:00
|
|
|
bool softfilter_enable;
|
2012-10-14 18:34:16 +00:00
|
|
|
} console;
|
|
|
|
|
2012-12-14 01:06:14 +00:00
|
|
|
uint64_t lifecycle_state;
|
2012-10-14 18:34:16 +00:00
|
|
|
|
2012-11-26 15:59:00 +00:00
|
|
|
// If this is non-NULL. RARCH_LOG and friends will write to this file.
|
|
|
|
FILE *log_file;
|
|
|
|
|
2013-01-05 22:44:49 +00:00
|
|
|
bool main_is_init;
|
2012-01-14 15:08:54 +00:00
|
|
|
bool error_in_init;
|
|
|
|
char error_string[1024];
|
|
|
|
jmp_buf error_sjlj_context;
|
2013-04-14 14:24:19 +00:00
|
|
|
|
2014-07-28 17:51:17 +00:00
|
|
|
bool libretro_no_content;
|
2013-04-14 14:24:19 +00:00
|
|
|
bool libretro_dummy;
|
2014-01-01 19:44:20 +00:00
|
|
|
|
2014-01-02 16:25:05 +00:00
|
|
|
// Config file associated with per-core configs.
|
2014-01-01 20:02:57 +00:00
|
|
|
char core_specific_config_path[PATH_MAX];
|
2010-12-29 18:18:37 +00:00
|
|
|
};
|
|
|
|
|
2013-01-06 02:06:47 +00:00
|
|
|
struct rarch_main_wrap
|
|
|
|
{
|
2014-07-28 17:55:28 +00:00
|
|
|
const char *content_path;
|
2013-01-06 02:06:47 +00:00
|
|
|
const char *sram_path;
|
|
|
|
const char *state_path;
|
|
|
|
const char *config_path;
|
|
|
|
const char *libretro_path;
|
|
|
|
bool verbose;
|
2014-07-28 17:55:28 +00:00
|
|
|
bool no_content;
|
2014-06-03 04:37:57 +00:00
|
|
|
|
|
|
|
bool touched;
|
2013-01-06 02:06:47 +00:00
|
|
|
};
|
|
|
|
|
2014-05-31 22:42:36 +00:00
|
|
|
// Public data structures
|
|
|
|
extern struct settings g_settings;
|
|
|
|
extern struct global g_extern;
|
2014-06-12 16:06:29 +00:00
|
|
|
extern struct defaults g_defaults;
|
2014-05-31 22:42:36 +00:00
|
|
|
/////////
|
|
|
|
|
2012-02-13 19:57:32 +00:00
|
|
|
// Public functions
|
2012-01-28 14:47:02 +00:00
|
|
|
void config_load(void);
|
2012-01-12 21:53:14 +00:00
|
|
|
void config_set_defaults(void);
|
2013-11-11 13:26:57 +00:00
|
|
|
const char *config_get_default_camera(void);
|
2013-12-19 00:51:51 +00:00
|
|
|
const char *config_get_default_location(void);
|
2013-11-12 23:27:31 +00:00
|
|
|
const char *config_get_default_osk(void);
|
2012-05-07 21:20:13 +00:00
|
|
|
const char *config_get_default_video(void);
|
|
|
|
const char *config_get_default_audio(void);
|
2014-07-18 17:11:53 +00:00
|
|
|
const char *config_get_default_audio_resampler(void);
|
2012-05-07 21:20:13 +00:00
|
|
|
const char *config_get_default_input(void);
|
2014-08-27 16:01:44 +00:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
const char *config_get_default_menu(void);
|
|
|
|
#endif
|
2012-01-28 15:49:06 +00:00
|
|
|
|
2012-02-13 18:20:24 +00:00
|
|
|
#include "conf/config_file.h"
|
2014-01-02 16:25:05 +00:00
|
|
|
bool config_load_file(const char *path, bool set_defaults);
|
2013-01-05 21:18:59 +00:00
|
|
|
bool config_save_file(const char *path);
|
2012-02-29 18:25:54 +00:00
|
|
|
bool config_read_keybinds(const char *path);
|
2010-12-29 18:00:21 +00:00
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
void rarch_main_clear_state(void);
|
2012-10-15 19:49:35 +00:00
|
|
|
int rarch_main(int argc, char *argv[]);
|
2014-06-02 23:45:25 +00:00
|
|
|
|
|
|
|
void rarch_main_init_wrap(const struct rarch_main_wrap *args, int *argc, char **argv);
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
int rarch_main_init(int argc, char *argv[]);
|
2014-09-03 16:16:49 +00:00
|
|
|
void rarch_main_set_state(unsigned action);
|
2014-07-22 00:14:52 +00:00
|
|
|
void rarch_main_command(unsigned action);
|
2012-04-21 21:25:32 +00:00
|
|
|
bool rarch_main_iterate(void);
|
|
|
|
void rarch_main_deinit(void);
|
|
|
|
void rarch_render_cached_frame(void);
|
2012-05-29 23:20:14 +00:00
|
|
|
void rarch_deinit_msg_queue(void);
|
2013-03-16 09:35:22 +00:00
|
|
|
void rarch_input_poll(void);
|
2013-04-04 21:10:38 +00:00
|
|
|
void rarch_check_overlay(void);
|
2013-12-09 15:18:58 +00:00
|
|
|
void rarch_check_block_hotkey(void);
|
2014-02-08 15:27:09 +00:00
|
|
|
bool rarch_check_fullscreen(void);
|
2013-04-27 10:01:34 +00:00
|
|
|
void rarch_disk_control_set_eject(bool state, bool log);
|
|
|
|
void rarch_disk_control_set_index(unsigned index);
|
2013-04-27 13:14:59 +00:00
|
|
|
void rarch_disk_control_append_image(const char *path);
|
2014-09-02 22:14:02 +00:00
|
|
|
bool rarch_set_rumble_state(unsigned port,
|
|
|
|
enum retro_rumble_effect effect, bool enable);
|
|
|
|
|
|
|
|
void rarch_playlist_load_content(content_playlist_t *playlist,
|
|
|
|
unsigned index);
|
2014-02-20 21:48:31 +00:00
|
|
|
|
2014-09-04 03:10:44 +00:00
|
|
|
int rarch_defer_core(core_info_list_t *data,
|
2014-09-03 04:23:44 +00:00
|
|
|
const char *dir, const char *path, char *deferred_path,
|
|
|
|
size_t sizeof_deferred_path);
|
|
|
|
|
2012-02-13 19:57:32 +00:00
|
|
|
/////////
|
|
|
|
|
2013-02-09 09:36:39 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-03 13:15:03 +00:00
|
|
|
static inline float db_to_gain(float db)
|
|
|
|
{
|
|
|
|
return powf(10.0f, db / 20.0f);
|
|
|
|
}
|
|
|
|
|
2012-04-21 21:25:32 +00:00
|
|
|
static inline void rarch_fail(int error_code, const char *error)
|
2012-01-14 15:08:54 +00:00
|
|
|
{
|
2012-04-21 21:25:32 +00:00
|
|
|
// We cannot longjmp unless we're in rarch_main_init().
|
2012-01-14 15:08:54 +00:00
|
|
|
// If not, something went very wrong, and we should just exit right away.
|
2012-04-21 21:25:32 +00:00
|
|
|
rarch_assert(g_extern.error_in_init);
|
2012-01-14 15:08:54 +00:00
|
|
|
|
|
|
|
strlcpy(g_extern.error_string, error, sizeof(g_extern.error_string));
|
|
|
|
longjmp(g_extern.error_sjlj_context, error_code);
|
|
|
|
}
|
|
|
|
|
2010-12-24 00:26:36 +00:00
|
|
|
#endif
|
2011-03-07 18:12:14 +00:00
|
|
|
|
|
|
|
|