2014-09-13 00:06:13 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 00:06:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace DefaultINI {
|
|
|
|
|
2016-03-01 17:24:18 +00:00
|
|
|
const char* sdl2_config_file = R"(
|
2014-09-13 00:06:13 +00:00
|
|
|
[Controls]
|
2017-01-28 13:30:42 +00:00
|
|
|
# The input devices and parameters for each 3DS native input
|
|
|
|
# It should be in the format of "engine:[engine_name],[param1]:[value1],[param2]:[value2]..."
|
|
|
|
# Escape characters $0 (for ':'), $1 (for ',') and $2 (for '$') can be used in values
|
2016-05-13 15:32:43 +00:00
|
|
|
|
2017-08-11 07:51:16 +00:00
|
|
|
# for button input, the following devices are available:
|
2017-01-28 13:30:42 +00:00
|
|
|
# - "keyboard" (default) for keyboard input. Required parameters:
|
|
|
|
# - "code": the code of the key to bind
|
|
|
|
# - "sdl" for joystick input using SDL. Required parameters:
|
|
|
|
# - "joystick": the index of the joystick to bind
|
|
|
|
# - "button"(optional): the index of the button to bind
|
|
|
|
# - "hat"(optional): the index of the hat to bind as direction buttons
|
2017-04-17 08:49:04 +00:00
|
|
|
# - "axis"(optional): the index of the axis to bind
|
2017-01-28 13:30:42 +00:00
|
|
|
# - "direction"(only used for hat): the direction name of the hat to bind. Can be "up", "down", "left" or "right"
|
2017-08-11 07:51:16 +00:00
|
|
|
# - "threshold"(only used for axis): a float value in (-1.0, 1.0) which the button is
|
2017-04-17 08:49:04 +00:00
|
|
|
# triggered if the axis value crosses
|
|
|
|
# - "direction"(only used for axis): "+" means the button is triggered when the axis value
|
|
|
|
# is greater than the threshold; "-" means the button is triggered when the axis value
|
|
|
|
# is smaller than the threshold
|
2017-01-28 13:30:42 +00:00
|
|
|
button_a=
|
|
|
|
button_b=
|
|
|
|
button_x=
|
|
|
|
button_y=
|
|
|
|
button_up=
|
|
|
|
button_down=
|
|
|
|
button_left=
|
|
|
|
button_right=
|
|
|
|
button_l=
|
|
|
|
button_r=
|
|
|
|
button_start=
|
|
|
|
button_select=
|
|
|
|
button_zl=
|
|
|
|
button_zr=
|
|
|
|
button_home=
|
|
|
|
|
2017-08-11 07:51:16 +00:00
|
|
|
# for analog input, the following devices are available:
|
2017-08-06 21:04:06 +00:00
|
|
|
# - "analog_from_button" (default) for emulating analog input from direction buttons. Required parameters:
|
2017-01-28 13:30:42 +00:00
|
|
|
# - "up", "down", "left", "right": sub-devices for each direction.
|
|
|
|
# Should be in the format as a button input devices using escape characters, for example, "engine$0keyboard$1code$00"
|
|
|
|
# - "modifier": sub-devices as a modifier.
|
|
|
|
# - "modifier_scale": a float number representing the applied modifier scale to the analog input.
|
|
|
|
# Must be in range of 0.0-1.0. Defaults to 0.5
|
|
|
|
# - "sdl" for joystick input using SDL. Required parameters:
|
|
|
|
# - "joystick": the index of the joystick to bind
|
|
|
|
# - "axis_x": the index of the axis to bind as x-axis (default to 0)
|
|
|
|
# - "axis_y": the index of the axis to bind as y-axis (default to 1)
|
|
|
|
circle_pad=
|
|
|
|
c_stick=
|
2014-10-10 02:43:40 +00:00
|
|
|
|
2017-08-06 21:04:06 +00:00
|
|
|
# for motion input, the following devices are available:
|
|
|
|
# - "motion_emu" (default) for emulating motion input from mouse input. Required parameters:
|
|
|
|
# - "update_period": update period in milliseconds (default to 100)
|
|
|
|
# - "sensitivity": the coefficient converting mouse movement to tilting angle (default to 0.01)
|
|
|
|
motion_device=
|
|
|
|
|
2017-08-08 23:57:42 +00:00
|
|
|
# for touch input, the following devices are available:
|
|
|
|
# - "emu_window" (default) for emulating touch input from mouse input to the emulation window. No parameters required
|
|
|
|
touch_device=
|
|
|
|
|
2014-10-25 19:54:44 +00:00
|
|
|
[Core]
|
2018-01-12 16:06:30 +00:00
|
|
|
# Which CPU core to use for CPU emulation
|
|
|
|
# 0: Unicorn (slow), 1 (default): Dynarmic (faster)
|
|
|
|
cpu_core =
|
2016-09-02 03:18:01 +00:00
|
|
|
|
2015-04-03 22:35:51 +00:00
|
|
|
[Renderer]
|
2015-05-03 19:34:48 +00:00
|
|
|
# Whether to use software or hardware rendering.
|
2016-08-16 03:30:02 +00:00
|
|
|
# 0: Software, 1 (default): Hardware
|
2015-05-03 19:34:48 +00:00
|
|
|
use_hw_renderer =
|
|
|
|
|
2015-07-23 03:25:30 +00:00
|
|
|
# Whether to use the Just-In-Time (JIT) compiler for shader emulation
|
2016-08-16 03:30:02 +00:00
|
|
|
# 0: Interpreter (slow), 1 (default): JIT (fast)
|
2015-07-23 03:25:30 +00:00
|
|
|
use_shader_jit =
|
|
|
|
|
2016-12-30 04:28:27 +00:00
|
|
|
# Resolution scale factor
|
|
|
|
# 0: Auto (scales resolution to window size), 1: Native 3DS screen resolution, Otherwise a scale
|
|
|
|
# factor for the 3DS resolution
|
|
|
|
resolution_factor =
|
2016-04-16 22:51:49 +00:00
|
|
|
|
2016-08-25 22:20:47 +00:00
|
|
|
# Whether to enable V-Sync (caps the framerate at 60FPS) or not.
|
|
|
|
# 0 (default): Off, 1: On
|
|
|
|
use_vsync =
|
|
|
|
|
2016-12-30 05:35:38 +00:00
|
|
|
# The clear color for the renderer. What shows up on the sides of the bottom screen.
|
|
|
|
# Must be in range of 0.0-1.0. Defaults to 1.0 for all.
|
|
|
|
bg_red =
|
|
|
|
bg_blue =
|
|
|
|
bg_green =
|
|
|
|
|
2016-05-03 06:07:17 +00:00
|
|
|
[Layout]
|
|
|
|
# Layout for the screen inside the render window.
|
|
|
|
# 0 (default): Default Top Bottom Screen, 1: Single Screen Only, 2: Large Screen Small Screen
|
|
|
|
layout_option =
|
|
|
|
|
2017-02-01 08:22:47 +00:00
|
|
|
# Toggle custom layout (using the settings below) on or off.
|
|
|
|
# 0 (default): Off , 1: On
|
|
|
|
custom_layout =
|
|
|
|
|
|
|
|
# Screen placement when using Custom layout option
|
|
|
|
# 0x, 0y is the top left corner of the render window.
|
|
|
|
custom_top_left =
|
|
|
|
custom_top_top =
|
|
|
|
custom_top_right =
|
|
|
|
custom_top_bottom =
|
|
|
|
custom_bottom_left =
|
|
|
|
custom_bottom_top =
|
|
|
|
custom_bottom_right =
|
|
|
|
custom_bottom_bottom =
|
|
|
|
|
2016-12-06 19:33:19 +00:00
|
|
|
#Whether to toggle frame limiter on or off.
|
|
|
|
# 0: Off , 1 (default): On
|
|
|
|
toggle_framelimit =
|
|
|
|
|
2016-05-03 06:07:17 +00:00
|
|
|
# Swaps the prominent screen with the other screen.
|
|
|
|
# For example, if Single Screen is chosen, setting this to 1 will display the bottom screen instead of the top screen.
|
|
|
|
# 0 (default): Top Screen is prominent, 1: Bottom Screen is prominent
|
|
|
|
swap_screen =
|
|
|
|
|
2016-04-27 12:53:23 +00:00
|
|
|
[Audio]
|
|
|
|
# Which audio output engine to use.
|
2016-04-27 09:57:29 +00:00
|
|
|
# auto (default): Auto-select, null: No audio output, sdl2: SDL2 (if available)
|
2016-04-27 12:53:23 +00:00
|
|
|
output_engine =
|
|
|
|
|
2016-08-31 15:59:37 +00:00
|
|
|
# Whether or not to enable the audio-stretching post-processing effect.
|
|
|
|
# This effect adjusts audio speed to match emulation speed and helps prevent audio stutter,
|
|
|
|
# at the cost of increasing audio latency.
|
|
|
|
# 0: No, 1 (default): Yes
|
|
|
|
enable_audio_stretching =
|
|
|
|
|
2017-01-26 03:33:26 +00:00
|
|
|
# Which audio device to use.
|
|
|
|
# auto (default): Auto-select
|
|
|
|
output_device =
|
|
|
|
|
2014-10-10 02:43:40 +00:00
|
|
|
[Data Storage]
|
2015-01-06 02:25:57 +00:00
|
|
|
# Whether to create a virtual SD card.
|
|
|
|
# 1 (default): Yes, 0: No
|
2014-10-10 02:43:40 +00:00
|
|
|
use_virtual_sd =
|
2014-10-27 21:18:28 +00:00
|
|
|
|
2016-06-11 01:19:51 +00:00
|
|
|
[System]
|
|
|
|
# The system model that Citra will try to emulate
|
|
|
|
# 0: Old 3DS (default), 1: New 3DS
|
|
|
|
is_new_3ds =
|
|
|
|
|
2015-01-06 02:25:57 +00:00
|
|
|
# The system region that Citra will use during emulation
|
2016-11-30 09:32:09 +00:00
|
|
|
# -1: Auto-select (default), 0: Japan, 1: USA, 2: Europe, 3: Australia, 4: China, 5: Korea, 6: Taiwan
|
2015-01-06 02:25:57 +00:00
|
|
|
region_value =
|
2015-01-31 23:11:51 +00:00
|
|
|
|
2014-10-27 21:18:28 +00:00
|
|
|
[Miscellaneous]
|
2015-01-06 02:25:57 +00:00
|
|
|
# A filter which removes logs below a certain logging level.
|
|
|
|
# Examples: *:Debug Kernel.SVC:Trace Service.*:Critical
|
|
|
|
log_filter = *:Info
|
2015-09-02 12:56:38 +00:00
|
|
|
|
|
|
|
[Debugging]
|
|
|
|
# Port for listening to GDB connections.
|
|
|
|
use_gdbstub=false
|
|
|
|
gdbstub_port=24689
|
2017-06-28 02:46:52 +00:00
|
|
|
|
|
|
|
[WebService]
|
2017-08-23 02:37:03 +00:00
|
|
|
# Whether or not to enable telemetry
|
|
|
|
# 0: No, 1 (default): Yes
|
|
|
|
enable_telemetry =
|
2017-06-28 02:46:52 +00:00
|
|
|
# Endpoint URL for submitting telemetry data
|
2017-08-23 03:42:30 +00:00
|
|
|
telemetry_endpoint_url = https://services.citra-emu.org/api/telemetry
|
2017-09-19 01:18:26 +00:00
|
|
|
# Endpoint URL to verify the username and token
|
|
|
|
verify_endpoint_url = https://services.citra-emu.org/api/profile
|
2017-08-23 02:37:03 +00:00
|
|
|
# Username and token for Citra Web Service
|
|
|
|
# See https://services.citra-emu.org/ for more info
|
|
|
|
citra_username =
|
|
|
|
citra_token =
|
2014-09-13 00:06:13 +00:00
|
|
|
)";
|
|
|
|
}
|