2 * SDLEMU library - Free sdl related functions library
3 * Copyrigh(c) 1999-2002 sdlemu development crew
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "sdlemu_config.h"
30 token_list(const string &name) : m_name(name), m_value(""), m_token("") {}
31 void add_token_variable(const string &var) { m_token = var; }
32 void add_token_value(const string &value) { m_value = value; }
33 const string &LineName() const { return m_name; }
34 const string &Token() const { return m_token; }
35 const string &Value() const { return m_value; }
42 std::list<token_list> vec;
44 void string_tokenize_variable()
46 list<token_list>::iterator p;
47 const string delim = " ";
48 for(p = vec.begin(); p != vec.end(); p++) {
49 string::size_type lastPos = (*p).LineName().find_first_not_of(delim, 0);
50 string::size_type pos = (*p).LineName().find_first_of(delim, lastPos);
52 if(string::npos != pos && string::npos != lastPos) {
53 string s = (*p).LineName().substr(lastPos, pos - lastPos);
54 (*p).add_token_variable(s);
59 void string_tokenize_value()
61 list<token_list>::iterator p;
62 const string delim = " =\n\t\r"; // "\r" needed for Win32 compatibility...
64 for(p = vec.begin(); p != vec.end(); p++) {
65 string::size_type lastPos = (*p).LineName().find_first_of(delim, 0);
66 string::size_type pos = (*p).LineName().find_first_not_of(delim, lastPos);
68 if(string::npos != pos && string::npos != lastPos) {
69 string s = (*p).LineName().substr(pos);
70 (*p).add_token_value(s);
75 int sdlemu_init_config(const char *filename)
77 FILE *f = fopen(filename, "r");
80 fseek(f, 0, SEEK_END);
82 fseek(f, 0, SEEK_SET);
84 char *s = new char[len];
88 const string delim = "\n\r"; // "\r" needed for Win32 compatibility...
89 string::size_type lastPos = str.find_first_not_of(delim, 0);
90 string::size_type pos = str.find_first_of(delim, lastPos);
92 while (string::npos != pos || string::npos != lastPos) {
93 string string = str.substr(lastPos, pos - lastPos);
97 else if(string[0] == '[')
102 vec.push_back(string);
104 lastPos = str.find_first_not_of(delim, pos);
105 pos = str.find_first_of(delim, lastPos);
107 string_tokenize_variable();
108 string_tokenize_value();
114 const char *sdlemu_getval_string(const char *key_string, const char *default_string)
116 list<token_list>::iterator p;
117 for(p = vec.begin(); p != vec.end(); p++) {
119 if(strcmp((*p).Token().c_str(), key_string) == 0)
120 return (*p).Value().c_str();
122 return default_string;
125 int sdlemu_getval_int(const char *key_string, int default_int)
127 list<token_list>::iterator p;
128 for(p = vec.begin(); p != vec.end(); p++) {
130 if(strcmp((*p).Token().c_str(), key_string) == 0) {
131 const char *ret = (*p).Value().c_str();
132 if(ret) return atoi(ret);
138 int sdlemu_getval_bool(const char *key_string, int default_int)
140 list<token_list>::iterator p;
141 for(p = vec.begin(); p != vec.end(); p++) {
143 if(strcmp((*p).Token().c_str(), key_string) == 0) {
144 const char *ret = (*p).Value().c_str();
145 if(ret) return atoi(ret)>0;