]> git.pond.sub.org Git - empserver/blob - src/lib/subs/getbit.c
(bitinit2): Move from common/maps.c to getbit.c, external linkage.
[empserver] / src / lib / subs / getbit.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  *  getbit.c: Replaces old bitmap code
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  */
33
34 #include "misc.h"
35 #include "player.h"
36 #include "xy.h"
37 #include "nsc.h"
38 #include "sect.h"
39 #include "nat.h"
40 #include "prototypes.h"
41 #include "optlist.h"
42
43 static int *bitmaps[];
44
45 #define GCFx(x) ((x + WORLD_X) % WORLD_X)
46 #define GCFy(y) ((y + WORLD_Y) % WORLD_Y)
47
48 int
49 emp_getbit(int x, int y, u_char *bitmap)
50 {
51     int id;
52
53     id = (GCFy(y)) * WORLD_X / 2 + GCFx(x) / 2;
54     return bitmap[id / 8] & bit(id & 07);
55 }
56
57 void
58 emp_setbit(int x, int y, u_char *bitmap)
59 {
60     register int id;
61
62     id = (GCFy(y)) * WORLD_X / 2 + GCFx(x) / 2;
63     bitmap[id / 8] |= bit(id & 07);
64 }
65
66 void
67 emp_setbitmap(register int x, register int y, register u_char *bitmap,
68               int *bitmaps)
69 {
70     register int *mp;
71     register int id;
72     register int dx, dy;
73
74     for (mp = bitmaps; *mp != 9999;) {
75         dx = x + *mp++;
76         dy = y + *mp++;
77         id = (GCFy(dy)) * WORLD_X / 2 + GCFx(dx) / 2;
78         bitmap[id / 8] |= bit(id & 07);
79     }
80 }
81
82 void
83 bitinit2(struct nstr_sect *np, u_char *bitmap, int country)
84 {
85     struct sctstr sect;
86     int eff;
87
88     while (nxtsct(np, &sect)) {
89         if (sect.sct_own != country)
90             continue;
91         eff = sect.sct_effic / 20;
92         if (eff > 4)
93             eff = 4;
94         emp_setbitmap(np->x, np->y, bitmap, bitmaps[eff]);
95     }
96     snxtsct_rewind(np);
97 }
98
99
100 /*
101  *
102  * the bit offsets for each bit pattern based on the efficiency of
103  * the sector.
104  *
105  * bitmap0:  0-20%
106  * bitmap1: 21-40%
107  * bitmap2: 41-60%
108  * bitmap3: 61-80%
109  * bitmap4: 81-100%
110  */
111
112 #define bitoff(x, y) x, y
113
114 static int bitmap0[] = {
115     bitoff(-1, -1), bitoff(1, -1),
116     bitoff(-2, 0), bitoff(0, 0), bitoff(2, 0),
117     bitoff(-1, 1), bitoff(1, 1),
118     bitoff(9999, 9999),
119 };
120
121 static int bitmap1[] = {
122     bitoff(0, -2),
123     bitoff(-3, -1), bitoff(-1, -1), bitoff(1, -1), bitoff(3, -1),
124     bitoff(-2, 0), bitoff(0, 0), bitoff(2, 0),
125     bitoff(-3, 1), bitoff(-1, 1), bitoff(1, 1), bitoff(3, 1),
126     bitoff(0, 2),
127     bitoff(9999, 9999),
128 };
129
130 static int bitmap2[] = {
131     bitoff(-2, -2), bitoff(0, -2), bitoff(2, -2),
132     bitoff(-3, -1), bitoff(-1, -1), bitoff(1, -1), bitoff(3, -1),
133     bitoff(-4, 0), bitoff(-2, 0), bitoff(0, 0), bitoff(2, 0), bitoff(4, 0),
134     bitoff(-3, 1), bitoff(-1, 1), bitoff(1, 1), bitoff(3, 1),
135     bitoff(-2, 2), bitoff(0, 2), bitoff(2, 2),
136     bitoff(9999, 9999),
137 };
138
139 static int bitmap3[] = {
140     bitoff(-1, -3), bitoff(1, -3),
141     bitoff(-4, -2), bitoff(-2, -2), bitoff(0, -2), bitoff(2, -2), bitoff(4,
142                                                                          -2),
143     bitoff(-5, -1), bitoff(-3, -1), bitoff(-1, -1), bitoff(1, -1),
144     bitoff(3, -1), bitoff(5, -1),
145     bitoff(-4, 0), bitoff(-2, 0), bitoff(0, 0), bitoff(2, 0), bitoff(4, 0),
146     bitoff(-5, 1), bitoff(-3, 1), bitoff(-1, 1), bitoff(1, 1),
147     bitoff(3, 1), bitoff(5, 1),
148     bitoff(-4, 2), bitoff(-2, 2), bitoff(0, 2), bitoff(2, 2), bitoff(4, 2),
149     bitoff(-1, 3), bitoff(1, 3),
150     bitoff(9999, 9999),
151 };
152
153 static int bitmap4[] = {
154     bitoff(-3, -3), bitoff(-1, -3), bitoff(1, -3), bitoff(3, -3),
155     bitoff(-4, -2), bitoff(-2, -2), bitoff(0, -2), bitoff(2, -2), bitoff(4,
156                                                                          -2),
157     bitoff(-5, -1), bitoff(-3, -1), bitoff(-1, -1), bitoff(1, -1),
158     bitoff(3, -1), bitoff(5, -1),
159     bitoff(-6, 0), bitoff(-4, 0), bitoff(-2, 0), bitoff(0, 0), bitoff(2,
160                                                                       0),
161     bitoff(4, 0), bitoff(6, 0),
162     bitoff(-5, 1), bitoff(-3, 1), bitoff(-1, 1), bitoff(1, 1),
163     bitoff(3, 1), bitoff(5, 1),
164     bitoff(-4, 2), bitoff(-2, 2), bitoff(0, 2), bitoff(2, 2), bitoff(4, 2),
165     bitoff(-3, 3), bitoff(-1, 3), bitoff(1, 3), bitoff(3, 3),
166     bitoff(9999, 9999),
167 };
168
169 static int *bitmaps[5] = {
170     bitmap0,
171     bitmap1,
172     bitmap2,
173     bitmap3,
174     bitmap4,
175 };