]> git.pond.sub.org Git - empserver/blob - src/lib/common/ef_load.c
1973c5f1c66d9ad7c40504a49a7781202bdcb6b2
[empserver] / src / lib / common / ef_load.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 the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  ef_load.c: Load custom game configuration files
29  * 
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2005
32  *  
33  */
34
35 #include <config.h>
36
37 #include <stdio.h>
38 #include <time.h>
39
40 #include "prototypes.h"
41 #include "file.h"
42
43 int
44 ef_load()
45 {
46     struct empfile *ep;
47     FILE *fp;
48     int retval = 0;
49     
50     for (ep = empfile; ep->name; ep++) {
51         if (!EF_IS_GAME_STATE(ep->uid) && ep->file) {
52             if ((fp = fopen(ep->file, "r")) == NULL) {
53                 continue;
54             }
55             if (xundump(fp, ep->name, ep->uid) < 0)
56                 retval = -1;
57             else {
58                 int ch = getc(fp);
59                 if (ch != EOF) {
60                     fprintf(stderr, "%s: Junk after the table\n",
61                         ep->file);
62                     retval = -1;
63                 }
64             }
65             fclose(fp);
66         }
67     }
68     return retval;
69 }