]> git.pond.sub.org Git - empserver/blob - src/lib/subs/fileinit.c
Fix empdump not to touch plane file when import fails
[empserver] / src / lib / subs / fileinit.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  fileinit.c: Initialize Empire tables for full server operations.
28  *
29  *  Known contributors to this file:
30  *     Ron Koenderink, 2005
31  *     Markus Armbruster, 2005-2008
32  */
33
34 #include <config.h>
35
36 #include "file.h"
37 #include "nsc.h"
38 #include "prototypes.h"
39 #include "unit.h"
40
41 struct fileinit {
42     int ef_type;
43     void (*postread)(int, void *);
44     void (*prewrite)(int, void *, void *);
45     void (*onresize)(int);
46 };
47
48 static struct fileinit fileinit[] = {
49     {EF_SECTOR, sct_postread, sct_prewrite, NULL},
50     {EF_SHIP, shp_postread, shp_prewrite, unit_onresize},
51     {EF_PLANE, pln_postread, pln_prewrite, unit_onresize},
52     {EF_LAND, lnd_postread, lnd_prewrite, unit_onresize},
53     {EF_NUKE, nuk_postread, nuk_prewrite, unit_onresize}
54 };
55
56 static void ef_open_srv(void);
57 static void ef_close_srv(void);
58
59 /*
60  * Initialize empfile for full server operations.
61  */
62 void
63 ef_init_srv(void)
64 {
65     unsigned i;
66
67     for (i = 0; i < sizeof(fileinit) / sizeof(fileinit[0]); i++) {
68         empfile[fileinit[i].ef_type].postread = fileinit[i].postread;
69         empfile[fileinit[i].ef_type].prewrite = fileinit[i].prewrite;
70         empfile[fileinit[i].ef_type].onresize = fileinit[i].onresize;
71     }
72
73     nsc_init();
74     ef_open_srv();
75     if (ef_verify(1) < 0)
76         exit(EXIT_FAILURE);
77     global_init();
78     unit_cargo_init();
79 }
80
81 void
82 ef_fin_srv(void)
83 {
84     ef_close_srv();
85 }
86
87 static void
88 ef_open_srv(void)
89 {
90     int failed = 0;
91
92     failed |= !ef_open(EF_NATION, EFF_MEM);
93     failed |= !ef_open(EF_SECTOR, EFF_MEM);
94     failed |= !ef_open(EF_SHIP, EFF_MEM);
95     failed |= !ef_open(EF_PLANE, EFF_MEM);
96     failed |= !ef_open(EF_LAND, EFF_MEM);
97     failed |= !ef_open(EF_GAME, EFF_MEM);
98     failed |= !ef_open(EF_NEWS, 0);
99     failed |= !ef_open(EF_LOAN, 0);
100     failed |= !ef_open(EF_TREATY, 0);
101     failed |= !ef_open(EF_NUKE, EFF_MEM);
102     failed |= !ef_open(EF_POWER, 0);
103     failed |= !ef_open(EF_TRADE, 0);
104     failed |= !ef_open(EF_MAP, EFF_MEM);
105     failed |= !ef_open(EF_BMAP, EFF_MEM);
106     failed |= !ef_open(EF_COMM, 0);
107     failed |= !ef_open(EF_LOST, 0);
108     failed |= !ef_open(EF_REALM, EFF_MEM);
109     if (!failed)
110         failed |= ef_open_view(EF_COUNTRY);
111     if (failed) {
112         logerror("Missing files, giving up");
113         exit(EXIT_FAILURE);
114     }
115 }
116
117 static void
118 ef_close_srv(void)
119 {
120     ef_close(EF_COUNTRY);
121     ef_close(EF_NATION);
122     ef_close(EF_SECTOR);
123     ef_close(EF_SHIP);
124     ef_close(EF_PLANE);
125     ef_close(EF_LAND);
126     ef_close(EF_GAME);
127     ef_close(EF_NEWS);
128     ef_close(EF_LOAN);
129     ef_close(EF_TREATY);
130     ef_close(EF_NUKE);
131     ef_close(EF_POWER);
132     ef_close(EF_TRADE);
133     ef_close(EF_MAP);
134     ef_close(EF_COMM);
135     ef_close(EF_BMAP);
136     ef_close(EF_LOST);
137     ef_close(EF_REALM);
138 }