2014-09-13 05:36:13 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 11:08:14 +05:30
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 05:36:13 +05:30
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-06-20 09:04:45 +05:30
|
|
|
#include <array>
|
2016-09-18 06:08:01 +05:30
|
|
|
#include <string>
|
2016-04-30 21:04:51 +05:30
|
|
|
#include "common/common_types.h"
|
2016-12-21 23:35:56 +05:30
|
|
|
#include "core/hle/service/cam/cam.h"
|
2014-12-07 03:30:08 +05:30
|
|
|
|
2014-09-13 05:36:13 +05:30
|
|
|
namespace Settings {
|
|
|
|
|
2016-05-03 11:37:17 +05:30
|
|
|
enum class LayoutOption {
|
|
|
|
Default,
|
|
|
|
SingleScreen,
|
|
|
|
LargeScreen,
|
|
|
|
Custom,
|
|
|
|
};
|
|
|
|
|
2015-06-20 09:04:45 +05:30
|
|
|
namespace NativeInput {
|
2016-05-03 11:37:17 +05:30
|
|
|
|
2015-06-20 09:04:45 +05:30
|
|
|
enum Values {
|
2016-05-12 15:39:36 +05:30
|
|
|
// directly mapped keys
|
2016-09-18 06:08:01 +05:30
|
|
|
A,
|
|
|
|
B,
|
|
|
|
X,
|
|
|
|
Y,
|
|
|
|
L,
|
|
|
|
R,
|
|
|
|
ZL,
|
|
|
|
ZR,
|
|
|
|
START,
|
|
|
|
SELECT,
|
|
|
|
HOME,
|
|
|
|
DUP,
|
|
|
|
DDOWN,
|
|
|
|
DLEFT,
|
|
|
|
DRIGHT,
|
|
|
|
CUP,
|
|
|
|
CDOWN,
|
|
|
|
CLEFT,
|
|
|
|
CRIGHT,
|
2016-05-12 15:39:36 +05:30
|
|
|
|
|
|
|
// indirectly mapped keys
|
2016-09-18 06:08:01 +05:30
|
|
|
CIRCLE_UP,
|
|
|
|
CIRCLE_DOWN,
|
|
|
|
CIRCLE_LEFT,
|
|
|
|
CIRCLE_RIGHT,
|
2016-05-13 21:02:43 +05:30
|
|
|
CIRCLE_MODIFIER,
|
2016-05-12 15:39:36 +05:30
|
|
|
|
2015-06-20 09:04:45 +05:30
|
|
|
NUM_INPUTS
|
|
|
|
};
|
2016-05-12 15:39:36 +05:30
|
|
|
|
2015-09-16 18:08:12 +05:30
|
|
|
static const std::array<const char*, NUM_INPUTS> Mapping = {{
|
2016-05-12 15:39:36 +05:30
|
|
|
// directly mapped keys
|
2016-09-18 06:08:01 +05:30
|
|
|
"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 15:39:36 +05:30
|
|
|
|
|
|
|
// indirectly mapped keys
|
2016-05-13 21:02:43 +05:30
|
|
|
"pad_circle_up", "pad_circle_down", "pad_circle_left", "pad_circle_right",
|
|
|
|
"pad_circle_modifier",
|
2015-09-16 18:08:12 +05:30
|
|
|
}};
|
|
|
|
static const std::array<Values, NUM_INPUTS> All = {{
|
2016-09-18 06:08:01 +05:30
|
|
|
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 18:08:12 +05:30
|
|
|
}};
|
2015-06-20 09:04:45 +05:30
|
|
|
}
|
|
|
|
|
2014-09-13 05:36:13 +05:30
|
|
|
struct Values {
|
2016-04-20 15:42:05 +05:30
|
|
|
// CheckNew3DS
|
2016-05-25 02:52:44 +05:30
|
|
|
bool is_new_3ds;
|
2016-04-20 15:42:05 +05:30
|
|
|
|
2014-10-26 01:24:44 +05:30
|
|
|
// Controls
|
2015-06-20 09:04:45 +05:30
|
|
|
std::array<int, NativeInput::NUM_INPUTS> input_mappings;
|
2016-05-13 21:02:43 +05:30
|
|
|
float pad_circle_modifier_scale;
|
2014-10-10 08:13:40 +05:30
|
|
|
|
2014-10-26 01:24:44 +05:30
|
|
|
// Core
|
2016-09-02 08:48:01 +05:30
|
|
|
bool use_cpu_jit;
|
2014-10-26 01:24:44 +05:30
|
|
|
|
|
|
|
// Data Storage
|
2014-10-10 08:13:40 +05:30
|
|
|
bool use_virtual_sd;
|
2014-10-28 02:48:28 +05:30
|
|
|
|
2015-02-01 04:41:51 +05:30
|
|
|
// System Region
|
|
|
|
int region_value;
|
|
|
|
|
2015-04-04 04:05:51 +05:30
|
|
|
// Renderer
|
2015-05-04 01:04:48 +05:30
|
|
|
bool use_hw_renderer;
|
2015-07-23 08:55:30 +05:30
|
|
|
bool use_shader_jit;
|
2016-12-30 09:58:27 +05:30
|
|
|
float resolution_factor;
|
2016-08-26 03:50:47 +05:30
|
|
|
bool use_vsync;
|
2016-12-07 01:03:19 +05:30
|
|
|
bool toggle_framelimit;
|
2015-05-04 01:04:48 +05:30
|
|
|
|
2016-05-03 11:37:17 +05:30
|
|
|
LayoutOption layout_option;
|
|
|
|
bool swap_screen;
|
|
|
|
|
2015-04-04 04:05:51 +05:30
|
|
|
float bg_red;
|
|
|
|
float bg_green;
|
|
|
|
float bg_blue;
|
|
|
|
|
2014-12-07 03:30:08 +05:30
|
|
|
std::string log_filter;
|
2015-09-02 18:26:38 +05:30
|
|
|
|
2016-04-27 18:23:23 +05:30
|
|
|
// Audio
|
|
|
|
std::string sink_id;
|
2016-08-31 21:29:37 +05:30
|
|
|
bool enable_audio_stretching;
|
2017-01-26 09:03:26 +05:30
|
|
|
std::string audio_device_id;
|
2016-04-27 18:23:23 +05:30
|
|
|
|
2016-12-21 23:35:56 +05:30
|
|
|
// Camera
|
|
|
|
std::array<std::string, Service::CAM::NumCameras> camera_name;
|
|
|
|
std::array<std::string, Service::CAM::NumCameras> camera_config;
|
|
|
|
|
2015-09-02 18:26:38 +05:30
|
|
|
// Debugging
|
|
|
|
bool use_gdbstub;
|
|
|
|
u16 gdbstub_port;
|
2014-09-13 05:36:13 +05:30
|
|
|
} extern values;
|
|
|
|
|
2016-11-30 15:02:09 +05:30
|
|
|
// 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 18:08:42 +05:30
|
|
|
void Apply();
|
2014-09-13 05:36:13 +05:30
|
|
|
}
|