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