]> git.pond.sub.org Git - empserver/blob - src/lib/gen/emp_config.c
2aab8f89b42325489f05312696f0c0feb2947621
[empserver] / src / lib / gen / emp_config.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, 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 <config.h>
47
48 #include <assert.h>
49 #include <errno.h>
50 #include <stdio.h>
51 #include <stdlib.h>             /* atoi free atol */
52 #include <string.h>
53
54 #include "misc.h"
55 #include "file.h"
56 #include "optlist.h"
57 #include "gen.h"                /* parse */
58
59 /* Dummy one */
60 static int emp_config_dummy;
61
62 /* things that can be changed */
63 struct keymatch configkeys[] = {
64 #define EMP_CONFIG_C_OUTPUT
65 #include "econfig-spec.h"
66 #undef  EMP_CONFIG_C_OUTPUT
67 };
68
69 static struct keymatch *keylookup(s_char *key, struct keymatch tbl[]);
70
71 /*
72  * read in empire configuration
73  */
74 int
75 emp_config(char *file)
76 {
77     FILE *fp;
78     char scanspace[1024];
79     char *av[128];
80     char buf[1024];
81     struct keymatch *kp;
82     int lno = 0;
83     int errors = 0;
84     int i;
85
86     if (!file)
87         file = dflt_econfig;
88     errno = 0;
89     if ((fp = fopen(file, "r")) == NULL) {
90         if (file == dflt_econfig && errno == ENOENT)
91             return 0;
92         fprintf(stderr, "Can't open %s for reading (%s)\n",
93                 file, strerror(errno));
94         return -1;
95     }
96
97     while (fgets(buf, sizeof buf, fp) != NULL) {
98         ++lno;
99         for (i = 0; buf[i] && isspace(buf[i]); ++i) ;
100         if (!buf[i] || buf[i] == '#')
101             continue;
102         if (parse(buf, av, NULL, scanspace, NULL) < 0) {
103             fprintf(stderr, "%s:%d: Can't parse line %s", file, lno, buf);
104             errors = 1;
105             continue;
106         }
107         if ((kp = keylookup(av[0], configkeys)) == NULL) {
108             fprintf(stderr, "%s:%d: Unknown config key %s\n",
109                     file, lno, av[0]);
110             errors = 1;
111             continue;
112         }
113         if (av[1] == NULL) {
114             fprintf(stderr, "%s:%d: Config key %s needs a value\n",
115                     file, lno, av[0]);
116             errors = 1;
117             continue;
118         }
119         i = 2;
120         switch (kp->km_type) {
121         case NSC_INT:
122             *(int *)kp->km_data = atoi(av[1]);
123             break;
124         case NSC_FLOAT:
125             *(float *)kp->km_data = atof(av[1]);
126             break;
127         case NSC_DOUBLE:
128             *(double *)kp->km_data = atof(av[1]);
129             break;
130         case NSC_LONG:
131             *(long *)kp->km_data = atol(av[1]);
132             break;
133         case NSC_STRING:
134             if (kp->km_flags & KM_ALLOC)
135                 free(*(char **)kp->km_data);
136             *(char **)kp->km_data = strdup(av[1]);
137             kp->km_flags |= KM_ALLOC;
138             break;
139         default:
140             assert(0);
141         }
142         if (av[i] != NULL) {
143             fprintf(stderr, "%s:%d: Junk after value of config key %s\n",
144                     file, lno, av[0]);
145             errors = 1;
146         }
147     }
148     fclose(fp);
149     WORLD_X &= ~1;              /* make even */
150
151     return -errors;
152 }
153
154 /* find the key in the table */
155 static struct keymatch *
156 keylookup(register s_char *command, struct keymatch *tbl)
157 {
158     register struct keymatch *kp;
159
160     if (command == 0 || *command == 0)
161         return 0;
162     for (kp = tbl; kp->km_key != 0; kp++) {
163         if (strcmp(kp->km_key, command) == 0)
164             return kp;
165     }
166     return NULL;
167 }
168
169 void
170 print_config(FILE *fp)
171 {
172     struct keymatch *kp;
173
174     fprintf(fp, "# Empire Configuration File:\n");
175     for (kp = configkeys; kp->km_key; kp++) {
176         if (kp->km_comment) {
177             if (kp->km_comment[0] != '\n')
178                 fprintf(fp, "\n# ");
179             fprintf(fp, "%s\n", kp->km_comment);
180         }
181         if (!kp->km_key[0])
182             continue;
183         switch (kp->km_type) {
184         case NSC_STRING:
185             fprintf(fp, "%s \"%s\"\n", kp->km_key, *(char **)kp->km_data);
186             break;
187         case NSC_INT:
188             fprintf(fp, "%s %d\n", kp->km_key, *(int *)kp->km_data);
189             break;
190         case NSC_FLOAT:
191             fprintf(fp, "%s %g\n", kp->km_key, *(float *)kp->km_data);
192             break;
193         case NSC_DOUBLE:
194             fprintf(fp, "%s %g\n", kp->km_key, *(double *)kp->km_data);
195             break;
196         case NSC_LONG:
197             fprintf(fp, "%s %ld\n", kp->km_key, *(long *)kp->km_data);
198             break;
199         default:
200             assert(0);
201         }
202     }
203
204     fprintf(fp, "\n");
205 }