Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 337cf45f07a56ac121cb0fd3ba9a0bf654abddd4 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
   filesystem/inifile.cc
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#include "math/mathlib.h"
#include "filesystem/filesystem.h"
#include "filesystem/inifile.h"

#include <sstream>

namespace filesystem {

IniFile::IniFile() {}

IniFile::~IniFile() {}

bool IniFile::open(std::string const & name) {

	last_read_was_section = false;
	last_read_was_key = false;
	key_current = "";
	value_current = "";
	section_current = "";
	line_number = 0;

	inifile_name.assign("ini/");
	inifile_name.append(name);
	inifile_name.append(".ini");
	
	filesystem::File *f = filesystem::open(inifile_name.c_str());	
	if (!f) {
		con_warn << "Could not open " << inifile_name << std::endl;
		return false;
	}
	
	std::string fn = f->path();
	fn.append(f->name());
	filesystem::close(f);
	
	inifile_ifs.open(fn.c_str());
	if (!inifile_ifs.is_open()) {
		con_warn << "Could not stream " << fn << "!\n";
		return false;
	}
	
	return true;
}


bool IniFile::got_section() const {
	return last_read_was_section;
}

bool IniFile::got_section(const char * sectionlabel) const {
	return (last_read_was_section && (section_current.compare(sectionlabel) == 0));
}

bool IniFile::getline() {
	char line[1024];

	last_read_was_section = false;
	last_read_was_key = false;
	key_current = "";
	value_current = "";

	if (!inifile_ifs.is_open())
		return false;

	if (inifile_ifs.getline(line, 1024)) {
		std::string s(line);
		line_number++;

		if (s.size() == 0) {
			// empty line
		} else
			// comment
			if (s[0] == '#' || s[0] == ';') {
				// condebug << "IniFile got comment " << s << std::endl;
			} else
				// section header
				if (s.size() > 2 && s[0] == '[' && s[s.size()-1] == ']') {
					// condebug << "Inifile got section header " << s << std::endl;
					section_current = s.substr(1, s.size()-2);
					last_read_was_section = true;
					return true;
				} else {
					// key=value pair
					size_t found = s.find('=');
					if (found != std::string::npos) {
						// make lowercase
						key_current = s.substr(0, found);

						while (key_current.size() && key_current[key_current.size()-1] == ' ')
							key_current.erase(key_current.size()-1, 1);

						if (key_current.size()) {
							value_current = s.substr(found+1, s.size() - found - 1);
							last_read_was_key = true;
							return true;
						}

					}
				}
		return true;
	} else
		return false;
}

bool IniFile::got_key_string(const char * keylabel, std::string & valuestring) {
	if (last_read_was_key && (key_current.compare(keylabel) == 0 )) {
		valuestring.assign(value_current);
		return true;
	} else {
		return false;
	}
}

bool IniFile::got_key_vector3f(const char * keylabel, math::Vector3f & v) {
	if (last_read_was_key && (key_current.compare(keylabel) == 0 )) {
		std::istringstream is(value_current);
		float x, y, z;
		if ((is >> x) && (is >> y) && (is >> z)) {
			v = math::Vector3f(x,y,z);
		} else {
			 v= math::Vector3f();
		}
		return true;
	} else {
		return false;
	}
}

bool IniFile::got_key_float(const char * keylabel, float & f) {
	if (last_read_was_key && (key_current.compare(keylabel) == 0 )) {
		std::istringstream is(value_current);
		if (!(is >> f)) {
			f = 0;
		}
		return true;
	} else {
		return false;
	}
}

bool IniFile::got_key(const char * keylabel) {
	return (last_read_was_key && (key_current.compare(keylabel) == 0 ));
}

bool IniFile::got_key_angle(const char * keylabel, float & f) {
	if (last_read_was_key && (key_current.compare(keylabel) == 0 )) {
		std::istringstream is(value_current);
		if ((is >> f)) {
			f = math::degrees360f(f);
		} else {
			f = 0;
		}
		return true;
	} else {
		return false;
	}
}

bool IniFile::got_key_color(const char * keylabel, math::Color & color) {
	if (last_read_was_key && (key_current.compare(keylabel) == 0 )) {
		std::istringstream is(value_current);
		float r, g, b;
		if ((is >> r) && (is >> g) && (is >> b)) {
			if ((r > 1) || (g > 1) || (b > 1)) {
				r /= 255; g /= 255; b /= 255;
			}
			color = math::Color(r, g, b);
		} else {
			color = math::Color();
		}
		return true;
	} else {
		return false;
	}
}

void IniFile::close()
{
	inifile_ifs.close();
}

} // namespace filesystem