mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 22:55:39 +00:00
43 lines
982 B
C++
43 lines
982 B
C++
#ifndef _SETTINGS_H_
|
|
#define _SETTINGS_H_
|
|
|
|
#include <string>
|
|
#include <map>
|
|
#include "scrapers/Scraper.h"
|
|
|
|
//This is a singleton for storing settings.
|
|
class Settings
|
|
{
|
|
public:
|
|
static Settings* getInstance();
|
|
|
|
void loadFile();
|
|
void saveFile();
|
|
|
|
//You will get a warning if you try a get on a key that is not already present.
|
|
bool getBool(const std::string& name);
|
|
int getInt(const std::string& name);
|
|
float getFloat(const std::string& name);
|
|
|
|
void setBool(const std::string& name, bool value);
|
|
void setInt(const std::string& name, int value);
|
|
void setFloat(const std::string& name, float value);
|
|
|
|
std::shared_ptr<Scraper> getScraper();
|
|
void setScraper(std::shared_ptr<Scraper> scraper);
|
|
private:
|
|
static Settings* sInstance;
|
|
|
|
Settings();
|
|
|
|
//Clear everything and load default values.
|
|
void setDefaults();
|
|
|
|
std::map<std::string, bool> mBoolMap;
|
|
std::map<std::string, int> mIntMap;
|
|
std::map<std::string, float> mFloatMap;
|
|
std::shared_ptr<Scraper> mScraper;
|
|
};
|
|
|
|
#endif
|