2014-09-13 02:06:13 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 02:06:13 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-06-20 05:34:45 +02:00
|
|
|
#include <array>
|
2016-09-18 02:38:01 +02:00
|
|
|
#include <string>
|
2016-04-30 17:34:51 +02:00
|
|
|
#include "common/common_types.h"
|
2016-12-21 19:05:56 +01:00
|
|
|
#include "core/hle/service/cam/cam.h"
|
2014-12-06 23:00:08 +01:00
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
namespace Settings {
|
|
|
|
|
2016-05-03 08:07:17 +02:00
|
|
|
enum class LayoutOption {
|
|
|
|
Default,
|
|
|
|
SingleScreen,
|
|
|
|
LargeScreen,
|
2017-08-25 23:53:07 +02:00
|
|
|
SideScreen,
|
2016-05-03 08:07:17 +02:00
|
|
|
};
|
|
|
|
|
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",
|
|
|
|
}};
|
2017-08-25 23:53:07 +02:00
|
|
|
} // namespace NativeAnalog
|
2017-01-20 22:58:03 +01:00
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
struct Values {
|
2016-04-20 12:12:05 +02:00
|
|
|
// CheckNew3DS
|
2016-05-24 23:22:44 +02:00
|
|
|
bool is_new_3ds;
|
2016-04-20 12:12:05 +02:00
|
|
|
|
2014-10-25 21:54:44 +02:00
|
|
|
// 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;
|
2017-08-06 21:54:19 +02:00
|
|
|
std::string motion_device;
|
2017-08-08 20:34:17 +02:00
|
|
|
std::string touch_device;
|
2017-01-20 21:46:39 +01:00
|
|
|
|
2014-10-25 21:54:44 +02:00
|
|
|
// Core
|
2016-09-02 05:18:01 +02:00
|
|
|
bool use_cpu_jit;
|
2014-10-25 21:54:44 +02:00
|
|
|
|
|
|
|
// Data Storage
|
2014-10-10 04:43:40 +02:00
|
|
|
bool use_virtual_sd;
|
2014-10-27 22:18:28 +01:00
|
|
|
|
2015-02-01 00:11:51 +01:00
|
|
|
// System Region
|
|
|
|
int region_value;
|
|
|
|
|
2015-04-04 00:35:51 +02:00
|
|
|
// Renderer
|
2015-05-03 21:34:48 +02:00
|
|
|
bool use_hw_renderer;
|
2015-07-23 05:25:30 +02:00
|
|
|
bool use_shader_jit;
|
2016-12-30 05:28:27 +01:00
|
|
|
float resolution_factor;
|
2016-08-26 00:20:47 +02:00
|
|
|
bool use_vsync;
|
2016-12-06 20:33:19 +01:00
|
|
|
bool toggle_framelimit;
|
2015-05-03 21:34:48 +02:00
|
|
|
|
2016-05-03 08:07:17 +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;
|
2016-05-03 08:07:17 +02:00
|
|
|
|
2015-04-04 00:35:51 +02:00
|
|
|
float bg_red;
|
|
|
|
float bg_green;
|
|
|
|
float bg_blue;
|
|
|
|
|
2014-12-06 23:00:08 +01:00
|
|
|
std::string log_filter;
|
2015-09-02 14:56:38 +02:00
|
|
|
|
2016-04-27 14:53:23 +02:00
|
|
|
// Audio
|
|
|
|
std::string sink_id;
|
2016-08-31 17:59:37 +02:00
|
|
|
bool enable_audio_stretching;
|
2017-01-26 04:33:26 +01:00
|
|
|
std::string audio_device_id;
|
2016-04-27 14:53:23 +02:00
|
|
|
|
2016-12-21 19:05:56 +01:00
|
|
|
// Camera
|
|
|
|
std::array<std::string, Service::CAM::NumCameras> camera_name;
|
|
|
|
std::array<std::string, Service::CAM::NumCameras> camera_config;
|
|
|
|
|
2015-09-02 14:56:38 +02:00
|
|
|
// Debugging
|
|
|
|
bool use_gdbstub;
|
|
|
|
u16 gdbstub_port;
|
2017-06-28 04:46:52 +02:00
|
|
|
|
|
|
|
// WebService
|
2017-08-23 04:37:03 +02:00
|
|
|
bool enable_telemetry;
|
2017-06-28 04:46:52 +02:00
|
|
|
std::string telemetry_endpoint_url;
|
2017-08-23 04:37:03 +02:00
|
|
|
std::string citra_username;
|
|
|
|
std::string citra_token;
|
2014-09-13 02:06:13 +02:00
|
|
|
} extern values;
|
|
|
|
|
2016-11-30 10:32:09 +01:00
|
|
|
// 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();
|
2017-08-25 23:53:07 +02:00
|
|
|
} // namespace Settings
|