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
|
2015-01-07 17:46:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - 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
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2014-10-21 05:05:52 +02:00
|
|
|
#include <boolean.h>
|
2014-10-16 07:29:42 +02:00
|
|
|
#include <stdint.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-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-04-17 13:30:59 +02:00
|
|
|
#include "cheats.h"
|
2014-10-21 08:02:40 +02:00
|
|
|
#include <compat/strl.h>
|
2015-03-15 04:25:49 +01:00
|
|
|
#include <retro_inline.h>
|
2013-04-04 13:58:30 +02:00
|
|
|
#include "core_options.h"
|
2014-09-03 14:57:29 +02:00
|
|
|
#include "core_info.h"
|
2015-02-14 05:52:05 +01:00
|
|
|
#include "gfx/video_viewport.h"
|
2015-03-20 19:15:08 +01:00
|
|
|
#include "settings.h"
|
2014-08-15 17:24:28 +02:00
|
|
|
#include "playlist.h"
|
2014-07-25 20:52:36 +02:00
|
|
|
|
2012-11-23 20:45:15 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-04 15:01:38 +02:00
|
|
|
#ifndef PACKAGE_VERSION
|
2015-01-19 00:57:44 +01:00
|
|
|
#define PACKAGE_VERSION "1.1"
|
2013-07-06 19:18:41 +02:00
|
|
|
#endif
|
2013-07-04 15:01:38 +02:00
|
|
|
|
2014-09-08 17:12:37 +02:00
|
|
|
/* 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
|
2014-10-21 08:02:40 +02:00
|
|
|
#include <compat/posix_string.h>
|
2012-11-23 10:34:40 +01: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
|
|
|
|
|
2013-02-09 10:36:39 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-01-11 01:34:08 +01:00
|
|
|
#ifndef MAX_USERS
|
2015-01-05 01:58:00 +01:00
|
|
|
#define MAX_USERS 16
|
2015-01-11 01:34:08 +01:00
|
|
|
#endif
|
2014-09-03 18:16:49 +02:00
|
|
|
|
2013-03-17 18:16:34 +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
|
|
|
|
{
|
2015-01-07 20:42:36 +01:00
|
|
|
char menu_config_dir[PATH_MAX_LENGTH];
|
|
|
|
char config_path[PATH_MAX_LENGTH];
|
|
|
|
char core_path[PATH_MAX_LENGTH];
|
|
|
|
char autoconfig_dir[PATH_MAX_LENGTH];
|
|
|
|
char audio_filter_dir[PATH_MAX_LENGTH];
|
|
|
|
char video_filter_dir[PATH_MAX_LENGTH];
|
|
|
|
char assets_dir[PATH_MAX_LENGTH];
|
|
|
|
char core_dir[PATH_MAX_LENGTH];
|
|
|
|
char core_info_dir[PATH_MAX_LENGTH];
|
|
|
|
char overlay_dir[PATH_MAX_LENGTH];
|
2015-01-29 20:33:27 +01:00
|
|
|
char osk_overlay_dir[PATH_MAX_LENGTH];
|
2015-01-07 20:42:36 +01:00
|
|
|
char port_dir[PATH_MAX_LENGTH];
|
|
|
|
char shader_dir[PATH_MAX_LENGTH];
|
|
|
|
char savestate_dir[PATH_MAX_LENGTH];
|
|
|
|
char resampler_dir[PATH_MAX_LENGTH];
|
|
|
|
char sram_dir[PATH_MAX_LENGTH];
|
|
|
|
char screenshot_dir[PATH_MAX_LENGTH];
|
|
|
|
char system_dir[PATH_MAX_LENGTH];
|
|
|
|
char playlist_dir[PATH_MAX_LENGTH];
|
|
|
|
char content_history_dir[PATH_MAX_LENGTH];
|
2015-01-28 09:29:11 +01:00
|
|
|
char extraction_dir[PATH_MAX_LENGTH];
|
2015-02-01 12:25:04 +01:00
|
|
|
char database_dir[PATH_MAX_LENGTH];
|
|
|
|
char cursor_dir[PATH_MAX_LENGTH];
|
2015-03-13 00:24:17 +01:00
|
|
|
char cheats_dir[PATH_MAX_LENGTH];
|
2014-06-12 18:06:29 +02:00
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int out_latency;
|
2014-06-13 01:10:14 +02:00
|
|
|
float video_refresh_rate;
|
|
|
|
bool video_threaded_enable;
|
2014-06-12 18:06:29 +02:00
|
|
|
} settings;
|
2014-10-03 13:07:33 +02:00
|
|
|
|
|
|
|
content_playlist_t *history;
|
2014-06-01 05:06:55 +02:00
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* All run-time- / command line flag-related globals go here. */
|
|
|
|
|
2010-12-29 19:18:37 +01:00
|
|
|
struct global
|
|
|
|
{
|
2014-07-18 00:39:31 +02:00
|
|
|
bool verbosity;
|
2014-06-01 22:06:52 +02:00
|
|
|
bool perfcnt_enable;
|
2011-07-09 08:37:08 +02:00
|
|
|
bool force_fullscreen;
|
2014-09-21 09:18:26 +02:00
|
|
|
bool core_shutdown_initiated;
|
2010-12-29 19:43:17 +01:00
|
|
|
|
2014-07-28 19:49:07 +02:00
|
|
|
struct string_list *temporary_content;
|
2014-04-04 14:58:42 +02:00
|
|
|
|
2014-09-03 14:57:29 +02:00
|
|
|
core_info_list_t *core_info;
|
|
|
|
core_info_t *core_info_current;
|
2014-07-25 20:52:36 +02:00
|
|
|
|
2014-08-12 03:19:02 +02:00
|
|
|
uint32_t content_crc;
|
2011-01-12 18:05:57 +01:00
|
|
|
|
2015-01-07 20:42:36 +01:00
|
|
|
char gb_rom_path[PATH_MAX_LENGTH];
|
|
|
|
char bsx_rom_path[PATH_MAX_LENGTH];
|
|
|
|
char sufami_rom_path[2][PATH_MAX_LENGTH];
|
2014-12-04 13:45:56 +01:00
|
|
|
bool has_set_input_descriptors;
|
2011-02-11 14:27:19 +01:00
|
|
|
bool has_set_save_path;
|
|
|
|
bool has_set_state_path;
|
2015-01-05 01:58:00 +01:00
|
|
|
bool has_set_libretro_device[MAX_USERS];
|
2013-12-28 23:29:34 +01:00
|
|
|
bool has_set_libretro;
|
2014-05-09 18:51:20 +02:00
|
|
|
bool has_set_libretro_directory;
|
2014-05-26 11:07:59 +02:00
|
|
|
bool has_set_verbosity;
|
2011-01-12 18:05:57 +01:00
|
|
|
|
2014-06-10 00:01:03 +02:00
|
|
|
bool has_set_netplay_mode;
|
2014-08-01 05:04:59 +02:00
|
|
|
bool has_set_username;
|
2014-06-10 00:01:03 +02:00
|
|
|
bool has_set_netplay_ip_address;
|
|
|
|
bool has_set_netplay_delay_frames;
|
|
|
|
bool has_set_netplay_ip_port;
|
|
|
|
|
2015-01-13 03:13:19 +01:00
|
|
|
bool has_set_ups_pref;
|
|
|
|
bool has_set_bps_pref;
|
|
|
|
bool has_set_ips_pref;
|
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Config associated with global "default" config. */
|
2015-01-07 20:42:36 +01:00
|
|
|
char config_path[PATH_MAX_LENGTH];
|
|
|
|
char append_config_path[PATH_MAX_LENGTH];
|
|
|
|
char input_config_path[PATH_MAX_LENGTH];
|
2012-11-26 02:46:40 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_FILE_LOGGER
|
2015-01-07 20:42:36 +01:00
|
|
|
char default_log_file[PATH_MAX_LENGTH];
|
2012-11-26 02:46:40 +01:00
|
|
|
#endif
|
2011-01-23 02:48:06 +01:00
|
|
|
|
2015-01-07 20:42:36 +01:00
|
|
|
char basename[PATH_MAX_LENGTH];
|
|
|
|
char fullpath[PATH_MAX_LENGTH];
|
2014-04-04 14:58:42 +02:00
|
|
|
|
2014-09-07 05:47:18 +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-09-07 05:47:18 +02:00
|
|
|
/* For --subsystem content. */
|
2015-01-07 20:42:36 +01:00
|
|
|
char subsystem[PATH_MAX_LENGTH];
|
2014-04-04 14:58:42 +02:00
|
|
|
struct string_list *subsystem_fullpaths;
|
|
|
|
|
2015-01-07 20:42:36 +01:00
|
|
|
char savefile_name[PATH_MAX_LENGTH];
|
|
|
|
char savestate_name[PATH_MAX_LENGTH];
|
|
|
|
char cheatfile_name[PATH_MAX_LENGTH];
|
2011-08-18 00:24:57 +02:00
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Used on reentrancy to use a savestate dir. */
|
2015-01-07 20:42:36 +01:00
|
|
|
char savefile_dir[PATH_MAX_LENGTH];
|
|
|
|
char savestate_dir[PATH_MAX_LENGTH];
|
2013-04-16 12:22:27 +02:00
|
|
|
|
2013-05-22 22:31:16 +02:00
|
|
|
#ifdef HAVE_OVERLAY
|
2015-01-07 20:42:36 +01:00
|
|
|
char overlay_dir[PATH_MAX_LENGTH];
|
2015-01-29 20:33:27 +01:00
|
|
|
char osk_overlay_dir[PATH_MAX_LENGTH];
|
2013-05-22 22:31:16 +02:00
|
|
|
#endif
|
|
|
|
|
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;
|
2015-01-07 20:42:36 +01:00
|
|
|
char ups_name[PATH_MAX_LENGTH];
|
|
|
|
char bps_name[PATH_MAX_LENGTH];
|
|
|
|
char ips_name[PATH_MAX_LENGTH];
|
2011-01-03 20:46:50 +01:00
|
|
|
|
2014-10-29 06:26:08 +01:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
unsigned windowed_scale;
|
|
|
|
} pending;
|
2011-01-23 23:09:54 +01:00
|
|
|
|
2013-08-07 22:24:12 +02:00
|
|
|
|
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;
|
2013-03-17 22:05:15 +01:00
|
|
|
float aspect_ratio;
|
2012-02-06 15:51:35 +01:00
|
|
|
|
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;
|
2014-08-12 04:57:31 +02:00
|
|
|
bool no_content;
|
2012-09-09 23:35:23 +02:00
|
|
|
|
2015-01-05 01:58:00 +01:00
|
|
|
const char *input_desc_btn[MAX_USERS][RARCH_FIRST_META_KEY];
|
2015-01-07 20:42:36 +01:00
|
|
|
char valid_extensions[PATH_MAX_LENGTH];
|
2012-11-25 20:23:31 -05:00
|
|
|
|
|
|
|
retro_keyboard_event_t key_event;
|
2013-09-14 17:26:10 +02:00
|
|
|
|
|
|
|
struct retro_audio_callback audio_callback;
|
2013-07-14 13:09:53 +02:00
|
|
|
|
2013-02-21 23:44:07 +01:00
|
|
|
struct retro_disk_control_callback disk_control;
|
2013-03-27 16:15:15 +01:00
|
|
|
struct retro_hw_render_callback hw_render_callback;
|
2013-11-12 16:00:18 +01:00
|
|
|
struct retro_camera_callback camera_callback;
|
2013-12-19 02:54:46 +01:00
|
|
|
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
|
|
|
|
2014-04-04 17:04:01 +02:00
|
|
|
struct retro_subsystem_info *special;
|
2014-04-04 14:58:42 +02:00
|
|
|
unsigned num_special;
|
2014-04-12 13:22:24 +02:00
|
|
|
|
|
|
|
struct retro_controller_info *ports;
|
|
|
|
unsigned num_ports;
|
2011-10-27 23:40:34 +02:00
|
|
|
} system;
|
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
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;
|
2014-07-23 07:15:57 +02:00
|
|
|
float in_rate;
|
2011-10-15 16:16:13 +02:00
|
|
|
|
2011-01-15 20:37:42 +01:00
|
|
|
bool use_float;
|
|
|
|
|
2013-02-16 12:30:26 +01:00
|
|
|
float *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;
|
|
|
|
|
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;
|
2012-11-03 14:15:03 +01:00
|
|
|
|
|
|
|
float volume_gain;
|
2013-02-04 21:46:56 +01:00
|
|
|
} audio_data;
|
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
|
2011-03-07 19:12:14 +01:00
|
|
|
struct
|
|
|
|
{
|
2014-04-14 22:56:15 +02:00
|
|
|
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;
|
|
|
|
|
2014-09-07 07:12:10 +02:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct retro_system_info info;
|
2014-10-23 08:00:45 +02:00
|
|
|
bool bind_mode_keyboard;
|
2014-09-07 07:12:10 +02:00
|
|
|
} menu;
|
|
|
|
#endif
|
|
|
|
|
2015-02-22 06:35:02 +01:00
|
|
|
|
2013-08-25 15:51:42 +02:00
|
|
|
bool exec;
|
|
|
|
|
2015-02-16 18:09:00 +01:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
/* Rewind support. */
|
|
|
|
state_manager_t *state;
|
|
|
|
size_t size;
|
|
|
|
bool frame_is_reverse;
|
|
|
|
} rewind;
|
2011-01-31 16:48:42 +01:00
|
|
|
|
2011-11-20 20:19:05 +01:00
|
|
|
struct
|
|
|
|
{
|
2015-02-16 18:09:00 +01:00
|
|
|
/* Movie playback/recording support. */
|
2011-11-20 20:19:05 +01:00
|
|
|
bsv_movie_t *movie;
|
2015-01-07 20:42:36 +01:00
|
|
|
char movie_path[PATH_MAX_LENGTH];
|
2011-11-20 20:19:05 +01:00
|
|
|
bool movie_playback;
|
2014-10-01 14:33:00 +00:00
|
|
|
bool eof_exit;
|
2011-11-20 20:19:05 +01:00
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Immediate playback/recording. */
|
2015-01-07 20:42:36 +01:00
|
|
|
char movie_start_path[PATH_MAX_LENGTH];
|
2011-11-20 20:19:05 +01:00
|
|
|
bool movie_start_recording;
|
|
|
|
bool movie_start_playback;
|
|
|
|
bool movie_end;
|
|
|
|
} bsv;
|
|
|
|
|
|
|
|
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-05 20:46:58 +01:00
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Turbo support. */
|
2015-01-05 01:58:00 +01:00
|
|
|
bool turbo_frame_enable[MAX_USERS];
|
|
|
|
uint16_t turbo_enable[MAX_USERS];
|
2012-10-01 22:15:48 +02:00
|
|
|
unsigned turbo_count;
|
|
|
|
|
2014-09-07 05:47:18 +02: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-11-30 16:41:00 +01:00
|
|
|
#ifdef HAVE_NETPLAY
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Netplay. */
|
2015-01-07 20:42:36 +01:00
|
|
|
char netplay_server[PATH_MAX_LENGTH];
|
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;
|
2014-08-24 19:00:36 +02:00
|
|
|
unsigned netplay_port;
|
2011-11-30 16:41:00 +01:00
|
|
|
#endif
|
2011-02-13 16:40:24 +01:00
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Recording. */
|
2015-03-07 14:02:50 +01:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
char path[PATH_MAX_LENGTH];
|
|
|
|
char config[PATH_MAX_LENGTH];
|
|
|
|
bool enable;
|
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
|
|
|
|
uint8_t *gpu_buffer;
|
|
|
|
size_t gpu_width;
|
|
|
|
size_t gpu_height;
|
|
|
|
} record;
|
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;
|
|
|
|
|
2014-10-01 13:22:22 +00:00
|
|
|
|
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
|
|
|
|
2014-04-15 06:19:24 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
struct string_list *list;
|
|
|
|
size_t ptr;
|
|
|
|
} filter_dir;
|
|
|
|
|
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;
|
|
|
|
|
2014-09-07 05:47:18 +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
|
|
|
|
{
|
|
|
|
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
|
|
|
|
{
|
2015-02-14 05:52:05 +01:00
|
|
|
video_viewport_t custom_vp;
|
2012-10-15 06:24:39 +02:00
|
|
|
} viewports;
|
|
|
|
|
|
|
|
unsigned gamma_correction;
|
2013-01-11 19:44:13 +01:00
|
|
|
unsigned char flicker_filter_index;
|
|
|
|
unsigned char soft_filter_index;
|
2013-04-06 17:44:07 +02:00
|
|
|
bool pal_enable;
|
2014-08-31 03:50:44 +02:00
|
|
|
bool pal60_enable;
|
2012-10-15 06:24:39 +02:00
|
|
|
} screen;
|
|
|
|
|
|
|
|
struct
|
|
|
|
{
|
2012-10-15 09:57:08 +02:00
|
|
|
unsigned mode;
|
2014-08-31 04:03:04 +02:00
|
|
|
bool system_bgm_enable;
|
2012-10-15 06:24:39 +02:00
|
|
|
} sound;
|
2014-08-31 04:03:04 +02:00
|
|
|
|
2014-08-31 04:07:07 +02:00
|
|
|
bool flickerfilter_enable;
|
2014-08-31 03:38:21 +02:00
|
|
|
bool softfilter_enable;
|
2012-10-14 20:34:16 +02:00
|
|
|
} console;
|
|
|
|
|
2012-12-14 02:06:14 +01:00
|
|
|
uint64_t lifecycle_state;
|
2012-10-14 20:34:16 +02:00
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* If this is non-NULL. RARCH_LOG and friends
|
|
|
|
* will write to this file. */
|
2012-11-26 16:59:00 +01:00
|
|
|
FILE *log_file;
|
|
|
|
|
2013-01-05 23:44:49 +01:00
|
|
|
bool main_is_init;
|
2014-11-24 06:21:52 +01:00
|
|
|
bool content_is_init;
|
2012-01-14 16:08:54 +01:00
|
|
|
bool error_in_init;
|
2015-01-07 20:42:36 +01:00
|
|
|
char error_string[PATH_MAX_LENGTH];
|
2012-01-14 16:08:54 +01:00
|
|
|
jmp_buf error_sjlj_context;
|
2013-04-14 16:24:19 +02:00
|
|
|
|
2014-07-28 19:51:17 +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
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Config file associated with per-core configs. */
|
2015-01-07 20:42:36 +01:00
|
|
|
char core_specific_config_path[PATH_MAX_LENGTH];
|
2014-09-21 06:33:49 +02:00
|
|
|
|
|
|
|
retro_keyboard_event_t frontend_key_event;
|
2010-12-29 19:18:37 +01:00
|
|
|
};
|
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Public data structures. */
|
2014-06-01 00:42:36 +02:00
|
|
|
extern struct global g_extern;
|
2014-06-12 18:06:29 +02:00
|
|
|
extern struct defaults g_defaults;
|
2014-06-01 00:42:36 +02:00
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
/* Public functions. */
|
2012-10-15 21:49:35 +02:00
|
|
|
int rarch_main(int argc, char *argv[]);
|
2015-01-09 17:40:47 +01:00
|
|
|
|
2013-02-09 10:36:39 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-01-13 22:08:20 +01:00
|
|
|
/**
|
|
|
|
* db_to_gain:
|
|
|
|
* @db : Decibels.
|
|
|
|
*
|
|
|
|
* Converts decibels to voltage gain.
|
|
|
|
*
|
|
|
|
* Returns: voltage gain value.
|
|
|
|
**/
|
2015-03-15 04:25:49 +01:00
|
|
|
static INLINE float db_to_gain(float db)
|
2012-11-03 14:15:03 +01:00
|
|
|
{
|
|
|
|
return powf(10.0f, db / 20.0f);
|
|
|
|
}
|
|
|
|
|
2015-01-13 22:08:20 +01:00
|
|
|
/**
|
|
|
|
* rarch_fail:
|
|
|
|
* @error_code : Error code.
|
|
|
|
* @error : Error message to show.
|
|
|
|
*
|
|
|
|
* Sanely kills the program.
|
|
|
|
**/
|
2015-03-15 04:25:49 +01:00
|
|
|
static INLINE void rarch_fail(int error_code, const char *error)
|
2012-01-14 16:08:54 +01:00
|
|
|
{
|
2014-09-07 05:47:18 +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);
|
2012-01-14 16:08:54 +01:00
|
|
|
|
2014-09-07 05:47:18 +02:00
|
|
|
strlcpy(g_extern.error_string, error,
|
|
|
|
sizeof(g_extern.error_string));
|
2012-01-14 16:08:54 +01:00
|
|
|
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
|
|
|
|
|
|
|
|