]> git.pond.sub.org Git - empserver/blob - src/lib/subs/fileinit.c
Import of Empire 4.2.12
[empserver] / src / lib / subs / fileinit.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, 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  *  fileinit.c: Stuff that ef_init uses to initialize the ca pointers and
29  *              the pre/post i/o calls.
30  * 
31  *  Known contributors to this file:
32  *  
33  */
34
35 #include <fcntl.h>
36 #include "misc.h"
37 #include "xy.h"
38 #include "nsc.h"
39 #include "file.h"
40 #include "loan.h"
41 #include "lost.h"
42 #include "commodity.h"
43 #include "prototypes.h"
44 #include "optlist.h"
45
46 extern  struct castr sect_ca[];
47 extern  struct castr news_ca[];
48 extern  struct castr loan_ca[];
49 extern  struct castr ship_ca[];
50 extern  struct castr plane_ca[];
51 extern  struct castr treaty_ca[];
52 extern  struct castr nuke_ca[];
53 extern  struct castr trade_ca[];
54 extern  struct castr commodity_ca[];
55 extern  struct castr lost_ca[];
56
57 struct fileinit fileinit[EF_MAX] = {
58         { (ef_fileinit) sct_init,       sct_postread,   sct_prewrite,   sect_ca },
59         { shp_init,     shp_postread,   shp_prewrite,   ship_ca },
60         { pln_init,     pln_postread,   pln_prewrite,   plane_ca },
61         { lnd_init,     lnd_postread,   lnd_prewrite,   land_ca },
62         { nuk_init,     nuk_postread,   nuk_prewrite,   nuke_ca },
63         { 0,            0,              0,              news_ca },
64         { 0,            0,              0,              treaty_ca },
65         { 0,            0,              0,              trade_ca },
66         { 0,            0,              0,              0 }, /* power */
67         { 0,            0,              0,              0 }, /* nation */
68         { 0,            0,              0,              loan_ca },
69         { 0,            0,              0,              0 }, /* map */
70         { 0,            0,              0,              0 }, /* map */
71         { 0,            0,              0,              commodity_ca },
72         { 0,            0,              0,              lost_ca }
73 };
74
75 void
76 ef_init(void)
77 {
78         int     i;
79         struct  empfile *ef;
80         struct  fileinit *fi;
81
82         ef = empfile;
83         fi = fileinit;
84         for (i=0; i<EF_MAX; i++, ef++, fi++) {
85                 ef->init = fi->init;
86                 ef->postread = fi->postread;
87                 ef->prewrite = fi->prewrite;
88                 ef->cadef = fi->cadef;
89                 /* We have to set the size for the map and bmap files at
90                    runtime. */
91                 if (i == EF_MAP || i == EF_BMAP)
92                   ef->size = (WORLD_X * WORLD_Y) / 2;
93         }
94 }