RetroArch/general.h

766 lines
17 KiB
C
Raw Normal View History

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
2015-01-07 16:46:50 +00:00
* Copyright (C) 2011-2015 - 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
#include <boolean.h>
2014-10-16 05:29:42 +00:00
#include <stdint.h>
2012-01-02 12:32:25 +00:00
#include <limits.h>
#include <setjmp.h>
2011-10-17 18:46:38 +00:00
#include "driver.h"
2015-01-11 04:35:47 +00:00
#include <queues/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-04-17 11:30:59 +00:00
#include "cheats.h"
2014-10-21 06:02:40 +00:00
#include <compat/strl.h>
2013-04-04 11:58:30 +00:00
#include "core_options.h"
#include "core_info.h"
#include <retro_miscellaneous.h>
2015-02-14 04:52:05 +00:00
#include "gfx/video_viewport.h"
2011-01-07 16:59:53 +00:00
2014-08-15 15:24:28 +00:00
#include "playlist.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION "1.1"
#endif
2014-09-08 15:12:37 +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
2014-10-21 06:02:40 +00:00
#include <compat/posix_string.h>
2012-11-23 09:34:40 +00:00
#endif
2012-07-24 00:47:28 +00:00
#ifdef HAVE_COMMAND
#include "command.h"
#endif
#ifdef HAVE_NETWORKING
#include "net_http.h"
#endif
2013-02-09 09:36:39 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2015-01-11 00:34:08 +00:00
#ifndef MAX_USERS
2015-01-05 00:58:00 +00:00
#define MAX_USERS 16
2015-01-11 00:34:08 +00:00
#endif
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
{
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];
char osk_overlay_dir[PATH_MAX_LENGTH];
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];
char extraction_dir[PATH_MAX_LENGTH];
char database_dir[PATH_MAX_LENGTH];
char cursor_dir[PATH_MAX_LENGTH];
2015-03-12 23:24:17 +00:00
char cheats_dir[PATH_MAX_LENGTH];
2014-06-12 16:06:29 +00:00
struct
{
int out_latency;
float video_refresh_rate;
bool video_threaded_enable;
2014-06-12 16:06:29 +00:00
} settings;
content_playlist_t *history;
2014-06-01 03:06:55 +00:00
};
2014-09-08 15:12:37 +00:00
/* All config related settings go here. */
2010-12-29 18:00:21 +00:00
struct settings
{
struct
{
char driver[32];
char context_driver[32];
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;
bool black_frame_insertion;
unsigned swap_interval;
unsigned hard_sync_frames;
unsigned frame_delay;
#ifdef GEKKO
2014-08-10 20:48:00 +00:00
unsigned viwidth;
2014-10-04 05:37:43 +00:00
bool vfilter;
#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;
bool aspect_ratio_auto;
2013-01-29 18:28:33 +00:00
bool scale_integer;
unsigned aspect_ratio_idx;
unsigned rotation;
char shader_path[PATH_MAX_LENGTH];
bool shader_enable;
char softfilter_plugin[PATH_MAX_LENGTH];
float refresh_rate;
bool threaded;
2011-01-23 02:16:14 +00:00
char filter_dir[PATH_MAX_LENGTH];
char shader_dir[PATH_MAX_LENGTH];
2011-03-06 17:19:31 +00:00
char font_path[PATH_MAX_LENGTH];
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
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;
bool gpu_screenshot;
2011-08-11 03:25:31 +00:00
2012-04-01 14:12:04 +00:00
bool allow_rotate;
bool shared_context;
bool force_srgb_disable;
2010-12-29 18:00:21 +00:00
} video;
2015-01-17 00:29:15 +00:00
struct
{
bool menubar_enable;
2015-01-18 21:37:22 +00:00
bool suspend_screensaver_enable;
2015-01-17 00:29:15 +00:00
} ui;
2014-01-27 00:32:05 +00:00
#ifdef HAVE_MENU
struct
{
char driver[32];
bool pause_libretro;
bool mouse_enable;
2015-01-17 03:50:46 +00:00
bool timedate_enable;
bool core_enable;
2015-02-03 02:25:29 +00:00
bool throttle;
2015-01-17 17:15:22 +00:00
char wallpaper[PATH_MAX_LENGTH];
2015-01-17 03:50:46 +00:00
struct
{
struct
{
bool horizontal_enable;
bool vertical_enable;
} wraparound;
struct
{
struct
{
bool supported_extensions_enable;
} filter;
} browser;
} navigation;
bool collapse_subgroups_enable;
bool show_advanced_settings;
2015-03-14 22:21:55 +00:00
unsigned entry_normal_color;
unsigned entry_hover_color;
unsigned title_color;
2014-01-27 00:32:05 +00:00
} menu;
#endif
struct
{
char driver[32];
char device[PATH_MAX_LENGTH];
2014-04-06 20:59:16 +00:00
bool allow;
unsigned width;
unsigned height;
} camera;
struct
{
char driver[32];
2014-04-06 20:59:16 +00:00
bool allow;
int update_interval_ms;
int update_interval_distance;
} location;
2010-12-29 18:00:21 +00:00
struct
{
char driver[32];
2010-12-29 18:00:21 +00:00
bool enable;
bool mute_enable;
2010-12-29 18:00:21 +00:00
unsigned out_rate;
unsigned block_frames;
char device[PATH_MAX_LENGTH];
2010-12-29 18:00:21 +00:00
unsigned latency;
bool sync;
2011-05-13 19:05:28 +00:00
char dsp_plugin[PATH_MAX_LENGTH];
char filter_dir[PATH_MAX_LENGTH];
2012-02-14 00:16:37 +00:00
bool rate_control;
float rate_control_delta;
float max_timing_skew;
2014-09-08 15:12:37 +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
{
char driver[32];
2013-05-04 08:22:31 +00:00
char joypad_driver[32];
char keyboard_layout[64];
2015-01-05 01:36:10 +00:00
unsigned remap_ids[MAX_USERS][RARCH_BIND_LIST_END];
2015-01-05 00:58:00 +00:00
struct retro_keybind binds[MAX_USERS][RARCH_BIND_LIST_END];
2015-01-05 01:36:10 +00:00
struct retro_keybind autoconf_binds[MAX_USERS][RARCH_BIND_LIST_END];
2013-04-26 12:36:36 +00:00
2015-01-05 00:45:57 +00:00
unsigned max_users;
2014-09-08 15:12:37 +00:00
/* Set by autoconfiguration in joypad_autoconfig_dir.
* Does not override main binds. */
2015-01-05 00:58:00 +00:00
bool autoconfigured[MAX_USERS];
2013-04-26 12:36:36 +00:00
2015-01-05 00:58:00 +00:00
unsigned libretro_device[MAX_USERS];
unsigned analog_dpad_mode[MAX_USERS];
bool remap_binds_enable;
float axis_threshold;
2015-01-05 00:58:00 +00:00
unsigned joypad_map[MAX_USERS];
unsigned device[MAX_USERS];
char device_names[MAX_USERS][64];
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
2014-12-29 09:16:44 +00:00
bool overlay_enable;
char overlay[PATH_MAX_LENGTH];
2013-02-02 01:29:33 +00:00
float overlay_opacity;
float overlay_scale;
2013-04-26 12:36:36 +00:00
char autoconfig_dir[PATH_MAX_LENGTH];
bool autoconfig_descriptor_label_show;
2014-12-04 12:26:27 +00:00
bool input_descriptor_label_show;
2014-12-05 13:13:29 +00:00
bool input_descriptor_hide_unbound;
2015-01-24 22:42:31 +00:00
char remapping_path[PATH_MAX_LENGTH];
2010-12-29 18:00:21 +00:00
} input;
2010-12-30 12:54:49 +00:00
struct
{
bool enable;
char overlay[PATH_MAX_LENGTH];
float opacity;
float scale;
} osk;
struct
{
unsigned mode;
} archive;
2015-01-19 03:09:28 +00:00
struct
{
char buildbot_url[PATH_MAX_LENGTH];
2015-02-01 16:13:15 +00:00
char buildbot_assets_url[PATH_MAX_LENGTH];
bool buildbot_auto_extract_archive;
2015-01-19 03:09:28 +00:00
} network;
int state_slot;
char core_options_path[PATH_MAX_LENGTH];
char content_history_path[PATH_MAX_LENGTH];
char content_history_directory[PATH_MAX_LENGTH];
unsigned content_history_size;
2013-04-04 11:58:30 +00:00
char libretro[PATH_MAX_LENGTH];
char libretro_directory[PATH_MAX_LENGTH];
unsigned libretro_log_level;
char libretro_info_path[PATH_MAX_LENGTH];
char content_database[PATH_MAX_LENGTH];
char cheat_database[PATH_MAX_LENGTH];
2015-01-25 08:50:09 +00:00
char cursor_directory[PATH_MAX_LENGTH];
char cheat_settings_path[PATH_MAX_LENGTH];
2015-01-19 06:24:12 +00:00
char input_remapping_directory[PATH_MAX_LENGTH];
2011-01-31 17:06:57 +00:00
char resampler_directory[PATH_MAX_LENGTH];
char screenshot_directory[PATH_MAX_LENGTH];
char system_directory[PATH_MAX_LENGTH];
2011-05-15 15:16:29 +00:00
char extraction_directory[PATH_MAX_LENGTH];
char playlist_directory[PATH_MAX_LENGTH];
2014-10-17 02:17:28 +00:00
bool history_list_enable;
2011-01-31 17:06:57 +00:00
bool rewind_enable;
size_t rewind_buffer_size;
unsigned rewind_granularity;
2011-02-05 20:45:44 +00:00
2012-03-04 11:01:07 +00:00
float slowmotion_ratio;
float fastforward_ratio;
bool fastforward_ratio_throttle_enable;
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;
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;
bool network_cmd_enable;
uint16_t network_cmd_port;
2012-07-24 00:47:28 +00:00
bool stdin_cmd_enable;
char content_directory[PATH_MAX_LENGTH];
char assets_directory[PATH_MAX_LENGTH];
char menu_config_directory[PATH_MAX_LENGTH];
#if defined(HAVE_MENU)
char menu_content_directory[PATH_MAX_LENGTH];
bool menu_show_start_screen;
#endif
bool fps_show;
bool load_dummy_on_core_shutdown;
2014-01-01 19:44:20 +00:00
bool core_specific_config;
char username[32];
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
};
typedef struct rarch_resolution
{
unsigned idx;
unsigned id;
} rarch_resolution_t;
2014-09-07 03:47:18 +00:00
/* All run-time- / command line flag-related globals go here. */
2010-12-29 18:18:37 +00:00
struct global
{
bool verbosity;
bool perfcnt_enable;
bool force_fullscreen;
bool core_shutdown_initiated;
2010-12-29 18:43:17 +00:00
struct string_list *temporary_content;
2014-04-04 12:58:42 +00:00
core_info_list_t *core_info;
core_info_t *core_info_current;
2014-08-12 01:19:02 +00:00
uint32_t content_crc;
char gb_rom_path[PATH_MAX_LENGTH];
char bsx_rom_path[PATH_MAX_LENGTH];
char sufami_rom_path[2][PATH_MAX_LENGTH];
bool has_set_input_descriptors;
bool has_set_save_path;
bool has_set_state_path;
2015-01-05 00:58:00 +00:00
bool has_set_libretro_device[MAX_USERS];
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;
bool has_set_ups_pref;
bool has_set_bps_pref;
bool has_set_ips_pref;
2014-09-07 03:47:18 +00:00
/* Config associated with global "default" config. */
char config_path[PATH_MAX_LENGTH];
char append_config_path[PATH_MAX_LENGTH];
char input_config_path[PATH_MAX_LENGTH];
#ifdef HAVE_FILE_LOGGER
char default_log_file[PATH_MAX_LENGTH];
#endif
2011-01-23 01:48:06 +00:00
char basename[PATH_MAX_LENGTH];
char fullpath[PATH_MAX_LENGTH];
2014-04-04 12:58:42 +00:00
2014-09-07 03:47:18 +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-09-07 03:47:18 +00:00
/* For --subsystem content. */
char subsystem[PATH_MAX_LENGTH];
2014-04-04 12:58:42 +00:00
struct string_list *subsystem_fullpaths;
char savefile_name[PATH_MAX_LENGTH];
char savestate_name[PATH_MAX_LENGTH];
char cheatfile_name[PATH_MAX_LENGTH];
2011-08-17 22:24:57 +00:00
2014-09-07 03:47:18 +00:00
/* Used on reentrancy to use a savestate dir. */
char savefile_dir[PATH_MAX_LENGTH];
char savestate_dir[PATH_MAX_LENGTH];
2013-04-16 10:22:27 +00:00
#ifdef HAVE_OVERLAY
char overlay_dir[PATH_MAX_LENGTH];
char osk_overlay_dir[PATH_MAX_LENGTH];
#endif
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;
char ups_name[PATH_MAX_LENGTH];
char bps_name[PATH_MAX_LENGTH];
char ips_name[PATH_MAX_LENGTH];
2011-01-03 19:46:50 +00:00
2014-10-29 05:26:08 +00:00
struct
{
unsigned windowed_scale;
} pending;
2011-01-23 22:09:54 +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;
float aspect_ratio;
2012-04-01 17:20:37 +00:00
unsigned rotation;
2012-05-22 18:14:07 +00:00
bool shutdown;
unsigned performance_level;
enum retro_pixel_format pix_fmt;
bool block_extract;
bool force_nonblock;
bool no_content;
2015-01-05 00:58:00 +00:00
const char *input_desc_btn[MAX_USERS][RARCH_FIRST_META_KEY];
char valid_extensions[PATH_MAX_LENGTH];
retro_keyboard_event_t key_event;
struct retro_audio_callback audio_callback;
struct retro_disk_control_callback disk_control;
2013-03-27 15:15:15 +00:00
struct retro_hw_render_callback hw_render_callback;
struct retro_camera_callback camera_callback;
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
struct retro_subsystem_info *special;
2014-04-04 12:58:42 +00:00
unsigned num_special;
struct retro_controller_info *ports;
unsigned num_ports;
} system;
struct
{
float *data;
2012-07-06 15:36:37 +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;
float in_rate;
2011-10-15 14:16:13 +00:00
bool use_float;
2013-02-16 11:30:26 +00:00
float *outsamples;
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;
float volume_gain;
2013-02-04 20:46:56 +00:00
} audio_data;
2011-03-07 18:12:14 +00:00
struct
{
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;
#ifdef HAVE_MENU
struct
{
struct retro_system_info info;
2014-10-23 06:00:45 +00:00
bool bind_mode_keyboard;
} menu;
#endif
bool exec;
2015-02-16 17:09:00 +00:00
struct
{
/* Rewind support. */
state_manager_t *state;
size_t size;
bool frame_is_reverse;
} rewind;
2011-01-31 15:48:42 +00:00
2011-11-20 19:19:05 +00:00
struct
{
2015-02-16 17:09:00 +00:00
/* Movie playback/recording support. */
2011-11-20 19:19:05 +00:00
bsv_movie_t *movie;
char movie_path[PATH_MAX_LENGTH];
2011-11-20 19:19:05 +00:00
bool movie_playback;
2014-10-01 14:33:00 +00:00
bool eof_exit;
2011-11-20 19:19:05 +00:00
2014-09-07 03:47:18 +00:00
/* Immediate playback/recording. */
char movie_start_path[PATH_MAX_LENGTH];
2011-11-20 19:19:05 +00:00
bool movie_start_recording;
bool movie_start_playback;
bool movie_end;
} bsv;
bool sram_load_disable;
bool sram_save_disable;
bool use_sram;
2011-11-18 17:03:24 +00:00
2011-02-05 19:46:58 +00:00
2014-09-07 03:47:18 +00:00
/* Turbo support. */
2015-01-05 00:58:00 +00:00
bool turbo_frame_enable[MAX_USERS];
uint16_t turbo_enable[MAX_USERS];
2012-10-01 20:15:48 +00:00
unsigned turbo_count;
2014-09-07 03:47:18 +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
#ifdef HAVE_NETPLAY
2014-09-07 03:47:18 +00:00
/* Netplay. */
char netplay_server[PATH_MAX_LENGTH];
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;
unsigned netplay_port;
#endif
2011-02-13 15:40:24 +00:00
2014-09-07 03:47:18 +00:00
/* Recording. */
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 00:25:44 +00:00
struct
{
2012-04-05 09:47:43 +00:00
const void *data;
unsigned width;
unsigned height;
2012-04-05 09:47:43 +00:00
size_t pitch;
} frame_cache;
2014-10-01 13:22:22 +00:00
2011-03-17 00:25:44 +00:00
char title_buf[64];
struct
{
struct string_list *list;
size_t ptr;
} shader_dir;
2011-04-17 10:29:58 +00:00
struct
{
struct string_list *list;
size_t ptr;
} filter_dir;
2012-10-15 07:57:08 +00:00
cheat_manager_t *cheat;
2013-01-10 05:45:44 +00:00
bool block_config_read;
2014-09-07 03:47:18 +00:00
/* Settings and/or global state that is specific to
* a console-style implementation. */
struct
{
struct
{
struct
2012-10-15 07:57:08 +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;
struct
{
2015-02-14 04:52:05 +00:00
video_viewport_t custom_vp;
} viewports;
unsigned gamma_correction;
unsigned char flicker_filter_index;
unsigned char soft_filter_index;
bool pal_enable;
2014-08-31 01:50:44 +00:00
bool pal60_enable;
} screen;
struct
{
2012-10-15 07:57:08 +00:00
unsigned mode;
bool system_bgm_enable;
} sound;
2014-08-31 02:07:07 +00:00
bool flickerfilter_enable;
bool softfilter_enable;
} console;
uint64_t lifecycle_state;
2014-09-07 03:47:18 +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;
bool content_is_init;
bool error_in_init;
char error_string[PATH_MAX_LENGTH];
jmp_buf error_sjlj_context;
2013-04-14 14:24:19 +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-09-07 03:47:18 +00:00
/* Config file associated with per-core configs. */
char core_specific_config_path[PATH_MAX_LENGTH];
2014-09-21 04:33:49 +00:00
retro_keyboard_event_t frontend_key_event;
2010-12-29 18:18:37 +00:00
};
2014-09-07 03:47:18 +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-09-07 03:47:18 +00:00
/* Public functions. */
int rarch_main(int argc, char *argv[]);
2015-01-09 16:40:47 +00:00
2013-02-09 09:36:39 +00:00
#ifdef __cplusplus
}
#endif
2015-01-13 21:08:20 +00:00
/**
* db_to_gain:
* @db : Decibels.
*
* Converts decibels to voltage gain.
*
* Returns: voltage gain value.
**/
static inline float db_to_gain(float db)
{
return powf(10.0f, db / 20.0f);
}
2015-01-13 21:08:20 +00:00
/**
* rarch_fail:
* @error_code : Error code.
* @error : Error message to show.
*
* Sanely kills the program.
**/
2012-04-21 21:25:32 +00:00
static inline void rarch_fail(int error_code, const char *error)
{
2014-09-07 03:47:18 +00: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 21:25:32 +00:00
rarch_assert(g_extern.error_in_init);
2014-09-07 03:47:18 +00:00
strlcpy(g_extern.error_string, error,
sizeof(g_extern.error_string));
longjmp(g_extern.error_sjlj_context, error_code);
}
#endif
2011-03-07 18:12:14 +00:00