Files
eden/src/yuzu_cmd/config.h
T

38 lines
888 B
C++
Raw Normal View History

2022-05-15 02:06:02 +02:00
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2014-09-12 17:06:13 -07:00
#pragma once
#include <filesystem>
#include <memory>
#include <optional>
#include <string>
2021-06-28 15:58:16 -04:00
#include "common/settings.h"
class INIReader;
2014-09-12 17:06:13 -07:00
class Config {
std::filesystem::path sdl2_config_loc;
std::unique_ptr<INIReader> sdl2_config;
2014-09-12 17:06:13 -07:00
2016-09-18 09:38:01 +09:00
bool LoadINI(const std::string& default_contents = "", bool retry = true);
2014-11-15 11:56:18 -08:00
void ReadValues();
2016-09-18 09:38:01 +09:00
2014-09-12 17:06:13 -07:00
public:
explicit Config(std::optional<std::filesystem::path> config_path);
~Config();
2014-09-12 17:06:13 -07: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 Setting.
2021-06-30 20:16:01 -04:00
*
* @param group The name of the INI group
* @param setting The yuzu setting to modify
*/
template <typename Type, bool ranged>
void ReadSetting(const std::string& group, Settings::Setting<Type, ranged>& setting);
2014-09-12 17:06:13 -07:00
};