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
|
#include <baselib/system.h>
#include <baselib/stream/file.h>
#include <baselib/stream/line.h>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include "config.h"
configuration config;
using namespace baselib;
void config_reset()
{
#define MACRO_CONFIG_INT(name,def,min,max) config.name = def;
#define MACRO_CONFIG_STR(name,len,def) strncpy(config.name, def, len);
#include "config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
}
void strip_spaces(char **p)
{
char *&s = *p;
while (*s == ' ')
++s;
char *end = s + strlen(s);
while (end > s && *(end - 1) == ' ')
*--end = 0;
}
void config_set(const char *line)
{
const char *c = strchr(line, '=');
if (c)
{
char var[256];
char val[256];
strcpy(val, c+1);
mem_copy(var, line, c - line);
var[c - line] = 0;
char *var_str = var;
char *val_str = val;
strip_spaces(&var_str);
strip_spaces(&val_str);
#define MACRO_CONFIG_INT(name,def,min,max) { if (strcmp(#name, var_str) == 0) config_set_ ## name (&config, atoi(val_str)); }
#define MACRO_CONFIG_STR(name,len,def) { if (strcmp(#name, var_str) == 0) { config_set_ ## name (&config, val_str); } }
#include "config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
}
}
void config_load(const char *filename)
{
dbg_msg("config/load", "loading %s", filename);
file_stream file;
if (file.open_r(filename))
{
char *line;
line_stream lstream(&file);
while ((line = lstream.get_line()))
config_set(line);
file.close();
}
}
void config_save(const char *filename)
{
dbg_msg("config/save", "saving config to %s", filename);
file_stream file;
if (file.open_w(filename))
{
#define MACRO_CONFIG_INT(name,def,min,max) { char str[256]; sprintf(str, "%s=%i", #name, config.name); file.write(str, strlen(str)); file.write("\n", 1); }
#define MACRO_CONFIG_STR(name,len,def) { file.write(#name, strlen(#name)); file.write("=", 1); file.write(config.name, strlen(config.name)); file.write("\n", 1); }
#include "config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
file.close();
}
}
#define MACRO_CONFIG_INT(name,def,min,max) int config_get_ ## name (configuration *c) { return c->name; }
#define MACRO_CONFIG_STR(name,len,def) const char *config_get_ ## name (configuration *c) { return c->name; }
#include "config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
#define MACRO_CONFIG_INT(name,def,min,max) void config_set_ ## name (configuration *c, int val) { if (val < min) val = min; if (max != 0 && val > max) val = max; c->name = val; }
#define MACRO_CONFIG_STR(name,len,def) void config_set_ ## name (configuration *c, const char *str) { strncpy(c->name, str, len-1); c->name[sizeof(c->name)-1] = 0; }
#include "config_variables.h"
#undef MACRO_CONFIG_INT
#undef MACRO_CONFIG_STR
|