]> git.pond.sub.org Git - empserver/blob - src/lib/subs/bigmap.c
Update copyright notice.
[empserver] / src / lib / subs / bigmap.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  *  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 do_map_set(s_char *map, coord x, coord y, s_char t, int force);
47
48 int
49 map_set(natid cnum, coord x, coord y, s_char t, int only_bmap)
50 {
51     int set = 0;
52
53     if (!t)
54         return 0;
55     if (!only_bmap)
56         set |= do_map_set(ef_ptr(EF_MAP, cnum), x, y, t, 0);
57     set |= do_map_set(ef_ptr(EF_BMAP, cnum), x, y, t, only_bmap > 1);
58
59     return set;
60 }
61
62
63 static int
64 do_map_set(s_char *map, coord x, coord y, s_char t, int force)
65 {
66     int id;
67     s_char ot;
68
69     if ((id = sctoff(x, y)) < 0)
70         return 0;
71
72     if (((map[id] == 'x') || (map[id] == 'X')) && !force)
73         return 0;
74
75     ot = map[id];
76     if (t == '?') {
77         switch (map[id]) {
78         case '.':
79         case '-':
80         case ' ':
81         case 0:
82             map[id] = t;
83             break;
84         default:
85             break;
86         }
87     } else {
88         map[id] = t;
89     }
90     return 1;
91 }
92
93 void
94 writebmap(natid cnum)
95 {
96     ef_write(EF_BMAP, cnum, ef_ptr(EF_BMAP, cnum));
97 }
98
99 void
100 writemap(natid cnum)
101 {
102     ef_write(EF_MAP, cnum, ef_ptr(EF_MAP, cnum));
103     ef_write(EF_BMAP, cnum, ef_ptr(EF_BMAP, cnum));
104 }