]> git.pond.sub.org Git - empserver/blob - src/lib/subs/fileinit.c
053d458e95b80b48d03dcfc409d91603393b5e47
[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_config() < 0)
76         exit(EXIT_FAILURE);
77     if (ef_verify_state(1) < 0)
78         exit(EXIT_FAILURE);
79     global_init();
80     unit_cargo_init();
81 }
82
83 void
84 ef_fin_srv(void)
85 {
86     ef_close_srv();
87 }
88
89 static void
90 ef_open_srv(void)
91 {
92     int failed = 0;
93
94     failed |= !ef_open(EF_NATION, EFF_MEM);
95     failed |= !ef_open(EF_SECTOR, EFF_MEM);
96     failed |= !ef_open(EF_SHIP, EFF_MEM);
97     failed |= !ef_open(EF_PLANE, EFF_MEM);
98     failed |= !ef_open(EF_LAND, EFF_MEM);
99     failed |= !ef_open(EF_GAME, EFF_MEM);
100     failed |= !ef_open(EF_NEWS, 0);
101     failed |= !ef_open(EF_LOAN, 0);
102     failed |= !ef_open(EF_TREATY, 0);
103     failed |= !ef_open(EF_NUKE, EFF_MEM);
104     failed |= !ef_open(EF_POWER, 0);
105     failed |= !ef_open(EF_TRADE, 0);
106     failed |= !ef_open(EF_MAP, EFF_MEM);
107     failed |= !ef_open(EF_BMAP, EFF_MEM);
108     failed |= !ef_open(EF_COMM, 0);
109     failed |= !ef_open(EF_LOST, 0);
110     failed |= !ef_open(EF_REALM, EFF_MEM);
111     if (!failed)
112         failed |= ef_open_view(EF_COUNTRY);
113     if (failed) {
114         logerror("Missing files, giving up");
115         exit(EXIT_FAILURE);
116     }
117 }
118
119 static void
120 ef_close_srv(void)
121 {
122     ef_close(EF_COUNTRY);
123     ef_close(EF_NATION);
124     ef_close(EF_SECTOR);
125     ef_close(EF_SHIP);
126     ef_close(EF_PLANE);
127     ef_close(EF_LAND);
128     ef_close(EF_GAME);
129     ef_close(EF_NEWS);
130     ef_close(EF_LOAN);
131     ef_close(EF_TREATY);
132     ef_close(EF_NUKE);
133     ef_close(EF_POWER);
134     ef_close(EF_TRADE);
135     ef_close(EF_MAP);
136     ef_close(EF_COMM);
137     ef_close(EF_BMAP);
138     ef_close(EF_LOST);
139     ef_close(EF_REALM);
140 }