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
|
|
|
|
|
2015-06-20 03:34:45 +00:00
|
|
|
#include <array>
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <string>
|
2016-04-30 15:34:51 +00:00
|
|
|
#include "common/common_types.h"
|
2014-12-06 22:00:08 +00:00
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
namespace Settings {
|
|
|
|
|
2017-01-20 20:46:39 +00: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 21:58:03 +00:00
|
|
|
namespace NativeAnalog {
|
|
|
|
enum Values {
|
|
|
|
CirclePad,
|
|
|
|
CStick,
|
|
|
|
|
|
|
|
NumAnalogs,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const std::array<const char*, NumAnalogs> mapping = {{
|
|
|
|
"circle_pad", "c_stick",
|
|
|
|
}};
|
2017-08-25 21:53:07 +00:00
|
|
|
} // namespace NativeAnalog
|
2017-01-20 21:58:03 +00:00
|
|
|
|
2018-01-12 16:06:30 +00:00
|
|
|
enum class CpuCore {
|
|
|
|
Unicorn,
|
|
|
|
Dynarmic,
|
|
|
|
};
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
struct Values {
|
2014-10-25 19:54:44 +00:00
|
|
|
// Controls
|
2017-01-20 20:46:39 +00:00
|
|
|
std::array<std::string, NativeButton::NumButtons> buttons;
|
2017-01-20 21:58:03 +00:00
|
|
|
std::array<std::string, NativeAnalog::NumAnalogs> analogs;
|
2017-08-06 19:54:19 +00:00
|
|
|
std::string motion_device;
|
2017-08-08 18:34:17 +00:00
|
|
|
std::string touch_device;
|
2017-01-20 20:46:39 +00:00
|
|
|
|
2014-10-25 19:54:44 +00:00
|
|
|
// Core
|
2018-01-12 16:06:30 +00:00
|
|
|
CpuCore cpu_core;
|
2014-10-25 19:54:44 +00:00
|
|
|
|
|
|
|
// Data Storage
|
2014-10-10 02:43:40 +00:00
|
|
|
bool use_virtual_sd;
|
2014-10-27 21:18:28 +00:00
|
|
|
|
2015-04-03 22:35:51 +00:00
|
|
|
// Renderer
|
2016-12-30 04:28:27 +00:00
|
|
|
float resolution_factor;
|
2016-12-06 19:33:19 +00:00
|
|
|
bool toggle_framelimit;
|
2015-05-03 19:34:48 +00:00
|
|
|
|
2015-04-03 22:35:51 +00:00
|
|
|
float bg_red;
|
|
|
|
float bg_green;
|
|
|
|
float bg_blue;
|
|
|
|
|
2014-12-06 22:00:08 +00:00
|
|
|
std::string log_filter;
|
2015-09-02 12:56:38 +00:00
|
|
|
|
|
|
|
// Debugging
|
|
|
|
bool use_gdbstub;
|
|
|
|
u16 gdbstub_port;
|
2014-09-13 00:06:13 +00:00
|
|
|
} extern values;
|
|
|
|
|
2016-04-11 12:38:42 +00:00
|
|
|
void Apply();
|
2017-08-25 21:53:07 +00:00
|
|
|
} // namespace Settings
|