Cytopia
0.3
A city building simulation game
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
Functions
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
z
~
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
a
c
d
e
g
i
m
n
p
r
s
t
u
v
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
Functions
b
c
d
f
g
i
m
o
p
r
s
t
w
Variables
a
c
d
g
h
i
l
m
n
r
s
t
Typedefs
a
c
d
e
f
g
i
j
l
m
n
r
s
t
v
Enumerations
Enumerator
a
b
d
e
f
g
l
m
n
p
r
s
t
u
w
z
Macros
_
c
e
i
l
n
r
s
t
v
Examples
▼
Cytopia
Todo List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
src
▼
engine
►
audio
►
basics
▼
common
►
Constants.hxx
►
enums.hxx
►
JsonSerialization.hxx
►
platform.hxx
►
GameObjects
►
map
EventManager.cxx
►
EventManager.hxx
►
Layout.hxx
►
Map.cxx
►
Map.hxx
►
MessageQueue.hxx
MessageQueue.inl.hxx
►
ResourcesManager.cxx
►
ResourcesManager.hxx
Sprite.cxx
►
Sprite.hxx
►
TileManager.cxx
►
TileManager.hxx
►
UIManager.cxx
►
UIManager.hxx
WindowManager.cxx
►
WindowManager.hxx
►
game
►
scripting
►
services
►
util
►
windows
Game.cxx
►
Game.hxx
►
main.cxx
►
MainMenu.cxx
►
MainMenu.hxx
phc.hxx
►
File Members
►
Examples
•
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
14
const
std::string
CYTOPIA_DATA_DIR_BASE
=
""
;
15
#endif
16
17
const
std::string
CYTOPIA_DATA_DIR
=
CYTOPIA_DATA_DIR_BASE
+ (
std::string
)
"/Cytopia/"
;
18
const
std::string
CYTOPIA_SAVEGAME_DIR
=
CYTOPIA_DATA_DIR
+ (
std::string
)
"saves/"
;
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
src
engine
common
Constants.hxx
Generated on Sun Nov 27 2022 09:50:52 for Cytopia by
1.8.17