author | unc0rr |
Sat, 05 Jul 2008 15:29:07 +0000 | |
changeset 1052 | b80ff18a45af |
parent 1049 | 741513156331 |
child 1054 | 80225c6af656 |
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 |
||
522 | 391 |
procedure AddDamageTag(X, Y, Damage: LongWord; Gear: PGear); |
392 |
begin |
|
529 | 393 |
if cAltDamage then |
394 |
AddGear(X, Y, gtSmallDamage, Damage, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
522 | 395 |
end; |
396 |
||
4 | 397 |
procedure ProcessGears; |
614 | 398 |
const delay: LongWord = 0; |
869 | 399 |
step: (stDelay, stChDmg, stTurnReact, |
400 |
stAfterDelay, stChWin, stSpawn, stNTurn) = stDelay; |
|
4 | 401 |
var Gear, t: PGear; |
402 |
begin |
|
868 | 403 |
PrvInactive:= AllInactive; |
4 | 404 |
AllInactive:= true; |
405 |
t:= GearsList; |
|
406 |
while t<>nil do |
|
407 |
begin |
|
408 |
Gear:= t; |
|
351 | 409 |
t:= Gear^.NextGear; |
410 |
if Gear^.Active then Gear^.doStep(Gear); |
|
4 | 411 |
end; |
89 | 412 |
|
4 | 413 |
if AllInactive then |
15 | 414 |
case step of |
415 |
stDelay: begin |
|
416 |
if delay = 0 then |
|
417 |
delay:= cInactDelay |
|
614 | 418 |
else |
419 |
dec(delay); |
|
420 |
||
421 |
if delay = 0 then |
|
422 |
inc(step) |
|
15 | 423 |
end; |
424 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
|
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
809
diff
changeset
|
425 |
stTurnReact: begin |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
426 |
if not isInMultiShoot then |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
427 |
begin |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
428 |
uStats.TurnReaction; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
429 |
inc(step) |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
430 |
end else |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
431 |
inc(step, 2); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
809
diff
changeset
|
432 |
end; |
815 | 433 |
stAfterDelay: begin |
434 |
if delay = 0 then |
|
435 |
delay:= cInactDelay |
|
436 |
else |
|
437 |
dec(delay); |
|
438 |
||
439 |
if delay = 0 then |
|
440 |
inc(step) |
|
441 |
end; |
|
869 | 442 |
stChWin: if not CheckForWin then inc(step) else step:= stDelay; |
15 | 443 |
stSpawn: begin |
444 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
445 |
inc(step) |
|
446 |
end; |
|
447 |
stNTurn: begin |
|
448 |
if isInMultiShoot then isInMultiShoot:= false |
|
307 | 449 |
else begin |
351 | 450 |
ParseCommand('/nextturn', true); |
307 | 451 |
end; |
15 | 452 |
step:= Low(step) |
453 |
end; |
|
454 |
end; |
|
455 |
||
4 | 456 |
if TurnTimeLeft > 0 then |
870 | 457 |
if CurrentHedgehog^.Gear <> nil then |
458 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
459 |
and not isInMultiShoot then |
|
460 |
begin |
|
461 |
if (TurnTimeLeft = 5000) |
|
462 |
and (CurrentHedgehog^.Gear <> nil) |
|
463 |
and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then PlaySound(sndHurry, false); |
|
464 |
dec(TurnTimeLeft) |
|
465 |
end; |
|
351 | 466 |
|
651 | 467 |
if (not CurrentTeam^.ExtDriven) and |
917 | 468 |
((GameTicks and $FFFF) = $FFFF) then |
469 |
begin |
|
470 |
SendIPCTimeInc; |
|
471 |
inc(hiTicks) // we do not recieve a message for this |
|
472 |
end; |
|
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
473 |
|
515 | 474 |
inc(GameTicks) |
4 | 475 |
end; |
476 |
||
477 |
procedure SetAllToActive; |
|
478 |
var t: PGear; |
|
479 |
begin |
|
480 |
AllInactive:= false; |
|
481 |
t:= GearsList; |
|
351 | 482 |
while t <> nil do |
4 | 483 |
begin |
351 | 484 |
t^.Active:= true; |
485 |
t:= t^.NextGear |
|
4 | 486 |
end |
487 |
end; |
|
488 |
||
489 |
procedure SetAllHHToActive; |
|
490 |
var t: PGear; |
|
491 |
begin |
|
492 |
AllInactive:= false; |
|
493 |
t:= GearsList; |
|
351 | 494 |
while t <> nil do |
4 | 495 |
begin |
351 | 496 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
497 |
t:= t^.NextGear |
|
4 | 498 |
end |
499 |
end; |
|
500 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
501 |
procedure DrawHH(Gear: PGear); |
371 | 502 |
var t: LongInt; |
822 | 503 |
amt: TAmmoType; |
862 | 504 |
hx, hy, m: LongInt; |
505 |
aAngle, dAngle: real; |
|
824 | 506 |
defaultPos: boolean; |
292 | 507 |
begin |
868 | 508 |
if (Gear^.State and gstHHDeath) <> 0 then |
509 |
begin |
|
510 |
DrawSprite(sprHHDeath, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 26 + WorldDy, Gear^.Pos); |
|
511 |
exit |
|
512 |
end; |
|
1002 | 513 |
|
824 | 514 |
defaultPos:= true; |
847 | 515 |
|
1002 | 516 |
if (Gear^.State and gstDrowning) <> 0 then |
517 |
begin |
|
518 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
519 |
hwSign(Gear^.dX), |
|
520 |
1, |
|
521 |
7, |
|
522 |
0); |
|
523 |
defaultPos:= false |
|
524 |
end else |
|
525 |
||
1011 | 526 |
if (Gear^.State and gstWinner) <> 0 then |
527 |
begin |
|
528 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
529 |
hwSign(Gear^.dX), |
|
530 |
2, |
|
531 |
0, |
|
532 |
0); |
|
533 |
defaultPos:= false |
|
534 |
end else |
|
535 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
536 |
if (Gear^.State and gstHHDriven) <> 0 then |
966 | 537 |
begin |
1002 | 538 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
539 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
540 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
874 | 541 |
|
1002 | 542 |
if CurAmmoGear <> nil then |
543 |
begin |
|
544 |
case CurAmmoGear^.Kind of |
|
545 |
gtShotgunShot: if (CurAmmoGear^.State and gstAnimation <> 0) then |
|
546 |
DrawRotated(sprShotgun, hx, hy, hwSign(Gear^.dX), aangle) |
|
547 |
else |
|
548 |
DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
549 |
gtDEagleShot: DrawRotated(sprDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
|
550 |
gtRope: begin |
|
551 |
if Gear^.X < CurAmmoGear^.X then |
|
552 |
begin |
|
553 |
dAngle:= 0; |
|
554 |
m:= 1 |
|
555 |
end else |
|
556 |
begin |
|
557 |
dAngle:= 180; |
|
558 |
m:= -1 |
|
966 | 559 |
end; |
1002 | 560 |
DrawHedgehog(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
561 |
m, |
|
562 |
1, |
|
563 |
0, |
|
564 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
|
565 |
defaultPos:= false |
|
566 |
end; |
|
567 |
gtBlowTorch: begin |
|
568 |
DrawRotated(sprBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
569 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
570 |
hwSign(Gear^.dX), |
|
571 |
1, |
|
572 |
3, |
|
573 |
0); |
|
574 |
defaultPos:= false |
|
575 |
end; |
|
576 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
|
577 |
gtFirePunch: begin |
|
578 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
579 |
hwSign(Gear^.dX), |
|
580 |
1, |
|
581 |
4, |
|
582 |
0); |
|
583 |
defaultPos:= false |
|
584 |
end; |
|
585 |
gtPickHammer, |
|
586 |
gtTeleport: defaultPos:= false; |
|
1010 | 587 |
gtWhip: begin |
588 |
DrawRotatedF(sprWhip, |
|
589 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
590 |
hwRound(Gear^.Y) - 3 + WorldDy, |
|
591 |
1, |
|
592 |
hwSign(Gear^.dX), |
|
593 |
0); |
|
594 |
defaultPos:= false |
|
595 |
end; |
|
1002 | 596 |
gtKamikaze: begin |
597 |
if CurAmmoGear^.Pos = 0 then |
|
598 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
599 |
hwSign(Gear^.dX), |
|
600 |
1, |
|
601 |
6, |
|
602 |
0) |
|
603 |
else |
|
604 |
DrawRotatedF(sprKamikaze, |
|
605 |
hwRound(Gear^.X) + WorldDx, |
|
606 |
hwRound(Gear^.Y) + WorldDy, |
|
607 |
CurAmmoGear^.Pos - 1, |
|
608 |
1, |
|
609 |
DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
610 |
||
611 |
defaultPos:= false |
|
612 |
end; |
|
613 |
end; |
|
614 |
||
615 |
case CurAmmoGear^.Kind of |
|
616 |
gtShotgunShot, |
|
617 |
gtDEagleShot, |
|
618 |
gtShover: begin |
|
619 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
620 |
hwSign(Gear^.dX), |
|
621 |
0, |
|
622 |
4, |
|
623 |
0); |
|
624 |
defaultPos:= false |
|
625 |
end |
|
626 |
end |
|
627 |
end else |
|
876 | 628 |
|
1002 | 629 |
if ((Gear^.State and gstHHJumping) <> 0) then |
630 |
begin |
|
631 |
if ((Gear^.State and gstHHHJump) <> 0) then |
|
632 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
633 |
- hwSign(Gear^.dX), |
|
634 |
1, |
|
635 |
1, |
|
636 |
0) |
|
637 |
else |
|
638 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
639 |
hwSign(Gear^.dX), |
|
640 |
1, |
|
641 |
1, |
|
642 |
0); |
|
643 |
defaultPos:= false |
|
644 |
end else |
|
874 | 645 |
|
1002 | 646 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) then |
824 | 647 |
begin |
1002 | 648 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
649 |
hwSign(Gear^.dX), |
|
650 |
0, |
|
651 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
652 |
0); |
|
824 | 653 |
defaultPos:= false |
1002 | 654 |
end |
655 |
else |
|
656 |
||
1033 | 657 |
if ((Gear^.State and gstAnimation) <> 0) then |
658 |
begin |
|
1034 | 659 |
DrawRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
1033 | 660 |
hwRound(Gear^.X) + 1 + WorldDx, |
661 |
hwRound(Gear^.Y) - 3 + WorldDy, |
|
662 |
Gear^.Pos, |
|
663 |
hwSign(Gear^.dX), |
|
664 |
0.0); |
|
665 |
defaultPos:= false |
|
666 |
end |
|
667 |
else |
|
1002 | 668 |
if ((Gear^.State and gstAttacked) = 0) then |
669 |
begin |
|
670 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
671 |
case amt of |
|
672 |
amBazooka, |
|
673 |
amMortar: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
|
674 |
amRope: DrawRotated(sprHandRope, hx, hy, hwSign(Gear^.dX), aangle); |
|
675 |
amShotgun: DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
676 |
amDEagle: DrawRotated(sprHandDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
|
677 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
678 |
end; |
|
679 |
||
680 |
case amt of |
|
681 |
amAirAttack, |
|
682 |
amMineStrike: DrawRotated(sprHandAirAttack, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) + WorldDy, hwSign(Gear^.dX), 0); |
|
683 |
amPickHammer: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
684 |
hwSign(Gear^.dX), |
|
685 |
1, |
|
686 |
2, |
|
687 |
0); |
|
688 |
amBlowTorch: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
689 |
hwSign(Gear^.dX), |
|
690 |
1, |
|
691 |
3, |
|
692 |
0); |
|
693 |
amTeleport: DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, 0, hwSign(Gear^.dX), 0); |
|
694 |
amKamikaze: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
695 |
hwSign(Gear^.dX), |
|
696 |
1, |
|
697 |
5, |
|
698 |
0); |
|
1010 | 699 |
amWhip: begin |
700 |
DrawRotatedF(sprWhip, |
|
701 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
702 |
hwRound(Gear^.Y) - 3 + WorldDy, |
|
703 |
0, |
|
704 |
hwSign(Gear^.dX), |
|
705 |
0); |
|
706 |
defaultPos:= false |
|
707 |
end; |
|
1002 | 708 |
else |
822 | 709 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
710 |
hwSign(Gear^.dX), |
|
711 |
0, |
|
1002 | 712 |
4, |
822 | 713 |
0); |
1002 | 714 |
end; |
966 | 715 |
|
1002 | 716 |
case amt of |
717 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
718 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
719 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
720 |
end; |
|
966 | 721 |
|
1002 | 722 |
defaultPos:= false |
723 |
end |
|
724 |
end else // not gstHHDriven |
|
1012 | 725 |
begin |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
726 |
if (Gear^.Damage > 0) |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
727 |
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
|
728 |
begin |
1012 | 729 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
730 |
hwSign(Gear^.dX), |
|
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
731 |
2, |
1012 | 732 |
1, |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
733 |
Gear^.DirAngle); |
1012 | 734 |
defaultPos:= false |
1020 | 735 |
end else |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
736 |
|
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
737 |
if ((Gear^.State and gstHHJumping) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
738 |
begin |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
739 |
if ((Gear^.State and gstHHHJump) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
740 |
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
|
741 |
- hwSign(Gear^.dX), |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
742 |
1, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
743 |
1, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
744 |
0) |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
745 |
else |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
746 |
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
|
747 |
hwSign(Gear^.dX), |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
748 |
1, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
749 |
1, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
750 |
0); |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
751 |
defaultPos:= false |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
752 |
end; |
1012 | 753 |
end; |
834 | 754 |
|
824 | 755 |
|
845 | 756 |
if defaultPos then |
970 | 757 |
begin |
954 | 758 |
DrawRotatedF(sprHHIdle, |
759 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
760 |
hwRound(Gear^.Y) - 3 + WorldDy, |
|
957 | 761 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
822 | 762 |
hwSign(Gear^.dX), |
763 |
0); |
|
970 | 764 |
DrawRotatedF(sprHat, |
765 |
hwRound(Gear^.X) + 1 + WorldDx, |
|
766 |
hwRound(Gear^.Y) - 8 + WorldDy, |
|
767 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
768 |
hwSign(Gear^.dX), |
|
769 |
0); |
|
770 |
end; |
|
292 | 771 |
|
351 | 772 |
with PHedgehog(Gear^.Hedgehog)^ do |
994 | 773 |
begin |
1011 | 774 |
if ((Gear^.State and not gstWinner) = 0) |
994 | 775 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
958 | 776 |
begin |
976 | 777 |
t:= hwRound(Gear^.Y) - cHHRadius - 12 + WorldDy; |
958 | 778 |
if (cTagsMask and 1) <> 0 then |
779 |
begin |
|
780 |
dec(t, HealthTagTex^.h + 2); |
|
781 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
782 |
end; |
|
783 |
if (cTagsMask and 2) <> 0 then |
|
784 |
begin |
|
785 |
dec(t, NameTagTex^.h + 2); |
|
786 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
787 |
end; |
|
788 |
if (cTagsMask and 4) <> 0 then |
|
789 |
begin |
|
790 |
dec(t, Team^.NameTagTex^.h + 2); |
|
791 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
792 |
end |
|
994 | 793 |
end; |
794 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
|
958 | 795 |
begin |
796 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
|
797 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
798 |
GameTicks div 32 mod 16); |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
799 |
|
958 | 800 |
if (Gear^.State and gstDrowning) = 0 then |
801 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
802 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
|
803 |
else |
|
1033 | 804 |
if ShowCrosshair and ((Gear^.State and (gstAttacked or gstAnimation)) = 0) then |
958 | 805 |
begin |
806 |
if ((Gear^.State and gstHHHJump) <> 0) then m:= -1 else m:= 1; |
|
807 |
DrawRotatedTex(Team^.CrosshairTex, |
|
808 |
12, 12, |
|
809 |
Round(hwRound(Gear^.X) + hwSign(Gear^.dX) * m * Sin(Gear^.Angle*pi/cMaxAngle) * 60) + WorldDx, |
|
810 |
Round(hwRound(Gear^.Y) - Cos(Gear^.Angle*pi/cMaxAngle) * 60) + WorldDy, 0, |
|
811 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle) |
|
812 |
end |
|
994 | 813 |
end |
814 |
end |
|
292 | 815 |
end; |
816 |
||
956 | 817 |
procedure DrawGears; |
853 | 818 |
var Gear, HHGear: PGear; |
4 | 819 |
i: Longword; |
371 | 820 |
roplen: LongInt; |
4 | 821 |
|
371 | 822 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
823 |
var eX, eY, dX, dY: LongInt; |
|
824 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 825 |
b: boolean; |
4 | 826 |
begin |
37 | 827 |
if (X1 = X2) and (Y1 = Y2) then |
828 |
begin |
|
351 | 829 |
OutError('WARNING: zero length rope line!', false); |
37 | 830 |
exit |
831 |
end; |
|
366 | 832 |
eX:= 0; |
833 |
eY:= 0; |
|
834 |
dX:= X2 - X1; |
|
835 |
dY:= Y2 - Y1; |
|
836 |
||
837 |
if (dX > 0) then sX:= 1 |
|
838 |
else |
|
839 |
if (dX < 0) then |
|
840 |
begin |
|
841 |
sX:= -1; |
|
842 |
dX:= -dX |
|
843 |
end else sX:= dX; |
|
844 |
||
845 |
if (dY > 0) then sY:= 1 |
|
846 |
else |
|
847 |
if (dY < 0) then |
|
4 | 848 |
begin |
366 | 849 |
sY:= -1; |
850 |
dY:= -dY |
|
851 |
end else sY:= dY; |
|
852 |
||
853 |
if (dX > dY) then d:= dX |
|
854 |
else d:= dY; |
|
855 |
||
856 |
x:= X1; |
|
857 |
y:= Y1; |
|
858 |
||
859 |
for i:= 0 to d do |
|
860 |
begin |
|
861 |
inc(eX, dX); |
|
862 |
inc(eY, dY); |
|
863 |
b:= false; |
|
864 |
if (eX > d) then |
|
35 | 865 |
begin |
366 | 866 |
dec(eX, d); |
867 |
inc(x, sX); |
|
868 |
b:= true |
|
35 | 869 |
end; |
366 | 870 |
if (eY > d) then |
35 | 871 |
begin |
366 | 872 |
dec(eY, d); |
873 |
inc(y, sY); |
|
874 |
b:= true |
|
35 | 875 |
end; |
366 | 876 |
if b then |
877 |
begin |
|
878 |
inc(roplen); |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
879 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
366 | 880 |
end |
4 | 881 |
end |
366 | 882 |
end; |
4 | 883 |
|
884 |
begin |
|
885 |
Gear:= GearsList; |
|
886 |
while Gear<>nil do |
|
887 |
begin |
|
351 | 888 |
case Gear^.Kind of |
822 | 889 |
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
|
890 |
gtHedgehog: DrawHH(Gear); |
822 | 891 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
522 | 892 |
gtHealthTag, |
762 | 893 |
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
|
894 |
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
|
895 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
848 | 896 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
4 | 897 |
gtRope: begin |
35 | 898 |
roplen:= 0; |
4 | 899 |
if RopePoints.Count > 0 then |
900 |
begin |
|
901 |
i:= 0; |
|
902 |
while i < Pred(RopePoints.Count) do |
|
903 |
begin |
|
351 | 904 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
905 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 906 |
inc(i) |
907 |
end; |
|
351 | 908 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
909 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
910 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
911 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 912 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
4 | 913 |
end else |
35 | 914 |
begin |
351 | 915 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
916 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 917 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
35 | 918 |
end; |
4 | 919 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
920 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
1012 | 921 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 32 + WorldDy, Gear^.State); |
351 | 922 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 923 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
924 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 925 |
gtCase: case Gear^.Pos of |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
926 |
posCaseAmmo : DrawSprite(sprCase, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
1009 | 927 |
posCaseHealth: begin |
928 |
i:= (GameTicks shr 6) mod 64; |
|
929 |
if i > 12 then i:= 0; |
|
930 |
DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
|
931 |
end; |
|
42 | 932 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
933 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1); |
822 | 934 |
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
|
935 |
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
|
936 |
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
|
937 |
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
|
938 |
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
|
939 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 1); |
822 | 940 |
gtAirBomb: DrawRotated(sprAirBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
853 | 941 |
gtTeleport: begin |
942 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
943 |
DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
944 |
DrawRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
945 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
946 |
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
|
947 |
gtTarget: DrawSprite(sprTarget, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
959 | 948 |
gtMortar: DrawRotated(sprMortar, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
4 | 949 |
end; |
351 | 950 |
Gear:= Gear^.NextGear |
4 | 951 |
end; |
952 |
end; |
|
953 |
||
954 |
procedure FreeGearsList; |
|
955 |
var t, tt: PGear; |
|
956 |
begin |
|
957 |
tt:= GearsList; |
|
958 |
GearsList:= nil; |
|
959 |
while tt<>nil do |
|
960 |
begin |
|
961 |
t:= tt; |
|
351 | 962 |
tt:= tt^.NextGear; |
4 | 963 |
Dispose(t) |
964 |
end; |
|
965 |
end; |
|
966 |
||
10 | 967 |
procedure AddMiscGears; |
371 | 968 |
var i: LongInt; |
4 | 969 |
begin |
498 | 970 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
22 | 971 |
if (GameFlags and gfForts) = 0 then |
622 | 972 |
for i:= 0 to Pred(cLandAdditions) do |
498 | 973 |
FindPlace(AddGear(0, 0, gtMine, 0, _0, _0, 0), false, 0, 2048); |
4 | 974 |
end; |
975 |
||
371 | 976 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 977 |
var Gear: PGear; |
506 | 978 |
dmg, dmgRadius: LongInt; |
4 | 979 |
begin |
980 |
TargetPoint.X:= NoPointX; |
|
981 |
{$IFDEF DEBUGFILE}if Radius > 3 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
|
1049 | 982 |
if (Radius > 10) then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
355 | 983 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion, false); |
506 | 984 |
if (Mask and EXPLAllDamageInRadius)=0 then dmgRadius:= Radius shl 1 |
985 |
else dmgRadius:= Radius; |
|
4 | 986 |
Gear:= GearsList; |
987 |
while Gear <> nil do |
|
988 |
begin |
|
506 | 989 |
dmg:= dmgRadius - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
538 | 990 |
if (dmg > 1) and |
522 | 991 |
((Gear^.State and gstNoDamage) = 0) then |
4 | 992 |
begin |
355 | 993 |
dmg:= dmg div 2; |
351 | 994 |
case Gear^.Kind of |
10 | 995 |
gtHedgehog, |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
996 |
gtMine, |
79 | 997 |
gtCase, |
593 | 998 |
gtTarget, |
79 | 999 |
gtFlame: begin |
355 | 1000 |
{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
522 | 1001 |
if (Mask and EXPLNoDamage) = 0 then |
1002 |
begin |
|
1003 |
inc(Gear^.Damage, dmg); |
|
1004 |
if Gear^.Kind = gtHedgehog then |
|
1005 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, Gear) |
|
1006 |
end; |
|
351 | 1007 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
42 | 1008 |
begin |
506 | 1009 |
DeleteCI(Gear); |
498 | 1010 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
1011 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
503 | 1012 |
Gear^.State:= Gear^.State or gstMoving; |
351 | 1013 |
Gear^.Active:= true; |
42 | 1014 |
FollowGear:= Gear |
1015 |
end; |
|
4 | 1016 |
end; |
51 | 1017 |
gtGrave: begin |
351 | 1018 |
Gear^.dY:= - _0_004 * dmg; |
1019 |
Gear^.Active:= true; |
|
51 | 1020 |
end; |
4 | 1021 |
end; |
1022 |
end; |
|
351 | 1023 |
Gear:= Gear^.NextGear |
80 | 1024 |
end; |
621 | 1025 |
if (Mask and EXPLDontDraw) = 0 then |
1026 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(X, Y, Radius); |
|
498 | 1027 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 1028 |
end; |
1029 |
||
506 | 1030 |
procedure ShotgunShot(Gear: PGear); |
1031 |
var t: PGear; |
|
955 | 1032 |
dmg: LongInt; |
506 | 1033 |
begin |
509 | 1034 |
Gear^.Radius:= cShotgunRadius; |
506 | 1035 |
t:= GearsList; |
1036 |
while t <> nil do |
|
1037 |
begin |
|
1038 |
dmg:= min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25); |
|
538 | 1039 |
if dmg > 0 then |
506 | 1040 |
case t^.Kind of |
1041 |
gtHedgehog, |
|
1042 |
gtMine, |
|
593 | 1043 |
gtCase, |
1044 |
gtTarget: begin |
|
506 | 1045 |
inc(t^.Damage, dmg); |
867 | 1046 |
|
522 | 1047 |
if t^.Kind = gtHedgehog then |
531 | 1048 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, t); |
867 | 1049 |
|
506 | 1050 |
DeleteCI(t); |
856 | 1051 |
t^.dX:= t^.dX + Gear^.dX * dmg * _0_01 + SignAs(cHHKick, Gear^.dX); |
506 | 1052 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
1053 |
t^.State:= t^.State or gstMoving; |
|
1054 |
t^.Active:= true; |
|
1055 |
FollowGear:= t |
|
1056 |
end; |
|
1057 |
gtGrave: begin |
|
1058 |
t^.dY:= - _0_1; |
|
1059 |
t^.Active:= true |
|
1060 |
end; |
|
1061 |
end; |
|
1062 |
t:= t^.NextGear |
|
1063 |
end; |
|
621 | 1064 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 1065 |
end; |
1066 |
||
371 | 1067 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 1068 |
var t: PGearArray; |
371 | 1069 |
i: LongInt; |
38 | 1070 |
begin |
53 | 1071 |
t:= CheckGearsCollision(Ammo); |
351 | 1072 |
i:= t^.Count; |
53 | 1073 |
while i > 0 do |
981 | 1074 |
begin |
1075 |
dec(i); |
|
1076 |
if (t^.ar[i]^.State and gstNoDamage) = 0 then |
|
1077 |
case t^.ar[i]^.Kind of |
|
1078 |
gtHedgehog, |
|
1079 |
gtMine, |
|
1080 |
gtTarget, |
|
1081 |
gtCase: begin |
|
1082 |
inc(t^.ar[i]^.Damage, Damage); |
|
1083 |
||
1084 |
if t^.ar[i]^.Kind = gtHedgehog then |
|
1085 |
AddDamageTag(hwRound(t^.ar[i]^.X), hwRound(t^.ar[i]^.Y), Damage, t^.ar[i]); |
|
867 | 1086 |
|
981 | 1087 |
DeleteCI(t^.ar[i]); |
1088 |
t^.ar[i]^.dX:= Ammo^.dX * Power * _0_01; |
|
1089 |
t^.ar[i]^.dY:= Ammo^.dY * Power * _0_01; |
|
1090 |
t^.ar[i]^.Active:= true; |
|
1091 |
t^.ar[i]^.State:= t^.ar[i]^.State or gstMoving; |
|
867 | 1092 |
|
982 | 1093 |
if TestCollisionXwithGear(t^.ar[i], hwSign(t^.ar[i]^.dX)) then |
981 | 1094 |
begin |
1095 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -3, hwSign(t^.ar[i]^.dX)) |
|
1096 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1097 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -2, hwSign(t^.ar[i]^.dX)) |
|
1098 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1099 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -1, hwSign(t^.ar[i]^.dX)) |
|
1100 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1101 |
end; |
|
982 | 1102 |
|
981 | 1103 |
FollowGear:= t^.ar[i] |
1104 |
end; |
|
1105 |
end |
|
1106 |
end; |
|
126 | 1107 |
SetAllToActive |
38 | 1108 |
end; |
1109 |
||
4 | 1110 |
procedure AssignHHCoords; |
955 | 1111 |
var i, t, p, j: LongInt; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1112 |
ar: array[0..Pred(cMaxHHs)] of PGear; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1113 |
Count: Longword; |
4 | 1114 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1115 |
if (GameFlags and gfForts) <> 0 then |
955 | 1116 |
begin |
1117 |
t:= 0; |
|
1118 |
for p:= 0 to 1 do |
|
1119 |
begin |
|
1120 |
with ClansArray[p]^ do |
|
1121 |
for j:= 0 to Pred(TeamsNumber) do |
|
1122 |
with Teams[j]^ do |
|
1123 |
for i:= 0 to cMaxHHIndex do |
|
1124 |
with Hedgehogs[i] do |
|
958 | 1125 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
1126 |
begin |
|
1127 |
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
|
1128 |
Gear^.Pos:= GetRandom(19); |
8dcf263c9e8f
In forts mode, hedgehogs on the left look at the right, and vice-versa
unc0rr
parents:
997
diff
changeset
|
1129 |
Gear^.dX.isNegative:= p = 1; |
958 | 1130 |
end; |
955 | 1131 |
inc(t, 1024) |
1132 |
end |
|
1133 |
end else // mix hedgehogs |
|
1134 |
begin |
|
1135 |
Count:= 0; |
|
1136 |
for p:= 0 to Pred(TeamsCount) do |
|
1137 |
with TeamsArray[p]^ do |
|
1138 |
begin |
|
1139 |
for i:= 0 to cMaxHHIndex do |
|
1140 |
with Hedgehogs[i] do |
|
1141 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
|
1142 |
begin |
|
1143 |
ar[Count]:= Gear; |
|
1144 |
inc(Count) |
|
1145 |
end; |
|
1146 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1147 |
|
955 | 1148 |
while (Count > 0) do |
1149 |
begin |
|
1150 |
i:= GetRandom(Count); |
|
1151 |
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
|
1152 |
ar[i]^.dX.isNegative:= ar[i]^.X > _1024; |
959 | 1153 |
ar[i]^.Pos:= GetRandom(19); |
955 | 1154 |
ar[i]:= ar[Count - 1]; |
1155 |
dec(Count) |
|
1156 |
end |
|
1157 |
end |
|
4 | 1158 |
end; |
1159 |
||
371 | 1160 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 1161 |
var t: PGear; |
1162 |
begin |
|
1163 |
t:= GearsList; |
|
1164 |
rX:= sqr(rX); |
|
1165 |
rY:= sqr(rY); |
|
1166 |
while t <> nil do |
|
1167 |
begin |
|
351 | 1168 |
if (t <> Gear) and (t^.Kind = Kind) then |
498 | 1169 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
351 | 1170 |
exit(t); |
1171 |
t:= t^.NextGear |
|
10 | 1172 |
end; |
351 | 1173 |
CheckGearNear:= nil |
15 | 1174 |
end; |
1175 |
||
79 | 1176 |
procedure AmmoFlameWork(Ammo: PGear); |
1177 |
var t: PGear; |
|
1178 |
begin |
|
1179 |
t:= GearsList; |
|
1180 |
while t <> nil do |
|
1181 |
begin |
|
351 | 1182 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
498 | 1183 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
79 | 1184 |
begin |
351 | 1185 |
inc(t^.Damage, 5); |
1186 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
|
1187 |
t^.dY:= - _0_25; |
|
1188 |
t^.Active:= true; |
|
79 | 1189 |
DeleteCI(t); |
1190 |
FollowGear:= t |
|
1191 |
end; |
|
351 | 1192 |
t:= t^.NextGear |
79 | 1193 |
end; |
1194 |
end; |
|
1195 |
||
371 | 1196 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 1197 |
var t: PGear; |
1198 |
begin |
|
1199 |
t:= GearsList; |
|
1200 |
rX:= sqr(rX); |
|
1201 |
rY:= sqr(rY); |
|
1202 |
while t <> nil do |
|
1203 |
begin |
|
351 | 1204 |
if t^.Kind in Kind then |
498 | 1205 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
351 | 1206 |
exit(t); |
1207 |
t:= t^.NextGear |
|
16 | 1208 |
end; |
351 | 1209 |
CheckGearsNear:= nil |
16 | 1210 |
end; |
1211 |
||
1212 |
function CountGears(Kind: TGearType): Longword; |
|
1213 |
var t: PGear; |
|
351 | 1214 |
Result: Longword; |
16 | 1215 |
begin |
1216 |
Result:= 0; |
|
1217 |
t:= GearsList; |
|
1218 |
while t <> nil do |
|
1219 |
begin |
|
351 | 1220 |
if t^.Kind = Kind then inc(Result); |
1221 |
t:= t^.NextGear |
|
16 | 1222 |
end; |
351 | 1223 |
CountGears:= Result |
16 | 1224 |
end; |
1225 |
||
15 | 1226 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1227 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1228 |
i: TAmmoType; |
15 | 1229 |
begin |
614 | 1230 |
if (cCaseFactor = 0) or |
1231 |
(CountGears(gtCase) >= 5) or |
|
1232 |
(getrandom(cCaseFactor) <> 0) then exit; |
|
498 | 1233 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
295 | 1234 |
case getrandom(2) of |
1235 |
0: begin |
|
351 | 1236 |
FollowGear^.Health:= 25; |
1237 |
FollowGear^.Pos:= posCaseHealth |
|
295 | 1238 |
end; |
1239 |
1: begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1240 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1241 |
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
|
1242 |
inc(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1243 |
t:= GetRandom(t); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1244 |
i:= Low(TAmmoType); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1245 |
dec(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1246 |
while t >= 0 do |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1247 |
begin |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1248 |
inc(i); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1249 |
dec(t, Ammoz[i].Probability) |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1250 |
end; |
865 | 1251 |
PlaySound(sndReinforce, false); |
351 | 1252 |
FollowGear^.Pos:= posCaseAmmo; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1253 |
FollowGear^.State:= Longword(i) |
295 | 1254 |
end; |
1255 |
end; |
|
70 | 1256 |
FindPlace(FollowGear, true, 0, 2048) |
1257 |
end; |
|
1258 |
||
371 | 1259 |
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 1260 |
|
371 | 1261 |
function CountNonZeroz(x, y, r: LongInt): LongInt; |
1262 |
var i: LongInt; |
|
1263 |
Result: LongInt; |
|
70 | 1264 |
begin |
1265 |
Result:= 0; |
|
701 | 1266 |
if (y and $FFFFFC00) = 0 then |
1267 |
for i:= max(x - r, 0) to min(x + r, 2043) do |
|
351 | 1268 |
if Land[y, i] <> 0 then inc(Result); |
1269 |
CountNonZeroz:= Result |
|
70 | 1270 |
end; |
1271 |
||
495 | 1272 |
var x: LongInt; |
371 | 1273 |
y, sy: LongInt; |
386 | 1274 |
ar: array[0..511] of TPoint; |
1275 |
ar2: array[0..1023] of TPoint; |
|
392 | 1276 |
cnt, cnt2: Longword; |
1277 |
delta: LongInt; |
|
70 | 1278 |
begin |
386 | 1279 |
delta:= 250; |
1280 |
cnt2:= 0; |
|
16 | 1281 |
repeat |
392 | 1282 |
x:= Left + LongInt(GetRandom(Delta)); |
70 | 1283 |
repeat |
386 | 1284 |
inc(x, Delta); |
70 | 1285 |
cnt:= 0; |
351 | 1286 |
y:= -Gear^.Radius * 2; |
70 | 1287 |
while y < 1023 do |
16 | 1288 |
begin |
70 | 1289 |
repeat |
701 | 1290 |
inc(y, 2); |
351 | 1291 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) = 0); |
70 | 1292 |
sy:= y; |
1293 |
repeat |
|
1294 |
inc(y); |
|
351 | 1295 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) <> 0); |
1296 |
if (y - sy > Gear^.Radius * 2) |
|
70 | 1297 |
and (y < 1023) |
351 | 1298 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
70 | 1299 |
begin |
1300 |
ar[cnt].X:= x; |
|
351 | 1301 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
1302 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
70 | 1303 |
inc(cnt) |
1304 |
end; |
|
386 | 1305 |
inc(y, 45) |
16 | 1306 |
end; |
70 | 1307 |
if cnt > 0 then |
1308 |
with ar[GetRandom(cnt)] do |
|
1309 |
begin |
|
386 | 1310 |
ar2[cnt2].x:= x; |
1311 |
ar2[cnt2].y:= y; |
|
1312 |
inc(cnt2) |
|
70 | 1313 |
end |
386 | 1314 |
until (x + Delta > Right); |
1315 |
dec(Delta, 60) |
|
1316 |
until (cnt2 > 0) or (Delta < 70); |
|
1317 |
if cnt2 > 0 then |
|
1318 |
with ar2[GetRandom(cnt2)] do |
|
1319 |
begin |
|
498 | 1320 |
Gear^.X:= int2hwFloat(x); |
1321 |
Gear^.Y:= int2hwFloat(y); |
|
386 | 1322 |
{$IFDEF DEBUGFILE} |
1323 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
1324 |
{$ENDIF} |
|
1325 |
end |
|
1326 |
else |
|
1327 |
begin |
|
1328 |
OutError('Can''t find place for Gear', false); |
|
1329 |
DeleteGear(Gear) |
|
1330 |
end |
|
10 | 1331 |
end; |
1332 |
||
4 | 1333 |
initialization |
1334 |
||
1335 |
finalization |
|
95 | 1336 |
FreeGearsList; |
4 | 1337 |
|
1338 |
end. |