// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team // SPDX-License-Identifier: LGPL-3.0+ #pragma once #include "Pcsx2Defs.h" #include #include #include class SettingsInterface { public: virtual ~SettingsInterface() = default; virtual bool Save() = 0; virtual void Clear() = 0; virtual bool GetIntValue(const char* section, const char* key, int* value) const = 0; virtual bool GetUIntValue(const char* section, const char* key, uint* value) const = 0; virtual bool GetFloatValue(const char* section, const char* key, float* value) const = 0; virtual bool GetDoubleValue(const char* section, const char* key, double* value) const = 0; virtual bool GetBoolValue(const char* section, const char* key, bool* value) const = 0; virtual bool GetStringValue(const char* section, const char* key, std::string* value) const = 0; virtual void SetIntValue(const char* section, const char* key, int value) = 0; virtual void SetUIntValue(const char* section, const char* key, uint value) = 0; virtual void SetFloatValue(const char* section, const char* key, float value) = 0; virtual void SetDoubleValue(const char* section, const char* key, double value) = 0; virtual void SetBoolValue(const char* section, const char* key, bool value) = 0; virtual void SetStringValue(const char* section, const char* key, const char* value) = 0; virtual std::vector GetStringList(const char* section, const char* key) const = 0; virtual void SetStringList(const char* section, const char* key, const std::vector& items) = 0; virtual bool RemoveFromStringList(const char* section, const char* key, const char* item) = 0; virtual bool AddToStringList(const char* section, const char* key, const char* item) = 0; virtual std::vector> GetKeyValueList(const char* section) const = 0; virtual void SetKeyValueList(const char* section, const std::vector>& items) = 0; virtual bool ContainsValue(const char* section, const char* key) const = 0; virtual void DeleteValue(const char* section, const char* key) = 0; virtual void ClearSection(const char* section) = 0; __fi int GetIntValue(const char* section, const char* key, int default_value = 0) const { int value; return GetIntValue(section, key, &value) ? value : default_value; } __fi uint GetUIntValue(const char* section, const char* key, uint default_value = 0) const { uint value; return GetUIntValue(section, key, &value) ? value : default_value; } __fi float GetFloatValue(const char* section, const char* key, float default_value = 0.0f) const { float value; return GetFloatValue(section, key, &value) ? value : default_value; } __fi float GetDoubleValue(const char* section, const char* key, double default_value = 0.0) const { double value; return GetDoubleValue(section, key, &value) ? value : default_value; } __fi bool GetBoolValue(const char* section, const char* key, bool default_value = false) const { bool value; return GetBoolValue(section, key, &value) ? value : default_value; } __fi std::string GetStringValue(const char* section, const char* key, const char* default_value = "") const { std::string value; if (!GetStringValue(section, key, &value)) value.assign(default_value); return value; } __fi std::optional GetOptionalIntValue(const char* section, const char* key, std::optional default_value = std::nullopt) const { int ret; return GetIntValue(section, key, &ret) ? std::optional(ret) : default_value; } __fi std::optional GetOptionalUIntValue(const char* section, const char* key, std::optional default_value = std::nullopt) const { uint ret; return GetUIntValue(section, key, &ret) ? std::optional(ret) : default_value; } __fi std::optional GetOptionalFloatValue(const char* section, const char* key, std::optional default_value = std::nullopt) const { float ret; return GetFloatValue(section, key, &ret) ? std::optional(ret) : default_value; } __fi std::optional GetOptionalDoubleValue(const char* section, const char* key, std::optional default_value = std::nullopt) const { double ret; return GetDoubleValue(section, key, &ret) ? std::optional(ret) : default_value; } __fi std::optional GetOptionalBoolValue(const char* section, const char* key, std::optional default_value = std::nullopt) const { bool ret; return GetBoolValue(section, key, &ret) ? std::optional(ret) : default_value; } __fi std::optional GetOptionalStringValue(const char* section, const char* key, std::optional default_value = std::nullopt) const { std::string ret; return GetStringValue(section, key, &ret) ? std::optional(ret) : default_value; } __fi void SetOptionalIntValue(const char* section, const char* key, const std::optional& value) { value.has_value() ? SetIntValue(section, key, value.value()) : DeleteValue(section, key); } __fi void SetOptionalUIntValue(const char* section, const char* key, const std::optional& value) { value.has_value() ? SetUIntValue(section, key, value.value()) : DeleteValue(section, key); } __fi void SetOptionalFloatValue(const char* section, const char* key, const std::optional& value) { value.has_value() ? SetFloatValue(section, key, value.value()) : DeleteValue(section, key); } __fi void SetOptionalDoubleValue(const char* section, const char* key, const std::optional& value) { value.has_value() ? SetDoubleValue(section, key, value.value()) : DeleteValue(section, key); } __fi void SetOptionalBoolValue(const char* section, const char* key, const std::optional& value) { value.has_value() ? SetBoolValue(section, key, value.value()) : DeleteValue(section, key); } __fi void SetOptionalStringValue(const char* section, const char* key, const std::optional& value) { value.has_value() ? SetStringValue(section, key, value.value()) : DeleteValue(section, key); } __fi void CopyBoolValue(const SettingsInterface& si, const char* section, const char* key) { bool value; if (si.GetBoolValue(section, key, &value)) SetBoolValue(section, key, value); else DeleteValue(section, key); } __fi void CopyIntValue(const SettingsInterface& si, const char* section, const char* key) { int value; if (si.GetIntValue(section, key, &value)) SetIntValue(section, key, value); else DeleteValue(section, key); } __fi void CopyUIntValue(const SettingsInterface& si, const char* section, const char* key) { uint value; if (si.GetUIntValue(section, key, &value)) SetUIntValue(section, key, value); else DeleteValue(section, key); } __fi void CopyFloatValue(const SettingsInterface& si, const char* section, const char* key) { float value; if (si.GetFloatValue(section, key, &value)) SetFloatValue(section, key, value); else DeleteValue(section, key); } __fi void CopyDoubleValue(const SettingsInterface& si, const char* section, const char* key) { double value; if (si.GetDoubleValue(section, key, &value)) SetDoubleValue(section, key, value); else DeleteValue(section, key); } __fi void CopyStringValue(const SettingsInterface& si, const char* section, const char* key) { std::string value; if (si.GetStringValue(section, key, &value)) SetStringValue(section, key, value.c_str()); else DeleteValue(section, key); } __fi void CopyStringListValue(const SettingsInterface& si, const char* section, const char* key) { std::vector value(si.GetStringList(section, key)); if (!value.empty()) SetStringList(section, key, value); else DeleteValue(section, key); } __fi void CopyKeysAndValues(const SettingsInterface& si, const char* section) { SetKeyValueList(section, si.GetKeyValueList(section)); } };