yuzu/src/yuzu_cmd/config.h

39 lines
917 B
C
Raw Normal View History

2020-12-28 19:15:37 +04:00
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
2021-05-08 11:49:31 +04:00
#include <filesystem>
2020-12-28 19:15:37 +04:00
#include <memory>
2022-03-20 11:18:41 +04:00
#include <optional>
2020-12-28 19:15:37 +04:00
#include <string>
2021-07-03 13:00:06 +04:00
#include "common/settings.h"
2020-12-28 19:15:37 +04:00
class INIReader;
class Config {
2021-05-08 11:49:31 +04:00
std::filesystem::path sdl2_config_loc;
2022-03-20 11:18:41 +04:00
std::unique_ptr<INIReader> sdl2_config;
2020-12-28 19:15:37 +04:00
bool LoadINI(const std::string& default_contents = "", bool retry = true);
void ReadValues();
public:
2022-03-20 11:18:41 +04:00
explicit Config(std::optional<std::filesystem::path> config_path);
2020-12-28 19:15:37 +04:00
~Config();
void Reload();
2021-07-03 13:00:06 +04:00
private:
/**
2022-07-05 06:21:48 +04:00
* Applies a value read from the sdl2_config to a Setting.
2021-07-03 13:00:06 +04:00
*
* @param group The name of the INI group
* @param setting The yuzu setting to modify
*/
2022-07-17 11:10:25 +04:00
template <typename Type, bool ranged>
void ReadSetting(const std::string& group, Settings::Setting<Type, ranged>& setting);
2020-12-28 19:15:37 +04:00
};