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