2014-09-13 04:06:13 +04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 08:38:14 +03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-13 04:06:13 +04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-05-26 02:32:56 +03:00
|
|
|
#include <filesystem>
|
2016-03-02 15:49:30 +03:00
|
|
|
#include <memory>
|
2015-06-20 22:34:41 +03:00
|
|
|
#include <string>
|
2017-05-28 04:14:00 +03:00
|
|
|
|
2021-06-28 22:58:16 +03:00
|
|
|
#include "common/settings.h"
|
|
|
|
|
2017-05-28 04:14:00 +03:00
|
|
|
class INIReader;
|
2014-09-13 04:06:13 +04:00
|
|
|
|
|
|
|
class Config {
|
2016-03-02 15:49:30 +03:00
|
|
|
std::unique_ptr<INIReader> sdl2_config;
|
2021-05-26 02:32:56 +03:00
|
|
|
std::filesystem::path sdl2_config_loc;
|
2014-09-13 04:06:13 +04:00
|
|
|
|
2016-09-18 03:38:01 +03:00
|
|
|
bool LoadINI(const std::string& default_contents = "", bool retry = true);
|
2014-11-15 22:56:18 +03:00
|
|
|
void ReadValues();
|
2016-09-18 03:38:01 +03:00
|
|
|
|
2014-09-13 04:06:13 +04:00
|
|
|
public:
|
|
|
|
Config();
|
2017-05-28 04:14:00 +03:00
|
|
|
~Config();
|
2014-09-13 04:06:13 +04:00
|
|
|
|
|
|
|
void Reload();
|
2021-06-28 22:58:16 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
template <typename Type>
|
|
|
|
void ReadSetting(const std::string& group, Settings::BasicSetting<Type> setting);
|
2014-09-13 04:06:13 +04:00
|
|
|
};
|