2016-07-29 08:45:49 -04:00
|
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-12 20:06:13 -04:00
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2017-01-21 04:53:03 -05:00
|
|
|
|
#include <array>
|
2018-10-23 21:49:50 -04:00
|
|
|
|
#include <memory>
|
2016-09-17 20:38:01 -04:00
|
|
|
|
#include <string>
|
2016-09-20 11:21:23 -04:00
|
|
|
|
#include <QVariant>
|
2016-07-29 08:45:49 -04:00
|
|
|
|
#include "core/settings.h"
|
2014-09-12 20:06:13 -04:00
|
|
|
|
|
2015-06-21 09:58:59 -04:00
|
|
|
|
class QSettings;
|
2014-09-12 20:06:13 -04:00
|
|
|
|
|
|
|
|
|
class Config {
|
|
|
|
|
public:
|
|
|
|
|
Config();
|
|
|
|
|
~Config();
|
|
|
|
|
|
|
|
|
|
void Reload();
|
|
|
|
|
void Save();
|
2017-01-21 06:04:00 -05:00
|
|
|
|
|
2017-01-21 04:53:03 -05:00
|
|
|
|
static const std::array<int, Settings::NativeButton::NumButtons> default_buttons;
|
2017-01-21 06:04:00 -05:00
|
|
|
|
static const std::array<std::array<int, 5>, Settings::NativeAnalog::NumAnalogs> default_analogs;
|
2018-11-01 21:57:13 -04:00
|
|
|
|
static const std::array<int, Settings::NativeMouseButton::NumMouseButtons>
|
|
|
|
|
default_mouse_buttons;
|
|
|
|
|
static const std::array<int, Settings::NativeKeyboard::NumKeyboardKeys> default_keyboard_keys;
|
|
|
|
|
static const std::array<int, Settings::NativeKeyboard::NumKeyboardMods> default_keyboard_mods;
|
2018-10-23 21:46:33 -04:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void ReadValues();
|
2018-11-03 12:55:39 -04:00
|
|
|
|
void ReadPlayerValues();
|
|
|
|
|
void ReadDebugValues();
|
|
|
|
|
void ReadKeyboardValues();
|
|
|
|
|
void ReadMouseValues();
|
|
|
|
|
void ReadTouchscreenValues();
|
2018-12-01 11:11:11 -05:00
|
|
|
|
void ApplyDefaultProfileIfInputInvalid();
|
2018-11-03 12:55:39 -04:00
|
|
|
|
|
2019-05-08 23:11:15 -04:00
|
|
|
|
// Read functions bases off the respective config section names.
|
|
|
|
|
void ReadAudioValues();
|
|
|
|
|
void ReadControlValues();
|
|
|
|
|
void ReadCoreValues();
|
|
|
|
|
void ReadDataStorageValues();
|
|
|
|
|
void ReadDebuggingValues();
|
|
|
|
|
void ReadDisabledAddOnValues();
|
|
|
|
|
void ReadMiscellaneousValues();
|
|
|
|
|
void ReadPathValues();
|
|
|
|
|
void ReadRendererValues();
|
|
|
|
|
void ReadShortcutValues();
|
|
|
|
|
void ReadSystemValues();
|
|
|
|
|
void ReadUIValues();
|
|
|
|
|
void ReadUIGamelistValues();
|
|
|
|
|
void ReadUILayoutValues();
|
|
|
|
|
void ReadWebServiceValues();
|
|
|
|
|
|
2018-10-23 21:46:33 -04:00
|
|
|
|
void SaveValues();
|
2018-11-03 12:55:39 -04:00
|
|
|
|
void SavePlayerValues();
|
|
|
|
|
void SaveDebugValues();
|
|
|
|
|
void SaveMouseValues();
|
|
|
|
|
void SaveTouchscreenValues();
|
2018-10-23 21:46:33 -04:00
|
|
|
|
|
2019-05-08 23:11:15 -04:00
|
|
|
|
// Save functions based off the respective config section names.
|
|
|
|
|
void SaveAudioValues();
|
|
|
|
|
void SaveControlValues();
|
|
|
|
|
void SaveCoreValues();
|
|
|
|
|
void SaveDataStorageValues();
|
|
|
|
|
void SaveDebuggingValues();
|
|
|
|
|
void SaveDisabledAddOnValues();
|
|
|
|
|
void SaveMiscellaneousValues();
|
|
|
|
|
void SavePathValues();
|
|
|
|
|
void SaveRendererValues();
|
|
|
|
|
void SaveShortcutValues();
|
|
|
|
|
void SaveSystemValues();
|
|
|
|
|
void SaveUIValues();
|
|
|
|
|
void SaveUIGamelistValues();
|
|
|
|
|
void SaveUILayoutValues();
|
|
|
|
|
void SaveWebServiceValues();
|
|
|
|
|
|
2018-07-09 08:07:59 -04:00
|
|
|
|
QVariant ReadSetting(const QString& name) const;
|
|
|
|
|
QVariant ReadSetting(const QString& name, const QVariant& default_value) const;
|
|
|
|
|
void WriteSetting(const QString& name, const QVariant& value);
|
|
|
|
|
void WriteSetting(const QString& name, const QVariant& value, const QVariant& default_value);
|
|
|
|
|
|
2018-10-23 21:49:50 -04:00
|
|
|
|
std::unique_ptr<QSettings> qt_config;
|
2018-10-23 21:46:33 -04:00
|
|
|
|
std::string qt_config_loc;
|
2014-09-12 20:06:13 -04:00
|
|
|
|
};
|