aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.cpp
blob: df15e058cdea699ed22906ea7237f21d90c10836 (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
#include <config.h>

using namespace tinyxml2;

extern unsigned int HLINE;
extern unsigned int SCREEN_WIDTH;
extern unsigned int SCREEN_HEIGHT;
extern bool		 	FULLSCREEN;

extern float 		 VOLUME_MASTER;
extern float 		 VOLUME_MUSIC;

XMLDocument xml;
XMLElement *scr;
XMLElement *vol;


void readConfig(){
	xml.LoadFile("config/settings.xml");
	scr = xml.FirstChildElement("screen");
	SCREEN_WIDTH  = scr->UnsignedAttribute("width");
	SCREEN_HEIGHT = scr->UnsignedAttribute("height");
	FULLSCREEN    = scr->BoolAttribute("fullscreen");
	HLINE         = xml.FirstChildElement("hline")->UnsignedAttribute("size");

	vol = xml.FirstChildElement("volume");
	VOLUME_MASTER = vol->FirstChildElement("master")->FloatAttribute("volume");
	VOLUME_MUSIC = vol->FirstChildElement("music")->FloatAttribute("volume");

}

void updateConfig(){
	vol->FirstChildElement("master")->SetAttribute("volume",VOLUME_MASTER);
	vol->FirstChildElement("music")->SetAttribute("volume",VOLUME_MUSIC);
	
	Mix_Volume(0,VOLUME_MASTER);
	Mix_VolumeMusic(VOLUME_MUSIC);

}

void saveConfig(){
	xml.SaveFile("config/settings.xml", false);
}