]> git.pond.sub.org Git - empserver/blob - src/lib/subs/fileinit.c
(EFF_OWNER): The assertion that EFF_OWNER implies ef_read() sets
[empserver] / src / lib / subs / fileinit.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2005, 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 "nsc.h"
38 #include "file.h"
39 #include "prototypes.h"
40 #include "optlist.h"
41
42 struct fileinit fileinit[EF_MAX] = {
43     {NULL, sct_postread, sct_prewrite, sect_ca},
44     {shp_init, shp_postread, shp_prewrite, ship_ca},
45     {pln_init, pln_postread, pln_prewrite, plane_ca},
46     {lnd_init, lnd_postread, lnd_prewrite, land_ca},
47     {nuk_init, nuk_postread, nuk_prewrite, nuke_ca},
48     {NULL, NULL, NULL, news_ca},
49     {NULL, NULL, NULL, treaty_ca},
50     {NULL, NULL, NULL, trade_ca},
51     {NULL, NULL, NULL, NULL},           /* power */
52     {NULL, NULL, NULL, nat_ca},         /* nation */
53     {NULL, NULL, NULL, loan_ca},
54     {NULL, NULL, NULL, NULL},           /* map, a.k.a. true bmap */
55     {NULL, NULL, NULL, NULL},           /* (working) bmap */
56     {NULL, NULL, NULL, commodity_ca},
57     {NULL, NULL, NULL, lost_ca}
58 };
59
60 void
61 ef_init(void)
62 {
63     int i;
64     struct empfile *ef;
65     struct fileinit *fi;
66
67     ef = empfile;
68     fi = fileinit;
69     for (i = 0; i < EF_MAX; i++, ef++, fi++) {
70         ef->init = fi->init;
71         ef->postread = fi->postread;
72         ef->prewrite = fi->prewrite;
73         ef->cadef = fi->cadef;
74     }
75
76     empfile[EF_MAP].size = empfile[EF_BMAP].size = (WORLD_X * WORLD_Y) / 2;
77 }