]>
cvs.zerfleddert.de Git - micropolis/blob - src/sim/g_bigmap.c
3 * Micropolis, Unix Version. This game was released for the Unix platform
4 * in or about 1990 and has been modified for inclusion in the One Laptop
5 * Per Child program. Copyright (C) 1989 - 2007 Electronic Arts Inc. If
6 * you need assistance with this program, you may contact:
7 * http://wiki.laptop.org/go/Micropolis or email micropolis@laptop.org.
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or (at
12 * your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details. You should have received a
18 * copy of the GNU General Public License along with this program. If
19 * not, see <http://www.gnu.org/licenses/>.
21 * ADDITIONAL TERMS per GNU GPL Section 7
23 * No trademark or publicity rights are granted. This license does NOT
24 * give you any right, title or interest in the trademark SimCity or any
25 * other Electronic Arts trademark. You may not distribute any
26 * modification of this program using the trademark SimCity or claim any
27 * affliation or association with Electronic Arts Inc. or its employees.
29 * Any propagation or conveyance of this program must include this
30 * copyright notice and these terms.
32 * If you convey this program (or any modifications of it) and assume
33 * contractual liability for the program to recipients of it, you agree
34 * to indemnify Electronic Arts for any liability that those contractual
35 * assumptions impose on Electronic Arts.
37 * You may not misrepresent the origins of this program; modified
38 * versions of the program must be marked as such and not identified as
39 * the original program.
41 * This disclaimer supplements the one included in the General Public
42 * License. TO THE FULLEST EXTENT PERMISSIBLE UNDER APPLICABLE LAW, THIS
43 * PROGRAM IS PROVIDED TO YOU "AS IS," WITH ALL FAULTS, WITHOUT WARRANTY
44 * OF ANY KIND, AND YOUR USE IS AT YOUR SOLE RISK. THE ENTIRE RISK OF
45 * SATISFACTORY QUALITY AND PERFORMANCE RESIDES WITH YOU. ELECTRONIC ARTS
46 * DISCLAIMS ANY AND ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES,
47 * INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY, SATISFACTORY QUALITY,
48 * FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY
49 * RIGHTS, AND WARRANTIES (IF ANY) ARISING FROM A COURSE OF DEALING,
50 * USAGE, OR TRADE PRACTICE. ELECTRONIC ARTS DOES NOT WARRANT AGAINST
51 * INTERFERENCE WITH YOUR ENJOYMENT OF THE PROGRAM; THAT THE PROGRAM WILL
52 * MEET YOUR REQUIREMENTS; THAT OPERATION OF THE PROGRAM WILL BE
53 * UNINTERRUPTED OR ERROR-FREE, OR THAT THE PROGRAM WILL BE COMPATIBLE
54 * WITH THIRD PARTY SOFTWARE OR THAT ANY ERRORS IN THE PROGRAM WILL BE
55 * CORRECTED. NO ORAL OR WRITTEN ADVICE PROVIDED BY ELECTRONIC ARTS OR
56 * ANY AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SOME
57 * JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF OR LIMITATIONS ON IMPLIED
58 * WARRANTIES OR THE LIMITATIONS ON THE APPLICABLE STATUTORY RIGHTS OF A
59 * CONSUMER, SO SOME OR ALL OF THE ABOVE EXCLUSIONS AND LIMITATIONS MAY
65 int dynamicFilter(int c
, int r
);
66 int WireDrawBeegMapRect(SimView
*view
, short x
, short y
, short w
, short h
);
74 MemDrawBeegMapRect(SimView
*view
, int x
, int y
, int w
, int h
)
76 int lineBytes
= view
->line_bytes
;
77 int pixelBytes
= view
->pixel_bytes
;
81 unsigned char blink
= (flagBlink
<= 0), *bt
= view
->bigtiles
;
85 if (x
< view
->tile_x
) {
86 if ((w
-= (view
->tile_x
- x
)) <= 0)
90 if (y
< view
->tile_y
) {
91 if ((h
-= (view
->tile_y
- y
)) <= 0)
95 if ((x
+ w
) > (view
->tile_x
+ view
->tile_width
)) {
96 if ((w
-= ((x
+ w
) - (view
->tile_x
+ view
->tile_width
))) <= 0)
99 if ((y
+ h
) > (view
->tile_y
+ view
->tile_height
)) {
100 if ((h
-= ((y
+ h
) - (view
->tile_y
+ view
->tile_height
))) <= 0)
104 if (view
->x
->color
) {
105 register unsigned QUAD
*image
, *mem
;
107 image
= (unsigned QUAD
*)view
->data
;
108 ii
= ((lineBytes
* h
* 16) - 16) / sizeof(unsigned QUAD
);
109 map
= (unsigned short *)&Map
[x
][y
];
114 * Huge Berserk Rebel Warthog
117 for (col
= 0; col
< w
; col
++) {
119 image
= (unsigned QUAD
*)(view
->data
+ (col
* 16 * pixelBytes
));
120 for (row
= 0; row
< h
; row
++, ha
++) {
122 if ((tile
& LOMASK
) >= TILE_COUNT
) tile
-= TILE_COUNT
;
124 /* Blink lightning bolt in unpowered zone center */
125 if (blink
&& (tile
& ZONEBIT
) && !(tile
& PWRBIT
)) {
126 tile
= LIGHTNINGBOLT
;
133 (view
->dynamic_filter
!= 0) &&
134 (dynamicFilter(col
+ x
, row
+ y
) == 0)
141 image
= (unsigned QUAD
*)(((unsigned char *)image
) +
145 mem
= (unsigned QUAD
*)&(bt
[tile
* 256 * pixelBytes
]);
147 /* XXX: handle depth for big tiles */
149 /* Very un-rolled loop. */
152 image[0] = mem[0+n]; \
153 image[1] = mem[1+n]; \
154 image[2] = mem[2+n]; \
155 image[3] = mem[3+n]; \
156 image = (unsigned QUAD *)(((unsigned char *)image) + lineBytes);
158 #define ROW2_8(n) ROW1_8(n) ROW1_8(n+4)
159 #define ROW4_8(n) ROW2_8(n) ROW2_8(n+8)
160 #define ROW8_8(n) ROW4_8(n) ROW4_8(n+16)
161 #define ROW16_8() ROW8_8(0) ROW8_8(32)
164 memcpy((char *)image, (char *)mem + (2 * 16 * (n)), 2 * 16); \
165 image = (unsigned QUAD *)(((unsigned char *)image) + lineBytes);
167 #define ROW2_16(n) ROW1_16(n) ROW1_16(n+1)
168 #define ROW4_16(n) ROW2_16(n) ROW2_16(n+2)
169 #define ROW8_16(n) ROW4_16(n) ROW4_16(n+4)
170 #define ROW16_16() ROW8_16(0) ROW8_16(8)
173 memcpy((char *)image, (char *)mem + (4 * 16 * (n)), 4 * 16); \
174 image = (unsigned QUAD *)(((unsigned char *)image) + lineBytes);
176 #define ROW2_32(n) ROW1_32(n) ROW1_32(n+1)
177 #define ROW4_32(n) ROW2_32(n) ROW2_32(n+2)
178 #define ROW8_32(n) ROW4_32(n) ROW4_32(n+4)
179 #define ROW16_32() ROW8_32(0) ROW8_32(8)
181 switch (view
->x
->depth
) {
198 /* XXX: handle different depths */
204 /* Not so un-rolled loop. */
207 for (i
= 16; i
> 0; i
--) {
208 image
[0] = mem
[0]; image
[1] = mem
[1];
209 image
[2] = mem
[2]; image
[3] = mem
[3];
210 image
= (unsigned QUAD
*)(((unsigned char *)image
) + lineBytes
);
223 register unsigned short *image
, *mem
;
225 image
= (unsigned short *)view
->data
;
226 ii
= ((lineBytes
* h
* 16) - 2) / sizeof(unsigned short);
227 map
= (unsigned short *)&Map
[x
][y
];
231 for (col
= 0; col
< w
; col
++) {
233 image
= (unsigned short *)(view
->data
+ (col
* 2));
234 for (row
= 0; row
< h
; row
++, ha
++) {
236 if ((tile
& LOMASK
) >= TILE_COUNT
) tile
-= TILE_COUNT
;
238 /* Blink lightning bolt in unpowered zone center */
239 if (blink
&& (tile
& ZONEBIT
) && !(tile
& PWRBIT
))
240 tile
= LIGHTNINGBOLT
;
245 image
= (unsigned short *)
246 (((unsigned char *)image
) + (lineBytes
* 16));
249 mem
= (unsigned short *)&(bt
[tile
* 32]);
252 for (i
= 16; i
> 0; i
--) {
254 image
= (unsigned short *)(((unsigned char *)image
) + lineBytes
);
267 WireDrawBeegMapRect(SimView
*view
, short x
, short y
, short w
, short h
)
271 unsigned char blink
= (flagBlink
<= 0);
276 if (x
< view
->tile_x
) {
277 if ((w
-= (view
->tile_x
- x
)) <= 0)
281 if (y
< view
->tile_y
) {
282 if ((h
-= (view
->tile_y
- y
)) <= 0)
286 if ((x
+ w
) > (view
->tile_x
+ view
->tile_width
)) {
287 if ((w
-= ((x
+ w
) - (view
->tile_x
+ view
->tile_width
))) <= 0)
290 if ((y
+ h
) > (view
->tile_y
+ view
->tile_height
)) {
291 if ((h
-= ((y
+ h
) - (view
->tile_y
+ view
->tile_height
))) <= 0)
295 map
= (unsigned short *)&Map
[x
][y
];
299 for (col
= 0; col
< w
; col
++) {
301 for (row
= 0; row
< h
; row
++, ha
++) {
303 if ((tile
& LOMASK
) >= TILE_COUNT
) tile
-= TILE_COUNT
;
305 /* Blink lightning bolt in unpowered zone center */
306 if (blink
&& (tile
& ZONEBIT
) && !(tile
& PWRBIT
))
307 tile
= LIGHTNINGBOLT
;
313 XCopyArea(view
->x
->dpy
, view
->x
->big_tile_pixmap
, view
->pixmap
,
314 view
->x
->gc
, 0, tile
* 16, 16, 16,