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"
|
2016-12-21 18:05:56 +00:00
|
|
|
#include "core/hle/service/cam/cam.h"
|
2014-12-06 22:00:08 +00:00
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
namespace Settings {
|
|
|
|
|
2016-05-03 06:07:17 +00:00
|
|
|
enum class LayoutOption {
|
|
|
|
Default,
|
|
|
|
SingleScreen,
|
|
|
|
LargeScreen,
|
|
|
|
Custom,
|
|
|
|
};
|
|
|
|
|
2015-06-20 03:34:45 +00:00
|
|
|
namespace NativeInput {
|
2016-05-03 06:07:17 +00:00
|
|
|
|
2015-06-20 03:34:45 +00:00
|
|
|
enum Values {
|
2016-05-12 10:09:36 +00:00
|
|
|
// directly mapped keys
|
2016-09-18 00:38:01 +00:00
|
|
|
A,
|
|
|
|
B,
|
|
|
|
X,
|
|
|
|
Y,
|
|
|
|
L,
|
|
|
|
R,
|
|
|
|
ZL,
|
|
|
|
ZR,
|
|
|
|
START,
|
|
|
|
SELECT,
|
|
|
|
HOME,
|
|
|
|
DUP,
|
|
|
|
DDOWN,
|
|
|
|
DLEFT,
|
|
|
|
DRIGHT,
|
|
|
|
CUP,
|
|
|
|
CDOWN,
|
|
|
|
CLEFT,
|
|
|
|
CRIGHT,
|
2016-05-12 10:09:36 +00:00
|
|
|
|
|
|
|
// indirectly mapped keys
|
2016-09-18 00:38:01 +00:00
|
|
|
CIRCLE_UP,
|
|
|
|
CIRCLE_DOWN,
|
|
|
|
CIRCLE_LEFT,
|
|
|
|
CIRCLE_RIGHT,
|
2016-05-13 15:32:43 +00:00
|
|
|
CIRCLE_MODIFIER,
|
2016-05-12 10:09:36 +00:00
|
|
|
|
2015-06-20 03:34:45 +00:00
|
|
|
NUM_INPUTS
|
|
|
|
};
|
2016-05-12 10:09:36 +00:00
|
|
|
|
2015-09-16 12:38:12 +00:00
|
|
|
static const std::array<const char*, NUM_INPUTS> Mapping = {{
|
2016-05-12 10:09:36 +00:00
|
|
|
// directly mapped keys
|
2016-09-18 00:38:01 +00:00
|
|
|
"pad_a", "pad_b", "pad_x", "pad_y", "pad_l", "pad_r", "pad_zl", "pad_zr", "pad_start",
|
|
|
|
"pad_select", "pad_home", "pad_dup", "pad_ddown", "pad_dleft", "pad_dright", "pad_cup",
|
|
|
|
"pad_cdown", "pad_cleft", "pad_cright",
|
2016-05-12 10:09:36 +00:00
|
|
|
|
|
|
|
// indirectly mapped keys
|
2016-05-13 15:32:43 +00:00
|
|
|
"pad_circle_up", "pad_circle_down", "pad_circle_left", "pad_circle_right",
|
|
|
|
"pad_circle_modifier",
|
2015-09-16 12:38:12 +00:00
|
|
|
}};
|
|
|
|
static const std::array<Values, NUM_INPUTS> All = {{
|
2016-09-18 00:38:01 +00:00
|
|
|
A, B, X, Y, L, R, ZL, ZR,
|
|
|
|
START, SELECT, HOME, DUP, DDOWN, DLEFT, DRIGHT, CUP,
|
|
|
|
CDOWN, CLEFT, CRIGHT, CIRCLE_UP, CIRCLE_DOWN, CIRCLE_LEFT, CIRCLE_RIGHT, CIRCLE_MODIFIER,
|
2015-09-16 12:38:12 +00:00
|
|
|
}};
|
2015-06-20 03:34:45 +00:00
|
|
|
}
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
struct Values {
|
2016-04-20 10:12:05 +00:00
|
|
|
// CheckNew3DS
|
2016-05-24 21:22:44 +00:00
|
|
|
bool is_new_3ds;
|
2016-04-20 10:12:05 +00:00
|
|
|
|
2014-10-25 19:54:44 +00:00
|
|
|
// Controls
|
2015-06-20 03:34:45 +00:00
|
|
|
std::array<int, NativeInput::NUM_INPUTS> input_mappings;
|
2016-05-13 15:32:43 +00:00
|
|
|
float pad_circle_modifier_scale;
|
2014-10-10 02:43:40 +00:00
|
|
|
|
2014-10-25 19:54:44 +00:00
|
|
|
// Core
|
2016-09-02 03:18:01 +00:00
|
|
|
bool use_cpu_jit;
|
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-01-31 23:11:51 +00:00
|
|
|
// System Region
|
|
|
|
int region_value;
|
|
|
|
|
2015-04-03 22:35:51 +00:00
|
|
|
// Renderer
|
2015-05-03 19:34:48 +00:00
|
|
|
bool use_hw_renderer;
|
2015-07-23 03:25:30 +00:00
|
|
|
bool use_shader_jit;
|
2016-12-30 04:28:27 +00:00
|
|
|
float resolution_factor;
|
2016-08-25 22:20:47 +00:00
|
|
|
bool use_vsync;
|
2016-12-06 19:33:19 +00:00
|
|
|
bool toggle_framelimit;
|
2015-05-03 19:34:48 +00:00
|
|
|
|
2016-05-03 06:07:17 +00:00
|
|
|
LayoutOption layout_option;
|
|
|
|
bool swap_screen;
|
|
|
|
|
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
|
|
|
|
2016-04-27 12:53:23 +00:00
|
|
|
// Audio
|
|
|
|
std::string sink_id;
|
2016-08-31 15:59:37 +00:00
|
|
|
bool enable_audio_stretching;
|
2017-01-26 03:33:26 +00:00
|
|
|
std::string audio_device_id;
|
2016-04-27 12:53:23 +00:00
|
|
|
|
2016-12-21 18:05:56 +00:00
|
|
|
// Camera
|
|
|
|
std::array<std::string, Service::CAM::NumCameras> camera_name;
|
|
|
|
std::array<std::string, Service::CAM::NumCameras> camera_config;
|
|
|
|
|
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-11-30 09:32:09 +00: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 12:38:42 +00:00
|
|
|
void Apply();
|
2014-09-13 00:06:13 +00:00
|
|
|
}
|