blob: 908c3766d86b9791d1063f0a5445d87fbdf76f17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/**
* @file config.hpp
* @brief Functions for loading/saving game settings.
*/
#ifndef CONFIG_H
#define CONFIG_H
#include <string>
namespace game {
/**
* The size of an HLINE, according to the save file.
* This is the default "unit of measurement" in the game. Drawing scales to
* this, and it is used in game logic.
*/
extern unsigned int HLINE;
/**
* The width of the screen, in pixels.
*/
extern unsigned int SCREEN_WIDTH;
/**
* The height of the screen, in pixels.
*/
extern unsigned int SCREEN_HEIGHT;
/**
* The window is fullscreen if this is true.
*/
extern bool FULLSCREEN;
namespace config {
/**
* The current volume level of the master channel.
* Volumes are percentages, 0 to 100.
*/
extern float VOLUME_MASTER;
/**
* Volume level of the background music (BGM).
*/
extern float VOLUME_MUSIC;
/**
* Volume level of game sound effects.
*/
extern float VOLUME_SFX;
/**
* The path of the folder to load world XML files from.
*/
extern std::string xmlFolder;
/**
* Reads the settings file (config/settings.xml) into the game.
* Default values are hardcoded in (see src/config.cpp).
*/
void read(void);
/**
* Updates settings with the current values.
*/
void update(void);
/**
* Saves the current settings to the settings file.
*/
void save(void);
}
}
#endif //CONFIG_H
|