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.
|
|
|
|
|
2016-04-05 12:29:55 +00:00
|
|
|
#include <memory>
|
2016-03-01 17:24:18 +00:00
|
|
|
#include <SDL.h>
|
2016-09-20 15:21:23 +00:00
|
|
|
#include <inih/cpp/INIReader.h>
|
2014-09-13 00:06:13 +00:00
|
|
|
#include "common/file_util.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/logging/log.h"
|
2017-01-21 11:04:00 +00:00
|
|
|
#include "common/param_package.h"
|
2014-09-13 00:06:13 +00:00
|
|
|
#include "core/settings.h"
|
2017-01-21 09:53:03 +00:00
|
|
|
#include "input_common/main.h"
|
2018-01-12 03:38:17 +00:00
|
|
|
#include "yuzu_cmd/config.h"
|
|
|
|
#include "yuzu_cmd/default_ini.h"
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
Config::Config() {
|
|
|
|
// TODO: Don't hardcode the path; let the frontend decide where to put the config files.
|
2018-07-21 19:52:42 +00:00
|
|
|
sdl2_config_loc = FileUtil::GetUserPath(FileUtil::UserPath::ConfigDir) + "sdl2-config.ini";
|
2016-04-05 12:29:55 +00:00
|
|
|
sdl2_config = std::make_unique<INIReader>(sdl2_config_loc);
|
2014-09-13 00:06:13 +00:00
|
|
|
|
|
|
|
Reload();
|
|
|
|
}
|
|
|
|
|
2017-05-28 01:14:00 +00:00
|
|
|
Config::~Config() = default;
|
|
|
|
|
2016-03-02 12:49:30 +00:00
|
|
|
bool Config::LoadINI(const std::string& default_contents, bool retry) {
|
|
|
|
const char* location = this->sdl2_config_loc.c_str();
|
|
|
|
if (sdl2_config->ParseError() < 0) {
|
2014-09-13 00:06:13 +00:00
|
|
|
if (retry) {
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_WARNING(Config, "Failed to load {}. Creating file from defaults...", location);
|
2014-09-13 00:06:13 +00:00
|
|
|
FileUtil::CreateFullPath(location);
|
|
|
|
FileUtil::WriteStringToFile(true, default_contents, location);
|
2016-04-05 12:29:55 +00:00
|
|
|
sdl2_config = std::make_unique<INIReader>(location); // Reopen file
|
2014-09-13 00:06:13 +00:00
|
|
|
|
2016-03-02 12:49:30 +00:00
|
|
|
return LoadINI(default_contents, false);
|
2014-09-13 00:06:13 +00:00
|
|
|
}
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_ERROR(Config, "Failed.");
|
2014-09-13 00:06:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-07-02 16:13:26 +00:00
|
|
|
LOG_INFO(Config, "Successfully loaded {}", location);
|
2014-09-13 00:06:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-21 09:53:03 +00:00
|
|
|
static const std::array<int, Settings::NativeButton::NumButtons> default_buttons = {
|
|
|
|
SDL_SCANCODE_A, SDL_SCANCODE_S, SDL_SCANCODE_Z, SDL_SCANCODE_X, SDL_SCANCODE_T,
|
|
|
|
SDL_SCANCODE_G, SDL_SCANCODE_F, SDL_SCANCODE_H, SDL_SCANCODE_Q, SDL_SCANCODE_W,
|
|
|
|
SDL_SCANCODE_M, SDL_SCANCODE_N, SDL_SCANCODE_1, SDL_SCANCODE_2, SDL_SCANCODE_B,
|
2015-06-20 03:34:45 +00:00
|
|
|
};
|
|
|
|
|
2017-01-21 11:04:00 +00:00
|
|
|
static const std::array<std::array<int, 5>, Settings::NativeAnalog::NumAnalogs> default_analogs{{
|
|
|
|
{
|
2018-01-20 07:48:02 +00:00
|
|
|
SDL_SCANCODE_UP,
|
|
|
|
SDL_SCANCODE_DOWN,
|
|
|
|
SDL_SCANCODE_LEFT,
|
|
|
|
SDL_SCANCODE_RIGHT,
|
|
|
|
SDL_SCANCODE_D,
|
2017-01-21 11:04:00 +00:00
|
|
|
},
|
|
|
|
{
|
2018-01-20 07:48:02 +00:00
|
|
|
SDL_SCANCODE_I,
|
|
|
|
SDL_SCANCODE_K,
|
|
|
|
SDL_SCANCODE_J,
|
|
|
|
SDL_SCANCODE_L,
|
|
|
|
SDL_SCANCODE_D,
|
2017-01-21 11:04:00 +00:00
|
|
|
},
|
|
|
|
}};
|
|
|
|
|
2014-11-15 19:56:18 +00:00
|
|
|
void Config::ReadValues() {
|
|
|
|
// Controls
|
2017-01-21 09:53:03 +00:00
|
|
|
for (int i = 0; i < Settings::NativeButton::NumButtons; ++i) {
|
|
|
|
std::string default_param = InputCommon::GenerateKeyboardParam(default_buttons[i]);
|
|
|
|
Settings::values.buttons[i] =
|
|
|
|
sdl2_config->Get("Controls", Settings::NativeButton::mapping[i], default_param);
|
|
|
|
if (Settings::values.buttons[i].empty())
|
|
|
|
Settings::values.buttons[i] = default_param;
|
2015-06-20 03:34:45 +00:00
|
|
|
}
|
2014-09-13 00:06:13 +00:00
|
|
|
|
2017-01-21 11:04:00 +00:00
|
|
|
for (int i = 0; i < Settings::NativeAnalog::NumAnalogs; ++i) {
|
|
|
|
std::string default_param = InputCommon::GenerateAnalogParamFromKeys(
|
|
|
|
default_analogs[i][0], default_analogs[i][1], default_analogs[i][2],
|
|
|
|
default_analogs[i][3], default_analogs[i][4], 0.5f);
|
|
|
|
Settings::values.analogs[i] =
|
|
|
|
sdl2_config->Get("Controls", Settings::NativeAnalog::mapping[i], default_param);
|
|
|
|
if (Settings::values.analogs[i].empty())
|
|
|
|
Settings::values.analogs[i] = default_param;
|
|
|
|
}
|
|
|
|
|
2017-08-06 21:04:06 +00:00
|
|
|
Settings::values.motion_device = sdl2_config->Get(
|
|
|
|
"Controls", "motion_device", "engine:motion_emu,update_period:100,sensitivity:0.01");
|
2017-08-08 23:57:42 +00:00
|
|
|
Settings::values.touch_device =
|
|
|
|
sdl2_config->Get("Controls", "touch_device", "engine:emu_window");
|
2017-08-06 21:04:06 +00:00
|
|
|
|
2014-11-15 19:56:18 +00:00
|
|
|
// Core
|
2018-03-27 03:01:40 +00:00
|
|
|
Settings::values.use_cpu_jit = sdl2_config->GetBoolean("Core", "use_cpu_jit", true);
|
2018-05-03 04:34:54 +00:00
|
|
|
Settings::values.use_multi_core = sdl2_config->GetBoolean("Core", "use_multi_core", false);
|
2014-10-25 19:54:44 +00:00
|
|
|
|
2015-04-03 22:35:51 +00:00
|
|
|
// Renderer
|
2017-01-11 12:32:02 +00:00
|
|
|
Settings::values.resolution_factor =
|
|
|
|
(float)sdl2_config->GetReal("Renderer", "resolution_factor", 1.0);
|
2018-08-20 23:14:06 +00:00
|
|
|
Settings::values.use_frame_limit = sdl2_config->GetBoolean("Renderer", "use_frame_limit", true);
|
|
|
|
Settings::values.frame_limit =
|
|
|
|
static_cast<u16>(sdl2_config->GetInteger("Renderer", "frame_limit", 100));
|
2018-06-26 18:36:26 +00:00
|
|
|
Settings::values.use_accurate_framebuffers =
|
|
|
|
sdl2_config->GetBoolean("Renderer", "use_accurate_framebuffers", false);
|
2015-05-03 19:34:48 +00:00
|
|
|
|
2017-06-21 17:45:07 +00:00
|
|
|
Settings::values.bg_red = (float)sdl2_config->GetReal("Renderer", "bg_red", 0.0);
|
|
|
|
Settings::values.bg_green = (float)sdl2_config->GetReal("Renderer", "bg_green", 0.0);
|
|
|
|
Settings::values.bg_blue = (float)sdl2_config->GetReal("Renderer", "bg_blue", 0.0);
|
2015-04-03 22:35:51 +00:00
|
|
|
|
2018-07-31 03:57:53 +00:00
|
|
|
// Audio
|
|
|
|
Settings::values.sink_id = sdl2_config->Get("Audio", "output_engine", "auto");
|
|
|
|
Settings::values.audio_device_id = sdl2_config->Get("Audio", "output_device", "auto");
|
|
|
|
Settings::values.volume = sdl2_config->GetReal("Audio", "volume", 1);
|
|
|
|
|
2014-11-15 19:56:18 +00:00
|
|
|
// Data Storage
|
2016-09-18 00:38:01 +00:00
|
|
|
Settings::values.use_virtual_sd =
|
|
|
|
sdl2_config->GetBoolean("Data Storage", "use_virtual_sd", true);
|
2018-09-01 18:49:07 +00:00
|
|
|
FileUtil::GetUserPath(FileUtil::UserPath::NANDDir,
|
|
|
|
sdl2_config->Get("Data Storage", "nand_directory",
|
|
|
|
FileUtil::GetUserPath(FileUtil::UserPath::NANDDir)));
|
|
|
|
FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir,
|
|
|
|
sdl2_config->Get("Data Storage", "nand_directory",
|
|
|
|
FileUtil::GetUserPath(FileUtil::UserPath::SDMCDir)));
|
2014-10-10 02:43:40 +00:00
|
|
|
|
2018-03-27 02:24:31 +00:00
|
|
|
// System
|
2018-07-18 02:52:25 +00:00
|
|
|
Settings::values.use_docked_mode = sdl2_config->GetBoolean("System", "use_docked_mode", false);
|
2018-03-27 02:24:31 +00:00
|
|
|
|
2014-11-15 19:56:18 +00:00
|
|
|
// Miscellaneous
|
2018-01-13 21:23:12 +00:00
|
|
|
Settings::values.log_filter = sdl2_config->Get("Miscellaneous", "log_filter", "*:Trace");
|
2018-07-28 03:55:23 +00:00
|
|
|
Settings::values.use_dev_keys = sdl2_config->GetBoolean("Miscellaneous", "use_dev_keys", false);
|
2015-09-02 12:56:38 +00:00
|
|
|
|
2015-10-12 00:07:58 +00:00
|
|
|
// Debugging
|
2016-03-01 17:24:18 +00:00
|
|
|
Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false);
|
2016-09-18 00:38:01 +00:00
|
|
|
Settings::values.gdbstub_port =
|
|
|
|
static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689));
|
2014-10-27 21:18:28 +00:00
|
|
|
}
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
void Config::Reload() {
|
2016-03-02 12:49:30 +00:00
|
|
|
LoadINI(DefaultINI::sdl2_config_file);
|
2014-11-15 19:56:18 +00:00
|
|
|
ReadValues();
|
2014-09-13 00:06:13 +00:00
|
|
|
}
|