]> git.pond.sub.org Git - empserver/blob - src/lib/subs/fileinit.c
Update copyright notice.
[empserver] / src / lib / subs / fileinit.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, 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 struct fileinit fileinit[EF_MAX] = {
47     {0, sct_postread, sct_prewrite, sect_ca},
48     {shp_init, shp_postread, shp_prewrite, ship_ca},
49     {pln_init, pln_postread, pln_prewrite, plane_ca},
50     {lnd_init, lnd_postread, lnd_prewrite, land_ca},
51     {nuk_init, nuk_postread, nuk_prewrite, nuke_ca},
52     {0, 0, 0, news_ca},
53     {0, 0, 0, treaty_ca},
54     {0, 0, 0, trade_ca},
55     {0, 0, 0, 0},               /* power */
56     {0, 0, 0, 0},               /* nation */
57     {0, 0, 0, loan_ca},
58     {0, 0, 0, 0},               /* map */
59     {0, 0, 0, 0},               /* map */
60     {0, 0, 0, commodity_ca},
61     {0, 0, 0, lost_ca}
62 };
63
64 void
65 ef_init(void)
66 {
67     int i;
68     struct empfile *ef;
69     struct fileinit *fi;
70
71     ef = empfile;
72     fi = fileinit;
73     for (i = 0; i < EF_MAX; i++, ef++, fi++) {
74         ef->init = fi->init;
75         ef->postread = fi->postread;
76         ef->prewrite = fi->prewrite;
77         ef->cadef = fi->cadef;
78         /* We have to set the size for the map and bmap files at
79            runtime. */
80         if (i == EF_MAP || i == EF_BMAP)
81             ef->size = (WORLD_X * WORLD_Y) / 2;
82     }
83 }