]> git.pond.sub.org Git - empserver/blob - src/lib/subs/fileinit.c
8876d47c66cef83e76656b78923b13694e84bf26
[empserver] / src / lib / subs / fileinit.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2008, 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  *  fileinit.c: Initialize Empire tables for full server operations.
29  * 
30  *  Known contributors to this file:
31  *     Ron Koenderink, 2005
32  *     Markus Armbruster, 2005-2008
33  */
34
35 #include <config.h>
36
37 #include "file.h"
38 #include "nat.h"
39 #include "optlist.h"
40 #include "prototypes.h"
41
42 struct fileinit {
43     int ef_type;
44     void (*postread) (int, void *);
45     void (*prewrite) (int, void *);
46 };
47
48 static struct fileinit fileinit[] = {
49     {EF_SECTOR, sct_postread, sct_prewrite},
50     {EF_SHIP, shp_postread, shp_prewrite},
51     {EF_PLANE, pln_postread, pln_prewrite},
52     {EF_LAND, lnd_postread, lnd_prewrite},
53     {EF_NUKE, nuk_postread, nuk_prewrite}
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     }
71
72     nsc_init();
73     ef_open_srv();
74     if (ef_verify() < 0)
75         exit(EXIT_FAILURE);
76     global_init();
77 }
78
79 void
80 ef_fin_srv(void)
81 {
82     ef_close_srv();
83 }
84
85 static void
86 ef_open_srv(void)
87 {
88     int failed = 0;
89
90     failed |= !ef_open(EF_NATION, EFF_MEM, MAXNOC);
91     failed |= !ef_open(EF_SECTOR, EFF_MEM, WORLD_SZ());
92     failed |= !ef_open(EF_SHIP, EFF_MEM, -1);
93     failed |= !ef_open(EF_PLANE, EFF_MEM, -1);
94     failed |= !ef_open(EF_LAND, EFF_MEM, -1);
95     failed |= !ef_open(EF_GAME, EFF_MEM, 1);
96     failed |= !ef_open(EF_NEWS, 0, -1);
97     failed |= !ef_open(EF_LOAN, 0, -1);
98     failed |= !ef_open(EF_TREATY, 0, -1);
99     failed |= !ef_open(EF_NUKE, EFF_MEM, -1);
100     failed |= !ef_open(EF_POWER, 0, -1);
101     failed |= !ef_open(EF_TRADE, 0, -1);
102     failed |= !ef_open(EF_MAP, EFF_MEM, MAXNOC);
103     failed |= !ef_open(EF_BMAP, EFF_MEM, MAXNOC);
104     failed |= !ef_open(EF_COMM, 0, -1);
105     failed |= !ef_open(EF_LOST, 0, -1);
106     failed |= !ef_open(EF_REALM, EFF_MEM, MAXNOC * MAXNOR);
107     if (!failed)
108         failed |= ef_open_view(EF_COUNTRY, EF_NATION);
109     if (failed) {
110         logerror("Missing files, giving up");
111         exit(EXIT_FAILURE);
112     }
113 }
114
115 static void
116 ef_close_srv(void)
117 {
118     ef_close(EF_COUNTRY);
119     ef_close(EF_NATION);
120     ef_close(EF_SECTOR);
121     ef_close(EF_SHIP);
122     ef_close(EF_PLANE);
123     ef_close(EF_LAND);
124     ef_close(EF_GAME);
125     ef_close(EF_NEWS);
126     ef_close(EF_LOAN);
127     ef_close(EF_TREATY);
128     ef_close(EF_NUKE);
129     ef_close(EF_POWER);
130     ef_close(EF_TRADE);
131     ef_close(EF_MAP);
132     ef_close(EF_COMM);
133     ef_close(EF_BMAP);
134     ef_close(EF_LOST);
135     ef_close(EF_REALM);
136 }