RetroArch/config.def.h

746 lines
24 KiB
C
Raw Normal View History

2012-04-21 17:13:50 -04:00
/* RetroArch - A frontend for libretro.
2013-12-31 19:50:59 -05:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2016-01-09 22:06:50 -05:00
* Copyright (C) 2011-2016 - Daniel De Matteis
2016-10-27 11:47:10 -04:00
* Copyright (C) 2016 - Brad Parker
2015-08-30 18:55:34 -04:00
*
2012-04-21 17:13:50 -04:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2010-12-22 09:58:43 -05: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 17:13:50 -04:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2010-12-22 09:58:43 -05: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 17:31:57 -04:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2010-12-22 09:58:43 -05:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2011-01-05 14:09:12 -05:00
#ifndef __CONFIG_DEF_H
#define __CONFIG_DEF_H
2010-12-22 09:58:43 -05:00
#include <boolean.h>
#include <audio/audio_resampler.h>
2016-10-25 14:18:31 -04:00
#include "gfx/video_defines.h"
#include "input/input_driver.h"
2011-01-07 11:59:53 -05:00
#ifdef HAVE_CONFIG_H
#include "config.h"
2011-01-07 11:59:53 -05:00
#endif
2017-09-10 22:49:25 -04:00
#ifdef HAVE_NETWORKING
#include "network/netplay/netplay.h"
#endif
#if defined(HW_RVL)
#define MAX_GAMMA_SETTING 30
#elif defined(GEKKO)
#define MAX_GAMMA_SETTING 2
#else
#define MAX_GAMMA_SETTING 1
#endif
#if defined(XENON) || defined(_XBOX360) || defined(__CELLOS_LV2__)
#define DEFAULT_ASPECT_RATIO 1.7778f
#elif defined(_XBOX1) || defined(GEKKO) || defined(ANDROID)
#define DEFAULT_ASPECT_RATIO 1.3333f
#else
#define DEFAULT_ASPECT_RATIO -1.0f
#endif
#ifdef RARCH_MOBILE
static const bool pointer_enable = true;
#else
static const bool pointer_enable = false;
#endif
/* Certain platforms might have assets stored in the bundle that
* we need to extract to a user-writable directory on first boot.
*
* Examples include: Android, iOS/OSX) */
2016-01-09 20:23:48 -05:00
#if defined(ANDROID) || defined(IOS)
static bool bundle_assets_extract_enable = true;
#else
static bool bundle_assets_extract_enable = false;
#endif
#ifdef HAVE_MATERIALUI
static bool materialui_icons_enable = true;
#endif
static const bool crt_switch_resolution = false;
static const int crt_switch_resolution_super = 2560;
2018-03-26 10:03:46 -04:00
2014-10-16 22:17:28 -04:00
static const bool def_history_list_enable = true;
static const bool def_playlist_entry_remove = true;
static const bool def_playlist_entry_rename = true;
2014-10-16 22:17:28 -04:00
static const unsigned int def_user_language = 0;
2018-01-13 21:51:30 -05:00
#if (defined(_WIN32) && !defined(_XBOX)) || (defined(__linux) && !defined(ANDROID) && !defined(HAVE_LAKKA)) || (defined(__MACH__) && !defined(IOS)) || defined(EMSCRIPTEN)
static const bool def_mouse_enable = true;
#else
static const bool def_mouse_enable = false;
#endif
2016-07-25 01:33:41 -04:00
#ifdef HAVE_CHEEVOS
static const bool cheevos_enable = false;
#endif
2014-09-08 11:12:37 -04:00
/* VIDEO */
2010-12-22 09:58:43 -05:00
#if defined(_XBOX360)
#define DEFAULT_GAMMA 1
#else
#define DEFAULT_GAMMA 0
#endif
2014-09-08 11:12:37 -04:00
/* Windowed
* Real x resolution = aspect * base_size * x scale
* Real y resolution = base_size * y scale
*/
static const float scale = 3.0;
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Fullscreen */
/* To start in Fullscreen, or not. */
static const bool fullscreen = false;
/* To use windowed mode or not when going fullscreen. */
2015-08-30 18:55:34 -04:00
static const bool windowed_fullscreen = true;
2014-09-08 11:12:37 -04:00
/* Which monitor to prefer. 0 is any monitor, 1 and up selects
* specific monitors, 1 being the first monitor. */
static const unsigned monitor_index = 0;
2016-11-23 19:43:50 -05:00
/* Window */
/* Window size. A value of 0 uses window scale
* multiplied by the core framebuffer size. */
static const unsigned window_x = 0;
static const unsigned window_y = 0;
2014-09-08 11:12:37 -04:00
/* Fullscreen resolution. A value of 0 uses the desktop
* resolution. */
static const unsigned fullscreen_x = 0;
static const unsigned fullscreen_y = 0;
2010-12-22 09:58:43 -05:00
/* Amount of transparency to use for the main window.
* 1 is the most transparent while 100 is opaque.
*/
static const unsigned window_opacity = 100;
/* Whether to show the usual window decorations like border, titlebar etc. */
static const bool window_decorations = true;
#if defined(RARCH_CONSOLE) || defined(__APPLE__)
static const bool load_dummy_on_core_shutdown = false;
#else
static const bool load_dummy_on_core_shutdown = true;
#endif
static const bool check_firmware_before_loading = false;
2014-09-08 11:12:37 -04:00
/* Forcibly disable composition.
* Only valid on Windows Vista/7/8 for now. */
static const bool disable_composition = false;
2014-09-08 11:12:37 -04:00
/* Video VSYNC (recommended) */
2010-12-22 09:58:43 -05:00
static const bool vsync = true;
static const unsigned max_swapchain_images = 3;
2014-09-08 11:12:37 -04:00
/* Attempts to hard-synchronize CPU and GPU.
* Can reduce latency at cost of performance. */
2013-05-03 08:04:29 -04:00
static const bool hard_sync = false;
2014-09-08 11:12:37 -04:00
/* Configures how many frames the GPU can run ahead of CPU.
* 0: Syncs to GPU immediately.
* 1: Syncs to previous frame.
* 2: Etc ...
*/
static const unsigned hard_sync_frames = 0;
2013-05-03 08:04:29 -04:00
2014-09-08 11:12:37 -04:00
/* Sets how many milliseconds to delay after VSync before running the core.
* Can reduce latency at cost of higher risk of stuttering.
*/
static const unsigned frame_delay = 0;
2014-09-08 11:12:37 -04:00
/* Inserts a black frame inbetween frames.
2015-08-30 18:55:34 -04:00
* Useful for 120 Hz monitors who want to play 60 Hz material with eliminated
* ghosting. video_refresh_rate should still be configured as if it
2014-09-08 11:12:37 -04:00
* is a 60 Hz monitor (divide refresh rate by 2).
*/
static bool black_frame_insertion = false;
2014-09-08 11:12:37 -04:00
/* Uses a custom swap interval for VSync.
* Set this to effectively halve monitor refresh rate.
*/
static unsigned swap_interval = 1;
2015-08-30 18:55:34 -04:00
/* Threaded video. Will possibly increase performance significantly
2014-09-08 11:12:37 -04:00
* at the cost of worse synchronization and latency.
*/
static const bool video_threaded = false;
#if defined(HAVE_THREADS)
2018-01-20 19:22:18 -05:00
#if defined(GEKKO) || defined(PSP) || defined(_3DS)
/* For single-core consoles right now it's better to have this be disabled. */
static const bool threaded_data_runloop_enable = false;
#else
static const bool threaded_data_runloop_enable = true;
#endif
#else
static const bool threaded_data_runloop_enable = false;
#endif
2014-09-08 11:12:37 -04:00
/* Set to true if HW render cores should get their private context. */
static const bool video_shared_context = false;
2014-09-08 11:12:37 -04:00
/* Sets GC/Wii screen width. */
2014-08-10 16:39:08 -04:00
static const unsigned video_viwidth = 640;
2016-09-07 07:53:46 -04:00
#ifdef GEKKO
2014-10-04 01:13:08 -04:00
/* Removes 480i flicker, smooths picture a little. */
static const bool video_vfilter = true;
2016-09-07 07:53:46 -04:00
#endif
2014-10-04 01:13:08 -04:00
2014-09-08 11:12:37 -04:00
/* Smooths picture. */
2010-12-23 19:00:34 -05:00
static const bool video_smooth = true;
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* On resize and fullscreen, rendering area will stay 4:3 */
2015-08-30 18:55:34 -04:00
static const bool force_aspect = true;
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Enable use of shaders. */
#ifdef RARCH_CONSOLE
static const bool shader_enable = true;
#else
static const bool shader_enable = false;
#endif
2014-09-08 11:12:37 -04:00
/* Only scale in integer steps.
* The base size depends on system-reported geometry and aspect ratio.
* If video_force_aspect is not set, X/Y will be integer scaled independently.
*/
2013-01-29 13:28:33 -05:00
static const bool scale_integer = false;
2014-09-08 11:12:37 -04:00
/* Controls aspect ratio handling. */
/* Automatic */
static const float aspect_ratio = DEFAULT_ASPECT_RATIO;
/* 1:1 PAR */
static const bool aspect_ratio_auto = false;
2012-04-15 11:36:09 -04:00
#if defined(__CELLOS_LV2) || defined(_XBOX360)
static unsigned aspect_ratio_idx = ASPECT_RATIO_16_9;
#elif defined(PSP)
static unsigned aspect_ratio_idx = ASPECT_RATIO_CORE;
#elif defined(RARCH_CONSOLE)
static unsigned aspect_ratio_idx = ASPECT_RATIO_4_3;
#else
static unsigned aspect_ratio_idx = ASPECT_RATIO_CORE;
#endif
2014-09-08 11:12:37 -04:00
/* Save configuration file on exit. */
2013-05-22 09:35:28 -04:00
static bool config_save_on_exit = true;
static bool show_hidden_files = false;
2015-07-08 22:05:59 -04:00
static const bool overlay_hide_in_menu = true;
static const bool display_keyboard_overlay = false;
#ifdef HAVE_MENU
#include "menu/menu_driver.h"
2016-07-14 12:19:59 -04:00
static bool default_block_config_read = true;
static bool quick_menu_show_take_screenshot = true;
static bool quick_menu_show_save_load_state = true;
static bool quick_menu_show_undo_save_load_state = true;
static bool quick_menu_show_add_to_favorites = true;
static bool quick_menu_show_options = true;
static bool quick_menu_show_controls = true;
static bool quick_menu_show_cheats = true;
static bool quick_menu_show_shaders = true;
static bool quick_menu_show_save_core_overrides = true;
static bool quick_menu_show_save_game_overrides = true;
static bool quick_menu_show_information = true;
static bool kiosk_mode_enable = false;
static bool menu_show_online_updater = true;
static bool menu_show_load_core = true;
static bool menu_show_load_content = true;
static bool menu_show_information = true;
static bool menu_show_configurations = true;
static bool menu_show_help = true;
static bool menu_show_quit_retroarch = true;
static bool menu_show_reboot = true;
#if defined(HAVE_LAKKA) || defined(VITA) || defined(_3DS)
static bool menu_show_core_updater = false;
#else
2017-06-19 20:22:07 -04:00
static bool menu_show_core_updater = true;
#endif
2017-06-19 20:22:07 -04:00
static bool content_show_settings = true;
static bool content_show_favorites = true;
#ifdef HAVE_IMAGEVIEWER
static bool content_show_images = true;
#endif
static bool content_show_music = true;
#ifdef HAVE_FFMPEG
static bool content_show_video = true;
#endif
#ifdef HAVE_NETWORKING
static bool content_show_netplay = true;
#endif
static bool content_show_history = true;
#ifdef HAVE_LIBRETRODB
static bool content_show_add = true;
#endif
2018-04-17 11:53:24 -04:00
static bool content_show_playlists = true;
2016-07-24 05:32:45 -04:00
#ifdef HAVE_XMB
2016-02-08 00:34:13 -05:00
static unsigned xmb_scale_factor = 100;
static unsigned xmb_alpha_factor = 75;
static unsigned menu_font_color_red = 255;
static unsigned menu_font_color_green = 255;
static unsigned menu_font_color_blue = 255;
2018-04-24 02:33:14 -04:00
static unsigned xmb_menu_layout = 0;
static unsigned xmb_icon_theme = XMB_ICON_THEME_MONOCHROME;
2016-07-14 12:19:59 -04:00
static unsigned xmb_theme = XMB_THEME_ELECTRIC_BLUE;
#if defined(HAVE_LAKKA) || defined(__arm__) || defined(__PPC64__) || defined(__ppc64__) || defined(__powerpc64__) || defined(__powerpc__) || defined(__ppc__) || defined(__POWERPC__)
2016-04-30 22:46:16 -04:00
static bool xmb_shadows_enable = false;
#else
static bool xmb_shadows_enable = true;
#endif
2016-07-24 05:32:45 -04:00
#endif
2016-04-30 22:46:16 -04:00
static bool automatically_add_content_to_playlist = false;
static float menu_framebuffer_opacity = 0.900;
2016-07-10 11:13:19 -04:00
static float menu_wallpaper_opacity = 0.300;
2016-07-11 11:27:36 -04:00
static float menu_footer_opacity = 1.000;
2016-07-11 11:41:06 -04:00
static float menu_header_opacity = 1.000;
2016-09-09 09:56:56 -04:00
#if defined(HAVE_OPENGLES2) || (defined(__MACH__) && (defined(__ppc__) || defined(__ppc64__)))
static unsigned menu_shader_pipeline = 1;
#else
static unsigned menu_shader_pipeline = 2;
#endif
2016-02-08 00:34:13 -05:00
static bool show_advanced_settings = false;
2015-03-14 18:21:55 -04:00
static const uint32_t menu_entry_normal_color = 0xffffffff;
static const uint32_t menu_entry_hover_color = 0xff64ff64;
static const uint32_t menu_title_color = 0xff64ff64;
#else
static bool default_block_config_read = false;
2017-12-23 20:26:58 -05:00
static bool automatically_add_content_to_playlist = false;
#endif
static bool default_game_specific_options = true;
static bool default_auto_overrides_enable = true;
static bool default_auto_remaps_enable = true;
2016-07-30 12:16:03 -04:00
static bool default_auto_shaders_enable = true;
static bool default_sort_savefiles_enable = false;
static bool default_sort_savestates_enable = false;
2017-08-05 13:31:58 -04:00
static bool default_savestates_in_content_dir = false;
static bool default_savefiles_in_content_dir = false;
static bool default_systemfiles_in_content_dir = false;
static bool default_screenshots_in_content_dir = false;
#if defined(__CELLOS_LV2__) || defined(_XBOX1) || defined(_XBOX360)
static unsigned menu_toggle_gamepad_combo = INPUT_TOGGLE_L3_R3;
#elif defined(VITA)
static unsigned menu_toggle_gamepad_combo = INPUT_TOGGLE_L1_R1_START_SELECT;
#elif defined(SWITCH)
static unsigned menu_toggle_gamepad_combo = INPUT_TOGGLE_START_SELECT;
2015-07-09 00:27:17 -04:00
#else
static unsigned menu_toggle_gamepad_combo = INPUT_TOGGLE_NONE;
2015-07-09 00:27:17 -04:00
#endif
2016-10-14 15:57:18 -04:00
#if defined(VITA)
static unsigned input_backtouch_enable = false;
static unsigned input_backtouch_toggle = false;
2016-10-14 15:57:18 -04:00
#endif
2017-08-16 16:30:15 -04:00
static bool show_physical_inputs = true;
static bool all_users_control_menu = false;
#if defined(ANDROID) || defined(_WIN32)
static bool menu_swap_ok_cancel_buttons = true;
#else
static bool menu_swap_ok_cancel_buttons = false;
#endif
2014-09-08 11:12:37 -04:00
/* Crop overscanned frames. */
2011-11-09 16:18:48 -05:00
static const bool crop_overscan = true;
2011-05-05 08:13:12 -04:00
2014-09-08 11:12:37 -04:00
/* Font size for on-screen messages. */
#if defined(HAVE_LIBDBGFONT)
static const float font_size = 1.0f;
#else
2014-06-07 15:27:52 -04:00
static const float font_size = 32;
#endif
2011-01-22 20:48:06 -05:00
2015-08-30 18:55:34 -04:00
/* Offset for where messages will be placed on-screen.
2014-09-08 11:12:37 -04:00
* Values are in range [0.0, 1.0]. */
2011-01-23 07:50:22 -05:00
static const float message_pos_offset_x = 0.05;
#if defined(_XBOX1)
2014-07-26 21:43:25 -04:00
static const float message_pos_offset_y = 0.90;
#else
2011-01-23 07:50:22 -05:00
static const float message_pos_offset_y = 0.05;
2014-07-26 21:43:25 -04:00
#endif
2011-01-22 20:59:44 -05:00
2014-09-08 11:12:37 -04:00
/* Color of the message.
* RGB hex value. */
static const uint32_t message_color = 0xffff00;
static const bool message_bgcolor_enable = false;
static const uint32_t message_bgcolor_red = 0;
static const uint32_t message_bgcolor_green = 0;
static const uint32_t message_bgcolor_blue = 0;
static const float message_bgcolor_opacity = 1.0f;
2014-09-08 11:12:37 -04:00
/* Record post-filtered (CPU filter) video,
* rather than raw game output. */
2011-08-10 23:25:31 -04:00
static const bool post_filter_record = false;
2014-09-08 11:12:37 -04:00
/* Screenshots post-shaded GPU output if available. */
static const bool gpu_screenshot = true;
/* Watch shader files for changes and auto-apply as necessary. */
static const bool video_shader_watch_files = false;
/* Screenshots named automatically. */
static const bool auto_screenshot_filename = true;
2014-09-08 11:12:37 -04:00
/* Record post-shaded GPU output instead of raw game footage if available. */
2012-08-25 16:38:49 -04:00
static const bool gpu_record = false;
2014-09-08 11:12:37 -04:00
/* OSD-messages. */
2011-11-09 18:15:41 -05:00
static const bool font_enable = true;
2014-09-08 11:12:37 -04:00
/* The accurate refresh rate of your monitor (Hz).
* This is used to calculate audio input rate with the formula:
2015-08-30 18:55:34 -04:00
* audio_input_rate = game_input_rate * display_refresh_rate /
2014-09-08 11:12:37 -04:00
* game_refresh_rate.
*
* If the implementation does not report any values,
* NTSC defaults will be assumed for compatibility.
* This value should stay close to 60Hz to avoid large pitch changes.
2015-08-30 18:55:34 -04:00
* If your monitor does not run at 60Hz, or something close to it,
2014-09-08 11:12:37 -04:00
* disable VSync, and leave this at its default. */
2015-09-28 15:09:07 -04:00
#ifdef _3DS
static const float refresh_rate = (32730.0 * 8192.0) / 4481134.0 ;
2011-12-02 09:59:07 -05:00
#else
2016-09-15 16:05:40 -04:00
static const float refresh_rate = 60/1.001;
2011-12-02 09:59:07 -05:00
#endif
2015-08-30 18:55:34 -04:00
/* Allow games to set rotation. If false, rotation requests are
2014-09-08 11:12:37 -04:00
* honored, but ignored.
* Used for setups where one manually rotates the monitor. */
2012-04-01 10:12:04 -04:00
static const bool allow_rotate = true;
2014-09-08 11:12:37 -04:00
/* AUDIO */
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Will enable audio or not. */
static const bool audio_enable = true;
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Output samplerate. */
2015-09-06 18:05:59 -04:00
#ifdef GEKKO
static const unsigned out_rate = 32000;
2015-09-28 15:09:07 -04:00
#elif defined(_3DS)
static const unsigned out_rate = 32730;
2015-09-06 18:05:59 -04:00
#else
static const unsigned out_rate = 48000;
2015-09-06 18:05:59 -04:00
#endif
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Audio device (e.g. hw:0,0 or /dev/audio). If NULL, will use defaults. */
2011-11-02 14:31:36 -04:00
static const char *audio_device = NULL;
2010-12-22 09:58:43 -05:00
2015-08-30 18:55:34 -04:00
/* Desired audio latency in milliseconds. Might not be honored
2014-09-08 11:12:37 -04:00
* if driver can't provide given latency. */
#if defined(ANDROID) || defined(EMSCRIPTEN)
/* For most Android devices, 64ms is way too low. */
static const int out_latency = 128;
#else
2010-12-22 09:58:43 -05:00
static const int out_latency = 64;
#endif
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Will sync audio. (recommended) */
2010-12-22 09:58:43 -05:00
static const bool audio_sync = true;
2014-09-08 11:12:37 -04:00
/* Audio rate control. */
#if !defined(RARCH_CONSOLE)
static const bool rate_control = true;
#else
2012-02-13 19:16:37 -05:00
static const bool rate_control = false;
#endif
2012-02-13 19:16:37 -05:00
2015-08-30 18:55:34 -04:00
/* Rate control delta. Defines how much rate_control
2014-09-08 11:12:37 -04:00
* is allowed to adjust input rate. */
2012-02-13 19:16:37 -05:00
static const float rate_control_delta = 0.005;
/* Maximum timing skew. Defines how much adjust_system_rates
* is allowed to adjust input rate. */
static const float max_timing_skew = 0.05;
2014-09-08 11:12:37 -04:00
/* Default audio volume in dB. (0.0 dB == unity gain). */
static const float audio_volume = 0.0;
2017-06-08 16:58:43 -04:00
/* Default audio volume of the audio mixer in dB. (0.0 dB == unity gain). */
static const float audio_mixer_volume = 0.0;
2017-04-28 22:40:24 -04:00
#ifdef HAVE_WASAPI
/* WASAPI defaults */
2017-05-24 10:25:36 -04:00
static const bool wasapi_exclusive_mode = true;
static const bool wasapi_float_format = false;
static const int wasapi_sh_buffer_length = -16; /* auto */
2017-04-28 22:40:24 -04:00
#endif
2014-09-08 11:12:37 -04:00
/* MISC */
2012-02-13 19:16:37 -05:00
2014-09-08 11:12:37 -04:00
/* Enables displaying the current frames per second. */
static const bool fps_show = false;
/* Show frame count on FPS display */
static const bool framecount_show = true;
2015-08-30 18:55:34 -04:00
/* Enables use of rewind. This will incur some memory footprint
2014-09-08 11:12:37 -04:00
* depending on the save state buffer. */
2011-01-31 12:06:57 -05:00
static const bool rewind_enable = false;
2015-08-30 18:55:34 -04:00
/* The buffer size for the rewind buffer. This needs to be about
2014-09-08 11:12:37 -04:00
* 15-20MB per minute. Very game dependant. */
static const unsigned rewind_buffer_size = 20 << 20; /* 20MiB */
2011-01-31 12:06:57 -05:00
2014-09-08 11:12:37 -04:00
/* How many frames to rewind at a time. */
static const unsigned rewind_granularity = 1;
2014-09-08 11:12:37 -04:00
/* Pause gameplay when gameplay loses focus. */
#ifdef EMSCRIPTEN
static const bool pause_nonactive = false;
#else
2015-10-18 21:44:57 -04:00
static const bool pause_nonactive = true;
#endif
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Saves non-volatile SRAM at a regular interval.
* It is measured in seconds. A value of 0 disables autosave. */
2011-02-10 15:16:59 -05:00
static const unsigned autosave_interval = 0;
/* Publicly announce netplay */
static const bool netplay_public_announce = true;
/* Start netplay in spectator mode */
static const bool netplay_start_as_spectator = false;
/* Allow connections in slave mode */
static const bool netplay_allow_slaves = true;
/* Require connections only in slave mode */
static const bool netplay_require_slaves = false;
/* Netplay without savestates/rewind */
static const bool netplay_stateless_mode = false;
2015-08-30 18:55:34 -04:00
/* When being client over netplay, use keybinds for
* user 1 rather than user 2. */
2011-06-22 15:56:04 -04:00
static const bool netplay_client_swap_input = true;
2011-02-20 06:12:53 -05:00
2016-12-13 22:03:10 -05:00
static const bool netplay_nat_traversal = false;
static const unsigned netplay_delay_frames = 16;
static const int netplay_check_frames = 600;
static const bool netplay_use_mitm_server = false;
static const char *netplay_mitm_server = "nyc";
#ifdef HAVE_NETWORKING
2017-09-10 22:49:25 -04:00
static const unsigned netplay_share_digital = RARCH_NETPLAY_SHARE_DIGITAL_NO_PREFERENCE;
static const unsigned netplay_share_analog = RARCH_NETPLAY_SHARE_ANALOG_NO_PREFERENCE;
#endif
2017-09-10 22:49:25 -04:00
2014-09-08 11:12:37 -04:00
/* On save state load, block SRAM from being overwritten.
* This could potentially lead to buggy games. */
static const bool block_sram_overwrite = false;
2015-08-30 18:55:34 -04:00
/* When saving savestates, state index is automatically
2014-09-08 11:12:37 -04:00
* incremented before saving.
2015-08-30 18:55:34 -04:00
* When the content is loaded, state index will be set
2014-09-08 11:12:37 -04:00
* to the highest existing value. */
2011-09-27 09:31:25 -04:00
static const bool savestate_auto_index = false;
2014-09-08 11:12:37 -04:00
/* Automatically saves a savestate at the end of RetroArch's lifetime.
* The path is $SRAM_PATH.auto.
2015-08-30 18:55:34 -04:00
* RetroArch will automatically load any savestate with this path on
2014-09-08 11:12:37 -04:00
* startup if savestate_auto_load is set. */
2012-06-02 15:33:37 -04:00
static const bool savestate_auto_save = false;
static const bool savestate_auto_load = false;
2012-06-02 15:33:37 -04:00
static const bool savestate_thumbnail_enable = false;
2014-09-08 11:12:37 -04:00
/* Slowmotion ratio. */
2012-03-04 06:01:07 -05:00
static const float slowmotion_ratio = 3.0;
/* Maximum fast forward ratio. */
2015-08-27 08:39:42 -04:00
static const float fastforward_ratio = 0.0;
2018-03-28 15:22:07 -04:00
/* Run core logic one or more frames ahead then load the state back to reduce perceived input lag. */
static const unsigned run_ahead_frames = 1;
/* When using the Run Ahead feature, use a secondary instance of the core. */
static const bool run_ahead_secondary_instance = true;
2014-09-08 11:12:37 -04:00
/* Enable stdin/network command interface. */
static const bool network_cmd_enable = false;
static const uint16_t network_cmd_port = 55355;
2012-07-23 20:47:28 -04:00
static const bool stdin_cmd_enable = false;
static const uint16_t network_remote_base_port = 55400;
2014-09-08 11:12:37 -04:00
/* Number of entries that will be kept in content history playlist file. */
static const unsigned default_content_history_size = 100;
2014-09-08 11:12:37 -04:00
/* Show Menu start-up screen on boot. */
static const bool default_menu_show_start_screen = true;
2015-04-24 10:37:09 -04:00
static const bool menu_dpi_override_enable = false;
#ifdef RARCH_MOBILE
2015-04-24 10:37:09 -04:00
static const unsigned menu_dpi_override_value = 72;
#elif defined(__CELLOS_LV2__)
static const unsigned menu_dpi_override_value = 360;
#else
static const unsigned menu_dpi_override_value = 200;
#endif
2015-04-24 10:37:09 -04:00
2014-09-08 11:12:37 -04:00
/* Log level for libretro cores (GET_LOG_INTERFACE). */
static const unsigned libretro_log_level = 1;
#ifndef RARCH_DEFAULT_PORT
#define RARCH_DEFAULT_PORT 55435
#endif
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* KEYBINDS, JOYPAD */
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Axis threshold (between 0.0 and 1.0)
* How far an axis must be tilted to result in a button press. */
2011-09-06 13:53:22 -04:00
static const float axis_threshold = 0.5;
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Describes speed of which turbo-enabled buttons toggle. */
2012-10-01 16:15:48 -04:00
static const unsigned turbo_period = 6;
static const unsigned turbo_duty_cycle = 3;
2010-12-22 09:58:43 -05:00
2014-09-08 11:12:37 -04:00
/* Enable input auto-detection. Will attempt to autoconfigure
* gamepads, plug-and-play style. */
static const bool input_autodetect_enable = true;
2015-08-30 18:55:34 -04:00
/* Show the input descriptors set by the core instead
2014-12-04 07:26:27 -05:00
* of the default ones. */
static const bool input_descriptor_label_show = true;
2014-12-05 08:13:29 -05:00
static const bool input_descriptor_hide_unbound = false;
2015-07-08 18:10:44 -04:00
static const unsigned input_max_users = 5;
2016-01-28 00:51:18 -05:00
static const unsigned input_poll_type_behavior = 2;
2016-06-26 02:22:40 -04:00
static const unsigned input_bind_timeout = 5;
static const unsigned menu_thumbnails_default = 3;
2016-05-01 10:49:13 -04:00
static const unsigned menu_left_thumbnails_default = 0;
2018-04-04 18:52:46 -04:00
static const bool xmb_vertical_thumbnails = false;
#ifdef IOS
static const bool ui_companion_start_on_boot = false;
#else
static const bool ui_companion_start_on_boot = true;
#endif
2016-01-18 15:35:09 -05:00
static const bool ui_companion_enable = false;
#if defined(__QNX__) || defined(_XBOX1) || defined(_XBOX360) || defined(__CELLOS_LV2__) || (defined(__MACH__) && defined(IOS)) || defined(ANDROID) || defined(WIIU) || defined(HAVE_NEON) || defined(GEKKO) || defined(__ARM_NEON__)
static enum resampler_quality audio_resampler_quality_level = RESAMPLER_QUALITY_LOWER;
#elif defined(PSP) || defined(_3DS) || defined(VITA)
static enum resampler_quality audio_resampler_quality_level = RESAMPLER_QUALITY_LOWEST;
#else
static enum resampler_quality audio_resampler_quality_level = RESAMPLER_QUALITY_NORMAL;
#endif
#if defined(ANDROID)
#if defined(ANDROID_ARM)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/android/latest/armeabi-v7a/";
2017-06-04 21:38:53 -04:00
#elif defined(ANDROID_AARCH64)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/android/latest/arm64-v8a/";
#elif defined(ANDROID_X86)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/android/latest/x86/";
2015-01-21 00:51:45 -05:00
#else
static char buildbot_server_url[] = "";
#endif
#elif defined(__QNX__)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/blackberry/latest/";
#elif defined(IOS)
2015-10-20 13:52:40 -04:00
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/apple/ios/latest/";
#elif defined(OSX)
#if defined(__x86_64__)
2015-10-19 19:24:46 -04:00
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/apple/osx/x86_64/latest/";
#elif defined(__i386__) || defined(__i486__) || defined(__i686__)
2015-10-19 19:24:46 -04:00
static char buildbot_server_url[] = "http://bot.libretro.com/nightly/apple/osx/x86/latest/";
2015-02-22 17:45:46 -05:00
#else
2015-10-20 13:52:40 -04:00
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/apple/osx/ppc/latest/";
#endif
#elif defined(_WIN32) && !defined(_XBOX)
#if _MSC_VER == 1600
2018-01-20 14:05:32 -05:00
#if defined(__x86_64__) || defined(_M_X64)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2010/x86_64/latest/";
#elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2010/x86/latest/";
#endif
#elif _MSC_VER == 1400
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2005/x86/latest/";
#elif _MSC_VER == 1310
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2003/x86/latest/";
#else
2018-01-20 14:05:32 -05:00
#if defined(__x86_64__) || defined(_M_X64)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows/x86_64/latest/";
2006-05-18 07:17:58 -04:00
#elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows/x86/latest/";
#endif
#endif
#elif defined(__linux__)
#if defined(__x86_64__)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/linux/x86_64/latest/";
2015-10-20 13:52:40 -04:00
#elif defined(__i386__) || defined(__i486__) || defined(__i686__)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/linux/x86/latest/";
#elif defined(__arm__) && __ARM_ARCH == 7 && defined(__ARM_PCS_VFP)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/linux/armhf/latest/";
#else
static char buildbot_server_url[] = "";
#endif
2017-05-23 05:24:23 -04:00
#elif defined(WIIU)
static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/nintendo/wiiu/latest/";
#elif defined(__CELLOS_LV2__) && defined(DEX_BUILD)
static char buildbot_server_url[] = "http://libretro.xbins.org/libretro/nightly/playstation/ps3/latest/dex-ps3/";
#elif defined(__CELLOS_LV2__) && defined(CEX_BUILD)
static char buildbot_server_url[] = "http://libretro.xbins.org/libretro/nightly/playstation/ps3/latest/cex-ps3/";
#elif defined(__CELLOS_LV2__) && defined(ODE_BUILD)
static char buildbot_server_url[] = "http://libretro.xbins.org/libretro/nightly/playstation/ps3/latest/ode-ps3/";
#else
static char buildbot_server_url[] = "";
#endif
2015-02-01 11:13:15 -05:00
static char buildbot_assets_server_url[] = "http://buildbot.libretro.com/assets/";
#endif