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