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.
|
|
|
|
|
2016-09-20 17:21:23 +02:00
|
|
|
#include <QSettings>
|
2015-09-11 06:23:00 +02:00
|
|
|
#include "common/file_util.h"
|
2017-01-21 10:53:03 +01:00
|
|
|
#include "input_common/main.h"
|
2018-01-12 04:33:56 +01:00
|
|
|
#include "yuzu/configuration/config.h"
|
|
|
|
#include "yuzu/ui_settings.h"
|
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2017-01-21 10:53:03 +01:00
|
|
|
const std::array<int, Settings::NativeButton::NumButtons> Config::default_buttons = {
|
2018-01-16 19:05:21 +01:00
|
|
|
Qt::Key_A, Qt::Key_S, Qt::Key_Z, Qt::Key_X, Qt::Key_3, Qt::Key_4, Qt::Key_Q,
|
|
|
|
Qt::Key_W, Qt::Key_1, Qt::Key_2, Qt::Key_N, Qt::Key_M, Qt::Key_F, Qt::Key_T,
|
|
|
|
Qt::Key_H, Qt::Key_G, Qt::Key_Left, Qt::Key_Up, Qt::Key_Right, Qt::Key_Down, Qt::Key_J,
|
|
|
|
Qt::Key_I, Qt::Key_L, Qt::Key_K, Qt::Key_D, Qt::Key_C, Qt::Key_B, Qt::Key_V,
|
2015-06-20 05:34:45 +02:00
|
|
|
};
|
|
|
|
|
2017-01-21 12:04:00 +01:00
|
|
|
const std::array<std::array<int, 5>, Settings::NativeAnalog::NumAnalogs> Config::default_analogs{{
|
|
|
|
{
|
2018-01-20 08:48:02 +01:00
|
|
|
Qt::Key_Up,
|
|
|
|
Qt::Key_Down,
|
|
|
|
Qt::Key_Left,
|
|
|
|
Qt::Key_Right,
|
|
|
|
Qt::Key_E,
|
2017-01-21 12:04:00 +01:00
|
|
|
},
|
|
|
|
{
|
2018-01-20 08:48:02 +01:00
|
|
|
Qt::Key_I,
|
|
|
|
Qt::Key_K,
|
|
|
|
Qt::Key_J,
|
|
|
|
Qt::Key_L,
|
|
|
|
Qt::Key_R,
|
2017-01-21 12:04:00 +01:00
|
|
|
},
|
|
|
|
}};
|
|
|
|
|
2014-11-15 20:56:18 +01:00
|
|
|
void Config::ReadValues() {
|
2014-09-13 02:06:13 +02:00
|
|
|
qt_config->beginGroup("Controls");
|
2017-01-21 10:53:03 +01:00
|
|
|
for (int i = 0; i < Settings::NativeButton::NumButtons; ++i) {
|
|
|
|
std::string default_param = InputCommon::GenerateKeyboardParam(default_buttons[i]);
|
|
|
|
Settings::values.buttons[i] =
|
|
|
|
qt_config
|
|
|
|
->value(Settings::NativeButton::mapping[i], QString::fromStdString(default_param))
|
|
|
|
.toString()
|
|
|
|
.toStdString();
|
|
|
|
if (Settings::values.buttons[i].empty())
|
|
|
|
Settings::values.buttons[i] = default_param;
|
2015-06-20 05:34:45 +02:00
|
|
|
}
|
2017-01-21 12:04:00 +01: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] =
|
|
|
|
qt_config
|
|
|
|
->value(Settings::NativeAnalog::mapping[i], QString::fromStdString(default_param))
|
|
|
|
.toString()
|
|
|
|
.toStdString();
|
|
|
|
if (Settings::values.analogs[i].empty())
|
|
|
|
Settings::values.analogs[i] = default_param;
|
|
|
|
}
|
|
|
|
|
2017-08-06 23:04:06 +02:00
|
|
|
Settings::values.motion_device =
|
|
|
|
qt_config->value("motion_device", "engine:motion_emu,update_period:100,sensitivity:0.01")
|
|
|
|
.toString()
|
|
|
|
.toStdString();
|
2017-08-09 01:57:42 +02:00
|
|
|
Settings::values.touch_device =
|
|
|
|
qt_config->value("touch_device", "engine:emu_window").toString().toStdString();
|
2017-08-06 23:04:06 +02:00
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
qt_config->endGroup();
|
2014-11-15 20:56:18 +01:00
|
|
|
|
|
|
|
qt_config->beginGroup("Core");
|
2018-01-12 17:06:30 +01:00
|
|
|
Settings::values.cpu_core =
|
2018-02-14 18:47:51 +01:00
|
|
|
static_cast<Settings::CpuCore>(qt_config->value("cpu_core", 1).toInt());
|
2014-11-15 20:56:18 +01:00
|
|
|
qt_config->endGroup();
|
|
|
|
|
2015-04-04 00:35:51 +02:00
|
|
|
qt_config->beginGroup("Renderer");
|
2016-12-30 05:28:27 +01:00
|
|
|
Settings::values.resolution_factor = qt_config->value("resolution_factor", 1.0).toFloat();
|
2016-12-06 20:33:19 +01:00
|
|
|
Settings::values.toggle_framelimit = qt_config->value("toggle_framelimit", true).toBool();
|
2015-05-03 21:34:48 +02:00
|
|
|
|
2017-06-21 19:45:07 +02:00
|
|
|
Settings::values.bg_red = qt_config->value("bg_red", 0.0).toFloat();
|
|
|
|
Settings::values.bg_green = qt_config->value("bg_green", 0.0).toFloat();
|
|
|
|
Settings::values.bg_blue = qt_config->value("bg_blue", 0.0).toFloat();
|
2015-04-04 00:35:51 +02:00
|
|
|
qt_config->endGroup();
|
|
|
|
|
2014-11-15 20:56:18 +01:00
|
|
|
qt_config->beginGroup("Data Storage");
|
|
|
|
Settings::values.use_virtual_sd = qt_config->value("use_virtual_sd", true).toBool();
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
|
|
|
qt_config->beginGroup("Miscellaneous");
|
2018-01-15 17:15:10 +01:00
|
|
|
Settings::values.log_filter = qt_config->value("log_filter", "*:Info").toString().toStdString();
|
2014-11-15 20:56:18 +01:00
|
|
|
qt_config->endGroup();
|
2015-09-02 14:56:38 +02:00
|
|
|
|
|
|
|
qt_config->beginGroup("Debugging");
|
|
|
|
Settings::values.use_gdbstub = qt_config->value("use_gdbstub", false).toBool();
|
|
|
|
Settings::values.gdbstub_port = qt_config->value("gdbstub_port", 24689).toInt();
|
|
|
|
qt_config->endGroup();
|
2016-01-24 21:23:55 +01:00
|
|
|
|
|
|
|
qt_config->beginGroup("UI");
|
|
|
|
qt_config->beginGroup("UILayout");
|
|
|
|
UISettings::values.geometry = qt_config->value("geometry").toByteArray();
|
|
|
|
UISettings::values.state = qt_config->value("state").toByteArray();
|
2016-09-18 02:38:01 +02:00
|
|
|
UISettings::values.renderwindow_geometry =
|
|
|
|
qt_config->value("geometryRenderWindow").toByteArray();
|
|
|
|
UISettings::values.gamelist_header_state =
|
|
|
|
qt_config->value("gameListHeaderState").toByteArray();
|
|
|
|
UISettings::values.microprofile_geometry =
|
|
|
|
qt_config->value("microProfileDialogGeometry").toByteArray();
|
|
|
|
UISettings::values.microprofile_visible =
|
|
|
|
qt_config->value("microProfileDialogVisible", false).toBool();
|
2016-01-24 21:23:55 +01:00
|
|
|
qt_config->endGroup();
|
|
|
|
|
|
|
|
qt_config->beginGroup("Paths");
|
|
|
|
UISettings::values.roms_path = qt_config->value("romsPath").toString();
|
|
|
|
UISettings::values.symbols_path = qt_config->value("symbolsPath").toString();
|
2016-01-24 21:54:04 +01:00
|
|
|
UISettings::values.gamedir = qt_config->value("gameListRootDir", ".").toString();
|
2016-01-24 21:23:55 +01:00
|
|
|
UISettings::values.gamedir_deepscan = qt_config->value("gameListDeepScan", false).toBool();
|
|
|
|
UISettings::values.recent_files = qt_config->value("recentFiles").toStringList();
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
|
|
|
qt_config->beginGroup("Shortcuts");
|
|
|
|
QStringList groups = qt_config->childGroups();
|
2016-01-24 21:54:04 +01:00
|
|
|
for (auto group : groups) {
|
2016-01-24 21:23:55 +01:00
|
|
|
qt_config->beginGroup(group);
|
|
|
|
|
|
|
|
QStringList hotkeys = qt_config->childGroups();
|
2016-01-24 21:54:04 +01:00
|
|
|
for (auto hotkey : hotkeys) {
|
2016-01-24 21:23:55 +01:00
|
|
|
qt_config->beginGroup(hotkey);
|
2016-09-18 02:38:01 +02:00
|
|
|
UISettings::values.shortcuts.emplace_back(UISettings::Shortcut(
|
|
|
|
group + "/" + hotkey,
|
|
|
|
UISettings::ContextualShortcut(qt_config->value("KeySeq").toString(),
|
|
|
|
qt_config->value("Context").toInt())));
|
2016-01-24 21:23:55 +01:00
|
|
|
qt_config->endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
qt_config->endGroup();
|
|
|
|
}
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
|
|
|
UISettings::values.single_window_mode = qt_config->value("singleWindowMode", true).toBool();
|
2018-01-16 15:50:33 +01:00
|
|
|
UISettings::values.fullscreen = qt_config->value("fullscreen", false).toBool();
|
2016-01-24 21:23:55 +01:00
|
|
|
UISettings::values.display_titlebar = qt_config->value("displayTitleBars", true).toBool();
|
2017-04-30 04:04:39 +02:00
|
|
|
UISettings::values.show_filter_bar = qt_config->value("showFilterBar", true).toBool();
|
2017-02-18 21:09:14 +01:00
|
|
|
UISettings::values.show_status_bar = qt_config->value("showStatusBar", true).toBool();
|
2016-09-18 02:38:01 +02:00
|
|
|
UISettings::values.confirm_before_closing = qt_config->value("confirmClose", true).toBool();
|
2016-01-24 21:23:55 +01:00
|
|
|
UISettings::values.first_start = qt_config->value("firstStart", true).toBool();
|
2017-08-09 02:06:25 +02:00
|
|
|
UISettings::values.callout_flags = qt_config->value("calloutFlags", 0).toUInt();
|
2016-01-24 21:23:55 +01:00
|
|
|
|
|
|
|
qt_config->endGroup();
|
2014-09-13 02:06:13 +02:00
|
|
|
}
|
|
|
|
|
2014-11-15 20:56:18 +01:00
|
|
|
void Config::SaveValues() {
|
2014-09-13 02:06:13 +02:00
|
|
|
qt_config->beginGroup("Controls");
|
2017-01-21 10:53:03 +01:00
|
|
|
for (int i = 0; i < Settings::NativeButton::NumButtons; ++i) {
|
|
|
|
qt_config->setValue(QString::fromStdString(Settings::NativeButton::mapping[i]),
|
|
|
|
QString::fromStdString(Settings::values.buttons[i]));
|
2017-01-21 12:04:00 +01:00
|
|
|
}
|
|
|
|
for (int i = 0; i < Settings::NativeAnalog::NumAnalogs; ++i) {
|
|
|
|
qt_config->setValue(QString::fromStdString(Settings::NativeAnalog::mapping[i]),
|
|
|
|
QString::fromStdString(Settings::values.analogs[i]));
|
2015-06-20 05:34:45 +02:00
|
|
|
}
|
2017-08-06 23:04:06 +02:00
|
|
|
qt_config->setValue("motion_device", QString::fromStdString(Settings::values.motion_device));
|
2017-08-09 01:57:42 +02:00
|
|
|
qt_config->setValue("touch_device", QString::fromStdString(Settings::values.touch_device));
|
2014-09-13 02:06:13 +02:00
|
|
|
qt_config->endGroup();
|
2014-10-25 21:54:44 +02:00
|
|
|
|
|
|
|
qt_config->beginGroup("Core");
|
2018-01-12 17:06:30 +01:00
|
|
|
qt_config->setValue("cpu_core", static_cast<int>(Settings::values.cpu_core));
|
2014-10-25 21:54:44 +02:00
|
|
|
qt_config->endGroup();
|
2014-10-10 04:43:40 +02:00
|
|
|
|
2015-04-04 00:35:51 +02:00
|
|
|
qt_config->beginGroup("Renderer");
|
2016-12-30 05:28:27 +01:00
|
|
|
qt_config->setValue("resolution_factor", (double)Settings::values.resolution_factor);
|
2016-12-06 20:33:19 +01:00
|
|
|
qt_config->setValue("toggle_framelimit", Settings::values.toggle_framelimit);
|
2015-05-03 21:34:48 +02:00
|
|
|
|
2015-04-04 00:35:51 +02:00
|
|
|
// Cast to double because Qt's written float values are not human-readable
|
2016-09-18 02:38:01 +02:00
|
|
|
qt_config->setValue("bg_red", (double)Settings::values.bg_red);
|
2015-04-04 00:35:51 +02:00
|
|
|
qt_config->setValue("bg_green", (double)Settings::values.bg_green);
|
2016-09-18 02:38:01 +02:00
|
|
|
qt_config->setValue("bg_blue", (double)Settings::values.bg_blue);
|
2015-04-04 00:35:51 +02:00
|
|
|
qt_config->endGroup();
|
|
|
|
|
2014-10-10 04:43:40 +02:00
|
|
|
qt_config->beginGroup("Data Storage");
|
|
|
|
qt_config->setValue("use_virtual_sd", Settings::values.use_virtual_sd);
|
|
|
|
qt_config->endGroup();
|
2014-10-27 22:18:28 +01:00
|
|
|
|
|
|
|
qt_config->beginGroup("Miscellaneous");
|
2014-12-06 23:00:08 +01:00
|
|
|
qt_config->setValue("log_filter", QString::fromStdString(Settings::values.log_filter));
|
2014-10-27 22:18:28 +01:00
|
|
|
qt_config->endGroup();
|
2015-09-02 14:56:38 +02:00
|
|
|
|
|
|
|
qt_config->beginGroup("Debugging");
|
|
|
|
qt_config->setValue("use_gdbstub", Settings::values.use_gdbstub);
|
|
|
|
qt_config->setValue("gdbstub_port", Settings::values.gdbstub_port);
|
|
|
|
qt_config->endGroup();
|
2016-01-24 21:23:55 +01:00
|
|
|
|
|
|
|
qt_config->beginGroup("UI");
|
2017-06-24 02:35:17 +02:00
|
|
|
qt_config->setValue("theme", UISettings::values.theme);
|
2016-01-24 21:23:55 +01:00
|
|
|
|
|
|
|
qt_config->beginGroup("UILayout");
|
|
|
|
qt_config->setValue("geometry", UISettings::values.geometry);
|
|
|
|
qt_config->setValue("state", UISettings::values.state);
|
|
|
|
qt_config->setValue("geometryRenderWindow", UISettings::values.renderwindow_geometry);
|
|
|
|
qt_config->setValue("gameListHeaderState", UISettings::values.gamelist_header_state);
|
|
|
|
qt_config->setValue("microProfileDialogGeometry", UISettings::values.microprofile_geometry);
|
|
|
|
qt_config->setValue("microProfileDialogVisible", UISettings::values.microprofile_visible);
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
|
|
|
qt_config->beginGroup("Paths");
|
|
|
|
qt_config->setValue("romsPath", UISettings::values.roms_path);
|
|
|
|
qt_config->setValue("symbolsPath", UISettings::values.symbols_path);
|
2016-01-24 21:54:04 +01:00
|
|
|
qt_config->setValue("gameListRootDir", UISettings::values.gamedir);
|
2016-01-24 21:23:55 +01:00
|
|
|
qt_config->setValue("gameListDeepScan", UISettings::values.gamedir_deepscan);
|
|
|
|
qt_config->setValue("recentFiles", UISettings::values.recent_files);
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
|
|
|
qt_config->beginGroup("Shortcuts");
|
2016-07-29 14:45:49 +02:00
|
|
|
for (auto shortcut : UISettings::values.shortcuts) {
|
2016-01-24 21:23:55 +01:00
|
|
|
qt_config->setValue(shortcut.first + "/KeySeq", shortcut.second.first);
|
|
|
|
qt_config->setValue(shortcut.first + "/Context", shortcut.second.second);
|
|
|
|
}
|
|
|
|
qt_config->endGroup();
|
|
|
|
|
|
|
|
qt_config->setValue("singleWindowMode", UISettings::values.single_window_mode);
|
2018-01-16 15:50:33 +01:00
|
|
|
qt_config->setValue("fullscreen", UISettings::values.fullscreen);
|
2016-01-24 21:23:55 +01:00
|
|
|
qt_config->setValue("displayTitleBars", UISettings::values.display_titlebar);
|
2017-04-30 04:04:39 +02:00
|
|
|
qt_config->setValue("showFilterBar", UISettings::values.show_filter_bar);
|
2017-02-18 21:09:14 +01:00
|
|
|
qt_config->setValue("showStatusBar", UISettings::values.show_status_bar);
|
2016-01-24 21:54:04 +01:00
|
|
|
qt_config->setValue("confirmClose", UISettings::values.confirm_before_closing);
|
2016-01-24 21:23:55 +01:00
|
|
|
qt_config->setValue("firstStart", UISettings::values.first_start);
|
2017-08-09 02:06:25 +02:00
|
|
|
qt_config->setValue("calloutFlags", UISettings::values.callout_flags);
|
2016-01-24 21:23:55 +01:00
|
|
|
|
|
|
|
qt_config->endGroup();
|
2014-10-27 22:18:28 +01:00
|
|
|
}
|
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
void Config::Reload() {
|
2014-11-15 20:56:18 +01:00
|
|
|
ReadValues();
|
2016-04-11 14:38:42 +02:00
|
|
|
Settings::Apply();
|
2014-09-13 02:06:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Config::Save() {
|
2014-11-15 20:56:18 +01:00
|
|
|
SaveValues();
|
2014-09-13 02:06:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Config::~Config() {
|
|
|
|
Save();
|
|
|
|
|
|
|
|
delete qt_config;
|
|
|
|
}
|