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