2016-07-29 14:45:49 +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.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2017-01-21 10:53:03 +01:00
|
|
|
|
#include <array>
|
2018-10-24 03:49:50 +02:00
|
|
|
|
#include <memory>
|
2016-09-18 02:38:01 +02:00
|
|
|
|
#include <string>
|
2016-09-20 17:21:23 +02:00
|
|
|
|
#include <QVariant>
|
2016-07-29 14:45:49 +02:00
|
|
|
|
#include "core/settings.h"
|
2014-09-13 02:06:13 +02:00
|
|
|
|
|
2015-06-21 15:58:59 +02:00
|
|
|
|
class QSettings;
|
2014-09-13 02:06:13 +02:00
|
|
|
|
|
|
|
|
|
class Config {
|
|
|
|
|
public:
|
|
|
|
|
Config();
|
|
|
|
|
~Config();
|
|
|
|
|
|
|
|
|
|
void Reload();
|
|
|
|
|
void Save();
|
2017-01-21 12:04:00 +01:00
|
|
|
|
|
2017-01-21 10:53:03 +01:00
|
|
|
|
static const std::array<int, Settings::NativeButton::NumButtons> default_buttons;
|
2017-01-21 12:04:00 +01:00
|
|
|
|
static const std::array<std::array<int, 5>, Settings::NativeAnalog::NumAnalogs> default_analogs;
|
2018-10-24 03:46:33 +02:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void ReadValues();
|
2019-11-07 17:33:41 +01:00
|
|
|
|
void ReadAudioValues();
|
|
|
|
|
void ReadCameraValues();
|
|
|
|
|
void ReadControlValues();
|
|
|
|
|
void ReadCoreValues();
|
|
|
|
|
void ReadDataStorageValues();
|
|
|
|
|
void ReadDebuggingValues();
|
|
|
|
|
void ReadLayoutValues();
|
|
|
|
|
void ReadMiscellaneousValues();
|
|
|
|
|
void ReadMultiplayerValues();
|
|
|
|
|
void ReadPathValues();
|
|
|
|
|
void ReadRendererValues();
|
|
|
|
|
void ReadShortcutValues();
|
|
|
|
|
void ReadSystemValues();
|
|
|
|
|
void ReadUIValues();
|
|
|
|
|
void ReadUIGameListValues();
|
|
|
|
|
void ReadUILayoutValues();
|
|
|
|
|
void ReadUpdaterValues();
|
|
|
|
|
void ReadWebServiceValues();
|
|
|
|
|
|
2018-10-24 03:46:33 +02:00
|
|
|
|
void SaveValues();
|
2019-11-07 17:33:41 +01:00
|
|
|
|
void SaveAudioValues();
|
|
|
|
|
void SaveCameraValues();
|
|
|
|
|
void SaveControlValues();
|
|
|
|
|
void SaveCoreValues();
|
|
|
|
|
void SaveDataStorageValues();
|
|
|
|
|
void SaveDebuggingValues();
|
|
|
|
|
void SaveLayoutValues();
|
|
|
|
|
void SaveMiscellaneousValues();
|
|
|
|
|
void SaveMultiplayerValues();
|
|
|
|
|
void SavePathValues();
|
|
|
|
|
void SaveRendererValues();
|
|
|
|
|
void SaveShortcutValues();
|
|
|
|
|
void SaveSystemValues();
|
|
|
|
|
void SaveUIValues();
|
|
|
|
|
void SaveUIGameListValues();
|
|
|
|
|
void SaveUILayoutValues();
|
|
|
|
|
void SaveUpdaterValues();
|
|
|
|
|
void SaveWebServiceValues();
|
|
|
|
|
|
2019-02-05 22:09:02 +01:00
|
|
|
|
QVariant ReadSetting(const QString& name) const;
|
|
|
|
|
QVariant ReadSetting(const QString& name, const QVariant& default_value) const;
|
2018-10-24 03:46:33 +02:00
|
|
|
|
void WriteSetting(const QString& name, const QVariant& value);
|
|
|
|
|
void WriteSetting(const QString& name, const QVariant& value, const QVariant& default_value);
|
|
|
|
|
|
2018-10-24 03:49:50 +02:00
|
|
|
|
std::unique_ptr<QSettings> qt_config;
|
2018-10-24 03:46:33 +02:00
|
|
|
|
std::string qt_config_loc;
|
2014-09-13 02:06:13 +02:00
|
|
|
|
};
|