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