]> git.pond.sub.org Git - empserver/blob - src/lib/gen/emp_config.c
54b1ad96c8178aa89b972457e6c30bdd8976b82e
[empserver] / src / lib / gen / emp_config.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  emp_config.c: Allows config file to control server config. from a file
29  * 
30  *  Known contributors to this file:
31  *     Julian Onions, 1995
32  *     Steve McClure, 1998-2000
33  */
34
35 /*
36  * STILL TO DO
37  *
38  * 1. Change other constants - such as Num Countries etc.
39  *    Just requires variables to be assigned, then dynamic allocation in
40  *    a few places. Some checks needed in the server to check the world
41  *    hasn't changed size etc.
42  * 2. Could look at loading in planes, units etc. Should be easy enough.
43  *
44  */
45
46 #include <assert.h>
47 #include <errno.h>
48 #include <stdio.h>
49 #include <stdlib.h>             /* atoi free atol */
50 #include <string.h>
51
52 #include "misc.h"
53 #include "file.h"
54 #include "optlist.h"
55 #include "gen.h"                /* parse */
56
57 /* for systems without strdup  */
58 #ifdef NOSTRDUP
59 extern char *strdup();
60 #endif /* NOSTRDUP */
61
62 /* Dummy one */
63 static int emp_config_dummy;
64
65 /* things that can be changed */
66 struct keymatch configkeys[] = {
67 #define EMP_CONFIG_C_OUTPUT
68 #include "econfig-spec.h"
69 #undef  EMP_CONFIG_C_OUTPUT
70 };
71
72 static void fixup_files(void);
73 static struct keymatch *keylookup(s_char *key, struct keymatch tbl[]);
74 static int set_option(const char *, int);
75
76 /*
77  * read in empire configuration
78  */
79 int
80 emp_config(char *file)
81 {
82     FILE *fp;
83     char scanspace[1024];
84     char *av[65];
85     char buf[BUFSIZ];
86     struct keymatch *kp;
87     int lno = 0;
88     int errors = 0;
89     int i;
90
91     if (file == NULL) {
92         fixup_files();
93         return 0;
94     }
95     if ((fp = fopen(file, "r")) == NULL) {
96         fprintf(stderr, "Can't open %s for reading (%s)\n",
97                 file, strerror(errno));
98         return -1;
99     }
100
101     while (fgets(buf, sizeof buf, fp) != NULL) {
102         ++lno;
103         for (i = 0; buf[i] && isspace(buf[i]); ++i) ;
104         if (!buf[i] || buf[i] == '#')
105             continue;
106         if (parse(buf, av, 0, scanspace, 0) < 0) {
107             fprintf(stderr, "%s:%d: Can't parse line %s", file, lno, buf);
108             errors = 1;
109             continue;
110         }
111         if ((kp = keylookup(av[0], configkeys)) == NULL) {
112             fprintf(stderr, "%s:%d: Unknown config key %s\n",
113                     file, lno, av[0]);
114             errors = 1;
115             continue;
116         }
117         if (av[1] == NULL) {
118             fprintf(stderr, "%s:%d: Config key %s needs a value\n",
119                     file, lno, av[0]);
120             errors = 1;
121             continue;
122         }
123         i = 2;
124         switch (kp->km_type) {
125         case NSC_INT:
126             *(int *)kp->km_data = atoi(av[1]);
127             break;
128         case NSC_FLOAT:
129             *(float *)kp->km_data = atof(av[1]);
130             break;
131         case NSC_DOUBLE:
132             *(double *)kp->km_data = atof(av[1]);
133             break;
134         case NSC_LONG:
135             *(long *)kp->km_data = atol(av[1]);
136             break;
137         case NSC_STRING:
138             if (kp->km_flags & KM_ALLOC)
139                 free(*(char **)kp->km_data);
140             *(char **)kp->km_data = strdup(av[1]);
141             kp->km_flags |= KM_ALLOC;
142             break;
143         case NSC_NOTYPE:
144             for (i = 1; av[i]; ++i) {
145                 if (set_option(av[i], kp->km_key[0] != 'n') < 0) {
146                     fprintf(stderr, "%s:%d: Unknown option %s\n",
147                             file, lno, av[i]);
148                     errors = 1;
149                 }
150             }
151             break;
152         default:
153             assert(0);
154         }
155         if (av[i] != NULL) {
156             fprintf(stderr, "%s:%d: Junk after value of config key %s\n",
157                     file, lno, av[0]);
158             errors = 1;
159         }
160     }
161     fclose(fp);
162     fixup_files();
163     WORLD_X &= ~1;              /* make even */
164
165     return -errors;
166 }
167
168 struct otherfiles {
169     char **files;
170     char *name;
171 };
172
173 /* list of other well known files... -maybe tailor these oneday
174  * anyway - meantime they are all relative to datadir */
175 static struct otherfiles ofiles[] = {
176     {&motdfil, "motd"},
177     {&downfil, "down"},
178     {&disablefil, "disable"},
179     {&banfil, "ban"},
180     {&authfil, "auth"},
181     {&annfil, "ann"},
182     {&timestampfil, "timestamp"},
183     {&teldir, "tel"},
184 #if !defined(_WIN32)
185     {&telfil, "tel/tel"},
186 #else
187     {&telfil, "tel\\tel"},
188 #endif
189     {NULL, NULL}
190 };
191
192 /* fix up the empfile struct to reference full path names */
193 static void
194 fixup_files(void)
195 {
196     struct empfile *ep;
197     struct otherfiles *op;
198     s_char buf[1024];
199
200     for (ep = empfile; ep < &empfile[EF_MAX]; ep++) {
201 #if !defined(_WIN32)
202         sprintf(buf, "%s/%s", datadir, ep->name);
203 #else
204         sprintf(buf, "%s\\%s", datadir, ep->name);
205 #endif
206         ep->file = strdup(buf);
207     }
208
209     for (op = ofiles; op->files; op++) {
210 #if !defined(_WIN32)
211         sprintf(buf, "%s/%s", datadir, op->name);
212 #else
213         sprintf(buf, "%s\\%s", datadir, op->name);
214 #endif
215         *op->files = strdup(buf);
216     }
217 }
218
219 /* find the key in the table */
220 static struct keymatch *
221 keylookup(register s_char *command, struct keymatch *tbl)
222 {
223     register struct keymatch *kp;
224
225     if (command == 0 || *command == 0)
226         return 0;
227     for (kp = tbl; kp->km_key != 0; kp++) {
228         if (strcmp(kp->km_key, command) == 0)
229             return kp;
230     }
231     return NULL;
232 }
233
234 void
235 print_config(FILE *fp)
236 {
237     struct empfile *ep;
238     struct option_list *op;
239     struct otherfiles *ofp;
240     struct keymatch *kp;
241
242     fprintf(fp, "# Empire Configuration File:\n");
243     for (kp = configkeys; kp->km_key; kp++) {
244         if (kp->km_comment) {
245             if (kp->km_comment[0] != '\n')
246                 fprintf(fp, "\n# ");
247             fprintf(fp, "%s\n", kp->km_comment);
248         }
249         if (!kp->km_key[0])
250             continue;
251         switch (kp->km_type) {
252         case NSC_STRING:
253             fprintf(fp, "%s \"%s\"\n", kp->km_key, *(char **)kp->km_data);
254             break;
255         case NSC_INT:
256             fprintf(fp, "%s %d\n", kp->km_key, *(int *)kp->km_data);
257             break;
258         case NSC_FLOAT:
259             fprintf(fp, "%s %g\n", kp->km_key, *(float *)kp->km_data);
260             break;
261         case NSC_DOUBLE:
262             fprintf(fp, "%s %g\n", kp->km_key, *(double *)kp->km_data);
263             break;
264         case NSC_LONG:
265             fprintf(fp, "%s %ld\n", kp->km_key, *(long *)kp->km_data);
266             break;
267         case NSC_NOTYPE:
268             for (op = Options; op->opt_key; op++)
269                 if (*op->opt_valuep != (kp->km_key[0] == 'n'))
270                     fprintf(fp, "%s %s\n", kp->km_key, op->opt_key);
271             break;
272         default:
273             assert(0);
274         }
275     }
276
277     fprintf(fp, "\n");
278     for (ep = empfile; ep < &empfile[EF_MAX]; ep++)
279         fprintf(fp, "# File %s -> %s\n", ep->name, ep->file);
280     for (ofp = ofiles; ofp->files; ofp++)
281         fprintf(fp, "# File %s -> %s\n", ofp->name, *(ofp->files));
282
283 }
284
285
286 /* Set option S to value VAL; return 0 on success, -1 on failure.  */
287 static int
288 set_option(const char *s, int val)
289 {
290     struct option_list *op;
291
292     for (op = Options; op->opt_key; op++) {
293         if (strcmp(op->opt_key, s) == 0) {
294             *op->opt_valuep = val;
295             return 0;
296         }
297     }
298     return -1;
299 }