Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Constants.hxx
Go to the documentation of this file.
1 #ifndef CONSTANTS_HXX_
2 #define CONSTANTS_HXX_
3 
4 // PATHS
5 #ifdef __linux__
6 const std::string CYTOPIA_DATA_DIR_BASE(getenv("XDG_DATA_HOME") == nullptr ? getenv("HOME") + std::string("/.local/share")
7  : getenv("XDG_DATA_HOME"));
8 #elif _WIN32
9 const std::string CYTOPIA_DATA_DIR_BASE = getenv("APPDATA");
10 #elif __APPLE__
11 const std::string CYTOPIA_DATA_DIR_BASE = getenv("HOME") + (std::string) "/Library/Application Support";
12 #else
13 // TODO: Define mobile platform dirs
15 #endif
16 
19 
20 const std::string SETTINGS_FILENAME = "settings.json";
21 const std::string CYTOPIA_RESOURCES_DIR = "resources/";
22 
23 constexpr const char SETTINGS_FILE_NAME[] = "resources/settings.json";
24 constexpr const unsigned int SAVEGAME_VERSION = 4;
25 constexpr const char TERRAINGEN_DATA_FILE_NAME[] = "resources/data/TerrainGen.json";
26 
27 const std::string DEFAULT_TERRAIN = "terrain_grass";
28 #endif
CYTOPIA_SAVEGAME_DIR
const std::string CYTOPIA_SAVEGAME_DIR
Definition: Constants.hxx:18
CYTOPIA_RESOURCES_DIR
const std::string CYTOPIA_RESOURCES_DIR
Definition: Constants.hxx:21
DEFAULT_TERRAIN
const std::string DEFAULT_TERRAIN
Definition: Constants.hxx:27
SETTINGS_FILENAME
const std::string SETTINGS_FILENAME
Definition: Constants.hxx:20
TERRAINGEN_DATA_FILE_NAME
constexpr const char TERRAINGEN_DATA_FILE_NAME[]
Definition: Constants.hxx:25
CYTOPIA_DATA_DIR
const std::string CYTOPIA_DATA_DIR
Definition: Constants.hxx:17
CYTOPIA_DATA_DIR_BASE
const std::string CYTOPIA_DATA_DIR_BASE
Definition: Constants.hxx:14
SETTINGS_FILE_NAME
constexpr const char SETTINGS_FILE_NAME[]
Definition: Constants.hxx:23
string
std::string string
Definition: AudioConfig.hxx:14
SAVEGAME_VERSION
constexpr const unsigned int SAVEGAME_VERSION
Definition: Constants.hxx:24