2014-09-13 02:06:13 +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
|
|
|
|
|
2021-05-26 01:32:56 +02:00
|
|
|
#include <filesystem>
|
2016-03-02 13:49:30 +01:00
|
|
|
#include <memory>
|
2022-03-15 06:05:55 +01:00
|
|
|
#include <optional>
|
2015-06-20 21:34:41 +02:00
|
|
|
#include <string>
|
2017-05-28 03:14:00 +02:00
|
|
|
|
2021-06-28 21:58:16 +02:00
|
|
|
#include "common/settings.h"
|
|
|
|
|
2017-05-28 03:14:00 +02:00
|
|
|
class INIReader;
|
2014-09-13 02:06:13 +02:00
|
|
|
|
|
|
|
class Config {
|
2021-05-26 01:32:56 +02:00
|
|
|
std::filesystem::path sdl2_config_loc;
|
2022-03-15 06:05:55 +01:00
|
|
|
std::unique_ptr<INIReader> sdl2_config;
|
2014-09-13 02:06:13 +02:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
bool LoadINI(const std::string& default_contents = "", bool retry = true);
|
2014-11-15 20:56:18 +01:00
|
|
|
void ReadValues();
|
2016-09-18 02:38:01 +02:00
|
|
|
|
2014-09-13 02:06:13 +02:00
|
|
|
public:
|
2022-03-15 06:05:55 +01:00
|
|
|
explicit Config(std::optional<std::filesystem::path> config_path);
|
2017-05-28 03:14:00 +02:00
|
|
|
~Config();
|
2014-09-13 02:06:13 +02:00
|
|
|
|
|
|
|
void Reload();
|
2021-06-28 21:58:16 +02:00
|
|
|
|
|
|
|
private:
|
2021-07-01 02:16:01 +02: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 21:58:16 +02:00
|
|
|
template <typename Type>
|
2021-07-01 02:16:01 +02:00
|
|
|
void ReadSetting(const std::string& group, Settings::BasicSetting<Type>& setting);
|
2014-09-13 02:06:13 +02:00
|
|
|
};
|