author | unc0rr |
Mon, 02 Mar 2009 21:13:07 +0000 | |
changeset 1854 | 6e05013899b2 |
parent 1849 | 2a989e5abda6 |
child 1861 | 98de5dc5fda7 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1689 | 3 |
* Copyright (c) 2004-2009 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; |
|
868 | 24 |
PrvInactive: boolean = false; |
4 | 25 |
|
26 |
type PGear = ^TGear; |
|
1259 | 27 |
TGearStepProcedure = procedure (Gear: PGear); |
28 |
TGear = record |
|
29 |
NextGear, PrevGear: PGear; |
|
30 |
Active: Boolean; |
|
1849 | 31 |
Invulnerable: Boolean; |
1259 | 32 |
Ammo : PAmmo; |
33 |
State : Longword; |
|
34 |
X : hwFloat; |
|
35 |
Y : hwFloat; |
|
36 |
dX: hwFloat; |
|
37 |
dY: hwFloat; |
|
38 |
Kind: TGearType; |
|
39 |
Pos: Longword; |
|
40 |
doStep: TGearStepProcedure; |
|
41 |
Radius: LongInt; |
|
42 |
Angle, Power : Longword; |
|
43 |
DirAngle: real; |
|
44 |
Timer : LongWord; |
|
45 |
Elasticity: hwFloat; |
|
46 |
Friction : hwFloat; |
|
47 |
Message, MsgParam : Longword; |
|
48 |
Hedgehog: pointer; |
|
49 |
Health, Damage: LongInt; |
|
50 |
CollisionIndex: LongInt; |
|
51 |
Tag: LongInt; |
|
52 |
Tex: PTexture; |
|
53 |
Z: Longword; |
|
54 |
IntersectGear: PGear; |
|
55 |
TriggerId: Longword; |
|
1503 | 56 |
uid: Longword; |
1259 | 57 |
end; |
4 | 58 |
|
371 | 59 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
4 | 60 |
procedure ProcessGears; |
1849 | 61 |
procedure ResetUtilities; |
4 | 62 |
procedure SetAllToActive; |
63 |
procedure SetAllHHToActive; |
|
956 | 64 |
procedure DrawGears; |
4 | 65 |
procedure FreeGearsList; |
10 | 66 |
procedure AddMiscGears; |
4 | 67 |
procedure AssignHHCoords; |
294 | 68 |
procedure InsertGearToList(Gear: PGear); |
69 |
procedure RemoveGearFromList(Gear: PGear); |
|
4 | 70 |
|
71 |
var CurAmmoGear: PGear = nil; |
|
68 | 72 |
GearsList: PGear = nil; |
307 | 73 |
KilledHHs: Longword = 0; |
70 | 74 |
|
4 | 75 |
implementation |
81 | 76 |
uses uWorld, uMisc, uStore, uConsole, uSound, uTeams, uRandom, uCollisions, |
1259 | 77 |
uLand, uIO, uLandGraphics, uAIMisc, uLocale, uAI, uAmmos, uTriggers, GL, |
78 |
uStats, uVisualGears; |
|
789 | 79 |
|
1207
ceaab010269e
Some adjusting... it still doesn't solve problem fully
unc0rr
parents:
1200
diff
changeset
|
80 |
const MAXROPEPOINTS = 384; |
68 | 81 |
var RopePoints: record |
4 | 82 |
Count: Longword; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
83 |
HookAngle: GLfloat; |
789 | 84 |
ar: array[0..MAXROPEPOINTS] of record |
351 | 85 |
X, Y: hwFloat; |
86 |
dLen: hwFloat; |
|
4 | 87 |
b: boolean; |
88 |
end; |
|
89 |
end; |
|
90 |
||
1515 | 91 |
procedure DeleteGear(Gear: PGear); forward; |
371 | 92 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); forward; |
93 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); forward; |
|
1433 | 94 |
//procedure AmmoFlameWork(Ammo: PGear); forward; |
371 | 95 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; forward; |
15 | 96 |
procedure SpawnBoxOfSmth; forward; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
24
diff
changeset
|
97 |
procedure AfterAttack; forward; |
1515 | 98 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); forward; |
302 | 99 |
procedure HedgehogStep(Gear: PGear); forward; |
1528 | 100 |
procedure doStepHedgehogMoving(Gear: PGear); forward; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
101 |
procedure HedgehogChAngle(Gear: PGear); forward; |
506 | 102 |
procedure ShotgunShot(Gear: PGear); forward; |
1689 | 103 |
procedure PickUp(HH, Gear: PGear); forward; |
4 | 104 |
|
105 |
{$INCLUDE GSHandlers.inc} |
|
106 |
{$INCLUDE HHHandlers.inc} |
|
107 |
||
108 |
const doStepHandlers: array[TGearType] of TGearStepProcedure = ( |
|
1259 | 109 |
@doStepBomb, |
110 |
@doStepHedgehog, |
|
111 |
@doStepGrenade, |
|
112 |
@doStepHealthTag, |
|
113 |
@doStepGrave, |
|
114 |
@doStepUFO, |
|
115 |
@doStepShotgunShot, |
|
116 |
@doStepPickHammer, |
|
117 |
@doStepRope, |
|
118 |
@doStepSmokeTrace, |
|
119 |
@doStepExplosion, |
|
120 |
@doStepMine, |
|
121 |
@doStepCase, |
|
122 |
@doStepDEagleShot, |
|
123 |
@doStepDynamite, |
|
124 |
@doStepTeamHealthSorter, |
|
125 |
@doStepBomb, |
|
126 |
@doStepCluster, |
|
127 |
@doStepShover, |
|
128 |
@doStepFlame, |
|
129 |
@doStepFirePunch, |
|
130 |
@doStepActionTimer, |
|
131 |
@doStepActionTimer, |
|
132 |
@doStepActionTimer, |
|
133 |
@doStepParachute, |
|
134 |
@doStepAirAttack, |
|
135 |
@doStepAirBomb, |
|
136 |
@doStepBlowTorch, |
|
137 |
@doStepGirder, |
|
138 |
@doStepTeleport, |
|
139 |
@doStepSwitcher, |
|
140 |
@doStepCase, |
|
141 |
@doStepMortar, |
|
142 |
@doStepWhip, |
|
143 |
@doStepKamikaze, |
|
144 |
@doStepCake, |
|
1261 | 145 |
@doStepSeduction, |
1279 | 146 |
@doStepWatermelon, |
1263 | 147 |
@doStepCluster, |
148 |
@doStepBomb, |
|
1298 | 149 |
@doStepSmokeTrace, |
1573 | 150 |
@doStepWaterUp, |
1601 | 151 |
@doStepDrill, |
152 |
@doStepBallgun, |
|
1689 | 153 |
@doStepBomb, |
154 |
@doStepRCPlane |
|
1259 | 155 |
); |
4 | 156 |
|
294 | 157 |
procedure InsertGearToList(Gear: PGear); |
803 | 158 |
var tmp, ptmp: PGear; |
294 | 159 |
begin |
160 |
if GearsList = nil then |
|
1505 | 161 |
GearsList:= Gear |
162 |
else begin |
|
163 |
tmp:= GearsList; |
|
164 |
ptmp:= GearsList; |
|
165 |
while (tmp <> nil) and (tmp^.Z <= Gear^.Z) do |
|
166 |
begin |
|
167 |
ptmp:= tmp; |
|
168 |
tmp:= tmp^.NextGear |
|
169 |
end; |
|
294 | 170 |
|
1505 | 171 |
if ptmp <> nil then |
172 |
begin |
|
173 |
Gear^.NextGear:= ptmp^.NextGear; |
|
174 |
Gear^.PrevGear:= ptmp; |
|
175 |
if ptmp^.NextGear <> nil then ptmp^.NextGear^.PrevGear:= Gear; |
|
176 |
ptmp^.NextGear:= Gear |
|
177 |
end |
|
178 |
else GearsList:= Gear |
|
179 |
end |
|
294 | 180 |
end; |
181 |
||
182 |
procedure RemoveGearFromList(Gear: PGear); |
|
183 |
begin |
|
351 | 184 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
1505 | 185 |
if Gear^.PrevGear <> nil then |
186 |
Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
187 |
else |
|
188 |
GearsList:= Gear^.NextGear |
|
294 | 189 |
end; |
190 |
||
371 | 191 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
79 | 192 |
const Counter: Longword = 0; |
351 | 193 |
var Result: PGear; |
4 | 194 |
begin |
79 | 195 |
inc(Counter); |
1495 | 196 |
{$IFDEF DEBUGFILE} |
1503 | 197 |
AddFileLog('AddGear: #' + inttostr(Counter) + ' (' + inttostr(x) + ',' + inttostr(y) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 198 |
{$ENDIF} |
199 |
||
4 | 200 |
New(Result); |
201 |
FillChar(Result^, sizeof(TGear), 0); |
|
498 | 202 |
Result^.X:= int2hwFloat(X); |
203 |
Result^.Y:= int2hwFloat(Y); |
|
351 | 204 |
Result^.Kind := Kind; |
205 |
Result^.State:= State; |
|
206 |
Result^.Active:= true; |
|
207 |
Result^.dX:= dX; |
|
208 |
Result^.dY:= dY; |
|
209 |
Result^.doStep:= doStepHandlers[Kind]; |
|
511 | 210 |
Result^.CollisionIndex:= -1; |
351 | 211 |
Result^.Timer:= Timer; |
1270 | 212 |
Result^.Z:= cUsualZ; |
1503 | 213 |
Result^.uid:= Counter; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
214 |
|
4 | 215 |
if CurrentTeam <> nil then |
1505 | 216 |
begin |
217 |
Result^.Hedgehog:= CurrentHedgehog; |
|
218 |
Result^.IntersectGear:= CurrentHedgehog^.Gear |
|
219 |
end; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
789
diff
changeset
|
220 |
|
4 | 221 |
case Kind of |
915 | 222 |
gtAmmo_Bomb, |
223 |
gtClusterBomb: begin |
|
351 | 224 |
Result^.Radius:= 4; |
225 |
Result^.Elasticity:= _0_6; |
|
997 | 226 |
Result^.Friction:= _0_96; |
4 | 227 |
end; |
1261 | 228 |
gtWatermelon: begin |
229 |
Result^.Radius:= 4; |
|
230 |
Result^.Elasticity:= _0_8; |
|
231 |
Result^.Friction:= _0_995; |
|
232 |
end; |
|
4 | 233 |
gtHedgehog: begin |
351 | 234 |
Result^.Radius:= cHHRadius; |
235 |
Result^.Elasticity:= _0_35; |
|
236 |
Result^.Friction:= _0_999; |
|
237 |
Result^.Angle:= cMaxAngle div 2; |
|
238 |
Result^.Z:= cHHZ; |
|
4 | 239 |
end; |
240 |
gtAmmo_Grenade: begin |
|
351 | 241 |
Result^.Radius:= 4; |
4 | 242 |
end; |
243 |
gtHealthTag: begin |
|
351 | 244 |
Result^.Timer:= 1500; |
522 | 245 |
Result^.Z:= 2001; |
4 | 246 |
end; |
247 |
gtGrave: begin |
|
351 | 248 |
Result^.Radius:= 10; |
249 |
Result^.Elasticity:= _0_6; |
|
4 | 250 |
end; |
251 |
gtUFO: begin |
|
351 | 252 |
Result^.Radius:= 5; |
253 |
Result^.Timer:= 500; |
|
254 |
Result^.Elasticity:= _0_9 |
|
4 | 255 |
end; |
256 |
gtShotgunShot: begin |
|
351 | 257 |
Result^.Timer:= 900; |
258 |
Result^.Radius:= 2 |
|
4 | 259 |
end; |
260 |
gtPickHammer: begin |
|
351 | 261 |
Result^.Radius:= 10; |
262 |
Result^.Timer:= 4000 |
|
4 | 263 |
end; |
1263 | 264 |
gtSmokeTrace, |
265 |
gtEvilTrace: begin |
|
498 | 266 |
Result^.X:= Result^.X - _16; |
267 |
Result^.Y:= Result^.Y - _16; |
|
1270 | 268 |
Result^.State:= 8; |
269 |
Result^.Z:= cSmokeZ |
|
4 | 270 |
end; |
271 |
gtRope: begin |
|
351 | 272 |
Result^.Radius:= 3; |
498 | 273 |
Result^.Friction:= _450; |
4 | 274 |
RopePoints.Count:= 0; |
275 |
end; |
|
9 | 276 |
gtExplosion: begin |
1012 | 277 |
Result^.X:= Result^.X; |
278 |
Result^.Y:= Result^.Y; |
|
9 | 279 |
end; |
10 | 280 |
gtMine: begin |
503 | 281 |
Result^.State:= Result^.State or gstMoving; |
915 | 282 |
Result^.Radius:= 2; |
351 | 283 |
Result^.Elasticity:= _0_55; |
284 |
Result^.Friction:= _0_995; |
|
285 |
Result^.Timer:= 3000; |
|
10 | 286 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
287 |
gtCase: begin |
351 | 288 |
Result^.Radius:= 16; |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
289 |
Result^.Elasticity:= _0_3 |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
290 |
end; |
37 | 291 |
gtDEagleShot: begin |
351 | 292 |
Result^.Radius:= 1; |
293 |
Result^.Health:= 50 |
|
37 | 294 |
end; |
39 | 295 |
gtDynamite: begin |
351 | 296 |
Result^.Radius:= 3; |
297 |
Result^.Elasticity:= _0_55; |
|
298 |
Result^.Friction:= _0_03; |
|
299 |
Result^.Timer:= 5000; |
|
39 | 300 |
end; |
910 | 301 |
gtCluster: Result^.Radius:= 2; |
878 | 302 |
gtShover: Result^.Radius:= 20; |
79 | 303 |
gtFlame: begin |
1586 | 304 |
Result^.Tag:= Counter mod 32; |
351 | 305 |
Result^.Radius:= 1; |
1586 | 306 |
Result^.Health:= 5; |
1555 | 307 |
if (Result^.dY.QWordValue = 0) and (Result^.dX.QWordValue = 0) then |
308 |
begin |
|
309 |
Result^.dY:= (getrandom - _0_8) * _0_03; |
|
310 |
Result^.dX:= (getrandom - _0_5) * _0_4 |
|
311 |
end |
|
79 | 312 |
end; |
82 | 313 |
gtFirePunch: begin |
351 | 314 |
Result^.Radius:= 15; |
315 |
Result^.Tag:= Y |
|
82 | 316 |
end; |
302 | 317 |
gtAirBomb: begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
318 |
Result^.Radius:= 5; |
302 | 319 |
end; |
320 |
gtBlowTorch: begin |
|
511 | 321 |
Result^.Radius:= cHHRadius + cBlowTorchC; |
351 | 322 |
Result^.Timer:= 7500; |
302 | 323 |
end; |
540 | 324 |
gtSwitcher: begin |
325 |
Result^.Z:= cCurrHHZ |
|
326 |
end; |
|
593 | 327 |
gtTarget: begin |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
328 |
Result^.Radius:= 16; |
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
329 |
Result^.Elasticity:= _0_3 |
593 | 330 |
end; |
924 | 331 |
gtMortar: begin |
994 | 332 |
Result^.Radius:= 4; |
924 | 333 |
Result^.Elasticity:= _0_2; |
334 |
Result^.Friction:= _0_08 |
|
335 |
end; |
|
925 | 336 |
gtWhip: Result^.Radius:= 20; |
984 | 337 |
gtKamikaze: begin |
338 |
Result^.Health:= 2048; |
|
339 |
Result^.Radius:= 20 |
|
340 |
end; |
|
1089 | 341 |
gtCake: begin |
1261 | 342 |
Result^.Health:= 2048; |
1103 | 343 |
Result^.Radius:= 7; |
1109 | 344 |
Result^.Z:= cOnHHZ; |
1089 | 345 |
if hwSign(dX) > 0 then Result^.Angle:= 1 else Result^.Angle:= 3 |
346 |
end; |
|
1263 | 347 |
gtHellishBomb: begin |
348 |
Result^.Radius:= 4; |
|
349 |
Result^.Elasticity:= _0_5; |
|
350 |
Result^.Friction:= _0_96; |
|
351 |
end; |
|
1573 | 352 |
gtDrill: begin |
353 |
Result^.Timer:= 5000; |
|
354 |
Result^.Radius:= 4; |
|
355 |
end; |
|
1601 | 356 |
gtBall: begin |
357 |
Result^.Radius:= 5; |
|
358 |
Result^.Tag:= random(8); |
|
359 |
Result^.Timer:= 5000; |
|
360 |
Result^.Elasticity:= _0_7; |
|
361 |
Result^.Friction:= _0_995; |
|
362 |
end; |
|
363 |
gtBallgun: begin |
|
364 |
Result^.Timer:= 5001; |
|
365 |
end; |
|
1689 | 366 |
gtRCPlane: begin |
367 |
Result^.Timer:= 15000; |
|
368 |
Result^.Health:= 3; |
|
369 |
Result^.Radius:= 8; |
|
370 |
end; |
|
4 | 371 |
end; |
351 | 372 |
InsertGearToList(Result); |
373 |
AddGear:= Result |
|
4 | 374 |
end; |
375 |
||
1515 | 376 |
procedure DeleteGear(Gear: PGear); |
48 | 377 |
var team: PTeam; |
1515 | 378 |
t: Longword; |
4 | 379 |
begin |
503 | 380 |
DeleteCI(Gear); |
762 | 381 |
|
382 |
if Gear^.Tex <> nil then |
|
1495 | 383 |
begin |
384 |
FreeTexture(Gear^.Tex); |
|
385 |
Gear^.Tex:= nil |
|
386 |
end; |
|
762 | 387 |
|
351 | 388 |
if Gear^.Kind = gtHedgehog then |
1495 | 389 |
if CurAmmoGear <> nil then |
390 |
begin |
|
391 |
Gear^.Message:= gm_Destroy; |
|
392 |
CurAmmoGear^.Message:= gm_Destroy; |
|
393 |
exit |
|
394 |
end |
|
395 |
else |
|
396 |
begin |
|
397 |
if not (hwRound(Gear^.Y) < cWaterLine) then |
|
398 |
begin |
|
399 |
t:= max(Gear^.Damage, Gear^.Health); |
|
400 |
Gear^.Damage:= t; |
|
401 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
402 |
uStats.HedgehogDamaged(Gear) |
|
403 |
end; |
|
1515 | 404 |
|
1495 | 405 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
406 |
if CurrentHedgehog^.Gear = Gear then |
|
407 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
|
1515 | 408 |
|
1495 | 409 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
410 |
inc(KilledHHs); |
|
1515 | 411 |
RecountTeamHealth(team) |
1495 | 412 |
end; |
413 |
{$IFDEF DEBUGFILE} |
|
1503 | 414 |
with Gear^ do AddFileLog('Delete: #' + inttostr(uid) + ' (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 415 |
{$ENDIF} |
416 |
||
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
593
diff
changeset
|
417 |
if Gear^.TriggerId <> 0 then TickTrigger(Gear^.TriggerId); |
82 | 418 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 419 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 420 |
RemoveGearFromList(Gear); |
1515 | 421 |
Dispose(Gear) |
4 | 422 |
end; |
423 |
||
424 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
425 |
var Gear: PGear; |
|
1849 | 426 |
dmg: LongInt; |
4 | 427 |
begin |
351 | 428 |
CheckNoDamage:= true; |
4 | 429 |
Gear:= GearsList; |
430 |
while Gear <> nil do |
|
867 | 431 |
begin |
432 |
if Gear^.Kind = gtHedgehog then |
|
1849 | 433 |
begin |
434 |
if (Gear^.Damage <> 0) and |
|
435 |
(not Gear^.Invulnerable) then |
|
436 |
begin |
|
437 |
CheckNoDamage:= false; |
|
438 |
uStats.HedgehogDamaged(Gear); |
|
439 |
dmg:= HwRound(int2HwFloat(Gear^.Damage) * cDamageModifier); |
|
440 |
if Gear^.Health < dmg then |
|
441 |
Gear^.Health:= 0 |
|
442 |
else |
|
443 |
dec(Gear^.Health, dmg); |
|
351 | 444 |
|
1849 | 445 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
446 |
gtHealthTag, dmg, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
867 | 447 |
|
1849 | 448 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
449 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
1505 | 450 |
|
1849 | 451 |
end; |
452 |
Gear^.Damage:= 0; |
|
453 |
end; |
|
867 | 454 |
Gear:= Gear^.NextGear |
455 |
end; |
|
4 | 456 |
end; |
457 |
||
1054 | 458 |
procedure HealthMachine; |
459 |
var Gear: PGear; |
|
460 |
begin |
|
461 |
Gear:= GearsList; |
|
462 |
||
463 |
while Gear <> nil do |
|
464 |
begin |
|
465 |
if Gear^.Kind = gtHedgehog then |
|
466 |
Gear^.Damage:= min(cHealthDecrease, Gear^.Health - 1); |
|
467 |
||
468 |
Gear:= Gear^.NextGear |
|
469 |
end; |
|
470 |
end; |
|
471 |
||
4 | 472 |
procedure ProcessGears; |
614 | 473 |
const delay: LongWord = 0; |
1797 | 474 |
step: (stDelay, stChDmg, stSweep, stTurnReact, |
1495 | 475 |
stAfterDelay, stChWin, stWater, stChWin2, stHealth, |
476 |
stSpawn, stNTurn) = stDelay; |
|
1054 | 477 |
|
4 | 478 |
var Gear, t: PGear; |
479 |
begin |
|
868 | 480 |
PrvInactive:= AllInactive; |
4 | 481 |
AllInactive:= true; |
1495 | 482 |
|
4 | 483 |
t:= GearsList; |
1054 | 484 |
while t <> nil do |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
485 |
begin |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
486 |
Gear:= t; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
487 |
t:= Gear^.NextGear; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
488 |
if Gear^.Active then Gear^.doStep(Gear); |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
489 |
end; |
89 | 490 |
|
4 | 491 |
if AllInactive then |
1343 | 492 |
case step of |
493 |
stDelay: begin |
|
494 |
if delay = 0 then |
|
495 |
delay:= cInactDelay |
|
496 |
else |
|
497 |
dec(delay); |
|
614 | 498 |
|
1343 | 499 |
if delay = 0 then |
500 |
inc(step) |
|
501 |
end; |
|
1797 | 502 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
503 |
stSweep: if SweepDirty then |
|
1792 | 504 |
begin |
505 |
SetAllToActive; |
|
506 |
step:= stChDmg |
|
1797 | 507 |
end else inc(step); |
1343 | 508 |
stTurnReact: begin |
509 |
if (not bBetweenTurns) and (not isInMultiShoot) then |
|
510 |
begin |
|
511 |
uStats.TurnReaction; |
|
512 |
inc(step) |
|
513 |
end else |
|
514 |
inc(step, 2); |
|
515 |
end; |
|
516 |
stAfterDelay: begin |
|
517 |
if delay = 0 then |
|
518 |
delay:= cInactDelay |
|
519 |
else |
|
520 |
dec(delay); |
|
815 | 521 |
|
1343 | 522 |
if delay = 0 then |
523 |
inc(step) |
|
524 |
end; |
|
525 |
stChWin: begin |
|
526 |
CheckForWin; |
|
527 |
inc(step) |
|
528 |
end; |
|
529 |
stWater: if (not bBetweenTurns) and (not isInMultiShoot) then |
|
530 |
begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
531 |
if TotalRounds = cSuddenDTurns + 2 then bWaterRising:= true; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
532 |
|
1343 | 533 |
if bWaterRising then |
534 |
AddGear(0, 0, gtWaterUp, 0, _0, _0, 0); |
|
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
535 |
|
1343 | 536 |
inc(step) |
537 |
end else inc(step); |
|
538 |
stChWin2: begin |
|
539 |
CheckForWin; |
|
540 |
inc(step) |
|
541 |
end; |
|
542 |
stHealth: begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
543 |
if (TotalRounds = cSuddenDTurns) and (cHealthDecrease = 0) then |
1343 | 544 |
begin |
545 |
cHealthDecrease:= 5; |
|
546 |
AddCaption(trmsg[sidSuddenDeath], $FFFFFF, capgrpGameState) |
|
547 |
end; |
|
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
548 |
|
1343 | 549 |
if (cHealthDecrease = 0) |
550 |
or bBetweenTurns |
|
551 |
or isInMultiShoot |
|
552 |
or (TotalRounds = 0) then inc(step) |
|
553 |
else begin |
|
554 |
bBetweenTurns:= true; |
|
555 |
HealthMachine; |
|
556 |
step:= stChDmg |
|
557 |
end |
|
558 |
end; |
|
559 |
stSpawn: begin |
|
560 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
561 |
inc(step) |
|
562 |
end; |
|
563 |
stNTurn: begin |
|
564 |
if isInMultiShoot then isInMultiShoot:= false |
|
565 |
else begin |
|
1849 | 566 |
ResetUtilities; |
1343 | 567 |
ParseCommand('/nextturn', true); |
568 |
SwitchHedgehog; |
|
1298 | 569 |
|
1343 | 570 |
inc(step); |
1298 | 571 |
|
1343 | 572 |
AfterSwitchHedgehog; |
573 |
bBetweenTurns:= false |
|
574 |
end; |
|
575 |
step:= Low(step) |
|
576 |
end; |
|
577 |
end; |
|
15 | 578 |
|
4 | 579 |
if TurnTimeLeft > 0 then |
870 | 580 |
if CurrentHedgehog^.Gear <> nil then |
581 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
582 |
and not isInMultiShoot then |
|
583 |
begin |
|
584 |
if (TurnTimeLeft = 5000) |
|
585 |
and (CurrentHedgehog^.Gear <> nil) |
|
1669 | 586 |
and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then |
587 |
PlaySound(sndHurry, false, CurrentTeam^.voicepack); |
|
870 | 588 |
dec(TurnTimeLeft) |
589 |
end; |
|
351 | 590 |
|
651 | 591 |
if (not CurrentTeam^.ExtDriven) and |
917 | 592 |
((GameTicks and $FFFF) = $FFFF) then |
593 |
begin |
|
594 |
SendIPCTimeInc; |
|
595 |
inc(hiTicks) // we do not recieve a message for this |
|
596 |
end; |
|
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
597 |
|
515 | 598 |
inc(GameTicks) |
4 | 599 |
end; |
600 |
||
1854 | 601 |
//Purpose, to reset all transient attributes toggled by a utility. |
602 |
//If any of these are set as permanent toggles in the frontend, that needs to be checked and skipped here. |
|
1849 | 603 |
procedure ResetUtilities; |
604 |
begin |
|
605 |
cGravity:= cMaxWindSpeed; |
|
606 |
cDamageModifier:= _1; |
|
1854 | 607 |
cLaserSighting:= false; |
1849 | 608 |
if (CurrentHedgehog^.Gear <> nil) then |
609 |
CurrentHedgehog^.Gear^.Invulnerable:= false; |
|
610 |
end; |
|
611 |
||
4 | 612 |
procedure SetAllToActive; |
613 |
var t: PGear; |
|
614 |
begin |
|
615 |
AllInactive:= false; |
|
616 |
t:= GearsList; |
|
351 | 617 |
while t <> nil do |
1505 | 618 |
begin |
619 |
t^.Active:= true; |
|
620 |
t:= t^.NextGear |
|
621 |
end |
|
4 | 622 |
end; |
623 |
||
624 |
procedure SetAllHHToActive; |
|
625 |
var t: PGear; |
|
626 |
begin |
|
627 |
AllInactive:= false; |
|
628 |
t:= GearsList; |
|
351 | 629 |
while t <> nil do |
1505 | 630 |
begin |
631 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
|
632 |
t:= t^.NextGear |
|
633 |
end |
|
4 | 634 |
end; |
635 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
636 |
procedure DrawHH(Gear: PGear); |
371 | 637 |
var t: LongInt; |
822 | 638 |
amt: TAmmoType; |
1854 | 639 |
hx, hy, cx, cy, tx, ty, m: LongInt; |
640 |
lx, ly, dx, dy, aAngle, dAngle: real; |
|
1253 | 641 |
defaultPos, HatVisible: boolean; |
292 | 642 |
begin |
868 | 643 |
if (Gear^.State and gstHHDeath) <> 0 then |
644 |
begin |
|
645 |
DrawSprite(sprHHDeath, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 26 + WorldDy, Gear^.Pos); |
|
646 |
exit |
|
647 |
end; |
|
1002 | 648 |
|
824 | 649 |
defaultPos:= true; |
1253 | 650 |
HatVisible:= false; |
847 | 651 |
|
1002 | 652 |
if (Gear^.State and gstDrowning) <> 0 then |
653 |
begin |
|
654 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
655 |
hwSign(Gear^.dX), |
|
656 |
1, |
|
657 |
7, |
|
1854 | 658 |
0, Gear^.Invulnerable); |
1002 | 659 |
defaultPos:= false |
660 |
end else |
|
661 |
||
1011 | 662 |
if (Gear^.State and gstWinner) <> 0 then |
663 |
begin |
|
664 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
665 |
hwSign(Gear^.dX), |
|
666 |
2, |
|
667 |
0, |
|
1854 | 668 |
0, Gear^.Invulnerable); |
1011 | 669 |
defaultPos:= false |
670 |
end else |
|
671 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
672 |
if (Gear^.State and gstHHDriven) <> 0 then |
966 | 673 |
begin |
1002 | 674 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
675 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
676 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
874 | 677 |
|
1002 | 678 |
if CurAmmoGear <> nil then |
679 |
begin |
|
680 |
case CurAmmoGear^.Kind of |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
681 |
gtShotgunShot: begin |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
682 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
683 |
DrawRotated(sprShotgun, hx, hy, hwSign(Gear^.dX), aangle) |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
684 |
else |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
685 |
DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
686 |
HatVisible:= true |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
687 |
end; |
1002 | 688 |
gtDEagleShot: DrawRotated(sprDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
1601 | 689 |
gtBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 690 |
gtRCPlane: begin |
691 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
692 |
defaultPos:= false |
|
693 |
end; |
|
1002 | 694 |
gtRope: begin |
695 |
if Gear^.X < CurAmmoGear^.X then |
|
696 |
begin |
|
697 |
dAngle:= 0; |
|
698 |
m:= 1 |
|
699 |
end else |
|
700 |
begin |
|
701 |
dAngle:= 180; |
|
702 |
m:= -1 |
|
966 | 703 |
end; |
1002 | 704 |
DrawHedgehog(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
705 |
m, |
|
706 |
1, |
|
707 |
0, |
|
1854 | 708 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle, Gear^.Invulnerable); |
1002 | 709 |
defaultPos:= false |
710 |
end; |
|
711 |
gtBlowTorch: begin |
|
712 |
DrawRotated(sprBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
713 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
714 |
hwSign(Gear^.dX), |
|
715 |
3, |
|
1113 | 716 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
1854 | 717 |
0, Gear^.Invulnerable); |
1002 | 718 |
defaultPos:= false |
719 |
end; |
|
720 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
|
721 |
gtFirePunch: begin |
|
722 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
723 |
hwSign(Gear^.dX), |
|
724 |
1, |
|
725 |
4, |
|
1854 | 726 |
0, Gear^.Invulnerable); |
1002 | 727 |
defaultPos:= false |
728 |
end; |
|
729 |
gtPickHammer, |
|
730 |
gtTeleport: defaultPos:= false; |
|
1010 | 731 |
gtWhip: begin |
732 |
DrawRotatedF(sprWhip, |
|
733 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
734 |
hwRound(Gear^.Y) - 3 + WorldDy, |
|
735 |
1, |
|
736 |
hwSign(Gear^.dX), |
|
737 |
0); |
|
738 |
defaultPos:= false |
|
739 |
end; |
|
1002 | 740 |
gtKamikaze: begin |
1286 | 741 |
if CurAmmoGear^.Pos = 0 then |
742 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
743 |
hwSign(Gear^.dX), |
|
744 |
1, |
|
745 |
6, |
|
1854 | 746 |
0, Gear^.Invulnerable) |
1286 | 747 |
else |
748 |
DrawRotatedF(sprKamikaze, |
|
749 |
hwRound(Gear^.X) + WorldDx, |
|
750 |
hwRound(Gear^.Y) + WorldDy, |
|
751 |
CurAmmoGear^.Pos - 1, |
|
752 |
1, |
|
753 |
DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
1002 | 754 |
|
1286 | 755 |
defaultPos:= false |
756 |
end; |
|
757 |
gtSeduction: begin |
|
758 |
if CurAmmoGear^.Pos >= 6 then |
|
759 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
760 |
hwSign(Gear^.dX), |
|
761 |
2, |
|
762 |
2, |
|
1854 | 763 |
0, Gear^.Invulnerable) |
1286 | 764 |
else |
765 |
begin |
|
766 |
DrawRotatedF(sprDress, |
|
767 |
hwRound(Gear^.X) + WorldDx, |
|
768 |
hwRound(Gear^.Y) + WorldDy, |
|
769 |
CurAmmoGear^.Pos, |
|
770 |
hwSign(Gear^.dX), |
|
771 |
0); |
|
772 |
DrawSprite(sprCensored, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 20 + WorldDy, 0) |
|
773 |
end; |
|
774 |
defaultPos:= false |
|
775 |
end; |
|
1002 | 776 |
end; |
777 |
||
778 |
case CurAmmoGear^.Kind of |
|
779 |
gtShotgunShot, |
|
780 |
gtDEagleShot, |
|
781 |
gtShover: begin |
|
782 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
783 |
hwSign(Gear^.dX), |
|
784 |
0, |
|
785 |
4, |
|
1854 | 786 |
0, Gear^.Invulnerable); |
1002 | 787 |
defaultPos:= false |
788 |
end |
|
789 |
end |
|
790 |
end else |
|
876 | 791 |
|
1002 | 792 |
if ((Gear^.State and gstHHJumping) <> 0) then |
793 |
begin |
|
794 |
if ((Gear^.State and gstHHHJump) <> 0) then |
|
795 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
796 |
- hwSign(Gear^.dX), |
|
797 |
1, |
|
798 |
1, |
|
1854 | 799 |
0, Gear^.Invulnerable) |
1002 | 800 |
else |
801 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
802 |
hwSign(Gear^.dX), |
|
803 |
1, |
|
804 |
1, |
|
1854 | 805 |
0, Gear^.Invulnerable); |
1002 | 806 |
defaultPos:= false |
807 |
end else |
|
874 | 808 |
|
1002 | 809 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) then |
824 | 810 |
begin |
1002 | 811 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
812 |
hwSign(Gear^.dX), |
|
813 |
0, |
|
814 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
1854 | 815 |
0, Gear^.Invulnerable); |
1257 | 816 |
defaultPos:= false; |
817 |
HatVisible:= true |
|
1002 | 818 |
end |
819 |
else |
|
820 |
||
1033 | 821 |
if ((Gear^.State and gstAnimation) <> 0) then |
822 |
begin |
|
1034 | 823 |
DrawRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
1033 | 824 |
hwRound(Gear^.X) + 1 + WorldDx, |
825 |
hwRound(Gear^.Y) - 3 + WorldDy, |
|
826 |
Gear^.Pos, |
|
827 |
hwSign(Gear^.dX), |
|
828 |
0.0); |
|
829 |
defaultPos:= false |
|
830 |
end |
|
831 |
else |
|
1002 | 832 |
if ((Gear^.State and gstAttacked) = 0) then |
833 |
begin |
|
834 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
835 |
case amt of |
|
836 |
amBazooka, |
|
1717 | 837 |
amMortar: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
838 |
amBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
839 |
amDrill: DrawRotated(sprHandDrill, hx, hy, hwSign(Gear^.dX), aangle); |
|
1002 | 840 |
amRope: DrawRotated(sprHandRope, hx, hy, hwSign(Gear^.dX), aangle); |
841 |
amShotgun: DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
842 |
amDEagle: DrawRotated(sprHandDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
|
843 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
1717 | 844 |
amRCPlane: begin |
845 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
846 |
defaultPos:= false |
|
847 |
end; |
|
1002 | 848 |
end; |
849 |
||
850 |
case amt of |
|
851 |
amAirAttack, |
|
852 |
amMineStrike: DrawRotated(sprHandAirAttack, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) + WorldDy, hwSign(Gear^.dX), 0); |
|
853 |
amPickHammer: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
854 |
hwSign(Gear^.dX), |
|
855 |
1, |
|
856 |
2, |
|
1854 | 857 |
0, Gear^.Invulnerable); |
1002 | 858 |
amBlowTorch: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
859 |
hwSign(Gear^.dX), |
|
860 |
1, |
|
861 |
3, |
|
1854 | 862 |
0, Gear^.Invulnerable); |
1002 | 863 |
amTeleport: DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, 0, hwSign(Gear^.dX), 0); |
864 |
amKamikaze: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
865 |
hwSign(Gear^.dX), |
|
866 |
1, |
|
867 |
5, |
|
1854 | 868 |
0, Gear^.Invulnerable); |
1221 | 869 |
amWhip: DrawRotatedF(sprWhip, |
1010 | 870 |
hwRound(Gear^.X) + 1 + WorldDx, |
871 |
hwRound(Gear^.Y) - 3 + WorldDy, |
|
872 |
0, |
|
873 |
hwSign(Gear^.dX), |
|
874 |
0); |
|
1002 | 875 |
else |
822 | 876 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
877 |
hwSign(Gear^.dX), |
|
878 |
0, |
|
1002 | 879 |
4, |
1854 | 880 |
0, Gear^.Invulnerable); |
1253 | 881 |
|
882 |
HatVisible:= true; |
|
883 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
884 |
if (HatTex <> nil) |
1854 | 885 |
and (HatVisibility > 0) |
886 |
and (not Gear^.Invulnerable) then |
|
1253 | 887 |
DrawTextureF(HatTex, |
888 |
HatVisibility, |
|
889 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
890 |
hwRound(Gear^.Y) - 8 + WorldDy, |
|
891 |
0, |
|
892 |
hwSign(Gear^.dX), |
|
893 |
32); |
|
1002 | 894 |
end; |
966 | 895 |
|
1002 | 896 |
case amt of |
897 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
898 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
899 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
900 |
end; |
|
966 | 901 |
|
1002 | 902 |
defaultPos:= false |
903 |
end |
|
904 |
end else // not gstHHDriven |
|
1012 | 905 |
begin |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
906 |
if (Gear^.Damage > 0) |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
907 |
and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
908 |
begin |
1012 | 909 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
910 |
hwSign(Gear^.dX), |
|
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
911 |
2, |
1012 | 912 |
1, |
1854 | 913 |
Gear^.DirAngle, Gear^.Invulnerable); |
1012 | 914 |
defaultPos:= false |
1020 | 915 |
end else |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
916 |
|
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
917 |
if ((Gear^.State and gstHHJumping) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
918 |
begin |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
919 |
if ((Gear^.State and gstHHHJump) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
920 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
921 |
- hwSign(Gear^.dX), |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
922 |
1, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
923 |
1, |
1854 | 924 |
0, Gear^.Invulnerable) |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
925 |
else |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
926 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
927 |
hwSign(Gear^.dX), |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
928 |
1, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
929 |
1, |
1854 | 930 |
0, Gear^.Invulnerable); |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
931 |
defaultPos:= false |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
932 |
end; |
1012 | 933 |
end; |
834 | 934 |
|
1251 | 935 |
with PHedgehog(Gear^.Hedgehog)^ do |
970 | 936 |
begin |
1251 | 937 |
if defaultPos then |
938 |
begin |
|
939 |
DrawRotatedF(sprHHIdle, |
|
940 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
941 |
hwRound(Gear^.Y) - 3 + WorldDy, |
|
942 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
943 |
hwSign(Gear^.dX), |
|
944 |
0); |
|
1253 | 945 |
HatVisible:= true; |
946 |
end; |
|
947 |
||
948 |
if HatVisible then |
|
1251 | 949 |
if HatVisibility < 1.0 then |
1254 | 950 |
HatVisibility:= HatVisibility + 0.2 |
1253 | 951 |
else |
1251 | 952 |
else |
953 |
if HatVisibility > 0.0 then |
|
1254 | 954 |
HatVisibility:= HatVisibility - 0.2; |
1253 | 955 |
|
1854 | 956 |
if (HatTex <> nil) and (not Gear^.Invulnerable) |
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
957 |
and (HatVisibility > 0) then |
1255 | 958 |
if DefaultPos then |
959 |
DrawTextureF(HatTex, |
|
960 |
HatVisibility, |
|
961 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
962 |
hwRound(Gear^.Y) - 8 + WorldDy, |
|
963 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
964 |
hwSign(Gear^.dX), |
|
965 |
32) |
|
966 |
else |
|
967 |
DrawTextureF(HatTex, |
|
968 |
HatVisibility, |
|
969 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
970 |
hwRound(Gear^.Y) - 8 + WorldDy, |
|
971 |
0, |
|
972 |
hwSign(Gear^.dX), |
|
973 |
32); |
|
970 | 974 |
end; |
292 | 975 |
|
1251 | 976 |
|
351 | 977 |
with PHedgehog(Gear^.Hedgehog)^ do |
994 | 978 |
begin |
1011 | 979 |
if ((Gear^.State and not gstWinner) = 0) |
994 | 980 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
958 | 981 |
begin |
1660 | 982 |
t:= hwRound(Gear^.Y) - cHHRadius - 12 + WorldDy; |
983 |
if (cTagsMask and 1) <> 0 then |
|
984 |
begin |
|
985 |
dec(t, HealthTagTex^.h + 2); |
|
986 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
987 |
end; |
|
988 |
if (cTagsMask and 2) <> 0 then |
|
989 |
begin |
|
990 |
dec(t, NameTagTex^.h + 2); |
|
991 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
992 |
end; |
|
993 |
if (cTagsMask and 4) <> 0 then |
|
994 |
begin |
|
995 |
dec(t, Team^.NameTagTex^.h + 2); |
|
996 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
997 |
end |
|
958 | 998 |
end; |
994 | 999 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
958 | 1000 |
begin |
1001 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
|
1002 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
1003 |
GameTicks div 32 mod 16); |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
1004 |
|
958 | 1005 |
if (Gear^.State and gstDrowning) = 0 then |
1006 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
1007 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
|
1008 |
else |
|
1033 | 1009 |
if ShowCrosshair and ((Gear^.State and (gstAttacked or gstAnimation)) = 0) then |
958 | 1010 |
begin |
1854 | 1011 |
(* These calculations are a little complex for a few reasons: |
1012 |
1: I need to draw the laser from weapon origin to nearest land |
|
1013 |
2: I need to start the beam outside the hedgie for attractiveness. |
|
1014 |
I can't do the calc from there, or it accumulates more error visible in a deagle shot. |
|
1015 |
3: I need to extend the beam beyond land. |
|
1016 |
This routine perhaps should be pushed into uStore or somesuch instead of continuuing the increase in size of this function. |
|
1017 |
Additionally, using crosshairs, amusingly, makes the laser imprecise to about 0.05% of a deagle shot. This means that if you are firing across an entire 4096px map your laser will be a few pixels off of the the deagle shot. This is still a lot more accurate than real laser sights - feel free to change if it bothers you. |
|
1018 |
*) |
|
1019 |
if cLaserSighting then |
|
1020 |
begin |
|
1021 |
lx:= hwRound(Gear^.X); |
|
1022 |
ly:= hwRound(Gear^.Y); |
|
1023 |
dx:= hwSign(Gear^.dX) * Sin(Gear^.Angle * pi / cMaxAngle); |
|
1024 |
dy:= - Cos(Gear^.Angle * pi / cMaxAngle); |
|
1025 |
lx:= lx + dx * 16; |
|
1026 |
ly:= ly + dy * 16; |
|
1027 |
||
1028 |
dx:= dx * 4; |
|
1029 |
dy:= dy * 4; |
|
1030 |
||
1031 |
tx:= round(lx); |
|
1032 |
ty:= round(ly); |
|
1033 |
hx:= tx; |
|
1034 |
hy:= ty; |
|
1035 |
while ((ty and LAND_HEIGHT_MASK) = 0) and |
|
1036 |
((tx and LAND_WIDTH_MASK) = 0) and |
|
1037 |
(Land[ty, tx] = 0) do |
|
1038 |
begin |
|
1039 |
lx:= lx + dx; |
|
1040 |
ly:= ly + dy; |
|
1041 |
tx:= round(lx); |
|
1042 |
ty:= round(ly) |
|
1043 |
end; |
|
1044 |
// reached edge of land. assume infinite beam. Extend it way out past camera |
|
1045 |
if ((ty and LAND_HEIGHT_MASK) <> 0) or ((tx and LAND_WIDTH_MASK) <> 0) then |
|
1046 |
begin |
|
1047 |
lx:= lx + dx * (LAND_WIDTH div 4); |
|
1048 |
ly:= ly + dy * (LAND_WIDTH div 4) |
|
1049 |
end; |
|
1050 |
||
1051 |
//if (abs(lx-tx)>8) or (abs(ly-ty)>8) then |
|
1052 |
begin |
|
1053 |
glDisable(GL_TEXTURE_2D); |
|
1054 |
glEnable(GL_LINE_SMOOTH); |
|
1055 |
glBegin(GL_LINES); |
|
1056 |
glColor4ub($FF, $00, $00, $C0); |
|
1057 |
glVertex2i(hx + WorldDx, hy + WorldDy); |
|
1058 |
glVertex2i(tx + WorldDx, ty + WorldDy); |
|
1059 |
glEnd(); |
|
1060 |
glColor4f(1, 1, 1, 1); |
|
1061 |
glEnable(GL_TEXTURE_2D); |
|
1062 |
glDisable(GL_LINE_SMOOTH); |
|
1063 |
end; |
|
1064 |
end; |
|
1065 |
// draw crossahair |
|
958 | 1066 |
if ((Gear^.State and gstHHHJump) <> 0) then m:= -1 else m:= 1; |
1854 | 1067 |
cx:= Round(hwRound(Gear^.X) + hwSign(Gear^.dX) * m * Sin(Gear^.Angle*pi/cMaxAngle) * 80); |
1068 |
cy:= Round(hwRound(Gear^.Y) - Cos(Gear^.Angle*pi/cMaxAngle) * 80); |
|
958 | 1069 |
DrawRotatedTex(Team^.CrosshairTex, |
1854 | 1070 |
12, 12, cx+WorldDx, cy+WorldDy, 0, |
1071 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle); |
|
958 | 1072 |
end |
994 | 1073 |
end |
1074 |
end |
|
292 | 1075 |
end; |
1076 |
||
956 | 1077 |
procedure DrawGears; |
853 | 1078 |
var Gear, HHGear: PGear; |
4 | 1079 |
i: Longword; |
371 | 1080 |
roplen: LongInt; |
4 | 1081 |
|
371 | 1082 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
1083 |
var eX, eY, dX, dY: LongInt; |
|
1084 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 1085 |
b: boolean; |
4 | 1086 |
begin |
37 | 1087 |
if (X1 = X2) and (Y1 = Y2) then |
1088 |
begin |
|
351 | 1089 |
OutError('WARNING: zero length rope line!', false); |
37 | 1090 |
exit |
1091 |
end; |
|
366 | 1092 |
eX:= 0; |
1093 |
eY:= 0; |
|
1094 |
dX:= X2 - X1; |
|
1095 |
dY:= Y2 - Y1; |
|
1096 |
||
1097 |
if (dX > 0) then sX:= 1 |
|
1098 |
else |
|
1099 |
if (dX < 0) then |
|
1100 |
begin |
|
1101 |
sX:= -1; |
|
1102 |
dX:= -dX |
|
1103 |
end else sX:= dX; |
|
1104 |
||
1105 |
if (dY > 0) then sY:= 1 |
|
1106 |
else |
|
1107 |
if (dY < 0) then |
|
4 | 1108 |
begin |
366 | 1109 |
sY:= -1; |
1110 |
dY:= -dY |
|
1111 |
end else sY:= dY; |
|
1112 |
||
1113 |
if (dX > dY) then d:= dX |
|
1114 |
else d:= dY; |
|
1115 |
||
1116 |
x:= X1; |
|
1117 |
y:= Y1; |
|
1118 |
||
1119 |
for i:= 0 to d do |
|
1120 |
begin |
|
1121 |
inc(eX, dX); |
|
1122 |
inc(eY, dY); |
|
1123 |
b:= false; |
|
1124 |
if (eX > d) then |
|
35 | 1125 |
begin |
366 | 1126 |
dec(eX, d); |
1127 |
inc(x, sX); |
|
1128 |
b:= true |
|
35 | 1129 |
end; |
366 | 1130 |
if (eY > d) then |
35 | 1131 |
begin |
366 | 1132 |
dec(eY, d); |
1133 |
inc(y, sY); |
|
1134 |
b:= true |
|
35 | 1135 |
end; |
366 | 1136 |
if b then |
1137 |
begin |
|
1138 |
inc(roplen); |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1139 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
366 | 1140 |
end |
4 | 1141 |
end |
366 | 1142 |
end; |
4 | 1143 |
|
1144 |
begin |
|
1145 |
Gear:= GearsList; |
|
1146 |
while Gear<>nil do |
|
1689 | 1147 |
begin |
1148 |
case Gear^.Kind of |
|
822 | 1149 |
gtAmmo_Bomb: DrawRotated(sprBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1689 | 1150 |
|
1696 | 1151 |
gtRCPlane: if (Gear^.Tag = -1) then |
1689 | 1152 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, -1, DxDy2Angle(Gear^.dX, Gear^.dY) + 90) |
1153 |
else |
|
1154 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy,0,DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
1155 |
||
1601 | 1156 |
gtBall: DrawRotatedf(sprBalls, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tag,0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1157 |
|
1573 | 1158 |
gtDrill: DrawRotated(sprDrill, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1159 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1160 |
gtHedgehog: DrawHH(Gear); |
1689 | 1161 |
|
822 | 1162 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1163 |
|
1505 | 1164 |
gtHealthTag: if Gear^.Tex <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tex); |
1689 | 1165 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1166 |
gtGrave: DrawSurfSprite(hwRound(Gear^.X) + WorldDx - 16, hwRound(Gear^.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, PHedgehog(Gear^.Hedgehog)^.Team^.GraveTex); |
1689 | 1167 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1168 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
1689 | 1169 |
|
848 | 1170 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
4 | 1171 |
gtRope: begin |
35 | 1172 |
roplen:= 0; |
4 | 1173 |
if RopePoints.Count > 0 then |
1174 |
begin |
|
1175 |
i:= 0; |
|
1176 |
while i < Pred(RopePoints.Count) do |
|
1177 |
begin |
|
351 | 1178 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
1179 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 1180 |
inc(i) |
1181 |
end; |
|
351 | 1182 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
1183 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
1184 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
1185 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 1186 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
4 | 1187 |
end else |
1781 | 1188 |
if Gear^.Elasticity.QWordValue > 0 then |
35 | 1189 |
begin |
351 | 1190 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
1191 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 1192 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
35 | 1193 |
end; |
4 | 1194 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1195 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
1012 | 1196 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 32 + WorldDy, Gear^.State); |
351 | 1197 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 1198 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
1199 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 1200 |
gtCase: case Gear^.Pos of |
1794 | 1201 |
posCaseAmmo : begin |
1202 |
i:= (GameTicks shr 6) mod 64; |
|
1203 |
if i > 18 then i:= 0; |
|
1204 |
DrawSprite(sprCase, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
|
1205 |
end; |
|
1009 | 1206 |
posCaseHealth: begin |
1207 |
i:= (GameTicks shr 6) mod 64; |
|
1208 |
if i > 12 then i:= 0; |
|
1209 |
DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
|
1210 |
end; |
|
42 | 1211 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1212 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1); |
822 | 1213 |
gtClusterBomb: DrawRotated(sprClusterBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1214 |
gtCluster: DrawSprite(sprClusterParticle, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, 0); |
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1555
diff
changeset
|
1215 |
gtFlame: DrawSprite(sprFlame, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, (GameTicks div 128 + LongWord(Gear^.Tag)) mod 8); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1216 |
gtParachute: DrawSprite(sprParachute, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 48 + WorldDy, 0); |
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1217 |
gtAirAttack: if Gear^.Tag > 0 then DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 0) |
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1218 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 1); |
822 | 1219 |
gtAirBomb: DrawRotated(sprAirBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
853 | 1220 |
gtTeleport: begin |
1221 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1222 |
DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
1223 |
DrawRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
1224 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1225 |
gtSwitcher: DrawSprite(sprSwitch, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 56 + WorldDy, (GameTicks shr 6) mod 12); |
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1226 |
gtTarget: DrawSprite(sprTarget, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
959 | 1227 |
gtMortar: DrawRotated(sprMortar, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1108 | 1228 |
gtCake: if Gear^.Pos = 6 then |
1229 |
DrawRotatedf(sprCakeWalk, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (GameTicks div 40) mod 6, hwSign(Gear^.dX), Gear^.DirAngle + hwSign(Gear^.dX) * 90) |
|
1230 |
else |
|
1262 | 1231 |
DrawRotatedf(sprCakeDown, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 5 - Gear^.Pos, hwSign(Gear^.dX), 0); |
1367 | 1232 |
gtSeduction: if Gear^.Pos >= 14 then DrawSprite(sprSeduction, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
1262 | 1233 |
gtWatermelon: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, 0, Gear^.DirAngle); |
1234 |
gtMelonPiece: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 1, 0, Gear^.DirAngle); |
|
1263 | 1235 |
gtHellishBomb: DrawRotated(sprHellishBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1236 |
gtEvilTrace: if Gear^.State < 8 then DrawSprite(sprEvilTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
|
1237 |
end; |
|
351 | 1238 |
Gear:= Gear^.NextGear |
4 | 1239 |
end; |
1240 |
end; |
|
1241 |
||
1242 |
procedure FreeGearsList; |
|
1243 |
var t, tt: PGear; |
|
1244 |
begin |
|
1245 |
tt:= GearsList; |
|
1246 |
GearsList:= nil; |
|
1505 | 1247 |
while tt <> nil do |
1248 |
begin |
|
1249 |
t:= tt; |
|
1250 |
tt:= tt^.NextGear; |
|
1251 |
Dispose(t) |
|
1252 |
end; |
|
4 | 1253 |
end; |
1254 |
||
10 | 1255 |
procedure AddMiscGears; |
371 | 1256 |
var i: LongInt; |
1515 | 1257 |
Gear: PGear; |
4 | 1258 |
begin |
498 | 1259 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
1435
d4b32ee3caa6
Fix using freed memory (could be the cause of queue error problem and other bugs)
unc0rr
parents:
1434
diff
changeset
|
1260 |
|
22 | 1261 |
if (GameFlags and gfForts) = 0 then |
1435
d4b32ee3caa6
Fix using freed memory (could be the cause of queue error problem and other bugs)
unc0rr
parents:
1434
diff
changeset
|
1262 |
for i:= 0 to Pred(cLandAdditions) do |
1515 | 1263 |
begin |
1264 |
Gear:= AddGear(0, 0, gtMine, 0, _0, _0, 0); |
|
1760 | 1265 |
FindPlace(Gear, false, 0, LAND_WIDTH) |
1515 | 1266 |
end |
4 | 1267 |
end; |
1268 |
||
371 | 1269 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 1270 |
var Gear: PGear; |
506 | 1271 |
dmg, dmgRadius: LongInt; |
4 | 1272 |
begin |
1273 |
TargetPoint.X:= NoPointX; |
|
1434 | 1274 |
{$IFDEF DEBUGFILE}if Radius > 4 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
1049 | 1275 |
if (Radius > 10) then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
1669 | 1276 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion, false, nil); |
1433 | 1277 |
|
1278 |
if (Mask and EXPLAllDamageInRadius) = 0 then |
|
1279 |
dmgRadius:= Radius shl 1 |
|
1280 |
else |
|
1281 |
dmgRadius:= Radius; |
|
1282 |
||
4 | 1283 |
Gear:= GearsList; |
1284 |
while Gear <> nil do |
|
1200 | 1285 |
begin |
1286 |
dmg:= dmgRadius + cHHRadius div 2 - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
|
1287 |
if (dmg > 1) and |
|
1288 |
((Gear^.State and gstNoDamage) = 0) then |
|
1289 |
begin |
|
1290 |
dmg:= min(dmg div 2, Radius); |
|
1291 |
case Gear^.Kind of |
|
1292 |
gtHedgehog, |
|
1293 |
gtMine, |
|
1294 |
gtCase, |
|
1295 |
gtTarget, |
|
1296 |
gtFlame: begin |
|
1346 | 1297 |
//{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
1200 | 1298 |
if (Mask and EXPLNoDamage) = 0 then |
1299 |
begin |
|
1849 | 1300 |
if not Gear^.Invulnerable then |
1854 | 1301 |
begin |
1302 |
inc(Gear^.Damage, dmg); |
|
1303 |
if Gear^.Kind = gtHedgehog then |
|
1304 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color); |
|
1305 |
end; |
|
1200 | 1306 |
end; |
1307 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
|
1308 |
begin |
|
1309 |
DeleteCI(Gear); |
|
1310 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
|
1311 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
1312 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstWinner); |
|
1313 |
Gear^.Active:= true; |
|
1314 |
FollowGear:= Gear |
|
1315 |
end; |
|
1316 |
end; |
|
1317 |
gtGrave: begin |
|
1318 |
Gear^.dY:= - _0_004 * dmg; |
|
1319 |
Gear^.Active:= true; |
|
1320 |
end; |
|
1321 |
end; |
|
1322 |
end; |
|
1323 |
Gear:= Gear^.NextGear |
|
1324 |
end; |
|
1325 |
||
621 | 1326 |
if (Mask and EXPLDontDraw) = 0 then |
1200 | 1327 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(X, Y, Radius); |
1328 |
||
498 | 1329 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 1330 |
end; |
1331 |
||
506 | 1332 |
procedure ShotgunShot(Gear: PGear); |
1333 |
var t: PGear; |
|
955 | 1334 |
dmg: LongInt; |
506 | 1335 |
begin |
509 | 1336 |
Gear^.Radius:= cShotgunRadius; |
506 | 1337 |
t:= GearsList; |
1338 |
while t <> nil do |
|
1286 | 1339 |
begin |
1340 |
dmg:= min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25); |
|
1341 |
if dmg > 0 then |
|
1342 |
case t^.Kind of |
|
1343 |
gtHedgehog, |
|
1344 |
gtMine, |
|
1345 |
gtCase, |
|
1346 |
gtTarget: begin |
|
1854 | 1347 |
if (not t^.Invulnerable) then |
1348 |
begin |
|
1849 | 1349 |
inc(t^.Damage, dmg); |
1854 | 1350 |
if t^.Kind = gtHedgehog then |
1351 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, PHedgehog(t^.Hedgehog)^.Team^.Clan^.Color); |
|
1352 |
end; |
|
867 | 1353 |
|
1286 | 1354 |
DeleteCI(t); |
1355 |
t^.dX:= t^.dX + Gear^.dX * dmg * _0_01 + SignAs(cHHKick, Gear^.dX); |
|
1356 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
|
1357 |
t^.State:= t^.State or gstMoving; |
|
1358 |
t^.Active:= true; |
|
1359 |
FollowGear:= t |
|
1360 |
end; |
|
1361 |
gtGrave: begin |
|
1362 |
t^.dY:= - _0_1; |
|
1363 |
t^.Active:= true |
|
1364 |
end; |
|
1365 |
end; |
|
1366 |
t:= t^.NextGear |
|
1367 |
end; |
|
621 | 1368 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 1369 |
end; |
1370 |
||
371 | 1371 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 1372 |
var t: PGearArray; |
371 | 1373 |
i: LongInt; |
38 | 1374 |
begin |
53 | 1375 |
t:= CheckGearsCollision(Ammo); |
351 | 1376 |
i:= t^.Count; |
1506 | 1377 |
|
53 | 1378 |
while i > 0 do |
981 | 1379 |
begin |
1380 |
dec(i); |
|
1381 |
if (t^.ar[i]^.State and gstNoDamage) = 0 then |
|
1382 |
case t^.ar[i]^.Kind of |
|
1383 |
gtHedgehog, |
|
1384 |
gtMine, |
|
1385 |
gtTarget, |
|
1386 |
gtCase: begin |
|
1573 | 1387 |
if (Ammo^.Kind = gtDrill) then begin Ammo^.Timer:= 0; exit; end; |
1854 | 1388 |
if (not t^.ar[i]^.Invulnerable) then |
1389 |
begin |
|
1390 |
inc(t^.ar[i]^.Damage, Damage); |
|
981 | 1391 |
|
1854 | 1392 |
if (t^.ar[i]^.Kind = gtHedgehog) and (Damage > 0) then |
1393 |
AddDamageTag(hwRound(t^.ar[i]^.X), hwRound(t^.ar[i]^.Y), Damage, PHedgehog(t^.ar[i]^.Hedgehog)^.Team^.Clan^.Color); |
|
1394 |
end; |
|
867 | 1395 |
|
981 | 1396 |
DeleteCI(t^.ar[i]); |
1397 |
t^.ar[i]^.dX:= Ammo^.dX * Power * _0_01; |
|
1398 |
t^.ar[i]^.dY:= Ammo^.dY * Power * _0_01; |
|
1399 |
t^.ar[i]^.Active:= true; |
|
1400 |
t^.ar[i]^.State:= t^.ar[i]^.State or gstMoving; |
|
867 | 1401 |
|
982 | 1402 |
if TestCollisionXwithGear(t^.ar[i], hwSign(t^.ar[i]^.dX)) then |
981 | 1403 |
begin |
1404 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -3, hwSign(t^.ar[i]^.dX)) |
|
1405 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1406 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -2, hwSign(t^.ar[i]^.dX)) |
|
1407 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1408 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -1, hwSign(t^.ar[i]^.dX)) |
|
1409 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1410 |
end; |
|
982 | 1411 |
|
981 | 1412 |
FollowGear:= t^.ar[i] |
1413 |
end; |
|
1414 |
end |
|
1415 |
end; |
|
126 | 1416 |
SetAllToActive |
38 | 1417 |
end; |
1418 |
||
4 | 1419 |
procedure AssignHHCoords; |
955 | 1420 |
var i, t, p, j: LongInt; |
1760 | 1421 |
ar: array[0..Pred(cMaxHHs)] of PHedgehog; |
1422 |
Count: Longword; |
|
4 | 1423 |
begin |
1428 | 1424 |
if (GameFlags and (gfForts or gfDivideTeams)) <> 0 then |
955 | 1425 |
begin |
1426 |
t:= 0; |
|
1428 | 1427 |
TryDo(ClansCount = 2, 'More or less than 2 clans on map in divided teams mode!', true); |
955 | 1428 |
for p:= 0 to 1 do |
1429 |
begin |
|
1430 |
with ClansArray[p]^ do |
|
1431 |
for j:= 0 to Pred(TeamsNumber) do |
|
1432 |
with Teams[j]^ do |
|
1433 |
for i:= 0 to cMaxHHIndex do |
|
1434 |
with Hedgehogs[i] do |
|
958 | 1435 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
1436 |
begin |
|
1760 | 1437 |
FindPlace(Gear, false, t, t + LAND_WIDTH div 2);// could make Gear == nil |
1515 | 1438 |
if Gear <> nil then |
1439 |
begin |
|
1784 | 1440 |
Gear^.Pos:= GetRandom(49); |
1515 | 1441 |
Gear^.dX.isNegative:= p = 1; |
1442 |
end |
|
958 | 1443 |
end; |
1760 | 1444 |
t:= LAND_WIDTH div 2 |
955 | 1445 |
end |
1446 |
end else // mix hedgehogs |
|
1447 |
begin |
|
1448 |
Count:= 0; |
|
1449 |
for p:= 0 to Pred(TeamsCount) do |
|
1450 |
with TeamsArray[p]^ do |
|
1451 |
begin |
|
1452 |
for i:= 0 to cMaxHHIndex do |
|
1453 |
with Hedgehogs[i] do |
|
1454 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
|
1455 |
begin |
|
1515 | 1456 |
ar[Count]:= @Hedgehogs[i]; |
955 | 1457 |
inc(Count) |
1458 |
end; |
|
1459 |
end; |
|
1792 | 1460 |
// unC0Rr, while it is true user can watch value on map screen, IMO this (and check above) should be enforced in UI |
1461 |
// - is there a good place to put values for the different widgets to check? Right now they are kind of disconnected. |
|
1462 |
//it'd be nice if divide teams, forts mode and hh per map could all be checked by the team widget, or maybe disable start button |
|
1795 | 1463 |
TryDo(Count <= MaxHedgehogs, 'Too many hedgehogs for this map! (max # is ' + inttostr(MaxHedgehogs) + ')', true); |
955 | 1464 |
while (Count > 0) do |
1465 |
begin |
|
1466 |
i:= GetRandom(Count); |
|
1760 | 1467 |
FindPlace(ar[i]^.Gear, false, 0, LAND_WIDTH); |
1515 | 1468 |
if ar[i]^.Gear <> nil then |
1469 |
begin |
|
1760 | 1470 |
ar[i]^.Gear^.dX.isNegative:= hwRound(ar[i]^.Gear^.X) > LAND_WIDTH div 2; |
1776 | 1471 |
ar[i]^.Gear^.Pos:= GetRandom(19) |
1515 | 1472 |
end; |
1776 | 1473 |
ar[i]:= ar[Count - 1]; |
955 | 1474 |
dec(Count) |
1475 |
end |
|
1476 |
end |
|
4 | 1477 |
end; |
1478 |
||
371 | 1479 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 1480 |
var t: PGear; |
1481 |
begin |
|
1482 |
t:= GearsList; |
|
1483 |
rX:= sqr(rX); |
|
1484 |
rY:= sqr(rY); |
|
1433 | 1485 |
|
10 | 1486 |
while t <> nil do |
1433 | 1487 |
begin |
1488 |
if (t <> Gear) and (t^.Kind = Kind) then |
|
1489 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
|
1490 |
exit(t); |
|
1491 |
t:= t^.NextGear |
|
1492 |
end; |
|
1493 |
||
351 | 1494 |
CheckGearNear:= nil |
15 | 1495 |
end; |
1496 |
||
1433 | 1497 |
{procedure AmmoFlameWork(Ammo: PGear); |
79 | 1498 |
var t: PGear; |
1499 |
begin |
|
1500 |
t:= GearsList; |
|
1501 |
while t <> nil do |
|
1295 | 1502 |
begin |
1503 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
|
1504 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
|
1505 |
begin |
|
1506 |
inc(t^.Damage, 5); |
|
1507 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
|
1508 |
t^.dY:= - _0_25; |
|
1509 |
t^.Active:= true; |
|
1510 |
DeleteCI(t); |
|
1511 |
FollowGear:= t |
|
1512 |
end; |
|
1513 |
t:= t^.NextGear |
|
1514 |
end; |
|
1433 | 1515 |
end;} |
79 | 1516 |
|
371 | 1517 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 1518 |
var t: PGear; |
1519 |
begin |
|
1520 |
t:= GearsList; |
|
1521 |
rX:= sqr(rX); |
|
1522 |
rY:= sqr(rY); |
|
1523 |
while t <> nil do |
|
1515 | 1524 |
begin |
1525 |
if t^.Kind in Kind then |
|
1526 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
|
1527 |
exit(t); |
|
1528 |
t:= t^.NextGear |
|
1529 |
end; |
|
351 | 1530 |
CheckGearsNear:= nil |
16 | 1531 |
end; |
1532 |
||
1533 |
function CountGears(Kind: TGearType): Longword; |
|
1534 |
var t: PGear; |
|
351 | 1535 |
Result: Longword; |
16 | 1536 |
begin |
1537 |
Result:= 0; |
|
1538 |
t:= GearsList; |
|
1539 |
while t <> nil do |
|
1515 | 1540 |
begin |
1541 |
if t^.Kind = Kind then inc(Result); |
|
1542 |
t:= t^.NextGear |
|
1543 |
end; |
|
351 | 1544 |
CountGears:= Result |
16 | 1545 |
end; |
1546 |
||
15 | 1547 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1548 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1549 |
i: TAmmoType; |
15 | 1550 |
begin |
614 | 1551 |
if (cCaseFactor = 0) or |
1552 |
(CountGears(gtCase) >= 5) or |
|
1553 |
(getrandom(cCaseFactor) <> 0) then exit; |
|
1295 | 1554 |
|
498 | 1555 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
295 | 1556 |
case getrandom(2) of |
1557 |
0: begin |
|
351 | 1558 |
FollowGear^.Health:= 25; |
1559 |
FollowGear^.Pos:= posCaseHealth |
|
295 | 1560 |
end; |
1561 |
1: begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1562 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1563 |
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
|
1564 |
inc(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1565 |
t:= GetRandom(t); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1566 |
i:= Low(TAmmoType); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1567 |
dec(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1568 |
while t >= 0 do |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1569 |
begin |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1570 |
inc(i); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1571 |
dec(t, Ammoz[i].Probability) |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1572 |
end; |
1669 | 1573 |
PlaySound(sndReinforce, false, CurrentTeam^.voicepack); |
351 | 1574 |
FollowGear^.Pos:= posCaseAmmo; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1575 |
FollowGear^.State:= Longword(i) |
295 | 1576 |
end; |
1577 |
end; |
|
1760 | 1578 |
|
1579 |
FindPlace(FollowGear, true, 0, LAND_WIDTH) |
|
70 | 1580 |
end; |
1581 |
||
1515 | 1582 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 1583 |
|
1515 | 1584 |
function CountNonZeroz(x, y, r: LongInt): LongInt; |
1585 |
var i: LongInt; |
|
1586 |
Result: LongInt; |
|
1587 |
begin |
|
1588 |
Result:= 0; |
|
1753 | 1589 |
if (y and LAND_HEIGHT_MASK) = 0 then |
1760 | 1590 |
for i:= max(x - r, 0) to min(x + r, LAND_WIDTH - 4) do |
1515 | 1591 |
if Land[y, i] <> 0 then inc(Result); |
1592 |
CountNonZeroz:= Result |
|
1593 |
end; |
|
70 | 1594 |
|
495 | 1595 |
var x: LongInt; |
1515 | 1596 |
y, sy: LongInt; |
1597 |
ar: array[0..511] of TPoint; |
|
1598 |
ar2: array[0..1023] of TPoint; |
|
1599 |
cnt, cnt2: Longword; |
|
1600 |
delta: LongInt; |
|
70 | 1601 |
begin |
386 | 1602 |
delta:= 250; |
1603 |
cnt2:= 0; |
|
16 | 1604 |
repeat |
1515 | 1605 |
x:= Left + LongInt(GetRandom(Delta)); |
1606 |
repeat |
|
1607 |
inc(x, Delta); |
|
1608 |
cnt:= 0; |
|
1609 |
y:= -Gear^.Radius * 2; |
|
1753 | 1610 |
while y < LAND_HEIGHT do |
1515 | 1611 |
begin |
1612 |
repeat |
|
1613 |
inc(y, 2); |
|
1760 | 1614 |
until (y >= LAND_HEIGHT) or (CountNonZeroz(x, y, Gear^.Radius - 1) = 0); |
1515 | 1615 |
|
1616 |
sy:= y; |
|
1617 |
||
1618 |
repeat |
|
1619 |
inc(y); |
|
1760 | 1620 |
until (y >= LAND_HEIGHT) or (CountNonZeroz(x, y, Gear^.Radius - 1) <> 0); |
1515 | 1621 |
|
1622 |
if (y - sy > Gear^.Radius * 2) |
|
1753 | 1623 |
and (y < LAND_HEIGHT) |
1515 | 1624 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
1625 |
begin |
|
1626 |
ar[cnt].X:= x; |
|
1627 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
|
1628 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
1629 |
inc(cnt) |
|
1630 |
end; |
|
1631 |
||
1632 |
inc(y, 45) |
|
1633 |
end; |
|
1634 |
||
1635 |
if cnt > 0 then |
|
1636 |
with ar[GetRandom(cnt)] do |
|
1637 |
begin |
|
1638 |
ar2[cnt2].x:= x; |
|
1639 |
ar2[cnt2].y:= y; |
|
1640 |
inc(cnt2) |
|
1641 |
end |
|
1642 |
until (x + Delta > Right); |
|
1760 | 1643 |
|
1515 | 1644 |
dec(Delta, 60) |
386 | 1645 |
until (cnt2 > 0) or (Delta < 70); |
1515 | 1646 |
|
386 | 1647 |
if cnt2 > 0 then |
1515 | 1648 |
with ar2[GetRandom(cnt2)] do |
1649 |
begin |
|
1650 |
Gear^.X:= int2hwFloat(x); |
|
1651 |
Gear^.Y:= int2hwFloat(y); |
|
1652 |
{$IFDEF DEBUGFILE} |
|
1653 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
1654 |
{$ENDIF} |
|
1655 |
end |
|
1656 |
else |
|
1657 |
begin |
|
1658 |
OutError('Can''t find place for Gear', false); |
|
1659 |
DeleteGear(Gear); |
|
1660 |
Gear:= nil |
|
1661 |
end |
|
10 | 1662 |
end; |
1663 |
||
4 | 1664 |
initialization |
1665 |
||
1666 |
finalization |
|
95 | 1667 |
FreeGearsList; |
4 | 1668 |
|
1669 |
end. |