Loading [MathJax]/extensions/MathZoom.js
Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Settings.hxx
Go to the documentation of this file.
1 #ifndef SETTINGS_HXX_
2 #define SETTINGS_HXX_
3 
4 #include <string>
5 #include <cstddef>
6 
7 #include "../../util/Singleton.hxx"
8 #include "../../util/Meta.hxx"
9 #include <json.hxx>
10 
11 using std::string;
13 
14 /* Settings Types */
17 
24 {
29 
34  int mapSize;
35 
41 
47 
50 
53 
59 
65 
70  bool vSync;
71 
76  bool fullScreen;
77 
83 
85  float musicVolume;
86 
89 
91  bool playMusic;
92 
95 
101 
104 
112 
119 
125 
131 
137 
140 
143 
146 
149 
155 
161 
162  uint32_t defaultFontSize;
163 
166 
169 };
170 
175 class Settings : public SettingsData, public Singleton<Settings>
176 {
177 public:
179 
184  void readFile();
185 
187  void writeFile();
188 
194 
195  using SettingsData::operator=;
196 
197 private:
198  Settings();
199  ~Settings() = default;
200 
201  json parseSettingsFile(const std::string &fileName) const;
202 };
203 
204 #endif
Settings
the settings of the client
Definition: Settings.hxx:175
SettingsData::soundEffectsVolume
float soundEffectsVolume
the volume of sound effects as float between [0, 1]
Definition: Settings.hxx:88
StrongType< string, struct FilePathTag >
SettingsData::vSync
bool vSync
if vSync is enabled or not
Definition: Settings.hxx:70
Settings::~Settings
~Settings()=default
SettingsData::fontFileName
FilePath fontFileName
FilePath of the Font that should be used.
Definition: Settings.hxx:148
SettingsData::fullScreen
bool fullScreen
Definition: Settings.hxx:76
Settings::writeFile
void writeFile()
Save settings to file.
Definition: Settings.cxx:57
SettingsData::buildMenuPosition
std::string buildMenuPosition
location of the build menu
Definition: Settings.hxx:111
int
int
Definition: tileData.hxx:57
SettingsData::screenHeight
ScreenDimension screenHeight
the screen height
Definition: Settings.hxx:46
SettingsData::audioConfig3DJSONFile
FilePath audioConfig3DJSONFile
the file path to Audio Configuration 3D
Definition: Settings.hxx:142
Settings::Settings
Settings()
Definition: Settings.cxx:12
SettingsData::subMenuButtonWidth
int subMenuButtonWidth
The width in pixels of the buttons used in the build sub menues on the UI.
Definition: Settings.hxx:154
SettingsData::maxElevationHeight
int maxElevationHeight
the maximum elevation height
Definition: Settings.hxx:58
SettingsData::zoneLayerTransparency
float zoneLayerTransparency
the value of the zone layer transparency, (0 - 1.0). where 0 is full opaque and 1 for full transparen...
Definition: Settings.hxx:64
SettingsData::audioChannels
int audioChannels
the number of channels used for sound playback 1=Mono,2=Stereo
Definition: Settings.hxx:100
SettingsData::mapSize
int mapSize
the size of the map
Definition: Settings.hxx:34
SettingsData
Definition: Settings.hxx:23
Settings::parseSettingsFile
json parseSettingsFile(const std::string &fileName) const
Definition: Settings.cxx:75
SettingsData::gameLanguage
std::string gameLanguage
the code for the current game language
Definition: Settings.hxx:145
SettingsData::uiDataJSONFile
FilePath uiDataJSONFile
JSONFile that contains uiData.
Definition: Settings.hxx:124
SettingsData::tileDataJSONFile
FilePath tileDataJSONFile
JSONFile that contains tileData.
Definition: Settings.hxx:130
SettingsData::screenWidth
ScreenDimension screenWidth
the screen width
Definition: Settings.hxx:40
SettingsData::playSoundEffects
bool playSoundEffects
true if sound effects should be played
Definition: Settings.hxx:94
SettingsData::currentScreenWidth
ScreenDimension currentScreenWidth
the actual screen width (can differ from the one that's set in borderless fullscreen)
Definition: Settings.hxx:49
ScreenDimension
int ScreenDimension
Definition: Settings.hxx:15
SettingsData::fullScreenMode
int fullScreenMode
Definition: Settings.hxx:82
SettingsData::subMenuButtonHeight
int subMenuButtonHeight
The height in pixels of the buttons used in the build sub menues on the UI.
Definition: Settings.hxx:160
SettingsData::uiLayoutJSONFile
FilePath uiLayoutJSONFile
The file path to the UI layout file.
Definition: Settings.hxx:136
SettingsData::showBuildingsInBlueprint
bool showBuildingsInBlueprint
indicates whether we want to see buildings inside Blueprint layer or not
Definition: Settings.hxx:165
SettingsData::settingsVersion
int settingsVersion
the version of the Settings file. Overwrite cache settings if a newer version exists
Definition: Settings.hxx:28
SettingsData::audio3DStatus
bool audio3DStatus
whether to play 3D sound or not
Definition: Settings.hxx:103
Settings::resetSettingsToDefaults
void resetSettingsToDefaults()
Reset settings to defaults from local settings file.
Definition: Settings.cxx:88
Singleton
Abstract Singleton implementation.
Definition: Singleton.hxx:8
SettingsData::defaultFontSize
uint32_t defaultFontSize
Definition: Settings.hxx:162
SettingsData::musicVolume
float musicVolume
the volume of music as float between [0, 1]
Definition: Settings.hxx:85
SettingsData::currentScreenHeight
ScreenDimension currentScreenHeight
the actual screen height (can differ from the one that's set in borderless fullscreen)
Definition: Settings.hxx:52
SettingsData::playMusic
bool playMusic
true if music should be played
Definition: Settings.hxx:91
SettingsData::audioConfigJSONFile
FilePath audioConfigJSONFile
file path to Audio Configuration
Definition: Settings.hxx:139
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
SettingsData::writeErrorLogFile
bool writeErrorLogFile
Write errors to a log file.
Definition: Settings.hxx:168
SettingsData::biome
std::string biome
this is used for biomedata
Definition: Settings.hxx:118