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