author | nemo |
Mon, 04 May 2009 01:36:39 +0000 | |
changeset 2028 | 260a3a2094dc |
parent 2025 | 692308790912 |
child 2031 | b6f3e56fb100 |
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; |
2017 | 57 |
Text: shortstring; |
1259 | 58 |
end; |
4 | 59 |
|
371 | 60 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
4 | 61 |
procedure ProcessGears; |
1849 | 62 |
procedure ResetUtilities; |
2017 | 63 |
procedure ApplyDamage(Gear: PGear; Damage: Longword); |
4 | 64 |
procedure SetAllToActive; |
65 |
procedure SetAllHHToActive; |
|
956 | 66 |
procedure DrawGears; |
4 | 67 |
procedure FreeGearsList; |
10 | 68 |
procedure AddMiscGears; |
4 | 69 |
procedure AssignHHCoords; |
294 | 70 |
procedure InsertGearToList(Gear: PGear); |
71 |
procedure RemoveGearFromList(Gear: PGear); |
|
4 | 72 |
|
73 |
var CurAmmoGear: PGear = nil; |
|
68 | 74 |
GearsList: PGear = nil; |
307 | 75 |
KilledHHs: Longword = 0; |
2017 | 76 |
SuddenDeathDmg: Boolean = false; |
77 |
SpeechType: Longword = 1; |
|
78 |
SpeechText: shortstring; |
|
70 | 79 |
|
4 | 80 |
implementation |
81 | 81 |
uses uWorld, uMisc, uStore, uConsole, uSound, uTeams, uRandom, uCollisions, |
1906 | 82 |
uLand, uIO, uLandGraphics, uAIMisc, uLocale, uAI, uAmmos, uTriggers, |
83 |
{$IFDEF IPHONE} |
|
84 |
gles11, |
|
85 |
{$ELSE} |
|
86 |
GL, |
|
87 |
{$ENDIF} |
|
1259 | 88 |
uStats, uVisualGears; |
789 | 89 |
|
1207
ceaab010269e
Some adjusting... it still doesn't solve problem fully
unc0rr
parents:
1200
diff
changeset
|
90 |
const MAXROPEPOINTS = 384; |
68 | 91 |
var RopePoints: record |
4 | 92 |
Count: Longword; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
93 |
HookAngle: GLfloat; |
789 | 94 |
ar: array[0..MAXROPEPOINTS] of record |
351 | 95 |
X, Y: hwFloat; |
96 |
dLen: hwFloat; |
|
4 | 97 |
b: boolean; |
98 |
end; |
|
99 |
end; |
|
100 |
||
1515 | 101 |
procedure DeleteGear(Gear: PGear); forward; |
371 | 102 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); forward; |
103 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); forward; |
|
1433 | 104 |
//procedure AmmoFlameWork(Ammo: PGear); forward; |
371 | 105 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; forward; |
15 | 106 |
procedure SpawnBoxOfSmth; forward; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
24
diff
changeset
|
107 |
procedure AfterAttack; forward; |
1515 | 108 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); forward; |
302 | 109 |
procedure HedgehogStep(Gear: PGear); forward; |
1528 | 110 |
procedure doStepHedgehogMoving(Gear: PGear); forward; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
111 |
procedure HedgehogChAngle(Gear: PGear); forward; |
506 | 112 |
procedure ShotgunShot(Gear: PGear); forward; |
1689 | 113 |
procedure PickUp(HH, Gear: PGear); forward; |
1964 | 114 |
procedure HHSetWeapon(Gear: PGear); forward; |
115 |
||
4 | 116 |
|
117 |
{$INCLUDE GSHandlers.inc} |
|
118 |
{$INCLUDE HHHandlers.inc} |
|
119 |
||
120 |
const doStepHandlers: array[TGearType] of TGearStepProcedure = ( |
|
1259 | 121 |
@doStepBomb, |
122 |
@doStepHedgehog, |
|
123 |
@doStepGrenade, |
|
124 |
@doStepHealthTag, |
|
125 |
@doStepGrave, |
|
126 |
@doStepUFO, |
|
127 |
@doStepShotgunShot, |
|
128 |
@doStepPickHammer, |
|
129 |
@doStepRope, |
|
130 |
@doStepSmokeTrace, |
|
131 |
@doStepExplosion, |
|
132 |
@doStepMine, |
|
133 |
@doStepCase, |
|
134 |
@doStepDEagleShot, |
|
135 |
@doStepDynamite, |
|
136 |
@doStepBomb, |
|
137 |
@doStepCluster, |
|
138 |
@doStepShover, |
|
139 |
@doStepFlame, |
|
140 |
@doStepFirePunch, |
|
141 |
@doStepActionTimer, |
|
142 |
@doStepActionTimer, |
|
143 |
@doStepActionTimer, |
|
144 |
@doStepParachute, |
|
145 |
@doStepAirAttack, |
|
146 |
@doStepAirBomb, |
|
147 |
@doStepBlowTorch, |
|
148 |
@doStepGirder, |
|
149 |
@doStepTeleport, |
|
150 |
@doStepSwitcher, |
|
151 |
@doStepCase, |
|
152 |
@doStepMortar, |
|
153 |
@doStepWhip, |
|
154 |
@doStepKamikaze, |
|
155 |
@doStepCake, |
|
1261 | 156 |
@doStepSeduction, |
1279 | 157 |
@doStepWatermelon, |
1263 | 158 |
@doStepCluster, |
159 |
@doStepBomb, |
|
1298 | 160 |
@doStepSmokeTrace, |
1573 | 161 |
@doStepWaterUp, |
1601 | 162 |
@doStepDrill, |
163 |
@doStepBallgun, |
|
1689 | 164 |
@doStepBomb, |
2017 | 165 |
@doStepRCPlane, |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
166 |
@doStepSpeechBubble, |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
167 |
@doStepSniperRifleShot |
1259 | 168 |
); |
4 | 169 |
|
294 | 170 |
procedure InsertGearToList(Gear: PGear); |
803 | 171 |
var tmp, ptmp: PGear; |
294 | 172 |
begin |
173 |
if GearsList = nil then |
|
1505 | 174 |
GearsList:= Gear |
175 |
else begin |
|
176 |
tmp:= GearsList; |
|
177 |
ptmp:= GearsList; |
|
178 |
while (tmp <> nil) and (tmp^.Z <= Gear^.Z) do |
|
179 |
begin |
|
180 |
ptmp:= tmp; |
|
181 |
tmp:= tmp^.NextGear |
|
182 |
end; |
|
294 | 183 |
|
1505 | 184 |
if ptmp <> nil then |
185 |
begin |
|
186 |
Gear^.NextGear:= ptmp^.NextGear; |
|
187 |
Gear^.PrevGear:= ptmp; |
|
188 |
if ptmp^.NextGear <> nil then ptmp^.NextGear^.PrevGear:= Gear; |
|
189 |
ptmp^.NextGear:= Gear |
|
190 |
end |
|
191 |
else GearsList:= Gear |
|
192 |
end |
|
294 | 193 |
end; |
194 |
||
195 |
procedure RemoveGearFromList(Gear: PGear); |
|
196 |
begin |
|
351 | 197 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
1505 | 198 |
if Gear^.PrevGear <> nil then |
199 |
Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
200 |
else |
|
201 |
GearsList:= Gear^.NextGear |
|
294 | 202 |
end; |
203 |
||
371 | 204 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
79 | 205 |
const Counter: Longword = 0; |
351 | 206 |
var Result: PGear; |
4 | 207 |
begin |
79 | 208 |
inc(Counter); |
1495 | 209 |
{$IFDEF DEBUGFILE} |
1503 | 210 |
AddFileLog('AddGear: #' + inttostr(Counter) + ' (' + inttostr(x) + ',' + inttostr(y) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 211 |
{$ENDIF} |
212 |
||
4 | 213 |
New(Result); |
214 |
FillChar(Result^, sizeof(TGear), 0); |
|
498 | 215 |
Result^.X:= int2hwFloat(X); |
216 |
Result^.Y:= int2hwFloat(Y); |
|
351 | 217 |
Result^.Kind := Kind; |
218 |
Result^.State:= State; |
|
219 |
Result^.Active:= true; |
|
220 |
Result^.dX:= dX; |
|
221 |
Result^.dY:= dY; |
|
222 |
Result^.doStep:= doStepHandlers[Kind]; |
|
511 | 223 |
Result^.CollisionIndex:= -1; |
351 | 224 |
Result^.Timer:= Timer; |
1270 | 225 |
Result^.Z:= cUsualZ; |
1503 | 226 |
Result^.uid:= Counter; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
227 |
|
4 | 228 |
if CurrentTeam <> nil then |
1505 | 229 |
begin |
230 |
Result^.Hedgehog:= CurrentHedgehog; |
|
231 |
Result^.IntersectGear:= CurrentHedgehog^.Gear |
|
232 |
end; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
789
diff
changeset
|
233 |
|
4 | 234 |
case Kind of |
915 | 235 |
gtAmmo_Bomb, |
236 |
gtClusterBomb: begin |
|
351 | 237 |
Result^.Radius:= 4; |
238 |
Result^.Elasticity:= _0_6; |
|
997 | 239 |
Result^.Friction:= _0_96; |
4 | 240 |
end; |
1261 | 241 |
gtWatermelon: begin |
242 |
Result^.Radius:= 4; |
|
243 |
Result^.Elasticity:= _0_8; |
|
244 |
Result^.Friction:= _0_995; |
|
245 |
end; |
|
4 | 246 |
gtHedgehog: begin |
351 | 247 |
Result^.Radius:= cHHRadius; |
248 |
Result^.Elasticity:= _0_35; |
|
249 |
Result^.Friction:= _0_999; |
|
250 |
Result^.Angle:= cMaxAngle div 2; |
|
251 |
Result^.Z:= cHHZ; |
|
4 | 252 |
end; |
253 |
gtAmmo_Grenade: begin |
|
351 | 254 |
Result^.Radius:= 4; |
4 | 255 |
end; |
256 |
gtHealthTag: begin |
|
351 | 257 |
Result^.Timer:= 1500; |
2017 | 258 |
Result^.Z:= 2002; |
259 |
end; |
|
260 |
gtSpeechBubble: begin |
|
261 |
Result^.Z:= 2003; |
|
4 | 262 |
end; |
263 |
gtGrave: begin |
|
351 | 264 |
Result^.Radius:= 10; |
265 |
Result^.Elasticity:= _0_6; |
|
4 | 266 |
end; |
267 |
gtUFO: begin |
|
351 | 268 |
Result^.Radius:= 5; |
269 |
Result^.Timer:= 500; |
|
270 |
Result^.Elasticity:= _0_9 |
|
4 | 271 |
end; |
272 |
gtShotgunShot: begin |
|
351 | 273 |
Result^.Timer:= 900; |
274 |
Result^.Radius:= 2 |
|
4 | 275 |
end; |
276 |
gtPickHammer: begin |
|
351 | 277 |
Result^.Radius:= 10; |
278 |
Result^.Timer:= 4000 |
|
4 | 279 |
end; |
1263 | 280 |
gtSmokeTrace, |
281 |
gtEvilTrace: begin |
|
498 | 282 |
Result^.X:= Result^.X - _16; |
283 |
Result^.Y:= Result^.Y - _16; |
|
1270 | 284 |
Result^.State:= 8; |
285 |
Result^.Z:= cSmokeZ |
|
4 | 286 |
end; |
287 |
gtRope: begin |
|
351 | 288 |
Result^.Radius:= 3; |
498 | 289 |
Result^.Friction:= _450; |
4 | 290 |
RopePoints.Count:= 0; |
291 |
end; |
|
9 | 292 |
gtExplosion: begin |
1012 | 293 |
Result^.X:= Result^.X; |
294 |
Result^.Y:= Result^.Y; |
|
9 | 295 |
end; |
10 | 296 |
gtMine: begin |
503 | 297 |
Result^.State:= Result^.State or gstMoving; |
915 | 298 |
Result^.Radius:= 2; |
351 | 299 |
Result^.Elasticity:= _0_55; |
300 |
Result^.Friction:= _0_995; |
|
301 |
Result^.Timer:= 3000; |
|
10 | 302 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
303 |
gtCase: begin |
351 | 304 |
Result^.Radius:= 16; |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
305 |
Result^.Elasticity:= _0_3 |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
306 |
end; |
37 | 307 |
gtDEagleShot: begin |
351 | 308 |
Result^.Radius:= 1; |
309 |
Result^.Health:= 50 |
|
37 | 310 |
end; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
311 |
gtSniperRifleShot: begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
312 |
Result^.Radius:= 1; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
313 |
Result^.Health:= 50 |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
314 |
end; |
39 | 315 |
gtDynamite: begin |
351 | 316 |
Result^.Radius:= 3; |
317 |
Result^.Elasticity:= _0_55; |
|
318 |
Result^.Friction:= _0_03; |
|
319 |
Result^.Timer:= 5000; |
|
39 | 320 |
end; |
910 | 321 |
gtCluster: Result^.Radius:= 2; |
878 | 322 |
gtShover: Result^.Radius:= 20; |
79 | 323 |
gtFlame: begin |
1586 | 324 |
Result^.Tag:= Counter mod 32; |
351 | 325 |
Result^.Radius:= 1; |
1586 | 326 |
Result^.Health:= 5; |
1555 | 327 |
if (Result^.dY.QWordValue = 0) and (Result^.dX.QWordValue = 0) then |
328 |
begin |
|
329 |
Result^.dY:= (getrandom - _0_8) * _0_03; |
|
330 |
Result^.dX:= (getrandom - _0_5) * _0_4 |
|
331 |
end |
|
79 | 332 |
end; |
82 | 333 |
gtFirePunch: begin |
351 | 334 |
Result^.Radius:= 15; |
335 |
Result^.Tag:= Y |
|
82 | 336 |
end; |
302 | 337 |
gtAirBomb: begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
338 |
Result^.Radius:= 5; |
302 | 339 |
end; |
340 |
gtBlowTorch: begin |
|
511 | 341 |
Result^.Radius:= cHHRadius + cBlowTorchC; |
351 | 342 |
Result^.Timer:= 7500; |
302 | 343 |
end; |
540 | 344 |
gtSwitcher: begin |
345 |
Result^.Z:= cCurrHHZ |
|
346 |
end; |
|
593 | 347 |
gtTarget: begin |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
348 |
Result^.Radius:= 16; |
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
349 |
Result^.Elasticity:= _0_3 |
593 | 350 |
end; |
924 | 351 |
gtMortar: begin |
994 | 352 |
Result^.Radius:= 4; |
924 | 353 |
Result^.Elasticity:= _0_2; |
354 |
Result^.Friction:= _0_08 |
|
355 |
end; |
|
925 | 356 |
gtWhip: Result^.Radius:= 20; |
984 | 357 |
gtKamikaze: begin |
358 |
Result^.Health:= 2048; |
|
359 |
Result^.Radius:= 20 |
|
360 |
end; |
|
1089 | 361 |
gtCake: begin |
1261 | 362 |
Result^.Health:= 2048; |
1103 | 363 |
Result^.Radius:= 7; |
1109 | 364 |
Result^.Z:= cOnHHZ; |
1089 | 365 |
if hwSign(dX) > 0 then Result^.Angle:= 1 else Result^.Angle:= 3 |
366 |
end; |
|
1263 | 367 |
gtHellishBomb: begin |
368 |
Result^.Radius:= 4; |
|
369 |
Result^.Elasticity:= _0_5; |
|
370 |
Result^.Friction:= _0_96; |
|
371 |
end; |
|
1573 | 372 |
gtDrill: begin |
373 |
Result^.Timer:= 5000; |
|
374 |
Result^.Radius:= 4; |
|
375 |
end; |
|
1601 | 376 |
gtBall: begin |
377 |
Result^.Radius:= 5; |
|
378 |
Result^.Tag:= random(8); |
|
379 |
Result^.Timer:= 5000; |
|
380 |
Result^.Elasticity:= _0_7; |
|
381 |
Result^.Friction:= _0_995; |
|
382 |
end; |
|
383 |
gtBallgun: begin |
|
384 |
Result^.Timer:= 5001; |
|
385 |
end; |
|
1689 | 386 |
gtRCPlane: begin |
387 |
Result^.Timer:= 15000; |
|
388 |
Result^.Health:= 3; |
|
389 |
Result^.Radius:= 8; |
|
390 |
end; |
|
4 | 391 |
end; |
351 | 392 |
InsertGearToList(Result); |
393 |
AddGear:= Result |
|
4 | 394 |
end; |
395 |
||
1515 | 396 |
procedure DeleteGear(Gear: PGear); |
48 | 397 |
var team: PTeam; |
1515 | 398 |
t: Longword; |
4 | 399 |
begin |
503 | 400 |
DeleteCI(Gear); |
762 | 401 |
|
402 |
if Gear^.Tex <> nil then |
|
1495 | 403 |
begin |
404 |
FreeTexture(Gear^.Tex); |
|
405 |
Gear^.Tex:= nil |
|
406 |
end; |
|
762 | 407 |
|
351 | 408 |
if Gear^.Kind = gtHedgehog then |
1495 | 409 |
if CurAmmoGear <> nil then |
410 |
begin |
|
411 |
Gear^.Message:= gm_Destroy; |
|
412 |
CurAmmoGear^.Message:= gm_Destroy; |
|
413 |
exit |
|
414 |
end |
|
415 |
else |
|
416 |
begin |
|
417 |
if not (hwRound(Gear^.Y) < cWaterLine) then |
|
418 |
begin |
|
419 |
t:= max(Gear^.Damage, Gear^.Health); |
|
420 |
Gear^.Damage:= t; |
|
421 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
422 |
uStats.HedgehogDamaged(Gear) |
|
423 |
end; |
|
1515 | 424 |
|
1495 | 425 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
426 |
if CurrentHedgehog^.Gear = Gear then |
|
427 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
|
1515 | 428 |
|
1495 | 429 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
430 |
inc(KilledHHs); |
|
1515 | 431 |
RecountTeamHealth(team) |
1495 | 432 |
end; |
433 |
{$IFDEF DEBUGFILE} |
|
1503 | 434 |
with Gear^ do AddFileLog('Delete: #' + inttostr(uid) + ' (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 435 |
{$ENDIF} |
436 |
||
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
593
diff
changeset
|
437 |
if Gear^.TriggerId <> 0 then TickTrigger(Gear^.TriggerId); |
82 | 438 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 439 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 440 |
RemoveGearFromList(Gear); |
1515 | 441 |
Dispose(Gear) |
4 | 442 |
end; |
443 |
||
444 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
445 |
var Gear: PGear; |
|
1849 | 446 |
dmg: LongInt; |
4 | 447 |
begin |
351 | 448 |
CheckNoDamage:= true; |
4 | 449 |
Gear:= GearsList; |
450 |
while Gear <> nil do |
|
867 | 451 |
begin |
452 |
if Gear^.Kind = gtHedgehog then |
|
1861 | 453 |
begin |
1849 | 454 |
if (Gear^.Damage <> 0) and |
455 |
(not Gear^.Invulnerable) then |
|
1861 | 456 |
begin |
457 |
CheckNoDamage:= false; |
|
458 |
uStats.HedgehogDamaged(Gear); |
|
459 |
dmg:= Gear^.Damage; |
|
460 |
if Gear^.Health < dmg then |
|
461 |
Gear^.Health:= 0 |
|
462 |
else |
|
463 |
dec(Gear^.Health, dmg); |
|
351 | 464 |
|
2017 | 465 |
if (PHedgehog(Gear^.Hedgehog)^.Team = CurrentTeam) and |
466 |
not SuddenDeathDmg then |
|
467 |
Gear^.State:= Gear^.State or gstLoser; |
|
468 |
||
1861 | 469 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
470 |
gtHealthTag, dmg, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
867 | 471 |
|
1861 | 472 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
473 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
1505 | 474 |
|
1861 | 475 |
end; |
476 |
Gear^.Damage:= 0; |
|
477 |
end; |
|
867 | 478 |
Gear:= Gear^.NextGear |
479 |
end; |
|
2017 | 480 |
SuddenDeathDmg:= false; |
4 | 481 |
end; |
482 |
||
1054 | 483 |
procedure HealthMachine; |
484 |
var Gear: PGear; |
|
485 |
begin |
|
486 |
Gear:= GearsList; |
|
487 |
||
488 |
while Gear <> nil do |
|
489 |
begin |
|
490 |
if Gear^.Kind = gtHedgehog then |
|
491 |
Gear^.Damage:= min(cHealthDecrease, Gear^.Health - 1); |
|
492 |
||
493 |
Gear:= Gear^.NextGear |
|
494 |
end; |
|
495 |
end; |
|
496 |
||
4 | 497 |
procedure ProcessGears; |
614 | 498 |
const delay: LongWord = 0; |
1797 | 499 |
step: (stDelay, stChDmg, stSweep, stTurnReact, |
1495 | 500 |
stAfterDelay, stChWin, stWater, stChWin2, stHealth, |
501 |
stSpawn, stNTurn) = stDelay; |
|
1054 | 502 |
|
4 | 503 |
var Gear, t: PGear; |
504 |
begin |
|
868 | 505 |
PrvInactive:= AllInactive; |
4 | 506 |
AllInactive:= true; |
1495 | 507 |
|
4 | 508 |
t:= GearsList; |
1054 | 509 |
while t <> nil do |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
510 |
begin |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
511 |
Gear:= t; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
512 |
t:= Gear^.NextGear; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
513 |
if Gear^.Active then Gear^.doStep(Gear); |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
514 |
end; |
89 | 515 |
|
4 | 516 |
if AllInactive then |
1343 | 517 |
case step of |
518 |
stDelay: begin |
|
519 |
if delay = 0 then |
|
520 |
delay:= cInactDelay |
|
521 |
else |
|
522 |
dec(delay); |
|
614 | 523 |
|
1343 | 524 |
if delay = 0 then |
525 |
inc(step) |
|
526 |
end; |
|
1797 | 527 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
528 |
stSweep: if SweepDirty then |
|
1792 | 529 |
begin |
1918 | 530 |
SetAllToActive; |
1792 | 531 |
step:= stChDmg |
1797 | 532 |
end else inc(step); |
1343 | 533 |
stTurnReact: begin |
534 |
if (not bBetweenTurns) and (not isInMultiShoot) then |
|
535 |
begin |
|
536 |
uStats.TurnReaction; |
|
537 |
inc(step) |
|
538 |
end else |
|
539 |
inc(step, 2); |
|
540 |
end; |
|
541 |
stAfterDelay: begin |
|
542 |
if delay = 0 then |
|
543 |
delay:= cInactDelay |
|
544 |
else |
|
545 |
dec(delay); |
|
815 | 546 |
|
1343 | 547 |
if delay = 0 then |
548 |
inc(step) |
|
549 |
end; |
|
550 |
stChWin: begin |
|
551 |
CheckForWin; |
|
552 |
inc(step) |
|
553 |
end; |
|
554 |
stWater: if (not bBetweenTurns) and (not isInMultiShoot) then |
|
555 |
begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
556 |
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
|
557 |
|
1343 | 558 |
if bWaterRising then |
559 |
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
|
560 |
|
1343 | 561 |
inc(step) |
562 |
end else inc(step); |
|
563 |
stChWin2: begin |
|
564 |
CheckForWin; |
|
565 |
inc(step) |
|
566 |
end; |
|
567 |
stHealth: begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
568 |
if (TotalRounds = cSuddenDTurns) and (cHealthDecrease = 0) then |
1343 | 569 |
begin |
570 |
cHealthDecrease:= 5; |
|
571 |
AddCaption(trmsg[sidSuddenDeath], $FFFFFF, capgrpGameState) |
|
572 |
end; |
|
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
573 |
|
1343 | 574 |
if (cHealthDecrease = 0) |
575 |
or bBetweenTurns |
|
576 |
or isInMultiShoot |
|
577 |
or (TotalRounds = 0) then inc(step) |
|
578 |
else begin |
|
579 |
bBetweenTurns:= true; |
|
580 |
HealthMachine; |
|
2017 | 581 |
SuddenDeathDmg:= true; |
1343 | 582 |
step:= stChDmg |
583 |
end |
|
584 |
end; |
|
585 |
stSpawn: begin |
|
586 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
587 |
inc(step) |
|
588 |
end; |
|
589 |
stNTurn: begin |
|
590 |
if isInMultiShoot then isInMultiShoot:= false |
|
591 |
else begin |
|
1849 | 592 |
ResetUtilities; |
1343 | 593 |
ParseCommand('/nextturn', true); |
594 |
SwitchHedgehog; |
|
1298 | 595 |
|
1343 | 596 |
inc(step); |
1298 | 597 |
|
1343 | 598 |
AfterSwitchHedgehog; |
599 |
bBetweenTurns:= false |
|
600 |
end; |
|
601 |
step:= Low(step) |
|
602 |
end; |
|
603 |
end; |
|
15 | 604 |
|
4 | 605 |
if TurnTimeLeft > 0 then |
870 | 606 |
if CurrentHedgehog^.Gear <> nil then |
607 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
608 |
and not isInMultiShoot then |
|
609 |
begin |
|
610 |
if (TurnTimeLeft = 5000) |
|
611 |
and (CurrentHedgehog^.Gear <> nil) |
|
1669 | 612 |
and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then |
613 |
PlaySound(sndHurry, false, CurrentTeam^.voicepack); |
|
870 | 614 |
dec(TurnTimeLeft) |
615 |
end; |
|
351 | 616 |
|
651 | 617 |
if (not CurrentTeam^.ExtDriven) and |
917 | 618 |
((GameTicks and $FFFF) = $FFFF) then |
619 |
begin |
|
620 |
SendIPCTimeInc; |
|
621 |
inc(hiTicks) // we do not recieve a message for this |
|
622 |
end; |
|
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
623 |
|
515 | 624 |
inc(GameTicks) |
4 | 625 |
end; |
626 |
||
1854 | 627 |
//Purpose, to reset all transient attributes toggled by a utility. |
628 |
//If any of these are set as permanent toggles in the frontend, that needs to be checked and skipped here. |
|
1849 | 629 |
procedure ResetUtilities; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
630 |
var i: LongInt; |
1849 | 631 |
begin |
2017 | 632 |
SpeechText:= ''; // in case it hasn't been consumed |
633 |
||
1895 | 634 |
if (GameFlags and gfLowGravity) = 0 then |
635 |
cGravity:= cMaxWindSpeed; |
|
636 |
||
2017 | 637 |
if (GameFlags and gfVampiric) = 0 then |
638 |
cVampiric:= false; |
|
639 |
||
1849 | 640 |
cDamageModifier:= _1; |
1895 | 641 |
|
642 |
if (GameFlags and gfLaserSight) = 0 then |
|
643 |
cLaserSighting:= false; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
644 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
645 |
if (GameFlags and gfArtillery) = 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
646 |
cArtillery:= false; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
647 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
648 |
// have to sweep *all* current team hedgehogs since it is theoretically possible if you have enough invulnerabilities and switch turns to make your entire team invulnerable |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
649 |
if (CurrentTeam <> nil) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
650 |
with CurrentTeam^ do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
651 |
for i:= 0 to cMaxHHIndex do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
652 |
with Hedgehogs[i] do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
653 |
begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
654 |
if (SpeechGear <> nil) then DeleteGear(SpeechGear); // remove to restore persisting beyond end of turn. Tiy says was too much of a gameplay issue |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
655 |
if (Gear <> nil) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
656 |
if (GameFlags and gfInvulnerable) = 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
657 |
Gear^.Invulnerable:= false; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
658 |
end; |
1849 | 659 |
end; |
2017 | 660 |
procedure ApplyDamage(Gear: PGear; Damage: Longword); |
661 |
var s: shortstring; |
|
662 |
vampDmg: Longword; |
|
663 |
begin |
|
664 |
inc(Gear^.Damage, Damage); |
|
665 |
if Gear^.Kind = gtHedgehog then |
|
666 |
begin |
|
667 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), Damage, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color); |
|
668 |
Damage:= min(Damage, Gear^.Health); |
|
669 |
if (Gear <> CurrentHedgehog^.Gear) and (CurrentHedgehog^.Gear <> nil) and (Damage >= 1) then |
|
670 |
begin |
|
671 |
if cVampiric then |
|
672 |
begin |
|
673 |
vampDmg:= hwRound(int2hwFloat(Damage)*_0_8); |
|
674 |
// was considering pulsing on attack, Tiy thinks it should be permanent while in play |
|
675 |
//CurrentHedgehog^.Gear^.State:= CurrentHedgehog^.Gear^.State or gstVampiric; |
|
676 |
inc(CurrentHedgehog^.Gear^.Health,vampDmg); |
|
677 |
str(vampDmg, s); |
|
678 |
s:= '+' + s; |
|
679 |
AddCaption(s, CurrentHedgehog^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
680 |
RenderHealth(CurrentHedgehog^); |
|
681 |
RecountTeamHealth(CurrentHedgehog^.Team); |
|
682 |
end; |
|
683 |
if ((GameFlags and gfKarma) <> 0) and |
|
684 |
((GameFlags and gfInvulnerable) = 0) and |
|
685 |
not CurrentHedgehog^.Gear^.Invulnerable then |
|
686 |
begin // this cannot just use Damage or it interrupts shotgun and gets you called stupid |
|
687 |
if CurrentHedgehog^.Gear^.Health < int(Damage) then |
|
688 |
begin |
|
689 |
// Add damage to trigger normal resolution |
|
690 |
CurrentHedgehog^.Gear^.Health := 0; |
|
691 |
inc(CurrentHedgehog^.Gear^.Damage); |
|
692 |
end |
|
693 |
else |
|
694 |
dec(CurrentHedgehog^.Gear^.Health, Damage); |
|
695 |
AddGear(hwRound(Gear^.X), |
|
696 |
hwRound(Gear^.Y), |
|
697 |
gtHealthTag, Damage, _0, _0, 0)^.Hedgehog:= CurrentHedgehog; |
|
698 |
RenderHealth(CurrentHedgehog^); |
|
699 |
RecountTeamHealth(CurrentHedgehog^.Team); |
|
700 |
end; |
|
701 |
end; |
|
702 |
end; |
|
703 |
end; |
|
1849 | 704 |
|
4 | 705 |
procedure SetAllToActive; |
706 |
var t: PGear; |
|
707 |
begin |
|
708 |
AllInactive:= false; |
|
709 |
t:= GearsList; |
|
351 | 710 |
while t <> nil do |
1505 | 711 |
begin |
712 |
t^.Active:= true; |
|
713 |
t:= t^.NextGear |
|
714 |
end |
|
4 | 715 |
end; |
716 |
||
717 |
procedure SetAllHHToActive; |
|
718 |
var t: PGear; |
|
719 |
begin |
|
720 |
AllInactive:= false; |
|
721 |
t:= GearsList; |
|
351 | 722 |
while t <> nil do |
1505 | 723 |
begin |
724 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
|
725 |
t:= t^.NextGear |
|
726 |
end |
|
4 | 727 |
end; |
728 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
729 |
procedure DrawHH(Gear: PGear); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
730 |
var i, t: LongInt; |
822 | 731 |
amt: TAmmoType; |
2020 | 732 |
hx, hy, cx, cy, tx, ty, sx, sy, m: LongInt; // hedgehog, crosshair, temp, sprite, direction |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
733 |
lx, ly, dx, dy, ax, ay, aAngle, dAngle: real; // laser, change |
1253 | 734 |
defaultPos, HatVisible: boolean; |
1906 | 735 |
VertexBuffer: array [0..1] of TVertex2f; |
292 | 736 |
begin |
2020 | 737 |
m:= 1; |
738 |
if (Gear^.State and gstHHHJump) <> 0 then m:= -1; |
|
868 | 739 |
if (Gear^.State and gstHHDeath) <> 0 then |
740 |
begin |
|
741 |
DrawSprite(sprHHDeath, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 26 + WorldDy, Gear^.Pos); |
|
742 |
exit |
|
743 |
end; |
|
1002 | 744 |
|
824 | 745 |
defaultPos:= true; |
1253 | 746 |
HatVisible:= false; |
847 | 747 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
748 |
sx:= hwRound(Gear^.X) + 1 + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
749 |
sy:= hwRound(Gear^.Y) - 3 + WorldDy; |
1002 | 750 |
if (Gear^.State and gstDrowning) <> 0 then |
751 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
752 |
DrawHedgehog(sx, sy, |
1002 | 753 |
hwSign(Gear^.dX), |
754 |
1, |
|
755 |
7, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
756 |
0); |
1002 | 757 |
defaultPos:= false |
758 |
end else |
|
1892 | 759 |
if ((Gear^.State and gstWinner) <> 0) and |
760 |
((CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtPickHammer)) then |
|
1011 | 761 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
762 |
DrawHedgehog(sx, sy, |
1011 | 763 |
hwSign(Gear^.dX), |
764 |
2, |
|
765 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
766 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
767 |
defaultPos:= false |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
768 |
end else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
769 |
if (Gear^.State and gstLoser) <> 0 then // for now using the jackhammer for its kind of bemused "oops" look |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
770 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
771 |
DrawHedgehog(sx, sy, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
772 |
hwSign(Gear^.dX), |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
773 |
1, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
774 |
2, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
775 |
0); |
1011 | 776 |
defaultPos:= false |
777 |
end else |
|
778 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
779 |
if (Gear^.State and gstHHDriven) <> 0 then |
966 | 780 |
begin |
2028 | 781 |
if ((Gear^.State and gstHHThinking) = 0) and |
782 |
ShowCrosshair and |
|
783 |
((Gear^.State and (gstAttacked or gstAnimation)) = 0) then |
|
784 |
begin |
|
785 |
(* These calculations are a little complex for a few reasons: |
|
786 |
1: I need to draw the laser from weapon origin to nearest land |
|
787 |
2: I need to start the beam outside the hedgie for attractiveness. |
|
788 |
3: I need to extend the beam beyond land. |
|
789 |
This routine perhaps should be pushed into uStore or somesuch instead of continuuing the increase in size of this function. |
|
790 |
*) |
|
791 |
dx:= hwSign(Gear^.dX) * m * Sin(Gear^.Angle * pi / cMaxAngle); |
|
792 |
dy:= - Cos(Gear^.Angle * pi / cMaxAngle); |
|
793 |
if cLaserSighting then |
|
794 |
begin |
|
795 |
lx:= hwRound(Gear^.X); |
|
796 |
ly:= hwRound(Gear^.Y); |
|
797 |
lx:= lx + dx * 16; |
|
798 |
ly:= ly + dy * 16; |
|
799 |
||
800 |
ax:= dx * 4; |
|
801 |
ay:= dy * 4; |
|
802 |
||
803 |
tx:= round(lx); |
|
804 |
ty:= round(ly); |
|
805 |
hx:= tx; |
|
806 |
hy:= ty; |
|
807 |
while ((ty and LAND_HEIGHT_MASK) = 0) and |
|
808 |
((tx and LAND_WIDTH_MASK) = 0) and |
|
809 |
(Land[ty, tx] = 0) do |
|
810 |
begin |
|
811 |
lx:= lx + ax; |
|
812 |
ly:= ly + ay; |
|
813 |
tx:= round(lx); |
|
814 |
ty:= round(ly) |
|
815 |
end; |
|
816 |
// reached edge of land. assume infinite beam. Extend it way out past camera |
|
817 |
if ((ty and LAND_HEIGHT_MASK) <> 0) or ((tx and LAND_WIDTH_MASK) <> 0) then |
|
818 |
begin |
|
819 |
tx:= round(lx + ax * (LAND_WIDTH div 4)); |
|
820 |
ty:= round(ly + ay * (LAND_WIDTH div 4)); |
|
821 |
end; |
|
822 |
||
823 |
//if (abs(lx-tx)>8) or (abs(ly-ty)>8) then |
|
824 |
begin |
|
825 |
glDisable(GL_TEXTURE_2D); |
|
826 |
glEnable(GL_LINE_SMOOTH); |
|
827 |
||
828 |
glColor4ub($FF, $00, $00, $C0); |
|
829 |
VertexBuffer[0].X:= hx + WorldDx; |
|
830 |
VertexBuffer[0].Y:= hy + WorldDy; |
|
831 |
VertexBuffer[1].X:= tx + WorldDx; |
|
832 |
VertexBuffer[1].Y:= ty + WorldDy; |
|
833 |
||
834 |
glEnableClientState(GL_VERTEX_ARRAY); |
|
835 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
|
836 |
glDrawArrays(GL_LINES, 0, Length(VertexBuffer)); |
|
837 |
glColor4f(1, 1, 1, 1); |
|
838 |
glEnable(GL_TEXTURE_2D); |
|
839 |
glDisable(GL_LINE_SMOOTH); |
|
840 |
end; |
|
841 |
end; |
|
842 |
// draw crosshair |
|
843 |
cx:= Round(hwRound(Gear^.X) + dx * 80); |
|
844 |
cy:= Round(hwRound(Gear^.Y) + dy * 80); |
|
845 |
DrawRotatedTex(PHedgehog(Gear^.Hedgehog)^.Team^.CrosshairTex, |
|
846 |
12, 12, cx + WorldDx, cy + WorldDy, 0, |
|
847 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle); |
|
848 |
end; |
|
1002 | 849 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
850 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
851 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
874 | 852 |
|
1002 | 853 |
if CurAmmoGear <> nil then |
854 |
begin |
|
855 |
case CurAmmoGear^.Kind of |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
856 |
gtShotgunShot: begin |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
857 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
858 |
DrawRotated(sprShotgun, hx, hy, hwSign(Gear^.dX), aangle) |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
859 |
else |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
860 |
DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
861 |
end; |
1002 | 862 |
gtDEagleShot: DrawRotated(sprDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
863 |
gtSniperRifleShot: begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
864 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
865 |
DrawRotatedF(sprSniperRifle, hx, hy, 1, hwSign(Gear^.dX), aangle) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
866 |
else |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
867 |
DrawRotatedF(sprSniperRifle, hx, hy, 0, hwSign(Gear^.dX), aangle) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
868 |
end; |
1601 | 869 |
gtBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 870 |
gtRCPlane: begin |
871 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
872 |
defaultPos:= false |
|
873 |
end; |
|
1002 | 874 |
gtRope: begin |
875 |
if Gear^.X < CurAmmoGear^.X then |
|
876 |
begin |
|
877 |
dAngle:= 0; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
878 |
i:= 1 |
1002 | 879 |
end else |
880 |
begin |
|
881 |
dAngle:= 180; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
882 |
i:= -1 |
966 | 883 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
884 |
sx:= hwRound(Gear^.X) + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
885 |
sy:= hwRound(Gear^.Y) + WorldDy; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
886 |
DrawHedgehog(sx, sy, |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
887 |
i, |
1002 | 888 |
1, |
889 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
890 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
1002 | 891 |
defaultPos:= false |
892 |
end; |
|
893 |
gtBlowTorch: begin |
|
894 |
DrawRotated(sprBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
895 |
DrawHedgehog(sx, sy, |
1002 | 896 |
hwSign(Gear^.dX), |
897 |
3, |
|
1113 | 898 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
899 |
0); |
1002 | 900 |
defaultPos:= false |
901 |
end; |
|
902 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
|
903 |
gtFirePunch: begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
904 |
DrawHedgehog(sx, sy, |
1002 | 905 |
hwSign(Gear^.dX), |
906 |
1, |
|
907 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
908 |
0); |
1002 | 909 |
defaultPos:= false |
910 |
end; |
|
1892 | 911 |
gtPickHammer: begin |
912 |
defaultPos:= false; |
|
913 |
dec(sy,20); |
|
914 |
end; |
|
1002 | 915 |
gtTeleport: defaultPos:= false; |
1010 | 916 |
gtWhip: begin |
917 |
DrawRotatedF(sprWhip, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
918 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
919 |
sy, |
1010 | 920 |
1, |
921 |
hwSign(Gear^.dX), |
|
922 |
0); |
|
923 |
defaultPos:= false |
|
924 |
end; |
|
1002 | 925 |
gtKamikaze: begin |
1286 | 926 |
if CurAmmoGear^.Pos = 0 then |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
927 |
DrawHedgehog(sx, sy, |
1286 | 928 |
hwSign(Gear^.dX), |
929 |
1, |
|
930 |
6, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
931 |
0) |
1286 | 932 |
else |
933 |
DrawRotatedF(sprKamikaze, |
|
934 |
hwRound(Gear^.X) + WorldDx, |
|
935 |
hwRound(Gear^.Y) + WorldDy, |
|
936 |
CurAmmoGear^.Pos - 1, |
|
2025
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
937 |
hwSign(Gear^.dX), |
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
938 |
aangle); |
1286 | 939 |
defaultPos:= false |
940 |
end; |
|
941 |
gtSeduction: begin |
|
942 |
if CurAmmoGear^.Pos >= 6 then |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
943 |
DrawHedgehog(sx, sy, |
1286 | 944 |
hwSign(Gear^.dX), |
945 |
2, |
|
946 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
947 |
0) |
1286 | 948 |
else |
949 |
begin |
|
950 |
DrawRotatedF(sprDress, |
|
951 |
hwRound(Gear^.X) + WorldDx, |
|
952 |
hwRound(Gear^.Y) + WorldDy, |
|
953 |
CurAmmoGear^.Pos, |
|
954 |
hwSign(Gear^.dX), |
|
955 |
0); |
|
956 |
DrawSprite(sprCensored, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 20 + WorldDy, 0) |
|
957 |
end; |
|
958 |
defaultPos:= false |
|
959 |
end; |
|
1002 | 960 |
end; |
961 |
||
962 |
case CurAmmoGear^.Kind of |
|
963 |
gtShotgunShot, |
|
964 |
gtDEagleShot, |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
965 |
gtSniperRifleShot, |
1002 | 966 |
gtShover: begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
967 |
DrawHedgehog(sx, sy, |
1002 | 968 |
hwSign(Gear^.dX), |
969 |
0, |
|
970 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
971 |
0); |
1977 | 972 |
defaultPos:= false; |
973 |
HatVisible:= true |
|
1002 | 974 |
end |
975 |
end |
|
976 |
end else |
|
876 | 977 |
|
1002 | 978 |
if ((Gear^.State and gstHHJumping) <> 0) then |
979 |
begin |
|
2020 | 980 |
DrawHedgehog(sx, sy, |
981 |
hwSign(Gear^.dX)*m, |
|
982 |
1, |
|
983 |
1, |
|
984 |
0); |
|
985 |
HatVisible:= true; |
|
2017 | 986 |
HatVisible:= true; |
1002 | 987 |
defaultPos:= false |
988 |
end else |
|
874 | 989 |
|
1913 | 990 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) and (not isCursorVisible) then |
824 | 991 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
992 |
DrawHedgehog(sx, sy, |
1002 | 993 |
hwSign(Gear^.dX), |
994 |
0, |
|
995 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
996 |
0); |
1257 | 997 |
defaultPos:= false; |
998 |
HatVisible:= true |
|
1002 | 999 |
end |
1000 |
else |
|
1001 |
||
1033 | 1002 |
if ((Gear^.State and gstAnimation) <> 0) then |
1003 |
begin |
|
1034 | 1004 |
DrawRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1005 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1006 |
sy, |
1033 | 1007 |
Gear^.Pos, |
1008 |
hwSign(Gear^.dX), |
|
1009 |
0.0); |
|
1010 |
defaultPos:= false |
|
1011 |
end |
|
1012 |
else |
|
1002 | 1013 |
if ((Gear^.State and gstAttacked) = 0) then |
1014 |
begin |
|
1015 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
1016 |
case amt of |
|
1017 |
amBazooka, |
|
1717 | 1018 |
amMortar: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
1019 |
amBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
1020 |
amDrill: DrawRotated(sprHandDrill, hx, hy, hwSign(Gear^.dX), aangle); |
|
1002 | 1021 |
amRope: DrawRotated(sprHandRope, hx, hy, hwSign(Gear^.dX), aangle); |
1022 |
amShotgun: DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
1023 |
amDEagle: DrawRotated(sprHandDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1024 |
amSniperRifle: DrawRotatedF(sprSniperRifle, hx, hy, 0, hwSign(Gear^.dX), aangle); |
1002 | 1025 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 1026 |
amRCPlane: begin |
1027 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
1028 |
defaultPos:= false |
|
1029 |
end; |
|
1939 | 1030 |
amGirder: begin |
1031 |
DrawSpriteClipped(sprGirder, |
|
1032 |
sx-256, |
|
1033 |
sy-256, |
|
1034 |
LongInt(topY)+WorldDy, |
|
1035 |
LongInt(rightX)+WorldDx, |
|
1036 |
cWaterLine+WorldDy, |
|
1037 |
LongInt(leftX)+WorldDx); |
|
1038 |
end; |
|
1002 | 1039 |
end; |
1040 |
||
1041 |
case amt of |
|
1042 |
amAirAttack, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1043 |
amMineStrike: DrawRotated(sprHandAirAttack, sx, hwRound(Gear^.Y) + WorldDy, hwSign(Gear^.dX), 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1044 |
amPickHammer: DrawHedgehog(sx, sy, |
1002 | 1045 |
hwSign(Gear^.dX), |
1046 |
1, |
|
1047 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1048 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1049 |
amBlowTorch: DrawHedgehog(sx, sy, |
1002 | 1050 |
hwSign(Gear^.dX), |
1051 |
1, |
|
1052 |
3, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1053 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1054 |
amTeleport: DrawRotatedF(sprTeleport, sx, sy, 0, hwSign(Gear^.dX), 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1055 |
amKamikaze: DrawHedgehog(sx, sy, |
1002 | 1056 |
hwSign(Gear^.dX), |
1057 |
1, |
|
1058 |
5, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1059 |
0); |
1221 | 1060 |
amWhip: DrawRotatedF(sprWhip, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1061 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1062 |
sy, |
1010 | 1063 |
0, |
1064 |
hwSign(Gear^.dX), |
|
1065 |
0); |
|
1002 | 1066 |
else |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1067 |
DrawHedgehog(sx, sy, |
822 | 1068 |
hwSign(Gear^.dX), |
1069 |
0, |
|
1002 | 1070 |
4, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1071 |
0); |
1253 | 1072 |
|
1073 |
HatVisible:= true; |
|
1074 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1075 |
if (HatTex <> nil) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1076 |
and (HatVisibility > 0) then |
1253 | 1077 |
DrawTextureF(HatTex, |
1078 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1079 |
sx, |
1253 | 1080 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1081 |
0, |
|
1082 |
hwSign(Gear^.dX), |
|
1083 |
32); |
|
1002 | 1084 |
end; |
966 | 1085 |
|
1002 | 1086 |
case amt of |
1087 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
1088 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
1089 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
1090 |
end; |
|
966 | 1091 |
|
1002 | 1092 |
defaultPos:= false |
1093 |
end |
|
1094 |
end else // not gstHHDriven |
|
1012 | 1095 |
begin |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1096 |
if (Gear^.Damage > 0) |
2028 | 1097 |
and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1098 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1099 |
DrawHedgehog(sx, sy, |
1012 | 1100 |
hwSign(Gear^.dX), |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1101 |
2, |
1012 | 1102 |
1, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1103 |
Gear^.DirAngle); |
1012 | 1104 |
defaultPos:= false |
1020 | 1105 |
end else |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1106 |
|
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1107 |
if ((Gear^.State and gstHHJumping) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1108 |
begin |
2020 | 1109 |
DrawHedgehog(sx, sy, |
1110 |
hwSign(Gear^.dX)*m, |
|
1111 |
1, |
|
1112 |
1, |
|
1113 |
0); |
|
1114 |
defaultPos:= false |
|
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1115 |
end; |
1012 | 1116 |
end; |
834 | 1117 |
|
1251 | 1118 |
with PHedgehog(Gear^.Hedgehog)^ do |
970 | 1119 |
begin |
1251 | 1120 |
if defaultPos then |
1121 |
begin |
|
1122 |
DrawRotatedF(sprHHIdle, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1123 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1124 |
sy, |
1251 | 1125 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
1126 |
hwSign(Gear^.dX), |
|
1127 |
0); |
|
1253 | 1128 |
HatVisible:= true; |
1129 |
end; |
|
1130 |
||
1131 |
if HatVisible then |
|
1251 | 1132 |
if HatVisibility < 1.0 then |
1254 | 1133 |
HatVisibility:= HatVisibility + 0.2 |
1253 | 1134 |
else |
1251 | 1135 |
else |
1136 |
if HatVisibility > 0.0 then |
|
1254 | 1137 |
HatVisibility:= HatVisibility - 0.2; |
1253 | 1138 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1139 |
if (HatTex <> nil) |
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1140 |
and (HatVisibility > 0) then |
1255 | 1141 |
if DefaultPos then |
1142 |
DrawTextureF(HatTex, |
|
1143 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1144 |
sx, |
1255 | 1145 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1146 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
1147 |
hwSign(Gear^.dX), |
|
1148 |
32) |
|
1149 |
else |
|
1150 |
DrawTextureF(HatTex, |
|
1151 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1152 |
sx, |
1255 | 1153 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1154 |
0, |
|
2020 | 1155 |
hwSign(Gear^.dX)*m, |
1255 | 1156 |
32); |
970 | 1157 |
end; |
292 | 1158 |
|
1251 | 1159 |
|
351 | 1160 |
with PHedgehog(Gear^.Hedgehog)^ do |
994 | 1161 |
begin |
1011 | 1162 |
if ((Gear^.State and not gstWinner) = 0) |
994 | 1163 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
958 | 1164 |
begin |
1660 | 1165 |
t:= hwRound(Gear^.Y) - cHHRadius - 12 + WorldDy; |
1166 |
if (cTagsMask and 1) <> 0 then |
|
1167 |
begin |
|
1168 |
dec(t, HealthTagTex^.h + 2); |
|
1169 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
1170 |
end; |
|
1171 |
if (cTagsMask and 2) <> 0 then |
|
1172 |
begin |
|
1173 |
dec(t, NameTagTex^.h + 2); |
|
1174 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
1175 |
end; |
|
1176 |
if (cTagsMask and 4) <> 0 then |
|
1177 |
begin |
|
1178 |
dec(t, Team^.NameTagTex^.h + 2); |
|
1179 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
1180 |
end |
|
958 | 1181 |
end; |
994 | 1182 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
958 | 1183 |
begin |
1184 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
|
1185 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
1186 |
GameTicks div 32 mod 16); |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
1187 |
|
958 | 1188 |
if (Gear^.State and gstDrowning) = 0 then |
1189 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
1190 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
|
2028 | 1191 |
end |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1192 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1193 |
|
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1194 |
if Gear^.Invulnerable then |
2017 | 1195 |
begin |
1196 |
DrawSprite(sprInvulnerable, sx - 24, sy - 24, 0); |
|
1197 |
end; |
|
1198 |
if cVampiric and |
|
1199 |
(CurrentHedgehog^.Gear <> nil) and |
|
1200 |
(CurrentHedgehog^.Gear = Gear) then |
|
1201 |
begin |
|
1202 |
DrawSprite(sprVampiric, sx - 24, sy - 24, 0); |
|
1203 |
end; |
|
292 | 1204 |
end; |
1205 |
||
956 | 1206 |
procedure DrawGears; |
853 | 1207 |
var Gear, HHGear: PGear; |
4 | 1208 |
i: Longword; |
371 | 1209 |
roplen: LongInt; |
4 | 1210 |
|
371 | 1211 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
1212 |
var eX, eY, dX, dY: LongInt; |
|
1213 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 1214 |
b: boolean; |
4 | 1215 |
begin |
37 | 1216 |
if (X1 = X2) and (Y1 = Y2) then |
1217 |
begin |
|
351 | 1218 |
OutError('WARNING: zero length rope line!', false); |
37 | 1219 |
exit |
1220 |
end; |
|
366 | 1221 |
eX:= 0; |
1222 |
eY:= 0; |
|
1223 |
dX:= X2 - X1; |
|
1224 |
dY:= Y2 - Y1; |
|
1225 |
||
1226 |
if (dX > 0) then sX:= 1 |
|
1227 |
else |
|
1228 |
if (dX < 0) then |
|
1229 |
begin |
|
1230 |
sX:= -1; |
|
1231 |
dX:= -dX |
|
1232 |
end else sX:= dX; |
|
1233 |
||
1234 |
if (dY > 0) then sY:= 1 |
|
1235 |
else |
|
1236 |
if (dY < 0) then |
|
4 | 1237 |
begin |
366 | 1238 |
sY:= -1; |
1239 |
dY:= -dY |
|
1240 |
end else sY:= dY; |
|
1241 |
||
1242 |
if (dX > dY) then d:= dX |
|
1243 |
else d:= dY; |
|
1244 |
||
1245 |
x:= X1; |
|
1246 |
y:= Y1; |
|
1247 |
||
1248 |
for i:= 0 to d do |
|
1249 |
begin |
|
1250 |
inc(eX, dX); |
|
1251 |
inc(eY, dY); |
|
1252 |
b:= false; |
|
1253 |
if (eX > d) then |
|
35 | 1254 |
begin |
366 | 1255 |
dec(eX, d); |
1256 |
inc(x, sX); |
|
1257 |
b:= true |
|
35 | 1258 |
end; |
366 | 1259 |
if (eY > d) then |
35 | 1260 |
begin |
366 | 1261 |
dec(eY, d); |
1262 |
inc(y, sY); |
|
1263 |
b:= true |
|
35 | 1264 |
end; |
366 | 1265 |
if b then |
1266 |
begin |
|
1267 |
inc(roplen); |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1268 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
366 | 1269 |
end |
4 | 1270 |
end |
366 | 1271 |
end; |
4 | 1272 |
|
1273 |
begin |
|
1274 |
Gear:= GearsList; |
|
1275 |
while Gear<>nil do |
|
1689 | 1276 |
begin |
1277 |
case Gear^.Kind of |
|
822 | 1278 |
gtAmmo_Bomb: DrawRotated(sprBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1689 | 1279 |
|
1696 | 1280 |
gtRCPlane: if (Gear^.Tag = -1) then |
1689 | 1281 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, -1, DxDy2Angle(Gear^.dX, Gear^.dY) + 90) |
1282 |
else |
|
1283 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy,0,DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
1284 |
||
1601 | 1285 |
gtBall: DrawRotatedf(sprBalls, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tag,0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1286 |
|
1573 | 1287 |
gtDrill: DrawRotated(sprDrill, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1288 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1289 |
gtHedgehog: DrawHH(Gear); |
1689 | 1290 |
|
822 | 1291 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1292 |
|
1505 | 1293 |
gtHealthTag: if Gear^.Tex <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tex); |
2017 | 1294 |
|
1295 |
gtSpeechBubble: if Gear^.Tex <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tex); |
|
1689 | 1296 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1297 |
gtGrave: DrawSurfSprite(hwRound(Gear^.X) + WorldDx - 16, hwRound(Gear^.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, PHedgehog(Gear^.Hedgehog)^.Team^.GraveTex); |
1689 | 1298 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1299 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
1689 | 1300 |
|
848 | 1301 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
4 | 1302 |
gtRope: begin |
35 | 1303 |
roplen:= 0; |
4 | 1304 |
if RopePoints.Count > 0 then |
1305 |
begin |
|
1306 |
i:= 0; |
|
1307 |
while i < Pred(RopePoints.Count) do |
|
1308 |
begin |
|
351 | 1309 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
1310 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 1311 |
inc(i) |
1312 |
end; |
|
351 | 1313 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
1314 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
1315 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
1316 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 1317 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
4 | 1318 |
end else |
1781 | 1319 |
if Gear^.Elasticity.QWordValue > 0 then |
35 | 1320 |
begin |
351 | 1321 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
1322 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 1323 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
35 | 1324 |
end; |
4 | 1325 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1326 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
1012 | 1327 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 32 + WorldDy, Gear^.State); |
351 | 1328 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 1329 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
1330 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 1331 |
gtCase: case Gear^.Pos of |
1794 | 1332 |
posCaseAmmo : begin |
1333 |
i:= (GameTicks shr 6) mod 64; |
|
1334 |
if i > 18 then i:= 0; |
|
1335 |
DrawSprite(sprCase, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
|
1336 |
end; |
|
1009 | 1337 |
posCaseHealth: begin |
1863 | 1338 |
i:= ((GameTicks shr 6) + 38) mod 64; |
1339 |
if i > 13 then i:= 0; |
|
1009 | 1340 |
DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
1341 |
end; |
|
1861 | 1342 |
posCaseUtility: begin |
1863 | 1343 |
i:= (GameTicks shr 6) mod 70; |
1344 |
if i > 23 then i:= 0; |
|
1909 | 1345 |
i:= i mod 12; |
1863 | 1346 |
DrawSprite(sprUtility, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
1861 | 1347 |
end; |
42 | 1348 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1349 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1); |
822 | 1350 |
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
|
1351 |
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
|
1352 |
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
|
1353 |
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
|
1354 |
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
|
1355 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 1); |
822 | 1356 |
gtAirBomb: DrawRotated(sprAirBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
853 | 1357 |
gtTeleport: begin |
1358 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1359 |
DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
1360 |
DrawRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
1361 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1362 |
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
|
1363 |
gtTarget: DrawSprite(sprTarget, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
959 | 1364 |
gtMortar: DrawRotated(sprMortar, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1108 | 1365 |
gtCake: if Gear^.Pos = 6 then |
2025
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
1366 |
DrawRotatedf(sprCakeWalk, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (GameTicks div 40) mod 6, hwSign(Gear^.dX), Gear^.DirAngle * hwSign(Gear^.dX) + 90) |
1108 | 1367 |
else |
1262 | 1368 |
DrawRotatedf(sprCakeDown, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 5 - Gear^.Pos, hwSign(Gear^.dX), 0); |
1367 | 1369 |
gtSeduction: if Gear^.Pos >= 14 then DrawSprite(sprSeduction, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
1262 | 1370 |
gtWatermelon: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, 0, Gear^.DirAngle); |
1371 |
gtMelonPiece: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 1, 0, Gear^.DirAngle); |
|
1263 | 1372 |
gtHellishBomb: DrawRotated(sprHellishBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1373 |
gtEvilTrace: if Gear^.State < 8 then DrawSprite(sprEvilTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
|
1374 |
end; |
|
351 | 1375 |
Gear:= Gear^.NextGear |
4 | 1376 |
end; |
1377 |
end; |
|
1378 |
||
1379 |
procedure FreeGearsList; |
|
1380 |
var t, tt: PGear; |
|
1381 |
begin |
|
1382 |
tt:= GearsList; |
|
1383 |
GearsList:= nil; |
|
1505 | 1384 |
while tt <> nil do |
1385 |
begin |
|
1386 |
t:= tt; |
|