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.
|
|
|
|
|
2015-06-20 19:34:41 +00:00
|
|
|
#define GLFW_INCLUDE_NONE
|
2014-09-13 00:06:13 +00:00
|
|
|
#include <GLFW/glfw3.h>
|
2015-06-20 19:34:41 +00:00
|
|
|
#include <inih/cpp/INIReader.h>
|
2014-09-13 00:06:13 +00:00
|
|
|
|
|
|
|
#include "citra/default_ini.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
|
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"
|
|
|
|
|
2014-09-13 00:06:13 +00: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 01:53:49 +00:00
|
|
|
LOG_WARNING(Config, "Failed to load %s. Creating file from defaults...", location);
|
2014-09-13 00:06:13 +00: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 01:53:49 +00:00
|
|
|
LOG_ERROR(Config, "Failed.");
|
2014-09-13 00:06:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_INFO(Config, "Successfully loaded %s", location);
|
2014-09-13 00:06:13 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-11-15 19:56:18 +00:00
|
|
|
void Config::ReadValues() {
|
|
|
|
// Controls
|
2014-09-13 00:06:13 +00:00
|
|
|
Settings::values.pad_a_key = glfw_config->GetInteger("Controls", "pad_a", GLFW_KEY_A);
|
|
|
|
Settings::values.pad_b_key = glfw_config->GetInteger("Controls", "pad_b", GLFW_KEY_S);
|
|
|
|
Settings::values.pad_x_key = glfw_config->GetInteger("Controls", "pad_x", GLFW_KEY_Z);
|
|
|
|
Settings::values.pad_y_key = glfw_config->GetInteger("Controls", "pad_y", GLFW_KEY_X);
|
|
|
|
Settings::values.pad_l_key = glfw_config->GetInteger("Controls", "pad_l", GLFW_KEY_Q);
|
|
|
|
Settings::values.pad_r_key = glfw_config->GetInteger("Controls", "pad_r", GLFW_KEY_W);
|
2015-02-21 23:50:16 +00:00
|
|
|
Settings::values.pad_zl_key = glfw_config->GetInteger("Controls", "pad_zl", GLFW_KEY_1);
|
|
|
|
Settings::values.pad_zr_key = glfw_config->GetInteger("Controls", "pad_zr", GLFW_KEY_2);
|
2014-09-13 00:06:13 +00:00
|
|
|
Settings::values.pad_start_key = glfw_config->GetInteger("Controls", "pad_start", GLFW_KEY_M);
|
|
|
|
Settings::values.pad_select_key = glfw_config->GetInteger("Controls", "pad_select", GLFW_KEY_N);
|
|
|
|
Settings::values.pad_home_key = glfw_config->GetInteger("Controls", "pad_home", GLFW_KEY_B);
|
|
|
|
Settings::values.pad_dup_key = glfw_config->GetInteger("Controls", "pad_dup", GLFW_KEY_T);
|
|
|
|
Settings::values.pad_ddown_key = glfw_config->GetInteger("Controls", "pad_ddown", GLFW_KEY_G);
|
|
|
|
Settings::values.pad_dleft_key = glfw_config->GetInteger("Controls", "pad_dleft", GLFW_KEY_F);
|
|
|
|
Settings::values.pad_dright_key = glfw_config->GetInteger("Controls", "pad_dright", GLFW_KEY_H);
|
|
|
|
Settings::values.pad_sup_key = glfw_config->GetInteger("Controls", "pad_sup", GLFW_KEY_UP);
|
|
|
|
Settings::values.pad_sdown_key = glfw_config->GetInteger("Controls", "pad_sdown", GLFW_KEY_DOWN);
|
|
|
|
Settings::values.pad_sleft_key = glfw_config->GetInteger("Controls", "pad_sleft", GLFW_KEY_LEFT);
|
|
|
|
Settings::values.pad_sright_key = glfw_config->GetInteger("Controls", "pad_sright", GLFW_KEY_RIGHT);
|
2015-02-21 23:50:16 +00:00
|
|
|
Settings::values.pad_cup_key = glfw_config->GetInteger("Controls", "pad_cup", GLFW_KEY_I);
|
|
|
|
Settings::values.pad_cdown_key = glfw_config->GetInteger("Controls", "pad_cdown", GLFW_KEY_K);
|
|
|
|
Settings::values.pad_cleft_key = glfw_config->GetInteger("Controls", "pad_cleft", GLFW_KEY_J);
|
|
|
|
Settings::values.pad_cright_key = glfw_config->GetInteger("Controls", "pad_cright", GLFW_KEY_L);
|
2014-09-13 00:06:13 +00:00
|
|
|
|
2014-11-15 19:56:18 +00:00
|
|
|
// Core
|
2014-12-27 02:40:17 +00:00
|
|
|
Settings::values.frame_skip = glfw_config->GetInteger("Core", "frame_skip", 0);
|
2014-10-25 19:54:44 +00:00
|
|
|
|
2015-04-03 22:35:51 +00:00
|
|
|
// Renderer
|
2015-05-03 19:34:48 +00:00
|
|
|
Settings::values.use_hw_renderer = glfw_config->GetBoolean("Renderer", "use_hw_renderer", false);
|
|
|
|
|
2015-04-03 22:35:51 +00: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 19:56:18 +00:00
|
|
|
// Data Storage
|
2014-10-10 02:43:40 +00:00
|
|
|
Settings::values.use_virtual_sd = glfw_config->GetBoolean("Data Storage", "use_virtual_sd", true);
|
|
|
|
|
2015-01-31 23:11:51 +00:00
|
|
|
// System Region
|
|
|
|
Settings::values.region_value = glfw_config->GetInteger("System Region", "region_value", 1);
|
|
|
|
|
2014-11-15 19:56:18 +00:00
|
|
|
// Miscellaneous
|
2014-12-06 22:00:08 +00:00
|
|
|
Settings::values.log_filter = glfw_config->Get("Miscellaneous", "log_filter", "*:Info");
|
2014-10-27 21:18:28 +00:00
|
|
|
}
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
void Config::Reload() {
|
|
|
|
LoadINI(glfw_config, glfw_config_loc.c_str(), DefaultINI::glfw_config_file);
|
2014-11-15 19:56:18 +00:00
|
|
|
ReadValues();
|
2014-09-13 00:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Config::~Config() {
|
|
|
|
delete glfw_config;
|
|
|
|
}
|