author | unc0rr |
Fri, 18 May 2007 17:35:12 +0000 | |
changeset 515 | 270f10276d2e |
parent 511 | 2b5b9e00419d |
child 520 | e83dfb7ffead |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
393 | 3 |
* Copyright (c) 2004-2007 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
19 |
unit uGears; |
|
20 |
interface |
|
351 | 21 |
uses SDLh, uConsts, uFloat; |
4 | 22 |
{$INCLUDE options.inc} |
23 |
const AllInactive: boolean = false; |
|
24 |
||
25 |
type PGear = ^TGear; |
|
26 |
TGearStepProcedure = procedure (Gear: PGear); |
|
27 |
TGear = record |
|
28 |
NextGear, PrevGear: PGear; |
|
29 |
Active: Boolean; |
|
188 | 30 |
State : Longword; |
351 | 31 |
X : hwFloat; |
32 |
Y : hwFloat; |
|
33 |
dX: hwFloat; |
|
34 |
dY: hwFloat; |
|
42 | 35 |
Kind: TGearType; |
36 |
Pos: Longword; |
|
4 | 37 |
doStep: TGearStepProcedure; |
371 | 38 |
Radius: LongInt; |
188 | 39 |
Angle, Power : Longword; |
351 | 40 |
DirAngle: hwFloat; |
4 | 41 |
Timer : LongWord; |
351 | 42 |
Elasticity: hwFloat; |
43 |
Friction : hwFloat; |
|
4 | 44 |
Message : Longword; |
45 |
Hedgehog: pointer; |
|
371 | 46 |
Health, Damage: LongInt; |
511 | 47 |
CollisionIndex: LongInt; |
371 | 48 |
Tag: LongInt; |
95 | 49 |
Surf: PSDL_Surface; |
293 | 50 |
Z: Longword; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
51 |
IntersectGear: PGear; |
4 | 52 |
end; |
53 |
||
371 | 54 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
4 | 55 |
procedure ProcessGears; |
56 |
procedure SetAllToActive; |
|
57 |
procedure SetAllHHToActive; |
|
58 |
procedure DrawGears(Surface: PSDL_Surface); |
|
59 |
procedure FreeGearsList; |
|
10 | 60 |
procedure AddMiscGears; |
293 | 61 |
procedure AddClouds; |
4 | 62 |
procedure AssignHHCoords; |
294 | 63 |
procedure InsertGearToList(Gear: PGear); |
64 |
procedure RemoveGearFromList(Gear: PGear); |
|
4 | 65 |
|
66 |
var CurAmmoGear: PGear = nil; |
|
68 | 67 |
GearsList: PGear = nil; |
307 | 68 |
KilledHHs: Longword = 0; |
70 | 69 |
|
4 | 70 |
implementation |
81 | 71 |
uses uWorld, uMisc, uStore, uConsole, uSound, uTeams, uRandom, uCollisions, |
295 | 72 |
uLand, uIO, uLandGraphics, uAIMisc, uLocale, uAI, uAmmos; |
68 | 73 |
var RopePoints: record |
4 | 74 |
Count: Longword; |
371 | 75 |
HookAngle: LongInt; |
4 | 76 |
ar: array[0..300] of record |
351 | 77 |
X, Y: hwFloat; |
78 |
dLen: hwFloat; |
|
4 | 79 |
b: boolean; |
80 |
end; |
|
81 |
end; |
|
307 | 82 |
StepDamage: Longword = 0; |
4 | 83 |
|
84 |
procedure DeleteGear(Gear: PGear); forward; |
|
371 | 85 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); forward; |
86 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); forward; |
|
79 | 87 |
procedure AmmoFlameWork(Ammo: PGear); forward; |
371 | 88 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; forward; |
15 | 89 |
procedure SpawnBoxOfSmth; forward; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
24
diff
changeset
|
90 |
procedure AfterAttack; forward; |
371 | 91 |
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: LongInt); forward; |
302 | 92 |
procedure HedgehogStep(Gear: PGear); forward; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
93 |
procedure HedgehogChAngle(Gear: PGear); forward; |
506 | 94 |
procedure ShotgunShot(Gear: PGear); forward; |
4 | 95 |
|
96 |
{$INCLUDE GSHandlers.inc} |
|
97 |
{$INCLUDE HHHandlers.inc} |
|
98 |
||
99 |
const doStepHandlers: array[TGearType] of TGearStepProcedure = ( |
|
351 | 100 |
@doStepCloud, |
101 |
@doStepBomb, |
|
102 |
@doStepHedgehog, |
|
103 |
@doStepGrenade, |
|
104 |
@doStepHealthTag, |
|
105 |
@doStepGrave, |
|
106 |
@doStepUFO, |
|
107 |
@doStepShotgunShot, |
|
108 |
@doStepPickHammer, |
|
109 |
@doStepRope, |
|
110 |
@doStepSmokeTrace, |
|
111 |
@doStepExplosion, |
|
112 |
@doStepMine, |
|
113 |
@doStepCase, |
|
114 |
@doStepDEagleShot, |
|
115 |
@doStepDynamite, |
|
116 |
@doStepTeamHealthSorter, |
|
117 |
@doStepBomb, |
|
118 |
@doStepCluster, |
|
119 |
@doStepShover, |
|
120 |
@doStepFlame, |
|
121 |
@doStepFirePunch, |
|
122 |
@doStepActionTimer, |
|
123 |
@doStepActionTimer, |
|
124 |
@doStepActionTimer, |
|
125 |
@doStepParachute, |
|
126 |
@doStepAirAttack, |
|
127 |
@doStepAirBomb, |
|
409 | 128 |
@doStepBlowTorch, |
129 |
@doStepGirder |
|
4 | 130 |
); |
131 |
||
294 | 132 |
procedure InsertGearToList(Gear: PGear); |
133 |
var tmp: PGear; |
|
134 |
begin |
|
135 |
if GearsList = nil then |
|
136 |
GearsList:= Gear |
|
137 |
else begin |
|
138 |
// WARNING: this code assumes that the first gears added to the list are clouds (have maximal Z) |
|
139 |
tmp:= GearsList; |
|
351 | 140 |
while (tmp <> nil) and (tmp^.Z < Gear^.Z) do |
141 |
tmp:= tmp^.NextGear; |
|
294 | 142 |
|
351 | 143 |
if tmp^.PrevGear <> nil then tmp^.PrevGear^.NextGear:= Gear; |
144 |
Gear^.PrevGear:= tmp^.PrevGear; |
|
145 |
tmp^.PrevGear:= Gear; |
|
146 |
Gear^.NextGear:= tmp; |
|
294 | 147 |
if GearsList = tmp then GearsList:= Gear |
148 |
end |
|
149 |
end; |
|
150 |
||
151 |
procedure RemoveGearFromList(Gear: PGear); |
|
152 |
begin |
|
351 | 153 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
154 |
if Gear^.PrevGear <> nil then Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
294 | 155 |
else begin |
351 | 156 |
GearsList:= Gear^.NextGear; |
157 |
if GearsList <> nil then GearsList^.PrevGear:= nil |
|
294 | 158 |
end; |
159 |
end; |
|
160 |
||
371 | 161 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
79 | 162 |
const Counter: Longword = 0; |
351 | 163 |
var Result: PGear; |
4 | 164 |
begin |
79 | 165 |
inc(Counter); |
108 | 166 |
{$IFDEF DEBUGFILE}AddFileLog('AddGear: ('+inttostr(x)+','+inttostr(y)+'), d('+floattostr(dX)+','+floattostr(dY)+')');{$ENDIF} |
4 | 167 |
New(Result); |
357 | 168 |
{$IFDEF DEBUGFILE}AddFileLog('AddGear: type = ' + inttostr(ord(Kind)));{$ENDIF} |
4 | 169 |
FillChar(Result^, sizeof(TGear), 0); |
498 | 170 |
Result^.X:= int2hwFloat(X); |
171 |
Result^.Y:= int2hwFloat(Y); |
|
351 | 172 |
Result^.Kind := Kind; |
173 |
Result^.State:= State; |
|
174 |
Result^.Active:= true; |
|
175 |
Result^.dX:= dX; |
|
176 |
Result^.dY:= dY; |
|
177 |
Result^.doStep:= doStepHandlers[Kind]; |
|
511 | 178 |
Result^.CollisionIndex:= -1; |
351 | 179 |
Result^.Timer:= Timer; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
180 |
|
4 | 181 |
if CurrentTeam <> nil then |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
182 |
begin |
351 | 183 |
Result^.Hedgehog:= @(CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog]); |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
184 |
Result^.IntersectGear:= CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
185 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
186 |
|
4 | 187 |
case Kind of |
351 | 188 |
gtCloud: Result^.Z:= High(Result^.Z); |
4 | 189 |
gtAmmo_Bomb: begin |
351 | 190 |
Result^.Radius:= 4; |
191 |
Result^.Elasticity:= _0_6; |
|
192 |
Result^.Friction:= _0_995; |
|
4 | 193 |
end; |
194 |
gtHedgehog: begin |
|
351 | 195 |
Result^.Radius:= cHHRadius; |
196 |
Result^.Elasticity:= _0_35; |
|
197 |
Result^.Friction:= _0_999; |
|
198 |
Result^.Angle:= cMaxAngle div 2; |
|
199 |
Result^.Z:= cHHZ; |
|
4 | 200 |
end; |
201 |
gtAmmo_Grenade: begin |
|
351 | 202 |
Result^.Radius:= 4; |
4 | 203 |
end; |
204 |
gtHealthTag: begin |
|
351 | 205 |
Result^.Timer:= 1500; |
206 |
Result^.Z:= 2000; |
|
4 | 207 |
end; |
208 |
gtGrave: begin |
|
351 | 209 |
Result^.Radius:= 10; |
210 |
Result^.Elasticity:= _0_6; |
|
4 | 211 |
end; |
212 |
gtUFO: begin |
|
351 | 213 |
Result^.Radius:= 5; |
214 |
Result^.Timer:= 500; |
|
215 |
Result^.Elasticity:= _0_9 |
|
4 | 216 |
end; |
217 |
gtShotgunShot: begin |
|
351 | 218 |
Result^.Timer:= 900; |
219 |
Result^.Radius:= 2 |
|
4 | 220 |
end; |
221 |
gtPickHammer: begin |
|
351 | 222 |
Result^.Radius:= 10; |
223 |
Result^.Timer:= 4000 |
|
4 | 224 |
end; |
225 |
gtSmokeTrace: begin |
|
498 | 226 |
Result^.X:= Result^.X - _16; |
227 |
Result^.Y:= Result^.Y - _16; |
|
351 | 228 |
Result^.State:= 8 |
4 | 229 |
end; |
230 |
gtRope: begin |
|
351 | 231 |
Result^.Radius:= 3; |
498 | 232 |
Result^.Friction:= _450; |
4 | 233 |
RopePoints.Count:= 0; |
234 |
end; |
|
9 | 235 |
gtExplosion: begin |
498 | 236 |
Result^.X:= Result^.X - _25; |
237 |
Result^.Y:= Result^.Y - _25; |
|
9 | 238 |
end; |
10 | 239 |
gtMine: begin |
503 | 240 |
Result^.State:= Result^.State or gstMoving; |
351 | 241 |
Result^.Radius:= 3; |
242 |
Result^.Elasticity:= _0_55; |
|
243 |
Result^.Friction:= _0_995; |
|
244 |
Result^.Timer:= 3000; |
|
10 | 245 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
246 |
gtCase: begin |
351 | 247 |
Result^.Radius:= 16; |
248 |
Result^.Elasticity:= _0_4 |
|
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
249 |
end; |
37 | 250 |
gtDEagleShot: begin |
351 | 251 |
Result^.Radius:= 1; |
252 |
Result^.Health:= 50 |
|
37 | 253 |
end; |
39 | 254 |
gtDynamite: begin |
351 | 255 |
Result^.Radius:= 3; |
256 |
Result^.Elasticity:= _0_55; |
|
257 |
Result^.Friction:= _0_03; |
|
258 |
Result^.Timer:= 5000; |
|
39 | 259 |
end; |
78 | 260 |
gtClusterBomb: begin |
351 | 261 |
Result^.Radius:= 4; |
262 |
Result^.Elasticity:= _0_6; |
|
263 |
Result^.Friction:= _0_995; |
|
78 | 264 |
end; |
79 | 265 |
gtFlame: begin |
351 | 266 |
Result^.Angle:= Counter mod 64; |
267 |
Result^.Radius:= 1; |
|
268 |
Result^.Health:= 2; |
|
269 |
Result^.dY:= (getrandom - _0_8) * _0_03; |
|
270 |
Result^.dX:= (getrandom - _0_5) * _0_4 |
|
79 | 271 |
end; |
82 | 272 |
gtFirePunch: begin |
351 | 273 |
Result^.Radius:= 15; |
274 |
Result^.Tag:= Y |
|
82 | 275 |
end; |
302 | 276 |
gtAirBomb: begin |
351 | 277 |
Result^.Radius:= 10; |
302 | 278 |
end; |
279 |
gtBlowTorch: begin |
|
511 | 280 |
Result^.Radius:= cHHRadius + cBlowTorchC; |
351 | 281 |
Result^.Timer:= 7500; |
302 | 282 |
end; |
4 | 283 |
end; |
351 | 284 |
InsertGearToList(Result); |
285 |
AddGear:= Result |
|
4 | 286 |
end; |
287 |
||
288 |
procedure DeleteGear(Gear: PGear); |
|
48 | 289 |
var team: PTeam; |
307 | 290 |
t: Longword; |
4 | 291 |
begin |
503 | 292 |
DeleteCI(Gear); |
351 | 293 |
if Gear^.Surf <> nil then SDL_FreeSurface(Gear^.Surf); |
294 |
if Gear^.Kind = gtHedgehog then |
|
4 | 295 |
if CurAmmoGear <> nil then |
296 |
begin |
|
351 | 297 |
Gear^.Message:= gm_Destroy; |
298 |
CurAmmoGear^.Message:= gm_Destroy; |
|
4 | 299 |
exit |
47 | 300 |
end else |
301 |
begin |
|
498 | 302 |
if not (hwRound(Gear^.Y) < cWaterLine) then |
307 | 303 |
begin |
351 | 304 |
t:= max(Gear^.Damage, Gear^.Health); |
498 | 305 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
307 | 306 |
inc(StepDamage, t) |
307 |
end; |
|
351 | 308 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
309 |
if CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear = Gear then |
|
145 | 310 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
351 | 311 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
307 | 312 |
inc(KilledHHs); |
48 | 313 |
RecountTeamHealth(team); |
47 | 314 |
end; |
357 | 315 |
{$IFDEF DEBUGFILE}AddFileLog('DeleteGear');{$ENDIF} |
82 | 316 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 317 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 318 |
RemoveGearFromList(Gear); |
4 | 319 |
Dispose(Gear) |
320 |
end; |
|
321 |
||
322 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
323 |
var Gear: PGear; |
|
324 |
begin |
|
351 | 325 |
CheckNoDamage:= true; |
4 | 326 |
Gear:= GearsList; |
327 |
while Gear <> nil do |
|
328 |
begin |
|
351 | 329 |
if Gear^.Kind = gtHedgehog then |
330 |
if Gear^.Damage <> 0 then |
|
4 | 331 |
begin |
351 | 332 |
CheckNoDamage:= false; |
333 |
inc(StepDamage, Gear^.Damage); |
|
334 |
if Gear^.Health < Gear^.Damage then Gear^.Health:= 0 |
|
335 |
else dec(Gear^.Health, Gear^.Damage); |
|
336 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12 - PHedgehog(Gear^.Hedgehog)^.HealthTag^.h, |
|
498 | 337 |
gtHealthTag, Gear^.Damage, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
351 | 338 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
339 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
340 |
||
341 |
Gear^.Damage:= 0 |
|
4 | 342 |
end; |
351 | 343 |
Gear:= Gear^.NextGear |
83 | 344 |
end; |
4 | 345 |
end; |
346 |
||
347 |
procedure ProcessGears; |
|
371 | 348 |
const delay: LongInt = cInactDelay; |
92
0c359a7a2356
- Fix win message to appear only after all hedgehogs death
unc0rr
parents:
89
diff
changeset
|
349 |
step: (stDelay, stChDmg, stChWin, stSpawn, stNTurn) = stDelay; |
4 | 350 |
var Gear, t: PGear; |
351 |
begin |
|
352 |
AllInactive:= true; |
|
353 |
t:= GearsList; |
|
354 |
while t<>nil do |
|
355 |
begin |
|
356 |
Gear:= t; |
|
351 | 357 |
t:= Gear^.NextGear; |
358 |
if Gear^.Active then Gear^.doStep(Gear); |
|
4 | 359 |
end; |
89 | 360 |
|
4 | 361 |
if AllInactive then |
15 | 362 |
case step of |
363 |
stDelay: begin |
|
364 |
dec(delay); |
|
365 |
if delay = 0 then |
|
366 |
begin |
|
367 |
inc(step); |
|
368 |
delay:= cInactDelay |
|
369 |
end |
|
370 |
end; |
|
371 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
|
351 | 372 |
stChWin: if not CheckForWin then inc(step) else step:= stDelay; |
15 | 373 |
stSpawn: begin |
374 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
375 |
inc(step) |
|
376 |
end; |
|
377 |
stNTurn: begin |
|
351 | 378 |
//AwareOfExplosion(0, 0, 0); |
15 | 379 |
if isInMultiShoot then isInMultiShoot:= false |
307 | 380 |
else begin |
351 | 381 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
307 | 382 |
if MaxStepDamage < StepDamage then MaxStepDamage:= StepDamage; |
383 |
StepDamage:= 0; |
|
351 | 384 |
ParseCommand('/nextturn', true); |
307 | 385 |
end; |
15 | 386 |
step:= Low(step) |
387 |
end; |
|
388 |
end; |
|
389 |
||
4 | 390 |
if TurnTimeLeft > 0 then |
391 |
if CurrentTeam <> nil then |
|
351 | 392 |
if CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil then |
393 |
if ((CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^.State and gstAttacking) = 0) |
|
4 | 394 |
and not isInMultiShoot then dec(TurnTimeLeft); |
351 | 395 |
|
515 | 396 |
inc(GameTicks) |
4 | 397 |
end; |
398 |
||
399 |
procedure SetAllToActive; |
|
400 |
var t: PGear; |
|
401 |
begin |
|
402 |
AllInactive:= false; |
|
403 |
t:= GearsList; |
|
351 | 404 |
while t <> nil do |
4 | 405 |
begin |
351 | 406 |
t^.Active:= true; |
407 |
t:= t^.NextGear |
|
4 | 408 |
end |
409 |
end; |
|
410 |
||
411 |
procedure SetAllHHToActive; |
|
412 |
var t: PGear; |
|
413 |
begin |
|
414 |
AllInactive:= false; |
|
415 |
t:= GearsList; |
|
351 | 416 |
while t <> nil do |
4 | 417 |
begin |
351 | 418 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
419 |
t:= t^.NextGear |
|
4 | 420 |
end |
421 |
end; |
|
422 |
||
292 | 423 |
procedure DrawHH(Gear: PGear; Surface: PSDL_Surface); |
371 | 424 |
var t: LongInt; |
292 | 425 |
begin |
503 | 426 |
DrawHedgehog(hwRound(Gear^.X) - 15 + WorldDx, hwRound(Gear^.Y) - 18 + WorldDy, |
351 | 427 |
hwSign(Gear^.dX), 0, |
428 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
292 | 429 |
Surface); |
430 |
||
351 | 431 |
with PHedgehog(Gear^.Hedgehog)^ do |
511 | 432 |
if (Gear^.State and not gstAnimation) = 0 then |
292 | 433 |
begin |
351 | 434 |
t:= hwRound(Gear^.Y) - cHHRadius - 10 + WorldDy; |
435 |
dec(t, HealthTag^.h + 2); |
|
436 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTag, Surface); |
|
437 |
dec(t, NameTag^.h + 2); |
|
438 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTag, Surface); |
|
439 |
dec(t, Team^.NameTag^.h + 2); |
|
440 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTag, Surface) |
|
292 | 441 |
end else // Current hedgehog |
442 |
begin |
|
351 | 443 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
444 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
292 | 445 |
GameTicks div 32 mod 16, Surface); |
351 | 446 |
if (Gear^.State and (gstMoving or gstDrowning or gstFalling)) = 0 then |
447 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
448 |
DrawGear(sQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, Surface) |
|
292 | 449 |
else |
351 | 450 |
if ShowCrosshair and ((Gear^.State and gstAttacked) = 0) then |
451 |
DrawSurfSprite(Round(hwRound(Gear^.X) + hwSign(Gear^.dX) * Sin(Gear^.Angle*pi/cMaxAngle)*60) + WorldDx - 11, |
|
452 |
Round(hwRound(Gear^.Y) - Cos(Gear^.Angle*pi/cMaxAngle)*60) + WorldDy - 12, |
|
371 | 453 |
24, (18 + hwSign(Gear^.dX) * LongInt(((Gear^.Angle * 72 div cMaxAngle) + 1) div 2) mod 18) mod 18, |
351 | 454 |
Team^.CrosshairSurf, Surface); |
292 | 455 |
end; |
456 |
end; |
|
457 |
||
4 | 458 |
procedure DrawGears(Surface: PSDL_Surface); |
459 |
var Gear: PGear; |
|
460 |
i: Longword; |
|
371 | 461 |
roplen: LongInt; |
4 | 462 |
|
371 | 463 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
464 |
var eX, eY, dX, dY: LongInt; |
|
465 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 466 |
b: boolean; |
4 | 467 |
begin |
37 | 468 |
if (X1 = X2) and (Y1 = Y2) then |
469 |
begin |
|
351 | 470 |
OutError('WARNING: zero length rope line!', false); |
37 | 471 |
exit |
472 |
end; |
|
366 | 473 |
eX:= 0; |
474 |
eY:= 0; |
|
475 |
dX:= X2 - X1; |
|
476 |
dY:= Y2 - Y1; |
|
477 |
||
478 |
if (dX > 0) then sX:= 1 |
|
479 |
else |
|
480 |
if (dX < 0) then |
|
481 |
begin |
|
482 |
sX:= -1; |
|
483 |
dX:= -dX |
|
484 |
end else sX:= dX; |
|
485 |
||
486 |
if (dY > 0) then sY:= 1 |
|
487 |
else |
|
488 |
if (dY < 0) then |
|
4 | 489 |
begin |
366 | 490 |
sY:= -1; |
491 |
dY:= -dY |
|
492 |
end else sY:= dY; |
|
493 |
||
494 |
if (dX > dY) then d:= dX |
|
495 |
else d:= dY; |
|
496 |
||
497 |
x:= X1; |
|
498 |
y:= Y1; |
|
499 |
||
500 |
for i:= 0 to d do |
|
501 |
begin |
|
502 |
inc(eX, dX); |
|
503 |
inc(eY, dY); |
|
504 |
b:= false; |
|
505 |
if (eX > d) then |
|
35 | 506 |
begin |
366 | 507 |
dec(eX, d); |
508 |
inc(x, sX); |
|
509 |
b:= true |
|
35 | 510 |
end; |
366 | 511 |
if (eY > d) then |
35 | 512 |
begin |
366 | 513 |
dec(eY, d); |
514 |
inc(y, sY); |
|
515 |
b:= true |
|
35 | 516 |
end; |
366 | 517 |
if b then |
518 |
begin |
|
519 |
inc(roplen); |
|
520 |
if (roplen mod 4) = 0 then DrawGear(sRopeNode, x - 2, y - 2, Surface) |
|
521 |
end |
|
4 | 522 |
end |
366 | 523 |
end; |
4 | 524 |
|
525 |
begin |
|
526 |
Gear:= GearsList; |
|
527 |
while Gear<>nil do |
|
528 |
begin |
|
351 | 529 |
case Gear^.Kind of |
530 |
gtCloud: DrawSprite(sprCloud , hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State, Surface); |
|
531 |
gtAmmo_Bomb: DrawSprite(sprBomb , hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, hwRound(Gear^.DirAngle), Surface); |
|
292 | 532 |
gtHedgehog: DrawHH(Gear, Surface); |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
366
diff
changeset
|
533 |
gtAmmo_Grenade: DrawSprite(sprGrenade , hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, DxDy2Angle32(Gear^.dY, Gear^.dX), Surface); |
351 | 534 |
gtHealthTag: if Gear^.Surf <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Surf, Surface); |
535 |
gtGrave: DrawSpriteFromRect(PHedgehog(Gear^.Hedgehog)^.Team^.GraveRect, hwRound(Gear^.X) + WorldDx - 16, hwRound(Gear^.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, Surface); |
|
536 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4, Surface); |
|
537 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State, Surface); |
|
4 | 538 |
gtRope: begin |
35 | 539 |
roplen:= 0; |
4 | 540 |
if RopePoints.Count > 0 then |
541 |
begin |
|
542 |
i:= 0; |
|
543 |
while i < Pred(RopePoints.Count) do |
|
544 |
begin |
|
351 | 545 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
546 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 547 |
inc(i) |
548 |
end; |
|
351 | 549 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
550 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
551 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
552 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
553 |
DrawSprite(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx - 16, hwRound(RopePoints.ar[0].Y) + WorldDy - 16, RopePoints.HookAngle, Surface); |
|
4 | 554 |
end else |
35 | 555 |
begin |
351 | 556 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
557 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
366
diff
changeset
|
558 |
DrawSprite(sprRopeHook, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, DxDy2Angle32(Gear^.dY, Gear^.dX), Surface); |
35 | 559 |
end; |
4 | 560 |
end; |
351 | 561 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State, Surface); |
562 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
|
563 |
then DrawSprite(sprMineOff , hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, hwRound(Gear^.DirAngle), Surface) |
|
564 |
else DrawSprite(sprMineOn , hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, hwRound(Gear^.DirAngle), Surface); |
|
565 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1, Surface); |
|
566 |
gtCase: case Gear^.Pos of |
|
567 |
posCaseAmmo : DrawSprite(sprCase, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0, Surface); |
|
568 |
posCaseHealth: DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, (GameTicks shr 6) mod 13, Surface); |
|
42 | 569 |
end; |
351 | 570 |
gtClusterBomb: DrawSprite(sprClusterBomb, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, hwRound(Gear^.DirAngle), Surface); |
571 |
gtCluster: DrawSprite(sprClusterParticle, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, 0, Surface); |
|
572 |
gtFlame: DrawSprite(sprFlame, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy,(GameTicks div 128 + Gear^.Angle) mod 8, Surface); |
|
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
366
diff
changeset
|
573 |
gtAirBomb: DrawSprite(sprAirBomb , hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, DxDy2Angle32(Gear^.dY, Gear^.dX), Surface); |
408 | 574 |
gtAirAttack: if Gear^.Tag > 0 then DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 0, Surface) |
575 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 1, Surface) |
|
4 | 576 |
end; |
351 | 577 |
Gear:= Gear^.NextGear |
4 | 578 |
end; |
579 |
end; |
|
580 |
||
581 |
procedure FreeGearsList; |
|
582 |
var t, tt: PGear; |
|
583 |
begin |
|
584 |
tt:= GearsList; |
|
585 |
GearsList:= nil; |
|
586 |
while tt<>nil do |
|
587 |
begin |
|
588 |
t:= tt; |
|
351 | 589 |
tt:= tt^.NextGear; |
4 | 590 |
Dispose(t) |
591 |
end; |
|
592 |
end; |
|
593 |
||
10 | 594 |
procedure AddMiscGears; |
371 | 595 |
var i: LongInt; |
4 | 596 |
begin |
498 | 597 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
22 | 598 |
if (GameFlags and gfForts) = 0 then |
599 |
for i:= 0 to 3 do |
|
498 | 600 |
FindPlace(AddGear(0, 0, gtMine, 0, _0, _0, 0), false, 0, 2048); |
4 | 601 |
end; |
602 |
||
293 | 603 |
procedure AddClouds; |
371 | 604 |
var i: LongInt; |
360 | 605 |
dx, dy: hwFloat; |
293 | 606 |
begin |
607 |
for i:= 0 to cCloudsNumber do |
|
360 | 608 |
begin |
609 |
dx.isNegative:= random(2) = 1; |
|
610 |
dx.QWordValue:= random(214748364); |
|
611 |
dy.isNegative:= (i and 1) = 1; |
|
612 |
dy.QWordValue:= 21474836 + random(64424509); |
|
613 |
AddGear( - cScreenWidth + i * ((cScreenWidth * 2 + 2304) div cCloudsNumber), -140, |
|
614 |
gtCloud, random(4), dx, dy, 0) |
|
615 |
end |
|
293 | 616 |
end; |
617 |
||
371 | 618 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 619 |
var Gear: PGear; |
506 | 620 |
dmg, dmgRadius: LongInt; |
4 | 621 |
begin |
622 |
TargetPoint.X:= NoPointX; |
|
623 |
{$IFDEF DEBUGFILE}if Radius > 3 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
|
498 | 624 |
if Radius = 50 then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
355 | 625 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion, false); |
506 | 626 |
if (Mask and EXPLAllDamageInRadius)=0 then dmgRadius:= Radius shl 1 |
627 |
else dmgRadius:= Radius; |
|
4 | 628 |
Gear:= GearsList; |
629 |
while Gear <> nil do |
|
630 |
begin |
|
506 | 631 |
dmg:= dmgRadius - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
4 | 632 |
if dmg > 0 then |
633 |
begin |
|
355 | 634 |
dmg:= dmg div 2; |
351 | 635 |
case Gear^.Kind of |
10 | 636 |
gtHedgehog, |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
637 |
gtMine, |
79 | 638 |
gtCase, |
639 |
gtFlame: begin |
|
355 | 640 |
{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
351 | 641 |
if (Mask and EXPLNoDamage) = 0 then inc(Gear^.Damage, dmg); |
642 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
|
42 | 643 |
begin |
506 | 644 |
DeleteCI(Gear); |
498 | 645 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
646 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
503 | 647 |
Gear^.State:= Gear^.State or gstMoving; |
351 | 648 |
Gear^.Active:= true; |
42 | 649 |
FollowGear:= Gear |
650 |
end; |
|
4 | 651 |
end; |
51 | 652 |
gtGrave: begin |
351 | 653 |
Gear^.dY:= - _0_004 * dmg; |
654 |
Gear^.Active:= true; |
|
51 | 655 |
end; |
4 | 656 |
end; |
657 |
end; |
|
351 | 658 |
Gear:= Gear^.NextGear |
80 | 659 |
end; |
506 | 660 |
if (Mask and EXPLDontDraw) = 0 then DrawExplosion(X, Y, Radius); |
498 | 661 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 662 |
end; |
663 |
||
506 | 664 |
procedure ShotgunShot(Gear: PGear); |
665 |
var t: PGear; |
|
666 |
dmg: integer; |
|
667 |
begin |
|
509 | 668 |
Gear^.Radius:= cShotgunRadius; |
506 | 669 |
t:= GearsList; |
670 |
while t <> nil do |
|
671 |
begin |
|
672 |
dmg:= min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25); |
|
673 |
if dmg >= 0 then |
|
674 |
case t^.Kind of |
|
675 |
gtHedgehog, |
|
676 |
gtMine, |
|
677 |
gtCase: begin |
|
678 |
inc(t^.Damage, dmg); |
|
679 |
DeleteCI(t); |
|
680 |
t^.dX:= t^.dX + SignAs(Gear^.dX * dmg * _0_01 + cHHKick, t^.X - Gear^.X); |
|
681 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
|
682 |
t^.State:= t^.State or gstMoving; |
|
683 |
t^.Active:= true; |
|
684 |
FollowGear:= t |
|
685 |
end; |
|
686 |
gtGrave: begin |
|
687 |
t^.dY:= - _0_1; |
|
688 |
t^.Active:= true |
|
689 |
end; |
|
690 |
end; |
|
691 |
t:= t^.NextGear |
|
692 |
end; |
|
509 | 693 |
DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 694 |
end; |
695 |
||
371 | 696 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 697 |
var t: PGearArray; |
371 | 698 |
i: LongInt; |
307 | 699 |
hh: PHedgehog; |
38 | 700 |
begin |
53 | 701 |
t:= CheckGearsCollision(Ammo); |
351 | 702 |
i:= t^.Count; |
703 |
hh:= Ammo^.Hedgehog; |
|
53 | 704 |
while i > 0 do |
705 |
begin |
|
706 |
dec(i); |
|
351 | 707 |
if (t^.ar[i]^.State and gstNoDamage) = 0 then |
708 |
case t^.ar[i]^.Kind of |
|
53 | 709 |
gtHedgehog, |
710 |
gtMine, |
|
711 |
gtCase: begin |
|
351 | 712 |
inc(t^.ar[i]^.Damage, Damage); |
713 |
inc(hh^.DamageGiven, Damage); |
|
714 |
t^.ar[i]^.dX:= Ammo^.dX * Power * _0_01; |
|
715 |
t^.ar[i]^.dY:= Ammo^.dY * Power * _0_01; |
|
716 |
t^.ar[i]^.Active:= true; |
|
503 | 717 |
t^.ar[i]^.State:= t^.ar[i]^.State or gstMoving; |
351 | 718 |
DeleteCI(t^.ar[i]); |
719 |
FollowGear:= t^.ar[i] |
|
53 | 720 |
end; |
721 |
end |
|
126 | 722 |
end; |
723 |
SetAllToActive |
|
38 | 724 |
end; |
725 |
||
4 | 726 |
procedure AssignHHCoords; |
82 | 727 |
var Team: PTeam; |
371 | 728 |
i, t: LongInt; |
4 | 729 |
begin |
82 | 730 |
Team:= TeamsList; |
731 |
t:= 0; |
|
732 |
while Team <> nil do |
|
4 | 733 |
begin |
82 | 734 |
for i:= 0 to cMaxHHIndex do |
351 | 735 |
with Team^.Hedgehogs[i] do |
82 | 736 |
if Gear <> nil then |
737 |
if (GameFlags and gfForts) = 0 then FindPlace(Gear, false, 0, 2048) |
|
738 |
else FindPlace(Gear, false, t, t + 1024); |
|
739 |
inc(t, 1024); |
|
351 | 740 |
Team:= Team^.Next |
4 | 741 |
end |
742 |
end; |
|
743 |
||
371 | 744 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 745 |
var t: PGear; |
746 |
begin |
|
747 |
t:= GearsList; |
|
748 |
rX:= sqr(rX); |
|
749 |
rY:= sqr(rY); |
|
750 |
while t <> nil do |
|
751 |
begin |
|
351 | 752 |
if (t <> Gear) and (t^.Kind = Kind) then |
498 | 753 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
351 | 754 |
exit(t); |
755 |
t:= t^.NextGear |
|
10 | 756 |
end; |
351 | 757 |
CheckGearNear:= nil |
15 | 758 |
end; |
759 |
||
79 | 760 |
procedure AmmoFlameWork(Ammo: PGear); |
761 |
var t: PGear; |
|
762 |
begin |
|
763 |
t:= GearsList; |
|
764 |
while t <> nil do |
|
765 |
begin |
|
351 | 766 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
498 | 767 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
79 | 768 |
begin |
351 | 769 |
inc(t^.Damage, 5); |
770 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
|
771 |
t^.dY:= - _0_25; |
|
772 |
t^.Active:= true; |
|
79 | 773 |
DeleteCI(t); |
774 |
FollowGear:= t |
|
775 |
end; |
|
351 | 776 |
t:= t^.NextGear |
79 | 777 |
end; |
778 |
end; |
|
779 |
||
371 | 780 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 781 |
var t: PGear; |
782 |
begin |
|
783 |
t:= GearsList; |
|
784 |
rX:= sqr(rX); |
|
785 |
rY:= sqr(rY); |
|
786 |
while t <> nil do |
|
787 |
begin |
|
351 | 788 |
if t^.Kind in Kind then |
498 | 789 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
351 | 790 |
exit(t); |
791 |
t:= t^.NextGear |
|
16 | 792 |
end; |
351 | 793 |
CheckGearsNear:= nil |
16 | 794 |
end; |
795 |
||
796 |
function CountGears(Kind: TGearType): Longword; |
|
797 |
var t: PGear; |
|
351 | 798 |
Result: Longword; |
16 | 799 |
begin |
800 |
Result:= 0; |
|
801 |
t:= GearsList; |
|
802 |
while t <> nil do |
|
803 |
begin |
|
351 | 804 |
if t^.Kind = Kind then inc(Result); |
805 |
t:= t^.NextGear |
|
16 | 806 |
end; |
351 | 807 |
CountGears:= Result |
16 | 808 |
end; |
809 |
||
15 | 810 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
811 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
812 |
i: TAmmoType; |
15 | 813 |
begin |
295 | 814 |
if (CountGears(gtCase) >= 5) or (getrandom(cCaseFactor) <> 0) then exit; |
498 | 815 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
295 | 816 |
case getrandom(2) of |
817 |
0: begin |
|
351 | 818 |
FollowGear^.Health:= 25; |
819 |
FollowGear^.Pos:= posCaseHealth |
|
295 | 820 |
end; |
821 |
1: begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
822 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
823 |
for i:= Low(TAmmoType) to High(TAmmoType) do |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
824 |
inc(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
825 |
t:= GetRandom(t); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
826 |
i:= Low(TAmmoType); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
827 |
dec(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
828 |
while t >= 0 do |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
829 |
begin |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
830 |
inc(i); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
831 |
dec(t, Ammoz[i].Probability) |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
832 |
end; |
351 | 833 |
FollowGear^.Pos:= posCaseAmmo; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
834 |
FollowGear^.State:= Longword(i) |
295 | 835 |
end; |
836 |
end; |
|
70 | 837 |
FindPlace(FollowGear, true, 0, 2048) |
838 |
end; |
|
839 |
||
371 | 840 |
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 841 |
|
371 | 842 |
function CountNonZeroz(x, y, r: LongInt): LongInt; |
843 |
var i: LongInt; |
|
844 |
Result: LongInt; |
|
70 | 845 |
begin |
846 |
Result:= 0; |
|
847 |
if (y and $FFFFFC00) <> 0 then exit; |
|
848 |
for i:= max(x - r, 0) to min(x + r, 2043) do |
|
351 | 849 |
if Land[y, i] <> 0 then inc(Result); |
850 |
CountNonZeroz:= Result |
|
70 | 851 |
end; |
852 |
||
495 | 853 |
var x: LongInt; |
371 | 854 |
y, sy: LongInt; |
386 | 855 |
ar: array[0..511] of TPoint; |
856 |
ar2: array[0..1023] of TPoint; |
|
392 | 857 |
cnt, cnt2: Longword; |
858 |
delta: LongInt; |
|
70 | 859 |
begin |
386 | 860 |
delta:= 250; |
861 |
cnt2:= 0; |
|
16 | 862 |
repeat |
392 | 863 |
x:= Left + LongInt(GetRandom(Delta)); |
70 | 864 |
repeat |
386 | 865 |
inc(x, Delta); |
70 | 866 |
cnt:= 0; |
351 | 867 |
y:= -Gear^.Radius * 2; |
70 | 868 |
while y < 1023 do |
16 | 869 |
begin |
70 | 870 |
repeat |
871 |
inc(y, 2); |
|
351 | 872 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) = 0); |
70 | 873 |
sy:= y; |
874 |
repeat |
|
875 |
inc(y); |
|
351 | 876 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) <> 0); |
877 |
if (y - sy > Gear^.Radius * 2) |
|
70 | 878 |
and (y < 1023) |
351 | 879 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
70 | 880 |
begin |
881 |
ar[cnt].X:= x; |
|
351 | 882 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
883 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
70 | 884 |
inc(cnt) |
885 |
end; |
|
386 | 886 |
inc(y, 45) |
16 | 887 |
end; |
70 | 888 |
if cnt > 0 then |
889 |
with ar[GetRandom(cnt)] do |
|
890 |
begin |
|
386 | 891 |
ar2[cnt2].x:= x; |
892 |
ar2[cnt2].y:= y; |
|
893 |
inc(cnt2) |
|
70 | 894 |
end |
386 | 895 |
until (x + Delta > Right); |
896 |
dec(Delta, 60) |
|
897 |
until (cnt2 > 0) or (Delta < 70); |
|
898 |
if cnt2 > 0 then |
|
899 |
with ar2[GetRandom(cnt2)] do |
|
900 |
begin |
|
498 | 901 |
Gear^.X:= int2hwFloat(x); |
902 |
Gear^.Y:= int2hwFloat(y); |
|
386 | 903 |
{$IFDEF DEBUGFILE} |
904 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
905 |
{$ENDIF} |
|
906 |
end |
|
907 |
else |
|
908 |
begin |
|
909 |
OutError('Can''t find place for Gear', false); |
|
910 |
DeleteGear(Gear) |
|
911 |
end |
|
10 | 912 |
end; |
913 |
||
4 | 914 |
initialization |
915 |
||
916 |
finalization |
|
95 | 917 |
FreeGearsList; |
4 | 918 |
|
919 |
end. |