Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Settings.cxx
Go to the documentation of this file.
1 #include "Settings.hxx"
2 
3 // #include "LOG.hxx"
4 #include "Exception.hxx"
5 #include "Constants.hxx"
6 #include "Filesystem.hxx"
7 #include "LOG.hxx"
8 #include <JsonSerialization.hxx>
9 
10 #include <iomanip>
11 
13 
15 {
16  const std::string pathToCachedSettingsFile = CYTOPIA_DATA_DIR + SETTINGS_FILENAME;
17  const std::string pathToLocalSettingsFile = fs::getBasePath() + CYTOPIA_RESOURCES_DIR + SETTINGS_FILENAME;
18 
19  const json localJsonObject = parseSettingsFile(pathToLocalSettingsFile);
20  const json cachedJsonObject = parseSettingsFile(pathToCachedSettingsFile);
21 
22  if (localJsonObject.empty() || localJsonObject.is_discarded())
23  throw ConfigurationError(TRACE_INFO "Error parsing local JSON File " + string{pathToLocalSettingsFile});
24 
25  SettingsData settingsData;
26 
27  if (cachedJsonObject.empty() || cachedJsonObject.is_discarded())
28  {
29  settingsData = localJsonObject;
30  }
31  else
32  {
33  int cacheVersion = cachedJsonObject.value("SettingsVersion", -1);
34  int localVersion = localJsonObject.value("SettingsVersion", -1);
35  if (localVersion <= cacheVersion)
36  {
37  settingsData = cachedJsonObject;
38  }
39  else
40  {
41  LOG(LOG_INFO) << "The settings file version has changed. Overwriting local cached settings file with default settings.";
42  }
43  }
44 
45  *this = settingsData;
46 
47  // init the actual resolution with the desired resolution
50 
51 #ifdef __ANDROID__
53  subMenuButtonWidth *= 2;
54 #endif
55 }
56 
58 {
59  const json settingsJsonObject = *this;
60  std::string pathToDataDir;
61  if (CYTOPIA_DATA_DIR_BASE.empty())
62  {
63  LOG(LOG_ERROR) << "CYTOPIA_DATA_DIR_BASE is not set! Please report this issue on github. Falling back to cytopia base dir.";
64  pathToDataDir = fs::getBasePath() + CYTOPIA_RESOURCES_DIR;
65  }
66  else
67  {
68  pathToDataDir = CYTOPIA_DATA_DIR;
69  }
70  std::string pathToSettingsFile = pathToDataDir + SETTINGS_FILENAME;
71  fs::createDirectory(pathToDataDir);
72  fs::writeStringToFile(pathToSettingsFile, settingsJsonObject.dump());
73 }
74 
76 {
77  json settingsJSONObject;
78 
79  if (fs::fileExists(fileName))
80  {
81  std::string jsonFile = fs::readFileAsString(fileName);
82  settingsJSONObject = json::parse(jsonFile, nullptr, false);
83  }
84 
85  return settingsJSONObject;
86 }
87 
89 {
90  const std::string pathToLocalSettingsFile = fs::getBasePath() + CYTOPIA_RESOURCES_DIR + SETTINGS_FILENAME;
91  const json localJsonObject = parseSettingsFile(pathToLocalSettingsFile);
92 
93  if (localJsonObject.empty() || localJsonObject.is_discarded())
94  throw ConfigurationError(TRACE_INFO "Error parsing local JSON File " + string{pathToLocalSettingsFile});
95 
96  SettingsData settingsData;
97  settingsData = localJsonObject;
98  *this = settingsData;
99 }
TRACE_INFO
#define TRACE_INFO
Definition: Exception.hxx:12
ConfigurationError
A configuration error.
Definition: Exception.hxx:36
LOG
Definition: LOG.hxx:32
fileExists
bool fileExists(const std::string &filePath)
Check if a file (or folder) exists.
Definition: Filesystem.cxx:62
LOG_INFO
@ LOG_INFO
Definition: LOG.hxx:25
writeStringToFile
void writeStringToFile(const std::string &fileName, const std::string &stringToWrite, bool binaryMode)
Write a string to a file.
Definition: Filesystem.cxx:50
Settings::writeFile
void writeFile()
Save settings to file.
Definition: Settings.cxx:57
SettingsData::screenHeight
ScreenDimension screenHeight
the screen height
Definition: Settings.hxx:46
Settings::Settings
Settings()
Definition: Settings.cxx:12
LOG.hxx
SettingsData::subMenuButtonWidth
int subMenuButtonWidth
The width in pixels of the buttons used in the build sub menues on the UI.
Definition: Settings.hxx:154
LOG_ERROR
@ LOG_ERROR
Definition: LOG.hxx:28
CYTOPIA_RESOURCES_DIR
const std::string CYTOPIA_RESOURCES_DIR
Definition: Constants.hxx:21
SettingsData
Definition: Settings.hxx:23
Settings::parseSettingsFile
json parseSettingsFile(const std::string &fileName) const
Definition: Settings.cxx:75
readFileAsString
std::string readFileAsString(const std::string &fileName, bool binaryMode)
Read contents from a file as string.
Definition: Filesystem.cxx:12
SettingsData::screenWidth
ScreenDimension screenWidth
the screen width
Definition: Settings.hxx:40
getBasePath
std::string getBasePath()
Get base path (where Cytopia is being run)
Definition: Filesystem.cxx:77
SettingsData::currentScreenWidth
ScreenDimension currentScreenWidth
the actual screen width (can differ from the one that's set in borderless fullscreen)
Definition: Settings.hxx:49
Filesystem.hxx
SettingsData::subMenuButtonHeight
int subMenuButtonHeight
The height in pixels of the buttons used in the build sub menues on the UI.
Definition: Settings.hxx:160
Settings.hxx
SETTINGS_FILENAME
const std::string SETTINGS_FILENAME
Definition: Constants.hxx:20
createDirectory
void createDirectory(const std::string &dir)
Definition: Filesystem.cxx:69
Settings::resetSettingsToDefaults
void resetSettingsToDefaults()
Reset settings to defaults from local settings file.
Definition: Settings.cxx:88
CYTOPIA_DATA_DIR
const std::string CYTOPIA_DATA_DIR
Definition: Constants.hxx:17
JsonSerialization.hxx
SettingsData::currentScreenHeight
ScreenDimension currentScreenHeight
the actual screen height (can differ from the one that's set in borderless fullscreen)
Definition: Settings.hxx:52
Exception.hxx
CYTOPIA_DATA_DIR_BASE
const std::string CYTOPIA_DATA_DIR_BASE
Definition: Constants.hxx:14
json
nlohmann::json json
Definition: Settings.hxx:12
string
std::string string
Definition: AudioConfig.hxx:14
Settings::readFile
void readFile()
Load settings from file.
Definition: Settings.cxx:14
Constants.hxx