RetroArch/general.h

823 lines
18 KiB
C
Raw Normal View History

2012-04-21 23:13:50 +02:00
/* RetroArch - A frontend for libretro.
2014-01-01 01:50:59 +01:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2014 - Daniel De Matteis
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
2011-12-24 13:46:12 +01:00
#include "boolean.h"
2010-12-29 19:43:17 +01:00
#include <stdio.h>
2012-01-02 13:32:25 +01:00
#include <limits.h>
#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"
#include "message_queue.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"
2014-05-20 12:28:33 +02:00
#include "audio/dsp_filter.h"
2012-03-16 23:26:57 +01:00
#include "compat/strl.h"
2013-04-04 13:58:30 +02:00
#include "core_options.h"
2013-11-06 14:21:12 +01:00
#include "miscellaneous.h"
#include "gfx/filter.h"
2011-01-07 17:59:53 +01:00
#include "history.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef PACKAGE_VERSION
#ifdef __QNX__
/* FIXME - avoid too many decimal points in number error */
2014-01-20 15:00:21 +01:00
#define PACKAGE_VERSION "1002"
#else
2014-01-20 15:00:21 +01:00
#define PACKAGE_VERSION "1.0.0.2"
#endif
#endif
// Platform-specific headers
// Windows
2013-04-11 22:35:15 +02:00
#ifdef _WIN32
#ifdef _XBOX
#include <xtl.h>
#else
2012-11-23 10:34:40 +01:00
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#endif
#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__) || defined(__QNX__)
#include <unistd.h>
2011-12-13 23:38:05 +01:00
#endif
// PSP
#if defined(PSP)
#include <pspthreadman.h>
#endif
//////////////
#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"
#endif
#include "audio/resampler.h"
2013-02-09 10:36:39 +01:00
#ifdef __cplusplus
extern "C" {
#endif
#define MAX_PLAYERS 8
2011-02-18 23:51:51 +01:00
enum basic_event
{
RARCH_CMD_RESET = 1,
2014-07-22 03:12:56 +02:00
RARCH_CMD_LOAD_CONTENT,
2014-07-22 03:34:28 +02:00
RARCH_CMD_LOAD_CORE,
RARCH_CMD_LOAD_STATE,
RARCH_CMD_SAVE_STATE,
RARCH_CMD_TAKE_SCREENSHOT,
RARCH_CMD_PREPARE_DUMMY,
2014-07-22 03:12:56 +02:00
RARCH_CMD_QUIT,
RARCH_CMD_REINIT,
RARCH_CMD_REWIND,
RARCH_CMD_AUTOSAVE,
2014-08-02 12:08:53 +02:00
RARCH_CMD_AUDIO_STOP,
RARCH_CMD_AUDIO_START,
2014-08-02 12:36:48 +02:00
RARCH_CMD_OVERLAY_INIT,
RARCH_CMD_OVERLAY_FREE,
};
2013-01-11 04:39:24 +01:00
enum menu_enums
{
MODE_GAME = 0,
2013-01-11 04:39:24 +01:00
MODE_LOAD_GAME,
MODE_MENU,
MODE_MENU_WIDESCREEN,
MODE_MENU_HD,
2013-01-11 04:39:24 +01:00
MODE_MENU_PREINIT,
MODE_EXTLAUNCH_MULTIMAN,
MODE_EXITSPAWN,
2013-04-29 03:05:46 +02:00
MODE_EXITSPAWN_START_GAME,
2013-03-23 05:17:39 +01:00
MODE_EXITSPAWN_MULTIMAN,
MODE_VIDEO_TRIPLE_BUFFERING_ENABLE,
MODE_VIDEO_FLICKER_FILTER_ENABLE,
MODE_VIDEO_SOFT_FILTER_ENABLE,
2013-01-17 12:17:02 +01:00
MODE_VIDEO_PAL_ENABLE,
MODE_VIDEO_PAL_TEMPORAL_ENABLE,
MODE_AUDIO_CUSTOM_BGM_ENABLE,
2013-01-17 10:40:35 +01:00
MODE_OSK_ENTRY_SUCCESS,
MODE_OSK_ENTRY_FAIL,
MODE_CLEAR_INPUT,
2013-01-11 04:39:24 +01: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 05:06:55 +02:00
struct defaults
{
char menu_config_dir[PATH_MAX];
2014-06-01 05:06:55 +02:00
char config_path[PATH_MAX];
char core_path[PATH_MAX];
2014-06-01 05:06:55 +02:00
char autoconfig_dir[PATH_MAX];
2014-06-01 05:52:16 +02:00
char audio_filter_dir[PATH_MAX];
2014-06-01 05:06:55 +02: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 18:06:29 +02:00
struct
{
int out_latency;
float video_refresh_rate;
bool video_threaded_enable;
2014-06-12 18:06:29 +02:00
} settings;
2014-06-01 05:06:55 +02:00
};
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
{
char driver[32];
2013-02-23 14:49:49 +01:00
char gl_context[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;
2013-05-03 14:04:29 +02:00
bool hard_sync;
bool black_frame_insertion;
unsigned swap_interval;
unsigned hard_sync_frames;
2010-12-29 19:00:21 +01:00
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;
bool aspect_ratio_auto;
2013-01-29 19:28:33 +01:00
bool scale_integer;
unsigned aspect_ratio_idx;
unsigned rotation;
char shader_path[PATH_MAX];
bool shader_enable;
#ifdef HAVE_FILTERS_BUILTIN
unsigned filter_idx;
#endif
2012-01-02 13:32:25 +01:00
char filter_path[PATH_MAX];
float refresh_rate;
bool threaded;
2011-01-23 03:16:14 +01:00
char filter_dir[PATH_MAX];
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];
float font_size;
2011-11-10 00:15:41 +01:00
bool font_enable;
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
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;
bool gpu_screenshot;
2011-08-11 05:25:31 +02:00
2012-04-01 16:12:04 +02:00
bool allow_rotate;
bool shared_context;
2010-12-29 19:00:21 +01:00
} video;
2014-01-27 01:32:05 +01:00
#ifdef HAVE_MENU
struct
{
char driver[32];
} menu;
#endif
#ifdef HAVE_CAMERA
struct
{
char driver[32];
char device[PATH_MAX];
2014-04-06 22:59:16 +02:00
bool allow;
unsigned width;
unsigned height;
} camera;
#endif
#ifdef HAVE_LOCATION
struct
{
char driver[32];
2014-04-06 22:59:16 +02:00
bool allow;
int update_interval_ms;
int update_interval_distance;
} location;
#endif
#ifdef HAVE_OSK
struct
{
char driver[32];
2014-03-02 06:07:18 +01:00
bool enable;
} osk;
#endif
2010-12-29 19:00:21 +01:00
struct
{
char driver[32];
2010-12-29 19:00:21 +01:00
bool enable;
unsigned out_rate;
unsigned block_frames;
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];
2014-04-27 18:15:41 +02:00
char filter_dir[PATH_MAX];
2012-02-14 01:16:37 +01:00
bool rate_control;
float rate_control_delta;
float volume; // dB scale
2013-02-08 11:49:51 +01:00
char resampler[32];
2010-12-29 19:00:21 +01:00
} audio;
struct
{
char driver[32];
2013-05-04 10:22:31 +02:00
char joypad_driver[32];
char keyboard_layout[64];
2012-07-07 17:19:32 +02:00
struct retro_keybind binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
2013-04-26 14:36:36 +02:00
// Set by autoconfiguration in joypad_autoconfig_dir. Does not override main binds.
struct retro_keybind autoconf_binds[MAX_PLAYERS][RARCH_BIND_LIST_END];
bool autoconfigured[MAX_PLAYERS];
2013-04-26 14:36:36 +02:00
unsigned libretro_device[MAX_PLAYERS];
unsigned analog_dpad_mode[MAX_PLAYERS];
float axis_threshold;
2012-01-30 01:20:35 +01:00
int joypad_map[MAX_PLAYERS];
unsigned device[MAX_PLAYERS];
char device_names[MAX_PLAYERS][64];
bool autodetect_enable;
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];
2013-02-01 20:29:33 -05:00
float overlay_opacity;
float overlay_scale;
2013-04-26 14:36:36 +02:00
char autoconfig_dir[PATH_MAX];
2010-12-29 19:00:21 +01:00
} input;
2010-12-30 13:54:49 +01:00
int state_slot;
2013-04-04 13:58:30 +02:00
char core_options_path[PATH_MAX];
char content_history_path[PATH_MAX];
unsigned game_history_size;
2013-04-04 13:58:30 +02:00
2012-04-07 12:17:40 +02:00
char libretro[PATH_MAX];
char libretro_directory[PATH_MAX];
unsigned libretro_log_level;
char libretro_info_path[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];
char system_directory[PATH_MAX];
2011-05-15 17:16:29 +02:00
char extraction_directory[PATH_MAX];
2011-01-31 18:06:57 +01:00
bool rewind_enable;
size_t rewind_buffer_size;
unsigned rewind_granularity;
2011-02-05 21:45:44 +01:00
2012-03-04 12:01:07 +01:00
float slowmotion_ratio;
float fastforward_ratio;
2012-03-04 12:01:07 +01:00
2011-02-05 21:45:44 +01:00
bool pause_nonactive;
2011-02-10 21:16:59 +01:00
unsigned autosave_interval;
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;
2013-01-24 19:24:40 +01:00
bool savestate_auto_load;
bool network_cmd_enable;
uint16_t network_cmd_port;
2012-07-24 02:47:28 +02:00
bool stdin_cmd_enable;
char content_directory[PATH_MAX];
char assets_directory[PATH_MAX];
#if defined(HAVE_MENU)
char menu_content_directory[PATH_MAX];
char menu_config_directory[PATH_MAX];
bool menu_show_start_screen;
#endif
bool fps_show;
bool load_dummy_on_core_shutdown;
2014-01-01 14:44:20 -05:00
bool core_specific_config;
char username[32];
unsigned int user_language;
2010-12-29 19:00:21 +01:00
};
typedef struct rarch_resolution
{
unsigned idx;
unsigned id;
} rarch_resolution_t;
typedef struct rarch_viewport
{
int x;
int y;
unsigned width;
unsigned height;
2013-01-11 16:23:04 +01:00
unsigned full_width;
unsigned full_height;
} 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 verbosity;
bool perfcnt_enable;
2010-12-29 19:18:37 +01:00
bool audio_active;
bool video_active;
#ifdef HAVE_CAMERA
bool camera_active;
#endif
#ifdef HAVE_LOCATION
bool location_active;
#endif
#ifdef HAVE_OSK
bool osk_active;
#endif
bool force_fullscreen;
2010-12-29 19:43:17 +01:00
struct string_list *temporary_content;
2014-04-04 14:58:42 +02:00
content_history_t *history;
2011-02-02 11:47:05 +01:00
uint32_t cart_crc;
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];
bool has_set_save_path;
bool has_set_state_path;
bool has_set_libretro_device[MAX_PLAYERS];
bool has_set_libretro;
bool has_set_libretro_directory;
bool has_set_verbosity;
bool has_set_netplay_mode;
bool has_set_username;
bool has_set_netplay_ip_address;
bool has_set_netplay_delay_frames;
bool has_set_netplay_ip_port;
#ifdef HAVE_RMENU
char menu_texture_path[PATH_MAX];
#endif
// Config associated with global "default" config.
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];
char input_config_path[PATH_MAX];
#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];
2014-04-04 14:58:42 +02:00
2014-07-28 20:01:27 +02:00
// A list of save types and associated paths for all content.
2014-04-04 14:58:42 +02:00
struct string_list *savefiles;
2014-07-28 20:01:27 +02:00
// For --subsystem content.
2014-04-04 14:58:42 +02:00
char subsystem[256];
struct string_list *subsystem_fullpaths;
char savefile_name[PATH_MAX];
2012-01-02 13:32:25 +01:00
char savestate_name[PATH_MAX];
2011-08-18 00:24:57 +02:00
2013-04-16 12:22:27 +02:00
// Used on reentrancy to use a savestate dir.
char savefile_dir[PATH_MAX];
char savestate_dir[PATH_MAX];
#ifdef HAVE_OVERLAY
char overlay_dir[PATH_MAX];
#endif
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
struct
{
retro_time_t minimum_frame_time;
retro_time_t last_frame_time;
} frame_limit;
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;
float aspect_ratio;
2012-04-01 19:20:37 +02:00
unsigned rotation;
2012-05-22 20:14:07 +02:00
bool shutdown;
unsigned performance_level;
enum retro_pixel_format pix_fmt;
bool block_extract;
bool force_nonblock;
bool no_game;
2012-10-01 22:15:48 +02:00
const char *input_desc_btn[MAX_PLAYERS][RARCH_FIRST_CUSTOM_BIND];
char valid_extensions[PATH_MAX];
retro_keyboard_event_t key_event;
struct retro_audio_callback audio_callback;
struct retro_disk_control_callback disk_control;
2013-03-27 16:15:15 +01:00
struct retro_hw_render_callback hw_render_callback;
struct retro_camera_callback camera_callback;
struct retro_location_callback location_callback;
2013-04-04 13:58:30 +02:00
2013-07-14 13:43:01 +02:00
struct retro_frame_time_callback frame_time;
retro_usec_t frame_time_last;
2013-04-04 13:58:30 +02:00
core_option_manager_t *core_options;
2014-04-04 14:58:42 +02:00
struct retro_subsystem_info *special;
2014-04-04 14:58:42 +02:00
unsigned num_special;
struct retro_controller_info *ports;
unsigned num_ports;
} system;
struct
{
2013-02-08 11:49:51 +01:00
void *resampler_data;
const rarch_resampler_t *resampler;
float *data;
2012-07-06 17:36:37 +02: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;
float in_rate;
2011-10-15 16:16:13 +02:00
bool use_float;
2011-11-26 15:54:58 +01:00
bool mute;
2013-02-16 12:30:26 +01:00
float *outsamples;
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;
2014-05-20 12:28:33 +02:00
rarch_dsp_filter_t *dsp;
2012-02-14 01:16:37 +01:00
bool rate_control;
double orig_src_ratio;
size_t driver_buffer_size;
float volume_db;
float volume_gain;
2013-02-04 21:46:56 +01:00
} audio_data;
struct
{
#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 21:46:56 +01:00
#define MEASURE_FRAME_TIME_SAMPLES_COUNT (2 * 1024)
retro_time_t frame_time_samples[MEASURE_FRAME_TIME_SAMPLES_COUNT];
2013-02-05 09:41:10 +01:00
uint64_t frame_time_samples_count;
2013-02-04 21:46:56 +01:00
} measure_data;
2011-03-07 19:12:14 +01:00
struct
{
rarch_softfilter_t *filter;
2014-04-15 00:03:55 +02:00
void *buffer;
2011-03-07 19:12:14 +01:00
unsigned scale;
2014-04-15 00:03:55 +02:00
unsigned out_bpp;
bool out_rgb32;
2011-03-07 19:12:14 +01:00
} filter;
msg_queue_t *msg_queue;
bool exec;
2011-02-18 23:51:51 +01:00
// Rewind support.
2011-01-31 16:48:42 +01:00
state_manager_t *state_manager;
size_t state_size;
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
#ifdef HAVE_OSK
struct
{
bool (*cb_init)(void *data);
bool (*cb_callback)(void *data);
} osk;
#endif
2011-11-20 20:19:05 +01:00
bool sram_load_disable;
bool sram_save_disable;
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.
2014-04-04 14:58:42 +02:00
autosave_t **autosave;
unsigned num_autosave;
2011-02-10 21:16:59 +01:00
2011-02-18 23:51:51 +01:00
// Netplay.
#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;
#endif
2011-02-13 16:40:24 +01:00
2011-02-18 23:51:51 +01:00
// FFmpeg record.
#ifdef HAVE_RECORD
2014-05-04 11:47:55 +02:00
const ffemu_backend_t *rec_driver;
void *rec;
2012-01-02 13:32:25 +01:00
char record_path[PATH_MAX];
char record_config[PATH_MAX];
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;
#endif
2011-03-17 01:25:44 +01:00
struct
{
2012-04-05 11:47:43 +02:00
const void *data;
unsigned width;
unsigned height;
2012-04-05 11:47:43 +02:00
size_t pitch;
} frame_cache;
unsigned frame_count;
2011-03-17 01:25:44 +01:00
char title_buf[64];
struct
{
struct string_list *list;
size_t ptr;
} shader_dir;
2011-04-17 12:29:58 +02:00
struct
{
struct string_list *list;
size_t ptr;
} filter_dir;
2011-05-15 17:16:29 +02:00
char sha256[64 + 1];
2012-10-15 09:57:08 +02:00
cheat_manager_t *cheat;
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.
struct
{
struct
{
struct
2012-10-15 09:57:08 +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;
struct
{
rarch_viewport_t custom_vp;
} viewports;
unsigned gamma_correction;
unsigned char flicker_filter_index;
unsigned char soft_filter_index;
bool pal_enable;
} screen;
struct
{
2012-10-15 09:57:08 +02:00
unsigned mode;
} sound;
} console;
uint64_t lifecycle_state;
// 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;
bool error_in_init;
2013-05-22 15:35:28 +02:00
bool config_save_on_exit;
char error_string[1024];
jmp_buf error_sjlj_context;
2013-04-14 16:24:19 +02:00
bool libretro_no_content;
2013-04-14 16:24:19 +02:00
bool libretro_dummy;
2014-01-01 14:44:20 -05:00
// Config file associated with per-core configs.
2014-01-01 15:02:57 -05:00
char core_specific_config_path[PATH_MAX];
2010-12-29 19:18:37 +01:00
};
2013-01-06 03:06:47 +01:00
struct rarch_main_wrap
{
const char *content_path;
2013-01-06 03:06:47 +01:00
const char *sram_path;
const char *state_path;
const char *config_path;
const char *libretro_path;
bool verbose;
bool no_content;
bool touched;
2013-01-06 03:06:47 +01:00
};
// Public data structures
extern struct settings g_settings;
extern struct global g_extern;
2014-06-12 18:06:29 +02:00
extern struct defaults g_defaults;
/////////
// 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);
#ifdef HAVE_CAMERA
const char *config_get_default_camera(void);
#endif
#ifdef HAVE_LOCATION
const char *config_get_default_location(void);
#endif
#ifdef HAVE_OSK
const char *config_get_default_osk(void);
#endif
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_audio_resampler(void);
2012-05-07 23:20:13 +02:00
const char *config_get_default_input(void);
2012-02-13 19:20:24 +01:00
#include "conf/config_file.h"
bool config_load_file(const char *path, bool set_defaults);
bool config_save_file(const char *path);
2012-02-29 19:25:54 +01:00
bool config_read_keybinds(const char *path);
2010-12-29 19:00:21 +01:00
2012-04-21 23:25:32 +02:00
void rarch_main_clear_state(void);
2013-01-08 22:52:56 +01:00
void rarch_init_system_info(void);
int rarch_main(int argc, char *argv[]);
#ifndef MAX_ARGS
#define MAX_ARGS 32
#endif
void rarch_main_init_wrap(const struct rarch_main_wrap *args, int *argc, char **argv);
2012-04-21 23:25:32 +02:00
int rarch_main_init(int argc, char *argv[]);
void rarch_main_command(unsigned action);
2012-04-21 23:25:32 +02:00
bool rarch_main_iterate(void);
void rarch_main_deinit(void);
void rarch_main_deinit_core(void);
2012-04-21 23:25:32 +02:00
void rarch_render_cached_frame(void);
void rarch_deinit_msg_queue(void);
void rarch_input_poll(void);
2013-04-04 23:10:38 +02:00
void rarch_check_overlay(void);
void rarch_check_block_hotkey(void);
bool rarch_check_fullscreen(void);
2013-04-27 12:01:34 +02:00
void rarch_disk_control_set_eject(bool state, bool log);
void rarch_disk_control_set_index(unsigned index);
2013-04-27 15:14:59 +02:00
void rarch_disk_control_append_image(const char *path);
bool rarch_set_rumble_state(unsigned port, enum retro_rumble_effect effect, bool enable);
#ifdef HAVE_RECORD
void rarch_init_recording(void);
void rarch_deinit_recording(void);
#endif
/////////
2013-02-09 10:36:39 +01:00
#ifdef __cplusplus
}
#endif
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_fail(int error_code, const char *error)
{
2012-04-21 23:25:32 +02:00
// We cannot longjmp unless we're in rarch_main_init().
// 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);
strlcpy(g_extern.error_string, error, sizeof(g_extern.error_string));
longjmp(g_extern.error_sjlj_context, error_code);
}
#endif
2011-03-07 19:12:14 +01:00