2019-12-30 11:22:22 +00:00
|
|
|
#pragma once
|
|
|
|
#include "core/settings.h"
|
|
|
|
|
2020-08-08 18:40:15 +00:00
|
|
|
// being a pain here...
|
|
|
|
#ifdef WIN32
|
|
|
|
#include "common/windows_headers.h"
|
|
|
|
#endif
|
2019-12-30 11:22:22 +00:00
|
|
|
#include "SimpleIni.h"
|
|
|
|
|
2020-09-13 01:54:51 +00:00
|
|
|
class INISettingsInterface final : public SettingsInterface
|
2019-12-30 11:22:22 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-04-05 12:57:29 +00:00
|
|
|
INISettingsInterface(std::string filename);
|
2020-09-13 01:54:51 +00:00
|
|
|
~INISettingsInterface() override;
|
2019-12-30 11:22:22 +00:00
|
|
|
|
2021-01-30 05:30:33 +00:00
|
|
|
bool Save() override;
|
2020-04-10 14:00:21 +00:00
|
|
|
|
2020-02-28 07:00:09 +00:00
|
|
|
void Clear() override;
|
|
|
|
|
2019-12-30 11:22:22 +00:00
|
|
|
int GetIntValue(const char* section, const char* key, int default_value = 0) override;
|
|
|
|
float GetFloatValue(const char* section, const char* key, float default_value = 0.0f) override;
|
|
|
|
bool GetBoolValue(const char* section, const char* key, bool default_value = false) override;
|
|
|
|
std::string GetStringValue(const char* section, const char* key, const char* default_value = "") override;
|
|
|
|
|
|
|
|
void SetIntValue(const char* section, const char* key, int value) override;
|
|
|
|
void SetFloatValue(const char* section, const char* key, float 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;
|
|
|
|
void DeleteValue(const char* section, const char* key) override;
|
2020-12-20 03:23:33 +00:00
|
|
|
void ClearSection(const char* section) override;
|
2019-12-30 11:22:22 +00:00
|
|
|
|
2019-12-31 02:41:21 +00:00
|
|
|
std::vector<std::string> GetStringList(const char* section, const char* key) override;
|
2020-07-21 09:49:04 +00:00
|
|
|
void SetStringList(const char* section, const char* key, const std::vector<std::string>& items) override;
|
2019-12-31 02:41:21 +00:00
|
|
|
bool RemoveFromStringList(const char* section, const char* key, const char* item) override;
|
|
|
|
bool AddToStringList(const char* section, const char* key, const char* item) override;
|
|
|
|
|
2019-12-30 11:22:22 +00:00
|
|
|
private:
|
|
|
|
std::string m_filename;
|
|
|
|
CSimpleIniA m_ini;
|
2020-02-15 15:14:42 +00:00
|
|
|
bool m_dirty = false;
|
2019-12-30 11:22:22 +00:00
|
|
|
};
|