mirror of
https://github.com/uowuo/abaddon.git
synced 2024-11-12 23:21:31 +00:00
43f87b4bca
add Semaphore update SettingsManager a little
32 lines
870 B
C++
32 lines
870 B
C++
#include "settings.hpp"
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
|
|
SettingsManager::SettingsManager(std::string filename)
|
|
: m_filename(filename) {
|
|
if (!std::filesystem::exists(filename)) {
|
|
std::fstream fs;
|
|
fs.open(filename, std::ios::out);
|
|
fs.close();
|
|
}
|
|
|
|
auto rc = m_ini.LoadFile(filename.c_str());
|
|
m_ok = rc == SI_OK;
|
|
}
|
|
|
|
std::string SettingsManager::GetSettingString(std::string section, std::string key, std::string fallback) const {
|
|
return m_ini.GetValue(section.c_str(), key.c_str(), fallback.c_str());
|
|
}
|
|
|
|
int SettingsManager::GetSettingInt(std::string section, std::string key, int fallback) const {
|
|
return std::stoul(GetSettingString(section, key, std::to_string(fallback)));
|
|
}
|
|
|
|
bool SettingsManager::IsValid() const {
|
|
return m_ok;
|
|
}
|
|
|
|
void SettingsManager::Close() {
|
|
m_ini.SaveFile(m_filename.c_str());
|
|
}
|