Duckstation/src/util/ini_settings_interface.h

58 lines
2.4 KiB
C
Raw Normal View History

#pragma once
2022-07-08 14:14:48 +00:00
#include "common/settings_interface.h"
// being a pain here...
2021-06-28 10:16:48 +00:00
#ifdef _WIN32
#include "common/windows_headers.h"
#endif
#include "SimpleIni.h"
2020-09-13 01:54:51 +00:00
class INISettingsInterface final : public SettingsInterface
{
public:
INISettingsInterface(std::string filename);
2020-09-13 01:54:51 +00:00
~INISettingsInterface() override;
2022-07-08 14:14:48 +00:00
const std::string& GetFileName() const { return m_filename; }
bool Load();
bool Save() override;
void Clear() override;
2022-07-08 14:14:48 +00:00
bool GetIntValue(const char* section, const char* key, s32* value) const override;
bool GetUIntValue(const char* section, const char* key, u32* value) const override;
bool GetFloatValue(const char* section, const char* key, float* value) const override;
bool GetDoubleValue(const char* section, const char* key, double* value) const override;
bool GetBoolValue(const char* section, const char* key, bool* value) const override;
bool GetStringValue(const char* section, const char* key, std::string* value) const override;
2022-07-08 14:14:48 +00:00
void SetIntValue(const char* section, const char* key, s32 value) override;
void SetUIntValue(const char* section, const char* key, u32 value) override;
void SetFloatValue(const char* section, const char* key, float value) override;
2022-07-08 14:14:48 +00:00
void SetDoubleValue(const char* section, const char* key, double value) override;
void SetBoolValue(const char* section, const char* key, bool value) override;
void SetStringValue(const char* section, const char* key, const char* value) override;
2022-07-08 14:14:48 +00:00
bool ContainsValue(const char* section, const char* key) const override;
void DeleteValue(const char* section, const char* key) override;
void ClearSection(const char* section) override;
2022-07-08 14:14:48 +00:00
std::vector<std::string> GetStringList(const char* section, const char* key) const override;
void SetStringList(const char* section, const char* key, const std::vector<std::string>& items) override;
bool RemoveFromStringList(const char* section, const char* key, const char* item) override;
bool AddToStringList(const char* section, const char* key, const char* item) override;
2022-07-08 14:14:48 +00:00
// default parameter overloads
using SettingsInterface::GetBoolValue;
using SettingsInterface::GetDoubleValue;
using SettingsInterface::GetFloatValue;
using SettingsInterface::GetIntValue;
using SettingsInterface::GetStringValue;
using SettingsInterface::GetUIntValue;
private:
std::string m_filename;
CSimpleIniA m_ini;
bool m_dirty = false;
};