diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 10:38:12 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-26 10:38:12 -0400 |
commit | 00da4d690af08d45788d770f9aadc9548438f074 (patch) | |
tree | 171f959df04a4d322888198d5c8f48635f0bf3b6 /src/config.hpp | |
parent | ff93f760dd50f078779bdabcd41626a45bea6548 (diff) |
made Config static; added fps measure/text
Diffstat (limited to 'src/config.hpp')
-rw-r--r-- | src/config.hpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/config.hpp b/src/config.hpp index a57a5db..8b259db 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -30,11 +30,11 @@ class Config { private: static constexpr const char *fileName = "settings.json"; - std::map<std::string, std::variant<int, double, std::string>> values; + static std::map<std::string, std::variant<int, double, std::string>> values; public: template<typename T> - std::optional<T> get(const std::string& name) + static std::optional<T> get(const std::string& name) { if (values.count(name) != 0) { if (auto value = std::get_if<T>(&values[name]); value != nullptr) @@ -45,19 +45,20 @@ public: } template<typename T> - void set(const std::string& name, T val) + static void set(const std::string& name, T val) { values[name] = val; } template<typename T> - void add(const std::string& name) + static void require(const std::string& name, T defaultValue = T()) { - values[name] = T(); + if (values.count(name) == 0) + values[name] = defaultValue(); } - void save(void) const; - void load(void); + static void save(void); + static void load(void); }; #endif // CONFIG_HPP_ |