]>
git.zerfleddert.de Git - micropolis/blob - src/sim/s_disast.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
73 /* comefrom: Simulate */
76 /* Chance of disasters at lev 0 1 2 */
77 static short DisChance
[3] = { 10*48, 5*48, 60};
80 if (FloodCnt
) FloodCnt
--;
87 if (NoDisasters
) return; /*post*/
88 if (!Rand(DisChance
[x
])) {
110 if (PolluteAverage
> /* 80 */ 60) MakeMonster();
117 /* comefrom: DoDisasters */
118 ScenarioDisaster(void)
122 switch (DisasterEvent
) {
123 case 1: /* Dullsville */
125 case 2: /* San Francisco */
126 if (DisasterWait
== 1) MakeEarthquake();
128 case 3: /* Hamburg */
134 if (DisasterWait
== 1) MakeMonster();
136 case 6: /* Detroit */
139 if (DisasterWait
== 1) MakeMeltdown();
142 if ((DisasterWait
% 24) == 0) MakeFlood();
145 if (DisasterWait
) DisasterWait
--;
146 else DisasterEvent
= 0;
150 /* comefrom: ScenarioDisaster */
155 for (x
= 0; x
< (WORLD_X
- 1); x
++) {
156 for (y
= 0; y
< (WORLD_Y
- 1); y
++) {
157 /* TILE_IS_NUCLEAR(Map[x][y]) */
158 if ((Map
[x
][y
] & LOMASK
) == NUCLEAR
) {
169 CrashX
= Rand(WORLD_X
- 1);
170 CrashY
= Rand(WORLD_Y
- 1);
171 MakeExplosion(CrashX
, CrashY
);
173 SendMesAt(-30, CrashX
, CrashY
);
177 /* comefrom: DoDisasters ScenarioDisaster */
180 register short x
, y
, z
;
185 SendMesAt(-23, CCx
, CCy
);
186 time
= Rand(700) + 300;
187 for (z
= 0; z
< time
; z
++) {
188 x
= Rand(WORLD_X
- 1);
189 y
= Rand(WORLD_Y
- 1);
190 if ((x
< 0) || (x
> (WORLD_X
- 1)) ||
191 (y
< 0) || (y
> (WORLD_Y
- 1)))
193 /* TILE_IS_VULNERABLE(Map[x][y]) */
194 if (Vunerable(Map
[x
][y
])) {
196 Map
[x
][y
] = (RUBBLE
+ BULLBIT
) + (Rand16() & 3);
198 Map
[x
][y
] = (FIRE
+ ANIMBIT
) + (Rand16() & 7);
204 /* comefrom: DoDisasters */
207 register short x
, y
, z
;
209 x
= Rand(WORLD_X
- 1);
210 y
= Rand(WORLD_Y
- 1);
212 /* TILE_IS_ARSONABLE(z) */
213 if (!(z
& ZONEBIT
)) {
215 if ((z
> LHTHR
) && (z
< LASTZONE
)) {
216 Map
[x
][y
] = FIRE
+ ANIMBIT
+ (Rand16() & 7);
217 CrashX
= x
; CrashY
= y
;
218 SendMesAt(-20, x
, y
);
224 /* comefrom: DoDisasters */
228 for (t
= 0; t
< 40; t
++) {
229 x
= Rand(WORLD_X
- 1);
230 y
= Rand(WORLD_Y
- 1);
232 /* !(z & BURNBIT) && TILE_IS_ARSONABLE(z) */
233 if ((!(z
& ZONEBIT
)) && (z
& BURNBIT
)) {
235 if ((z
> 21) && (z
< LASTZONE
)) {
236 Map
[x
][y
] = FIRE
+ ANIMBIT
+ (Rand16() & 7);
245 /* comefrom: MakeEarthquake */
251 if ((tem2
< RESBASE
) ||
259 /* comefrom: DoDisasters ScenarioDisaster */
262 static short Dx
[4] = { 0, 1, 0,-1};
263 static short Dy
[4] = {-1, 0, 1, 0};
264 register short xx
, yy
, c
;
267 for (z
= 0; z
< 300; z
++) {
268 x
= Rand(WORLD_X
- 1);
269 y
= Rand(WORLD_Y
- 1);
270 c
= Map
[x
][y
] & LOMASK
; /* XXX: & LOMASK */
271 /* TILE_IS_RIVER_EDGE(c) */
272 if ((c
> 4) && (c
< 21)) /* if riveredge */
273 for (t
= 0; t
< 4; t
++) {
276 if (TestBounds(xx
, yy
)) {
278 /* TILE_IS_FLOODABLE(c) */
279 if ((c
== 0) || ((c
& BULLBIT
) && (c
& BURNBIT
))) {
282 SendMesAt(-42, xx
, yy
);
283 FloodX
= xx
; FloodY
= yy
;
292 /* comefrom: MapScan */
295 static short Dx
[4] = { 0, 1, 0,-1};
296 static short Dy
[4] = {-1, 0, 1, 0};
297 register short z
, c
, xx
, yy
, t
;
300 for (z
= 0; z
< 4; z
++) {
301 if (!(Rand16() & 7)) {
304 if (TestBounds(xx
, yy
)) {
307 /* TILE_IS_FLOODABLE2(c) */
310 ((t
>= WOODS5
/* XXX */) && (t
< FLOOD
))) {
313 Map
[xx
][yy
] = FLOOD
+ Rand(2);
319 if (!(Rand16() & 15))
320 Map
[SMapX
][SMapY
] = 0;