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.
|
|
|
|
|
2015-06-21 19:28:59 +05:30
|
|
|
#include <QSettings>
|
2014-09-13 05:36:13 +05:30
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
|
2015-09-11 09:53:00 +05:30
|
|
|
#include "citra_qt/config.h"
|
2014-09-13 05:36:13 +05:30
|
|
|
|
2015-09-11 09:53:00 +05:30
|
|
|
#include "common/file_util.h"
|
|
|
|
#include "core/settings.h"
|
2014-09-13 05:36:13 +05:30
|
|
|
|
|
|
|
Config::Config() {
|
|
|
|
|
|
|
|
// TODO: Don't hardcode the path; let the frontend decide where to put the config files.
|
|
|
|
qt_config_loc = FileUtil::GetUserPath(D_CONFIG_IDX) + "qt-config.ini";
|
|
|
|
FileUtil::CreateFullPath(qt_config_loc);
|
|
|
|
qt_config = new QSettings(QString::fromStdString(qt_config_loc), QSettings::IniFormat);
|
|
|
|
|
|
|
|
Reload();
|
|
|
|
}
|
|
|
|
|
2015-06-20 09:04:45 +05:30
|
|
|
static const std::array<QVariant, Settings::NativeInput::NUM_INPUTS> defaults = {
|
|
|
|
Qt::Key_A, Qt::Key_S, Qt::Key_Z, Qt::Key_X,
|
|
|
|
Qt::Key_Q, Qt::Key_W, Qt::Key_1, Qt::Key_2,
|
|
|
|
Qt::Key_M, Qt::Key_N, Qt::Key_B,
|
|
|
|
Qt::Key_T, Qt::Key_G, Qt::Key_F, Qt::Key_H,
|
|
|
|
Qt::Key_Up, Qt::Key_Down, Qt::Key_Left, Qt::Key_Right,
|
|
|
|
Qt::Key_I, Qt::Key_K, Qt::Key_J, Qt::Key_L
|
|
|
|
};
|
|
|
|
|
2014-11-16 01:26:18 +05:30
|
|
|
void Config::ReadValues() {
|
2014-09-13 05:36:13 +05:30
|
|
|
qt_config->beginGroup("Controls");
|
2015-06-20 09:04:45 +05:30
|
|
|
for (int i = 0; i < Settings::NativeInput::NUM_INPUTS; ++i) {
|
|
|
|
Settings::values.input_mappings[Settings::NativeInput::All[i]] =
|
|
|
|
qt_config->value(QString::fromStdString(Settings::NativeInput::Mapping[i]), defaults[i]).toInt();
|
|
|
|
}
|
2014-09-13 05:36:13 +05:30
|
|
|
qt_config->endGroup();
|
2014-11-16 01:26:18 +05:30
|
|
|
|
|
|
|
qt_config->beginGroup("Core");
|
2014-12-27 08:10:17 +05:30
|
|
|
Settings::values.frame_skip = qt_config->value("frame_skip", 0).toInt();
|
2014-11-16 01:26:18 +05:30
|
|
|
qt_config->endGroup();
|
|
|
|
|
2015-04-04 04:05:51 +05:30
|
|
|
qt_config->beginGroup("Renderer");
|
2015-05-04 01:04:48 +05:30
|
|
|
Settings::values.use_hw_renderer = qt_config->value("use_hw_renderer", false).toBool();
|
2015-07-23 08:55:30 +05:30
|
|
|
Settings::values.use_shader_jit = qt_config->value("use_shader_jit", true).toBool();
|
2015-05-04 01:04:48 +05:30
|
|
|
|
2015-04-04 04:05:51 +05:30
|
|
|
Settings::values.bg_red = qt_config->value("bg_red", 1.0).toFloat();
|
|
|
|
Settings::values.bg_green = qt_config->value("bg_green", 1.0).toFloat();
|
|
|
|
Settings::values.bg_blue = qt_config->value("bg_blue", 1.0).toFloat();
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
2014-11-16 01:26:18 +05:30
|
|
|
qt_config->beginGroup("Data Storage");
|
|
|
|
Settings::values.use_virtual_sd = qt_config->value("use_virtual_sd", true).toBool();
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
2015-02-01 04:41:51 +05:30
|
|
|
qt_config->beginGroup("System Region");
|
|
|
|
Settings::values.region_value = qt_config->value("region_value", 1).toInt();
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
2014-11-16 01:26:18 +05:30
|
|
|
qt_config->beginGroup("Miscellaneous");
|
2014-12-07 03:30:08 +05:30
|
|
|
Settings::values.log_filter = qt_config->value("log_filter", "*:Info").toString().toStdString();
|
2014-11-16 01:26:18 +05:30
|
|
|
qt_config->endGroup();
|
2014-09-13 05:36:13 +05:30
|
|
|
}
|
|
|
|
|
2014-11-16 01:26:18 +05:30
|
|
|
void Config::SaveValues() {
|
2014-09-13 05:36:13 +05:30
|
|
|
qt_config->beginGroup("Controls");
|
2015-06-20 09:04:45 +05:30
|
|
|
for (int i = 0; i < Settings::NativeInput::NUM_INPUTS; ++i) {
|
2015-07-28 23:21:09 +05:30
|
|
|
qt_config->setValue(QString::fromStdString(Settings::NativeInput::Mapping[i]),
|
|
|
|
Settings::values.input_mappings[Settings::NativeInput::All[i]]);
|
2015-06-20 09:04:45 +05:30
|
|
|
}
|
2014-09-13 05:36:13 +05:30
|
|
|
qt_config->endGroup();
|
2014-10-26 01:24:44 +05:30
|
|
|
|
|
|
|
qt_config->beginGroup("Core");
|
2014-12-27 08:10:17 +05:30
|
|
|
qt_config->setValue("frame_skip", Settings::values.frame_skip);
|
2014-10-26 01:24:44 +05:30
|
|
|
qt_config->endGroup();
|
2014-10-10 08:13:40 +05:30
|
|
|
|
2015-04-04 04:05:51 +05:30
|
|
|
qt_config->beginGroup("Renderer");
|
2015-05-04 01:04:48 +05:30
|
|
|
qt_config->setValue("use_hw_renderer", Settings::values.use_hw_renderer);
|
2015-07-23 08:55:30 +05:30
|
|
|
qt_config->setValue("use_shader_jit", Settings::values.use_shader_jit);
|
2015-05-04 01:04:48 +05:30
|
|
|
|
2015-04-04 04:05:51 +05:30
|
|
|
// Cast to double because Qt's written float values are not human-readable
|
|
|
|
qt_config->setValue("bg_red", (double)Settings::values.bg_red);
|
|
|
|
qt_config->setValue("bg_green", (double)Settings::values.bg_green);
|
|
|
|
qt_config->setValue("bg_blue", (double)Settings::values.bg_blue);
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
2014-10-10 08:13:40 +05:30
|
|
|
qt_config->beginGroup("Data Storage");
|
|
|
|
qt_config->setValue("use_virtual_sd", Settings::values.use_virtual_sd);
|
|
|
|
qt_config->endGroup();
|
2014-10-28 02:48:28 +05:30
|
|
|
|
2015-02-01 04:41:51 +05:30
|
|
|
qt_config->beginGroup("System Region");
|
|
|
|
qt_config->setValue("region_value", Settings::values.region_value);
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
2014-10-28 02:48:28 +05:30
|
|
|
qt_config->beginGroup("Miscellaneous");
|
2014-12-07 03:30:08 +05:30
|
|
|
qt_config->setValue("log_filter", QString::fromStdString(Settings::values.log_filter));
|
2014-10-28 02:48:28 +05:30
|
|
|
qt_config->endGroup();
|
|
|
|
}
|
|
|
|
|
2014-09-13 05:36:13 +05:30
|
|
|
void Config::Reload() {
|
2014-11-16 01:26:18 +05:30
|
|
|
ReadValues();
|
2014-09-13 05:36:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void Config::Save() {
|
2014-11-16 01:26:18 +05:30
|
|
|
SaveValues();
|
2014-09-13 05:36:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
Config::~Config() {
|
|
|
|
Save();
|
|
|
|
|
|
|
|
delete qt_config;
|
|
|
|
}
|