2014-09-12 20:06:13 -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
|
|
|
|
|
2021-05-25 19:32:56 -04:00
|
|
|
#include <filesystem>
|
2016-03-02 07:49:30 -05:00
|
|
|
#include <memory>
|
2015-06-20 15:34:41 -04:00
|
|
|
#include <string>
|
2017-05-27 21:14:00 -04:00
|
|
|
|
2021-06-28 15:58:16 -04:00
|
|
|
#include "common/settings.h"
|
|
|
|
|
2017-05-27 21:14:00 -04:00
|
|
|
class INIReader;
|
2014-09-12 20:06:13 -04:00
|
|
|
|
|
|
|
class Config {
|
2016-03-02 07:49:30 -05:00
|
|
|
std::unique_ptr<INIReader> sdl2_config;
|
2021-05-25 19:32:56 -04:00
|
|
|
std::filesystem::path sdl2_config_loc;
|
2014-09-12 20:06:13 -04:00
|
|
|
|
2016-09-17 20:38:01 -04:00
|
|
|
bool LoadINI(const std::string& default_contents = "", bool retry = true);
|
2014-11-15 14:56:18 -05:00
|
|
|
void ReadValues();
|
2016-09-17 20:38:01 -04:00
|
|
|
|
2014-09-12 20:06:13 -04:00
|
|
|
public:
|
|
|
|
Config();
|
2017-05-27 21:14:00 -04:00
|
|
|
~Config();
|
2014-09-12 20:06:13 -04:00
|
|
|
|
|
|
|
void Reload();
|
2021-06-28 15:58:16 -04:00
|
|
|
|
|
|
|
private:
|
2021-06-30 20:16:01 -04:00
|
|
|
/**
|
|
|
|
* Applies a value read from the sdl2_config to a BasicSetting.
|
|
|
|
*
|
|
|
|
* @param group The name of the INI group
|
|
|
|
* @param setting The yuzu setting to modify
|
|
|
|
*/
|
2021-06-28 15:58:16 -04:00
|
|
|
template <typename Type>
|
2021-06-30 20:16:01 -04:00
|
|
|
void ReadSetting(const std::string& group, Settings::BasicSetting<Type>& setting);
|
2014-09-12 20:06:13 -04:00
|
|
|
};
|