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