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