]> git.pond.sub.org Git - empserver/blob - src/lib/subs/bigmap.c
Import of Empire 4.2.12
[empserver] / src / lib / subs / bigmap.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  *  bigmap.c:  Updates a player's sector map using sector offsets and
29  *             simple overwrite rules.
30  * 
31  *  Known contributors to this file:
32  *  
33  */
34
35 #include "misc.h"
36 #include "player.h"
37 #include "file.h"
38 #include "prototypes.h"
39
40 /* values of only_bmap:
41  * 0 = update both maps
42  * 1 = update only bmap
43  * 2 = update only bmap with force
44  */
45
46 static int
47 do_map_set(natid cnum, s_char *map, coord x, coord y, s_char t, int force, int sync);
48
49 int
50 map_set(natid cnum, coord x, coord y, s_char t, int only_bmap)
51 {
52         int     set = 0;
53
54         if (!t)
55                 return 0;
56         if (!only_bmap)
57                 set |= do_map_set(cnum, ef_ptr(EF_MAP,cnum), x,y, t, 0, 0);
58         set |= do_map_set(cnum, ef_ptr(EF_BMAP,cnum),x,y, t, only_bmap > 1, 1);
59
60         return set;
61 }
62
63
64 static int
65 do_map_set(natid cnum, s_char *map, coord x, coord y, s_char t, int force, int sync)
66 {
67         int     id;
68         s_char  ot;
69
70         if ((id = sctoff(x, y)) < 0)
71                 return 0;
72
73         if (((map[id] == 'x') || (map[id] == 'X')) && !force)
74                 return 0;
75
76         ot = map[id];
77         if (t == '?') {
78                 switch (map[id]) {
79                 case '.':
80                 case '-':
81                 case ' ':
82                 case   0:
83                         map[id] = t;
84                         break;
85                 default:
86                         break;
87                 }
88         } else {
89                 map[id] = t;
90         }
91         return 1;
92 }
93
94 void
95 writebmap(natid cnum)
96 {
97         ef_write(EF_BMAP, cnum, ef_ptr(EF_BMAP,cnum));
98 }
99
100 void
101 writemap(natid cnum)
102 {
103         ef_write(EF_MAP, cnum, ef_ptr(EF_MAP,cnum));
104         ef_write(EF_BMAP, cnum, ef_ptr(EF_BMAP,cnum));
105 }