aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/config.cpp
diff options
context:
space:
mode:
authorGravatar archshift <admin@archshift.com>2014-09-12 17:06:13 -0700
committerGravatar archshift <admin@archshift.com>2014-10-07 15:09:37 -0700
commite6594f9f53df456db42ab2091a7b1397070ff9c8 (patch)
treea1ca13000e379f753a155580560c20e015c2e552 /src/citra_qt/config.cpp
parentee7cfc71bd8663b77a43c5ba577074972d9b7ad9 (diff)
Added configuration file system.
Uses QSettings on citra-qt, and inih on citra-cli.
Diffstat (limited to 'src/citra_qt/config.cpp')
-rw-r--r--src/citra_qt/config.cpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/citra_qt/config.cpp b/src/citra_qt/config.cpp
new file mode 100644
index 00000000..1b116edc
--- /dev/null
+++ b/src/citra_qt/config.cpp
@@ -0,0 +1,79 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#include <QString>
+#include <QStringList>
+
+#include "core/settings.h"
+#include "common/file_util.h"
+
+#include "config.h"
+
+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();
+}
+
+void Config::ReadControls() {
+ qt_config->beginGroup("Controls");
+ Settings::values.pad_a_key = qt_config->value("pad_a", Qt::Key_A).toInt();
+ Settings::values.pad_b_key = qt_config->value("pad_b", Qt::Key_S).toInt();
+ Settings::values.pad_x_key = qt_config->value("pad_x", Qt::Key_Z).toInt();
+ Settings::values.pad_y_key = qt_config->value("pad_y", Qt::Key_X).toInt();
+ Settings::values.pad_l_key = qt_config->value("pad_l", Qt::Key_Q).toInt();
+ Settings::values.pad_r_key = qt_config->value("pad_r", Qt::Key_W).toInt();
+ Settings::values.pad_start_key = qt_config->value("pad_start", Qt::Key_M).toInt();
+ Settings::values.pad_select_key = qt_config->value("pad_select", Qt::Key_N).toInt();
+ Settings::values.pad_home_key = qt_config->value("pad_home", Qt::Key_B).toInt();
+ Settings::values.pad_dup_key = qt_config->value("pad_dup", Qt::Key_T).toInt();
+ Settings::values.pad_ddown_key = qt_config->value("pad_ddown", Qt::Key_G).toInt();
+ Settings::values.pad_dleft_key = qt_config->value("pad_dleft", Qt::Key_F).toInt();
+ Settings::values.pad_dright_key = qt_config->value("pad_dright", Qt::Key_H).toInt();
+ Settings::values.pad_sup_key = qt_config->value("pad_sup", Qt::Key_Up).toInt();
+ Settings::values.pad_sdown_key = qt_config->value("pad_sdown", Qt::Key_Down).toInt();
+ Settings::values.pad_sleft_key = qt_config->value("pad_sleft", Qt::Key_Left).toInt();
+ Settings::values.pad_sright_key = qt_config->value("pad_sright", Qt::Key_Right).toInt();
+ qt_config->endGroup();
+}
+
+void Config::SaveControls() {
+ qt_config->beginGroup("Controls");
+ qt_config->setValue("pad_a", Settings::values.pad_a_key);
+ qt_config->setValue("pad_b", Settings::values.pad_b_key);
+ qt_config->setValue("pad_x", Settings::values.pad_x_key);
+ qt_config->setValue("pad_y", Settings::values.pad_y_key);
+ qt_config->setValue("pad_l", Settings::values.pad_l_key);
+ qt_config->setValue("pad_r", Settings::values.pad_r_key);
+ qt_config->setValue("pad_start", Settings::values.pad_start_key);
+ qt_config->setValue("pad_select", Settings::values.pad_select_key);
+ qt_config->setValue("pad_home", Settings::values.pad_home_key);
+ qt_config->setValue("pad_dup", Settings::values.pad_dup_key);
+ qt_config->setValue("pad_ddown", Settings::values.pad_ddown_key);
+ qt_config->setValue("pad_dleft", Settings::values.pad_dleft_key);
+ qt_config->setValue("pad_dright", Settings::values.pad_dright_key);
+ qt_config->setValue("pad_sup", Settings::values.pad_sup_key);
+ qt_config->setValue("pad_sdown", Settings::values.pad_sdown_key);
+ qt_config->setValue("pad_sleft", Settings::values.pad_sleft_key);
+ qt_config->setValue("pad_sright", Settings::values.pad_sright_key);
+ qt_config->endGroup();
+}
+
+void Config::Reload() {
+ ReadControls();
+}
+
+void Config::Save() {
+ SaveControls();
+}
+
+Config::~Config() {
+ Save();
+
+ delete qt_config;
+}