]> git.pond.sub.org Git - empserver/blob - src/lib/common/conftab.c
e92b316b25b0217bc0485c843c49f378f23f42dc
[empserver] / src / lib / common / conftab.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, 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 files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  conftab.c: Load game configuration files
29  * 
30  *  Known contributors to this file:
31  *     Markus Armbruster, 2006
32  */
33
34 #include <config.h>
35
36 #include <errno.h>
37 #include <stdio.h>
38 #include "file.h"
39 #include "optlist.h"
40 #include "product.h"
41 #include "prototypes.h"
42
43 static int read_custom_table_file(char *);
44
45 int
46 read_builtin_tables(void)
47 {
48     struct empfile *ep;
49     FILE *fp;
50     int lineno, res;
51
52     /*
53      * Need to read config files for tables referenced through
54      * ep->cadef[].ca_table before those for ep.  empfile[] is ordered
55      * that way.
56      */
57     for (ep = empfile; ep->name; ep++) {
58         if (!EF_IS_GAME_STATE(ep->uid) && ep->file) {
59             if ((fp = fopen(ep->file, "r")) == NULL) {
60                 fprintf(stderr, "Can't open %s for reading (%s)\n",
61                         ep->file, strerror(errno));
62                 return -1;
63             }
64             lineno = 1;
65             res = xundump(fp, ep->file, &lineno, ep->uid);
66             if (res >= 0 && getc(fp) != EOF) {
67                 fprintf(stderr, "%s: Junk after the table\n",
68                         ep->file);
69                 res = EF_BAD;
70             }
71             fclose(fp);
72             if (res < 0)
73                 return -1;
74         }
75     }
76
77     return 0;
78 }
79
80 /*
81  * Read user configuration tables.
82  * Return 0 on success, -1 on failure.
83  */
84 int
85 read_custom_tables(void)
86 {
87     char *tmp = strdup(custom_tables);
88     char *fname;
89     int res = 0;
90
91     for (fname = strtok(tmp, " \t"); fname; fname = strtok(NULL, " \t")) {
92         if (read_custom_table_file(fname) < 0)
93             res = -1;
94     }
95
96     free(tmp);
97     return res;
98 }
99
100 /*
101  * Read configuration table file FNAME.
102  * Return 0 on success, -1 on error.
103  */
104 static int
105 read_custom_table_file(char *fname)
106 {
107     int lineno, res, n;
108     FILE *fp;
109
110     if (!(fp = fopen(fname, "r"))) {
111         fprintf(stderr, "Can't open config table %s for reading (%s)\n",
112                 fname, strerror(errno));
113         return -1;
114     }
115
116     lineno = 1;
117     for (n = 0; (res = xundump(fp, fname, &lineno, EF_BAD)) >= 0; n++)
118         empfile[res].flags |= EFF_CUSTOM;
119     if (res != EF_BAD && n == 0)
120         fprintf(stderr, "Warning: configuration file %s is empty\n", fname);
121
122     fclose(fp);
123     return -(res == EF_BAD);
124 }