yuzu/src/core/settings.h

142 lines
2.9 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>
#include <string>
#include "common/common_types.h"
namespace Settings {
enum class LayoutOption {
Default,
SingleScreen,
LargeScreen,
SideScreen,
};
2017-01-20 21:46:39 +01:00
namespace NativeButton {
enum Values {
A,
B,
X,
Y,
Up,
Down,
Left,
Right,
L,
R,
Start,
Select,
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_zl",
"button_zr", "button_home",
}};
} // 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",
}};
} // namespace NativeAnalog
2017-01-20 22:58:03 +01:00
struct Values {
// CheckNew3DS
2016-05-24 23:22:44 +02:00
bool is_new_3ds;
// Controls
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;
2017-01-20 21:46:39 +01:00
// Core
bool use_cpu_jit;
// Data Storage
bool use_virtual_sd;
2015-02-01 00:11:51 +01:00
// System Region
int region_value;
// Renderer
2015-05-03 21:34:48 +02:00
bool use_hw_renderer;
bool use_shader_jit;
float resolution_factor;
bool use_vsync;
bool toggle_framelimit;
2015-05-03 21:34:48 +02:00
LayoutOption layout_option;
bool swap_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;
std::string log_filter;
2015-09-02 14:56:38 +02:00
// Audio
std::string sink_id;
bool enable_audio_stretching;
std::string audio_device_id;
2015-09-02 14:56:38 +02:00
// Debugging
bool use_gdbstub;
u16 gdbstub_port;
2017-06-28 04:46:52 +02:00
// WebService
bool enable_telemetry;
2017-06-28 04:46:52 +02:00
std::string telemetry_endpoint_url;
std::string verify_endpoint_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();
} // namespace Settings