#pragma once #include "../util/Log.h" namespace crepe { class Config { private: Config() = default; public: ~Config() = default; public: //! Retrieve handle to global Config instance static Config & get_instance(); // singleton Config(const Config &) = delete; Config(Config &&) = delete; Config & operator=(const Config &) = delete; Config & operator=(Config &&) = delete; public: //! Logging-related settings struct { /** * \brief Log level * * Only messages with equal or higher priority than this value will be * logged. */ Log::Level level = Log::Level::INFO; /** * \brief Colored log output * * Enables log coloring using ANSI escape codes. */ bool color = true; } log; //! Save manager struct { /** * \brief Save file location * * This location is used by the constructor of SaveManager, and should be * set before save manager functionality is attempted to be used. */ std::string location = "save.crepe.db"; } savemgr; //! physics-related settings struct { /** * \brief gravity value of physics system * * Gravity value of game. */ double gravity = 1; } physics; }; } // namespace crepe