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