2014-09-13 02:06:13 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 02:06:13 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-20 21:34:41 +02:00
|
|
|
#define GLFW_INCLUDE_NONE
|
2014-09-13 02:06:13 +02:00
|
|
|
#include <GLFW/glfw3.h>
|
2015-06-20 21:34:41 +02:00
|
|
|
#include <inih/cpp/INIReader.h>
|
2014-09-13 02:06:13 +02:00
|
|
|
|
|
|
|
#include "citra/default_ini.h"
|
2015-05-06 09:06:12 +02:00
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
#include "common/file_util.h"
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
#include "core/settings.h"
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
Config::Config() {
|
|
|
|
// TODO: Don't hardcode the path; let the frontend decide where to put the config files.
|
|
|
|
glfw_config_loc = FileUtil::GetUserPath(D_CONFIG_IDX) + "glfw-config.ini";
|
|
|
|
glfw_config = new INIReader(glfw_config_loc);
|
|
|
|
|
|
|
|
Reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Config::LoadINI(INIReader* config, const char* location, const std::string& default_contents, bool retry) {
|
|
|
|
if (config->ParseError() < 0) {
|
|
|
|
if (retry) {
|
2014-12-06 02:53:49 +01:00
|
|
|
LOG_WARNING(Config, "Failed to load %s. Creating file from defaults...", location);
|
2014-09-13 02:06:13 +02:00
|
|
|
FileUtil::CreateFullPath(location);
|
|
|
|
FileUtil::WriteStringToFile(true, default_contents, location);
|
|
|
|
*config = INIReader(location); // Reopen file
|
|
|
|
|
|
|
|
return LoadINI(config, location, default_contents, false);
|
|
|
|
}
|
2014-12-06 02:53:49 +01:00
|
|
|
LOG_ERROR(Config, "Failed.");
|
2014-09-13 02:06:13 +02:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-06 02:53:49 +01:00
|
|
|
LOG_INFO(Config, "Successfully loaded %s", location);
|
2014-09-13 02:06:13 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-20 05:34:45 +02:00
|
|
|
static const std::array<int, Settings::NativeInput::NUM_INPUTS> defaults = {
|
|
|
|
GLFW_KEY_A, GLFW_KEY_S, GLFW_KEY_Z, GLFW_KEY_X,
|
|
|
|
GLFW_KEY_Q, GLFW_KEY_W, GLFW_KEY_1, GLFW_KEY_2,
|
|
|
|
GLFW_KEY_M, GLFW_KEY_N, GLFW_KEY_B,
|
|
|
|
GLFW_KEY_T, GLFW_KEY_G, GLFW_KEY_F, GLFW_KEY_H,
|
|
|
|
GLFW_KEY_UP, GLFW_KEY_DOWN, GLFW_KEY_LEFT, GLFW_KEY_RIGHT,
|
|
|
|
GLFW_KEY_I, GLFW_KEY_K, GLFW_KEY_J, GLFW_KEY_L
|
|
|
|
};
|
|
|
|
|
2014-11-15 20:56:18 +01:00
|
|
|
void Config::ReadValues() {
|
|
|
|
// Controls
|
2015-06-20 05:34:45 +02:00
|
|
|
for (int i = 0; i < Settings::NativeInput::NUM_INPUTS; ++i) {
|
|
|
|
Settings::values.input_mappings[Settings::NativeInput::All[i]] =
|
|
|
|
glfw_config->GetInteger("Controls", Settings::NativeInput::Mapping[i], defaults[i]);
|
|
|
|
}
|
2014-09-13 02:06:13 +02:00
|
|
|
|
2014-11-15 20:56:18 +01:00
|
|
|
// Core
|
2014-12-27 03:40:17 +01:00
|
|
|
Settings::values.frame_skip = glfw_config->GetInteger("Core", "frame_skip", 0);
|
2014-10-25 21:54:44 +02:00
|
|
|
|
2015-04-04 00:35:51 +02:00
|
|
|
// Renderer
|
2015-05-03 21:34:48 +02:00
|
|
|
Settings::values.use_hw_renderer = glfw_config->GetBoolean("Renderer", "use_hw_renderer", false);
|
2015-07-23 05:25:30 +02:00
|
|
|
Settings::values.use_shader_jit = glfw_config->GetBoolean("Renderer", "use_shader_jit", true);
|
2015-05-03 21:34:48 +02:00
|
|
|
|
2015-04-04 00:35:51 +02:00
|
|
|
Settings::values.bg_red = (float)glfw_config->GetReal("Renderer", "bg_red", 1.0);
|
|
|
|
Settings::values.bg_green = (float)glfw_config->GetReal("Renderer", "bg_green", 1.0);
|
|
|
|
Settings::values.bg_blue = (float)glfw_config->GetReal("Renderer", "bg_blue", 1.0);
|
|
|
|
|
2014-11-15 20:56:18 +01:00
|
|
|
// Data Storage
|
2014-10-10 04:43:40 +02:00
|
|
|
Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true);
|
|
|
|
|
2015-02-01 00:11:51 +01:00
|
|
|
// System Region
|
|
|
|
Settings::values.region_value = glfw_config->GetInteger("System Region", "region_value", 1);
|
|
|
|
|
2014-11-15 20:56:18 +01:00
|
|
|
// Miscellaneous
|
2014-12-06 23:00:08 +01:00
|
|
|
Settings::values.log_filter = glfw_config->Get("Miscellaneous", "log_filter", "*:Info");
|
2015-09-02 14:56:38 +02:00
|
|
|
|
2015-10-12 02:07:58 +02:00
|
|
|
// Debugging
|
2015-09-02 14:56:38 +02:00
|
|
|
Settings::values.use_gdbstub = glfw_config->GetBoolean("Debugging", "use_gdbstub", false);
|
|
|
|
Settings::values.gdbstub_port = glfw_config->GetInteger("Debugging", "gdbstub_port", 24689);
|
2014-10-27 22:18:28 +01:00
|
|
|
}
|
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
void Config::Reload() {
|
|
|
|
LoadINI(glfw_config, glfw_config_loc.c_str(), DefaultINI::glfw_config_file);
|
2014-11-15 20:56:18 +01:00
|
|
|
ReadValues();
|
2014-09-13 02:06:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Config::~Config() {
|
|
|
|
delete glfw_config;
|
|
|
|
}
|