]> git.pond.sub.org Git - empserver/blob - src/lib/common/conftab.c
47586c0fbf1789ebdfe4929f9daaae516b02d107
[empserver] / src / lib / common / conftab.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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-2008
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 #include "xdump.h"
43
44 static int read_custom_table_file(char *);
45
46 /*
47  * Read builtin configuration tables.
48  * Return 0 on success, -1 on failure.
49  */
50 int
51 read_builtin_tables(void)
52 {
53     struct empfile *ep;
54     FILE *fp;
55     int lineno, res;
56
57     /*
58      * Need to read config files for tables referenced through
59      * ep->cadef[].ca_table before those for ep.  empfile[] is ordered
60      * that way.
61      */
62     for (ep = empfile; ep->name; ep++) {
63         if (!EF_IS_GAME_STATE(ep->uid) && ep->file) {
64             if ((fp = fopenat(ep->file, "r", builtindir)) == NULL) {
65                 fprintf(stderr, "Can't open %s for reading (%s)\n",
66                         ep->file, strerror(errno));
67                 return -1;
68             }
69             lineno = 1;
70             res = xundump(fp, ep->file, &lineno, ep->uid);
71             if (res >= 0 && getc(fp) != EOF) {
72                 fprintf(stderr, "%s: Junk after the table\n",
73                         ep->file);
74                 res = EF_BAD;
75             }
76             fclose(fp);
77             if (res < 0)
78                 return -1;
79         }
80     }
81
82     return 0;
83 }
84
85 /*
86  * Read user configuration tables.
87  * Return 0 on success, -1 on failure.
88  */
89 int
90 read_custom_tables(void)
91 {
92     char *tmp = strdup(custom_tables);
93     char *fname;
94     int res = 0;
95
96     for (fname = strtok(tmp, " \t"); fname; fname = strtok(NULL, " \t")) {
97         if (read_custom_table_file(fname) < 0)
98             res = -1;
99     }
100
101     free(tmp);
102     return res;
103 }
104
105 /*
106  * Read configuration table file FNAME.
107  * Return 0 on success, -1 on error.
108  */
109 static int
110 read_custom_table_file(char *fname)
111 {
112     int lineno, res, n;
113     FILE *fp;
114
115     if (!(fp = fopenat(fname, "r", configdir))) {
116         fprintf(stderr, "Can't open config table %s for reading (%s)\n",
117                 fname, strerror(errno));
118         return -1;
119     }
120
121     lineno = 1;
122     for (n = 0; (res = xundump(fp, fname, &lineno, EF_BAD)) >= 0; n++)
123         empfile[res].flags |= EFF_CUSTOM;
124     if (res != EF_BAD && n == 0)
125         fprintf(stderr, "Warning: configuration file %s is empty\n", fname);
126
127     fclose(fp);
128     return -(res == EF_BAD);
129 }