citra/src/core/settings.h

225 lines
4.8 KiB
C++
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2015-06-20 05:34:45 +02:00
#include <array>
2019-01-18 22:32:16 +01:00
#include <atomic>
#include <string>
#include <unordered_map>
#include <vector>
#include "common/common_types.h"
#include "core/hle/service/cam/cam.h"
namespace Settings {
enum class InitClock {
SystemTime = 0,
FixedTime = 1,
};
enum class LayoutOption {
Default,
SingleScreen,
LargeScreen,
SideScreen,
};
2019-03-06 19:16:43 +01:00
enum class MicInputType {
None,
Real,
Static,
};
enum class StereoRenderOption { Off, SideBySide, Anaglyph, Interlaced };
2017-01-20 21:46:39 +01:00
namespace NativeButton {
enum Values {
A,
B,
X,
Y,
Up,
Down,
Left,
Right,
L,
R,
Start,
Select,
Debug,
Gpio14,
2017-01-20 21:46:39 +01:00
ZL,
ZR,
Home,
NumButtons,
};
constexpr int BUTTON_HID_BEGIN = A;
constexpr int BUTTON_IR_BEGIN = ZL;
constexpr int BUTTON_NS_BEGIN = Home;
constexpr int BUTTON_HID_END = BUTTON_IR_BEGIN;
constexpr int BUTTON_IR_END = BUTTON_NS_BEGIN;
constexpr int BUTTON_NS_END = NumButtons;
constexpr int NUM_BUTTONS_HID = BUTTON_HID_END - BUTTON_HID_BEGIN;
constexpr int NUM_BUTTONS_IR = BUTTON_IR_END - BUTTON_IR_BEGIN;
constexpr int NUM_BUTTONS_NS = BUTTON_NS_END - BUTTON_NS_BEGIN;
static const std::array<const char*, NumButtons> mapping = {{
"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_debug",
"button_gpio14",
"button_zl",
"button_zr",
"button_home",
2017-01-20 21:46:39 +01:00
}};
} // namespace NativeButton
2017-01-20 22:58:03 +01:00
namespace NativeAnalog {
enum Values {
CirclePad,
CStick,
NumAnalogs,
};
static const std::array<const char*, NumAnalogs> mapping = {{
"circle_pad",
"c_stick",
2017-01-20 22:58:03 +01:00
}};
} // namespace NativeAnalog
2017-01-20 22:58:03 +01:00
struct InputProfile {
std::string name;
2017-01-20 21:46:39 +01:00
std::array<std::string, NativeButton::NumButtons> buttons;
2017-01-20 22:58:03 +01:00
std::array<std::string, NativeAnalog::NumAnalogs> analogs;
std::string motion_device;
2017-08-08 20:34:17 +02:00
std::string touch_device;
std::string udp_input_address;
u16 udp_input_port;
u8 udp_pad_index;
};
struct Values {
// CheckNew3DS
2016-05-24 23:22:44 +02:00
bool is_new_3ds;
2018-12-29 05:31:55 +01:00
// Controls
InputProfile current_input_profile; ///< The current input profile
int current_input_profile_index; ///< The current input profile index
std::vector<InputProfile> input_profiles; ///< The list of input profiles
2017-01-20 21:46:39 +01:00
// Core
bool use_cpu_jit;
// Data Storage
bool use_virtual_sd;
// System
2015-02-01 00:11:51 +01:00
int region_value;
InitClock init_clock;
u64 init_time;
2015-02-01 00:11:51 +01:00
// Renderer
2019-01-30 21:11:39 +01:00
bool use_gles;
2015-05-03 21:34:48 +02:00
bool use_hw_renderer;
bool use_hw_shader;
2019-09-07 23:23:35 +02:00
bool use_disk_shader_cache;
bool shaders_accurate_mul;
bool use_shader_jit;
u16 resolution_factor;
bool use_frame_limit;
u16 frame_limit;
u16 texture_filter_factor;
std::string texture_filter_name;
2015-05-03 21:34:48 +02:00
LayoutOption layout_option;
bool swap_screen;
bool upright_screen;
2017-02-01 09:22:47 +01:00
bool custom_layout;
u16 custom_top_left;
u16 custom_top_top;
u16 custom_top_right;
u16 custom_top_bottom;
u16 custom_bottom_left;
u16 custom_bottom_top;
u16 custom_bottom_right;
u16 custom_bottom_bottom;
float bg_red;
float bg_green;
float bg_blue;
StereoRenderOption render_3d;
2019-01-18 22:32:16 +01:00
std::atomic<u8> factor_3d;
bool filter_mode;
std::string pp_shader_name;
2019-04-03 02:57:13 +02:00
bool dump_textures;
bool custom_textures;
2019-08-06 17:54:12 +02:00
bool preload_textures;
2019-04-03 02:57:13 +02:00
bool use_vsync_new;
// Audio
bool enable_dsp_lle;
2018-12-20 01:45:22 +01:00
bool enable_dsp_lle_multithread;
std::string sink_id;
bool enable_audio_stretching;
std::string audio_device_id;
2018-06-30 14:26:38 +02:00
float volume;
2019-03-06 19:16:43 +01:00
MicInputType mic_input_type;
2019-02-27 23:13:51 +01:00
std::string mic_input_device;
// Camera
std::array<std::string, Service::CAM::NumCameras> camera_name;
std::array<std::string, Service::CAM::NumCameras> camera_config;
2018-05-20 03:07:37 +02:00
std::array<int, Service::CAM::NumCameras> camera_flip;
2015-09-02 14:56:38 +02:00
// Debugging
bool record_frame_times;
2015-09-02 14:56:38 +02:00
bool use_gdbstub;
u16 gdbstub_port;
std::string log_filter;
std::unordered_map<std::string, bool> lle_modules;
2017-06-28 04:46:52 +02:00
// WebService
bool enable_telemetry;
2018-09-12 19:07:06 +02:00
std::string web_api_url;
std::string citra_username;
std::string citra_token;
} extern values;
// a special value for Values::region_value indicating that citra will automatically select a region
// value to fit the region lockout info of the game
static constexpr int REGION_VALUE_AUTO_SELECT = -1;
2016-04-11 14:38:42 +02:00
void Apply();
2018-07-18 01:39:41 +02:00
void LogSettings();
// Input profiles
void LoadProfile(int index);
void SaveProfile(int index);
void CreateProfile(std::string name);
void DeleteProfile(int index);
void RenameCurrentProfile(std::string new_name);
} // namespace Settings