]> git.pond.sub.org Git - empserver/blob - src/lib/common/conftab.c
9339bc777b40b659decb7e517a23871255b9bba1
[empserver] / src / lib / common / conftab.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 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
35 #include <config.h>
36
37 #include <errno.h>
38 #include <stdio.h>
39 #include <time.h>
40
41 #include "prototypes.h"
42 #include "optlist.h"
43 #include "file.h"
44
45 static int read_config_table_file(char *);
46
47 int
48 read_builtin_tables(void)
49 {
50     struct empfile *ep;
51     FILE *fp;
52     int res;
53     
54     for (ep = empfile; ep->name; ep++) {
55         if (!EF_IS_GAME_STATE(ep->uid) && ep->file) {
56             if ((fp = fopen(ep->file, "r")) == NULL) {
57                 fprintf(stderr, "Can't open %s for reading (%s)\n",
58                         ep->file, strerror(errno));
59                 return -1;
60             }
61             res = xundump(fp, ep->name, ep->uid);
62             if (res >= 0 && getc(fp) != EOF) {
63                 fprintf(stderr, "%s: Junk after the table\n",
64                         ep->file);
65                 res = EF_BAD;
66             }
67             fclose(fp);
68             if (res < 0)
69                 return -1;
70         }
71     }
72
73     return 0;
74 }
75
76 /*
77  * Read user configuration tables.
78  * Return 0 on success, -1 on failure.
79  */
80 int
81 read_config_tables(void)
82 {
83     char *tmp = strdup(config_tables);
84     char *fname;
85     int res = 0;
86
87     for (fname = strtok(tmp, " \t"); fname; fname = strtok(NULL, " \t")) {
88         if (read_config_table_file(fname) < 0)
89             res = -1;
90     }
91
92     free(tmp);
93     return res;
94 }
95
96 /*
97  * Read configuaration table file FNAME.
98  * Return 0 on success, -1 on error.
99  */
100 static int
101 read_config_table_file(char *fname)
102 {
103     int res, n;
104     FILE *fp;
105
106     if (!(fp = fopen(fname, "r"))) {
107         fprintf(stderr, "Can't open config table %s for reading (%s)\n",
108                 fname, strerror(errno));
109         return -1;
110     }
111
112     for (n = 0; (res = xundump(fp, fname, EF_BAD)) >= 0; n++) ;
113     if (res != EF_BAD && n == 0)
114         fprintf(stderr, "Warning: configuration file %s is empty\n", fname);
115
116     fclose(fp);
117     return -(res == EF_BAD);
118 }