author | unc0rr |
Sun, 27 Apr 2008 11:40:22 +0000 | |
changeset 883 | 07a568ba44e0 |
parent 878 | 45bff6dadfce |
child 910 | 8d5f3fef4ac2 |
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; |
|
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; |
878 | 274 |
gtShover: Result^.Radius:= 20; |
79 | 275 |
gtFlame: begin |
351 | 276 |
Result^.Angle:= Counter mod 64; |
277 |
Result^.Radius:= 1; |
|
278 |
Result^.Health:= 2; |
|
279 |
Result^.dY:= (getrandom - _0_8) * _0_03; |
|
280 |
Result^.dX:= (getrandom - _0_5) * _0_4 |
|
79 | 281 |
end; |
82 | 282 |
gtFirePunch: begin |
351 | 283 |
Result^.Radius:= 15; |
284 |
Result^.Tag:= Y |
|
82 | 285 |
end; |
302 | 286 |
gtAirBomb: begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
287 |
Result^.Radius:= 5; |
302 | 288 |
end; |
289 |
gtBlowTorch: begin |
|
511 | 290 |
Result^.Radius:= cHHRadius + cBlowTorchC; |
351 | 291 |
Result^.Timer:= 7500; |
302 | 292 |
end; |
522 | 293 |
gtSmallDamage: begin |
294 |
Result^.Timer:= 1100; |
|
295 |
Result^.Z:= 2000; |
|
296 |
end; |
|
540 | 297 |
gtSwitcher: begin |
298 |
Result^.Z:= cCurrHHZ |
|
299 |
end; |
|
593 | 300 |
gtTarget: begin |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
301 |
Result^.Radius:= 16; |
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
302 |
Result^.Elasticity:= _0_3 |
593 | 303 |
end; |
4 | 304 |
end; |
351 | 305 |
InsertGearToList(Result); |
306 |
AddGear:= Result |
|
4 | 307 |
end; |
308 |
||
309 |
procedure DeleteGear(Gear: PGear); |
|
48 | 310 |
var team: PTeam; |
307 | 311 |
t: Longword; |
4 | 312 |
begin |
503 | 313 |
DeleteCI(Gear); |
762 | 314 |
|
315 |
if Gear^.Tex <> nil then |
|
522 | 316 |
begin |
762 | 317 |
FreeTexture(Gear^.Tex); |
318 |
Gear^.Tex:= nil |
|
522 | 319 |
end; |
762 | 320 |
|
351 | 321 |
if Gear^.Kind = gtHedgehog then |
4 | 322 |
if CurAmmoGear <> nil then |
323 |
begin |
|
351 | 324 |
Gear^.Message:= gm_Destroy; |
325 |
CurAmmoGear^.Message:= gm_Destroy; |
|
4 | 326 |
exit |
47 | 327 |
end else |
328 |
begin |
|
498 | 329 |
if not (hwRound(Gear^.Y) < cWaterLine) then |
307 | 330 |
begin |
351 | 331 |
t:= max(Gear^.Damage, Gear^.Health); |
867 | 332 |
Gear^.Damage:= t; |
498 | 333 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
867 | 334 |
uStats.HedgehogDamaged(Gear) |
307 | 335 |
end; |
351 | 336 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
602 | 337 |
if CurrentHedgehog^.Gear = Gear then |
145 | 338 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
351 | 339 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
307 | 340 |
inc(KilledHHs); |
48 | 341 |
RecountTeamHealth(team); |
47 | 342 |
end; |
357 | 343 |
{$IFDEF DEBUGFILE}AddFileLog('DeleteGear');{$ENDIF} |
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
593
diff
changeset
|
344 |
if Gear^.TriggerId <> 0 then TickTrigger(Gear^.TriggerId); |
82 | 345 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 346 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 347 |
RemoveGearFromList(Gear); |
4 | 348 |
Dispose(Gear) |
349 |
end; |
|
350 |
||
351 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
352 |
var Gear: PGear; |
|
353 |
begin |
|
351 | 354 |
CheckNoDamage:= true; |
4 | 355 |
Gear:= GearsList; |
356 |
while Gear <> nil do |
|
867 | 357 |
begin |
358 |
if Gear^.Kind = gtHedgehog then |
|
359 |
if Gear^.Damage <> 0 then |
|
360 |
begin |
|
361 |
CheckNoDamage:= false; |
|
362 |
uStats.HedgehogDamaged(Gear); |
|
351 | 363 |
|
867 | 364 |
if Gear^.Health < Gear^.Damage then |
365 |
Gear^.Health:= 0 |
|
366 |
else |
|
367 |
dec(Gear^.Health, Gear^.Damage); |
|
368 |
||
369 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
|
370 |
gtHealthTag, Gear^.Damage, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
371 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
|
372 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
373 |
||
374 |
Gear^.Damage:= 0 |
|
375 |
end; |
|
376 |
Gear:= Gear^.NextGear |
|
377 |
end; |
|
4 | 378 |
end; |
379 |
||
522 | 380 |
procedure AddDamageTag(X, Y, Damage: LongWord; Gear: PGear); |
381 |
begin |
|
529 | 382 |
if cAltDamage then |
383 |
AddGear(X, Y, gtSmallDamage, Damage, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
522 | 384 |
end; |
385 |
||
4 | 386 |
procedure ProcessGears; |
614 | 387 |
const delay: LongWord = 0; |
869 | 388 |
step: (stDelay, stChDmg, stTurnReact, |
389 |
stAfterDelay, stChWin, stSpawn, stNTurn) = stDelay; |
|
4 | 390 |
var Gear, t: PGear; |
391 |
begin |
|
868 | 392 |
PrvInactive:= AllInactive; |
4 | 393 |
AllInactive:= true; |
394 |
t:= GearsList; |
|
395 |
while t<>nil do |
|
396 |
begin |
|
397 |
Gear:= t; |
|
351 | 398 |
t:= Gear^.NextGear; |
399 |
if Gear^.Active then Gear^.doStep(Gear); |
|
4 | 400 |
end; |
89 | 401 |
|
4 | 402 |
if AllInactive then |
15 | 403 |
case step of |
404 |
stDelay: begin |
|
405 |
if delay = 0 then |
|
406 |
delay:= cInactDelay |
|
614 | 407 |
else |
408 |
dec(delay); |
|
409 |
||
410 |
if delay = 0 then |
|
411 |
inc(step) |
|
15 | 412 |
end; |
413 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
|
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
809
diff
changeset
|
414 |
stTurnReact: begin |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
415 |
if not isInMultiShoot then |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
416 |
begin |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
417 |
uStats.TurnReaction; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
418 |
inc(step) |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
419 |
end else |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
420 |
inc(step, 2); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
809
diff
changeset
|
421 |
end; |
815 | 422 |
stAfterDelay: begin |
423 |
if delay = 0 then |
|
424 |
delay:= cInactDelay |
|
425 |
else |
|
426 |
dec(delay); |
|
427 |
||
428 |
if delay = 0 then |
|
429 |
inc(step) |
|
430 |
end; |
|
869 | 431 |
stChWin: if not CheckForWin then inc(step) else step:= stDelay; |
15 | 432 |
stSpawn: begin |
433 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
434 |
inc(step) |
|
435 |
end; |
|
436 |
stNTurn: begin |
|
437 |
if isInMultiShoot then isInMultiShoot:= false |
|
307 | 438 |
else begin |
351 | 439 |
ParseCommand('/nextturn', true); |
307 | 440 |
end; |
15 | 441 |
step:= Low(step) |
442 |
end; |
|
443 |
end; |
|
444 |
||
4 | 445 |
if TurnTimeLeft > 0 then |
870 | 446 |
if CurrentHedgehog^.Gear <> nil then |
447 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
448 |
and not isInMultiShoot then |
|
449 |
begin |
|
450 |
if (TurnTimeLeft = 5000) |
|
451 |
and (CurrentHedgehog^.Gear <> nil) |
|
452 |
and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then PlaySound(sndHurry, false); |
|
453 |
dec(TurnTimeLeft) |
|
454 |
end; |
|
351 | 455 |
|
651 | 456 |
if (not CurrentTeam^.ExtDriven) and |
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
457 |
((GameTicks and $FFFF) = $FFFF) then |
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
458 |
begin |
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
459 |
SendIPCTimeInc; |
869 | 460 |
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
|
461 |
end; |
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
462 |
|
515 | 463 |
inc(GameTicks) |
4 | 464 |
end; |
465 |
||
466 |
procedure SetAllToActive; |
|
467 |
var t: PGear; |
|
468 |
begin |
|
469 |
AllInactive:= false; |
|
470 |
t:= GearsList; |
|
351 | 471 |
while t <> nil do |
4 | 472 |
begin |
351 | 473 |
t^.Active:= true; |
474 |
t:= t^.NextGear |
|
4 | 475 |
end |
476 |
end; |
|
477 |
||
478 |
procedure SetAllHHToActive; |
|
479 |
var t: PGear; |
|
480 |
begin |
|
481 |
AllInactive:= false; |
|
482 |
t:= GearsList; |
|
351 | 483 |
while t <> nil do |
4 | 484 |
begin |
351 | 485 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
486 |
t:= t^.NextGear |
|
4 | 487 |
end |
488 |
end; |
|
489 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
490 |
procedure DrawHH(Gear: PGear); |
371 | 491 |
var t: LongInt; |
822 | 492 |
amt: TAmmoType; |
862 | 493 |
hx, hy, m: LongInt; |
494 |
aAngle, dAngle: real; |
|
824 | 495 |
defaultPos: boolean; |
292 | 496 |
begin |
868 | 497 |
if (Gear^.State and gstHHDeath) <> 0 then |
498 |
begin |
|
499 |
DrawSprite(sprHHDeath, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 26 + WorldDy, Gear^.Pos); |
|
500 |
exit |
|
501 |
end; |
|
824 | 502 |
defaultPos:= true; |
847 | 503 |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
504 |
if (Gear^.State and gstHHDriven) <> 0 then |
822 | 505 |
begin |
874 | 506 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
507 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
508 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
509 |
||
822 | 510 |
if CurAmmoGear <> nil then |
511 |
begin |
|
847 | 512 |
case CurAmmoGear^.Kind of |
876 | 513 |
gtShotgunShot: if (CurAmmoGear^.State and gstAnimation <> 0) then |
514 |
DrawRotated(sprShotgun, hx, hy, hwSign(Gear^.dX), aangle) |
|
515 |
else |
|
516 |
DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
517 |
gtDEagleShot: DrawRotated(sprDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
|
861 | 518 |
gtRope: begin |
862 | 519 |
if Gear^.X < CurAmmoGear^.X then |
520 |
begin |
|
521 |
dAngle:= 0; |
|
522 |
m:= 1 |
|
523 |
end else |
|
524 |
begin |
|
525 |
dAngle:= 180; |
|
526 |
m:= -1 |
|
527 |
end; |
|
847 | 528 |
DrawHedgehog(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
862 | 529 |
m, |
847 | 530 |
1, |
531 |
0, |
|
862 | 532 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
847 | 533 |
defaultPos:= false |
534 |
end; |
|
535 |
gtBlowTorch: begin |
|
536 |
DrawRotated(sprBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
537 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
538 |
hwSign(Gear^.dX), |
|
539 |
1, |
|
540 |
3, |
|
541 |
0); |
|
542 |
end; |
|
854 | 543 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
853 | 544 |
gtPickHammer, |
545 |
gtTeleport: defaultPos:= false; |
|
876 | 546 |
end; |
547 |
||
548 |
case CurAmmoGear^.Kind of |
|
549 |
gtShotgunShot, |
|
550 |
gtDEagleShot, |
|
551 |
gtShover: begin |
|
552 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
553 |
hwSign(Gear^.dX), |
|
554 |
0, |
|
555 |
4, |
|
556 |
0); |
|
557 |
defaultPos:= false |
|
558 |
end |
|
847 | 559 |
end |
822 | 560 |
end else |
874 | 561 |
|
824 | 562 |
if ((Gear^.State and gstHHJumping) <> 0) then |
563 |
begin |
|
874 | 564 |
if ((Gear^.State and gstHHHJump) <> 0) then |
565 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
566 |
- hwSign(Gear^.dX), |
|
567 |
1, |
|
568 |
1, |
|
569 |
0) |
|
570 |
else |
|
571 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
572 |
hwSign(Gear^.dX), |
|
573 |
1, |
|
574 |
1, |
|
575 |
0); |
|
824 | 576 |
defaultPos:= false |
577 |
end else |
|
874 | 578 |
|
824 | 579 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) |
580 |
or ((Gear^.State and gstAttacked) <> 0) then |
|
581 |
begin |
|
822 | 582 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
583 |
hwSign(Gear^.dX), |
|
584 |
0, |
|
585 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
824 | 586 |
0); |
587 |
defaultPos:= false |
|
588 |
end |
|
822 | 589 |
else |
874 | 590 |
|
822 | 591 |
begin |
592 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
593 |
case amt of |
|
823
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
594 |
amBazooka: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
822 | 595 |
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
|
596 |
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
|
597 |
amDEagle: DrawRotated(sprHandDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
847 | 598 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
822 | 599 |
end; |
826 | 600 |
|
822 | 601 |
case amt of |
825 | 602 |
amAirAttack, |
847 | 603 |
amMineStrike: DrawRotated(sprHandAirAttack, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) + WorldDy, hwSign(Gear^.dX), 0); |
604 |
amPickHammer: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
834 | 605 |
hwSign(Gear^.dX), |
606 |
1, |
|
607 |
2, |
|
608 |
0); |
|
847 | 609 |
amBlowTorch: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
610 |
hwSign(Gear^.dX), |
|
611 |
1, |
|
612 |
3, |
|
613 |
0); |
|
853 | 614 |
amTeleport: DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, 0, hwSign(Gear^.dX), 0); |
822 | 615 |
else |
616 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
617 |
hwSign(Gear^.dX), |
|
618 |
0, |
|
847 | 619 |
4, |
822 | 620 |
0); |
834 | 621 |
end; |
622 |
||
623 |
case amt of |
|
624 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
625 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
626 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
627 |
end; |
|
628 |
||
629 |
defaultPos:= false |
|
822 | 630 |
end |
824 | 631 |
end; |
632 |
||
845 | 633 |
if defaultPos then |
822 | 634 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
635 |
hwSign(Gear^.dX), |
|
636 |
0, |
|
637 |
3, |
|
638 |
0); |
|
292 | 639 |
|
351 | 640 |
with PHedgehog(Gear^.Hedgehog)^ do |
538 | 641 |
if (Gear^.State{ and not gstAnimation}) = 0 then |
292 | 642 |
begin |
351 | 643 |
t:= hwRound(Gear^.Y) - cHHRadius - 10 + WorldDy; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
644 |
if (cTagsMask and 1) <> 0 then |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
645 |
begin |
762 | 646 |
dec(t, HealthTagTex^.h + 2); |
647 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
648 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
649 |
if (cTagsMask and 2) <> 0 then |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
650 |
begin |
762 | 651 |
dec(t, NameTagTex^.h + 2); |
652 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
653 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
654 |
if (cTagsMask and 4) <> 0 then |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
655 |
begin |
762 | 656 |
dec(t, Team^.NameTagTex^.h + 2); |
657 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
658 |
end |
292 | 659 |
end else // Current hedgehog |
538 | 660 |
if (Gear^.State and gstHHDriven) <> 0 then |
292 | 661 |
begin |
351 | 662 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
663 |
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
|
664 |
GameTicks div 32 mod 16); |
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
665 |
|
542 | 666 |
if (Gear^.State and (gstMoving or gstDrowning)) = 0 then |
351 | 667 |
if (Gear^.State and gstHHThinking) <> 0 then |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
668 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
292 | 669 |
else |
351 | 670 |
if ShowCrosshair and ((Gear^.State and gstAttacked) = 0) then |
777 | 671 |
DrawRotatedTex(Team^.CrosshairTex, |
672 |
12, 12, |
|
673 |
Round(hwRound(Gear^.X) + |
|
674 |
hwSign(Gear^.dX) * Sin(Gear^.Angle*pi/cMaxAngle)*60) + WorldDx, |
|
675 |
Round(hwRound(Gear^.Y) - |
|
822 | 676 |
Cos(Gear^.Angle*pi/cMaxAngle)*60) + WorldDy, 0, |
840 | 677 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle) |
292 | 678 |
end; |
679 |
end; |
|
680 |
||
4 | 681 |
procedure DrawGears(Surface: PSDL_Surface); |
853 | 682 |
var Gear, HHGear: PGear; |
4 | 683 |
i: Longword; |
371 | 684 |
roplen: LongInt; |
4 | 685 |
|
371 | 686 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
687 |
var eX, eY, dX, dY: LongInt; |
|
688 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 689 |
b: boolean; |
4 | 690 |
begin |
37 | 691 |
if (X1 = X2) and (Y1 = Y2) then |
692 |
begin |
|
351 | 693 |
OutError('WARNING: zero length rope line!', false); |
37 | 694 |
exit |
695 |
end; |
|
366 | 696 |
eX:= 0; |
697 |
eY:= 0; |
|
698 |
dX:= X2 - X1; |
|
699 |
dY:= Y2 - Y1; |
|
700 |
||
701 |
if (dX > 0) then sX:= 1 |
|
702 |
else |
|
703 |
if (dX < 0) then |
|
704 |
begin |
|
705 |
sX:= -1; |
|
706 |
dX:= -dX |
|
707 |
end else sX:= dX; |
|
708 |
||
709 |
if (dY > 0) then sY:= 1 |
|
710 |
else |
|
711 |
if (dY < 0) then |
|
4 | 712 |
begin |
366 | 713 |
sY:= -1; |
714 |
dY:= -dY |
|
715 |
end else sY:= dY; |
|
716 |
||
717 |
if (dX > dY) then d:= dX |
|
718 |
else d:= dY; |
|
719 |
||
720 |
x:= X1; |
|
721 |
y:= Y1; |
|
722 |
||
723 |
for i:= 0 to d do |
|
724 |
begin |
|
725 |
inc(eX, dX); |
|
726 |
inc(eY, dY); |
|
727 |
b:= false; |
|
728 |
if (eX > d) then |
|
35 | 729 |
begin |
366 | 730 |
dec(eX, d); |
731 |
inc(x, sX); |
|
732 |
b:= true |
|
35 | 733 |
end; |
366 | 734 |
if (eY > d) then |
35 | 735 |
begin |
366 | 736 |
dec(eY, d); |
737 |
inc(y, sY); |
|
738 |
b:= true |
|
35 | 739 |
end; |
366 | 740 |
if b then |
741 |
begin |
|
742 |
inc(roplen); |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
743 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
366 | 744 |
end |
4 | 745 |
end |
366 | 746 |
end; |
4 | 747 |
|
748 |
begin |
|
749 |
Gear:= GearsList; |
|
750 |
while Gear<>nil do |
|
751 |
begin |
|
351 | 752 |
case Gear^.Kind of |
822 | 753 |
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
|
754 |
gtHedgehog: DrawHH(Gear); |
822 | 755 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
522 | 756 |
gtHealthTag, |
762 | 757 |
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
|
758 |
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
|
759 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
848 | 760 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
4 | 761 |
gtRope: begin |
35 | 762 |
roplen:= 0; |
4 | 763 |
if RopePoints.Count > 0 then |
764 |
begin |
|
765 |
i:= 0; |
|
766 |
while i < Pred(RopePoints.Count) do |
|
767 |
begin |
|
351 | 768 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
769 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 770 |
inc(i) |
771 |
end; |
|
351 | 772 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
773 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
774 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
775 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 776 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
4 | 777 |
end else |
35 | 778 |
begin |
351 | 779 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
780 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 781 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
35 | 782 |
end; |
4 | 783 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
784 |
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
|
785 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
351 | 786 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 787 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
788 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 789 |
gtCase: case Gear^.Pos of |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
790 |
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
|
791 |
posCaseHealth: DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, (GameTicks shr 6) mod 13); |
42 | 792 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
793 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1); |
822 | 794 |
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
|
795 |
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
|
796 |
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
|
797 |
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
|
798 |
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
|
799 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 1); |
822 | 800 |
gtAirBomb: DrawRotated(sprAirBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
853 | 801 |
gtTeleport: begin |
802 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
803 |
DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
804 |
DrawRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
805 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
806 |
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
|
807 |
gtTarget: DrawSprite(sprTarget, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
4 | 808 |
end; |
351 | 809 |
Gear:= Gear^.NextGear |
4 | 810 |
end; |
811 |
end; |
|
812 |
||
813 |
procedure FreeGearsList; |
|
814 |
var t, tt: PGear; |
|
815 |
begin |
|
816 |
tt:= GearsList; |
|
817 |
GearsList:= nil; |
|
818 |
while tt<>nil do |
|
819 |
begin |
|
820 |
t:= tt; |
|
351 | 821 |
tt:= tt^.NextGear; |
4 | 822 |
Dispose(t) |
823 |
end; |
|
824 |
end; |
|
825 |
||
10 | 826 |
procedure AddMiscGears; |
371 | 827 |
var i: LongInt; |
4 | 828 |
begin |
498 | 829 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
22 | 830 |
if (GameFlags and gfForts) = 0 then |
622 | 831 |
for i:= 0 to Pred(cLandAdditions) do |
498 | 832 |
FindPlace(AddGear(0, 0, gtMine, 0, _0, _0, 0), false, 0, 2048); |
4 | 833 |
end; |
834 |
||
371 | 835 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 836 |
var Gear: PGear; |
506 | 837 |
dmg, dmgRadius: LongInt; |
4 | 838 |
begin |
839 |
TargetPoint.X:= NoPointX; |
|
840 |
{$IFDEF DEBUGFILE}if Radius > 3 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
|
498 | 841 |
if Radius = 50 then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
355 | 842 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion, false); |
506 | 843 |
if (Mask and EXPLAllDamageInRadius)=0 then dmgRadius:= Radius shl 1 |
844 |
else dmgRadius:= Radius; |
|
4 | 845 |
Gear:= GearsList; |
846 |
while Gear <> nil do |
|
847 |
begin |
|
506 | 848 |
dmg:= dmgRadius - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
538 | 849 |
if (dmg > 1) and |
522 | 850 |
((Gear^.State and gstNoDamage) = 0) then |
4 | 851 |
begin |
355 | 852 |
dmg:= dmg div 2; |
351 | 853 |
case Gear^.Kind of |
10 | 854 |
gtHedgehog, |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
855 |
gtMine, |
79 | 856 |
gtCase, |
593 | 857 |
gtTarget, |
79 | 858 |
gtFlame: begin |
355 | 859 |
{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
522 | 860 |
if (Mask and EXPLNoDamage) = 0 then |
861 |
begin |
|
862 |
inc(Gear^.Damage, dmg); |
|
863 |
if Gear^.Kind = gtHedgehog then |
|
864 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, Gear) |
|
865 |
end; |
|
351 | 866 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
42 | 867 |
begin |
506 | 868 |
DeleteCI(Gear); |
498 | 869 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
870 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
503 | 871 |
Gear^.State:= Gear^.State or gstMoving; |
351 | 872 |
Gear^.Active:= true; |
42 | 873 |
FollowGear:= Gear |
874 |
end; |
|
4 | 875 |
end; |
51 | 876 |
gtGrave: begin |
351 | 877 |
Gear^.dY:= - _0_004 * dmg; |
878 |
Gear^.Active:= true; |
|
51 | 879 |
end; |
4 | 880 |
end; |
881 |
end; |
|
351 | 882 |
Gear:= Gear^.NextGear |
80 | 883 |
end; |
621 | 884 |
if (Mask and EXPLDontDraw) = 0 then |
885 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(X, Y, Radius); |
|
498 | 886 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 887 |
end; |
888 |
||
506 | 889 |
procedure ShotgunShot(Gear: PGear); |
890 |
var t: PGear; |
|
891 |
dmg: integer; |
|
892 |
begin |
|
509 | 893 |
Gear^.Radius:= cShotgunRadius; |
506 | 894 |
t:= GearsList; |
895 |
while t <> nil do |
|
896 |
begin |
|
897 |
dmg:= min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25); |
|
538 | 898 |
if dmg > 0 then |
506 | 899 |
case t^.Kind of |
900 |
gtHedgehog, |
|
901 |
gtMine, |
|
593 | 902 |
gtCase, |
903 |
gtTarget: begin |
|
506 | 904 |
inc(t^.Damage, dmg); |
867 | 905 |
|
522 | 906 |
if t^.Kind = gtHedgehog then |
531 | 907 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, t); |
867 | 908 |
|
506 | 909 |
DeleteCI(t); |
856 | 910 |
t^.dX:= t^.dX + Gear^.dX * dmg * _0_01 + SignAs(cHHKick, Gear^.dX); |
506 | 911 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
912 |
t^.State:= t^.State or gstMoving; |
|
913 |
t^.Active:= true; |
|
914 |
FollowGear:= t |
|
915 |
end; |
|
916 |
gtGrave: begin |
|
917 |
t^.dY:= - _0_1; |
|
918 |
t^.Active:= true |
|
919 |
end; |
|
920 |
end; |
|
921 |
t:= t^.NextGear |
|
922 |
end; |
|
621 | 923 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 924 |
end; |
925 |
||
371 | 926 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 927 |
var t: PGearArray; |
371 | 928 |
i: LongInt; |
38 | 929 |
begin |
53 | 930 |
t:= CheckGearsCollision(Ammo); |
351 | 931 |
i:= t^.Count; |
53 | 932 |
while i > 0 do |
933 |
begin |
|
934 |
dec(i); |
|
351 | 935 |
if (t^.ar[i]^.State and gstNoDamage) = 0 then |
936 |
case t^.ar[i]^.Kind of |
|
53 | 937 |
gtHedgehog, |
938 |
gtMine, |
|
593 | 939 |
gtTarget, |
53 | 940 |
gtCase: begin |
351 | 941 |
inc(t^.ar[i]^.Damage, Damage); |
867 | 942 |
|
522 | 943 |
if t^.ar[i]^.Kind = gtHedgehog then |
944 |
AddDamageTag(hwRound(t^.ar[i]^.X), hwRound(t^.ar[i]^.Y), Damage, t^.ar[i]); |
|
867 | 945 |
|
538 | 946 |
DeleteCI(t^.ar[i]); |
351 | 947 |
t^.ar[i]^.dX:= Ammo^.dX * Power * _0_01; |
948 |
t^.ar[i]^.dY:= Ammo^.dY * Power * _0_01; |
|
949 |
t^.ar[i]^.Active:= true; |
|
503 | 950 |
t^.ar[i]^.State:= t^.ar[i]^.State or gstMoving; |
351 | 951 |
FollowGear:= t^.ar[i] |
53 | 952 |
end; |
953 |
end |
|
126 | 954 |
end; |
955 |
SetAllToActive |
|
38 | 956 |
end; |
957 |
||
4 | 958 |
procedure AssignHHCoords; |
547 | 959 |
var i, t, p: LongInt; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
960 |
ar: array[0..Pred(cMaxHHs)] of PGear; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
961 |
Count: Longword; |
4 | 962 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
963 |
if (GameFlags and gfForts) <> 0 then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
964 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
965 |
t:= 0; |
547 | 966 |
for p:= 0 to Pred(TeamsCount) do |
967 |
with TeamsArray[p]^ do |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
968 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
969 |
for i:= 0 to cMaxHHIndex do |
547 | 970 |
with Hedgehogs[i] do |
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
971 |
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
|
972 |
inc(t, 1024); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
973 |
end |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
974 |
end else // mix hedgehogs |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
975 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
976 |
Count:= 0; |
547 | 977 |
for p:= 0 to Pred(TeamsCount) do |
978 |
with TeamsArray[p]^ do |
|
4 | 979 |
begin |
82 | 980 |
for i:= 0 to cMaxHHIndex do |
547 | 981 |
with Hedgehogs[i] do |
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
982 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
983 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
984 |
ar[Count]:= Gear; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
985 |
inc(Count) |
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 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
988 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
989 |
while (Count > 0) do |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
990 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
991 |
i:= GetRandom(Count); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
992 |
FindPlace(ar[i], false, 0, 2048); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
993 |
ar[i]:= ar[Count - 1]; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
994 |
dec(Count) |
4 | 995 |
end |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
996 |
end |
4 | 997 |
end; |
998 |
||
371 | 999 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 1000 |
var t: PGear; |
1001 |
begin |
|
1002 |
t:= GearsList; |
|
1003 |
rX:= sqr(rX); |
|
1004 |
rY:= sqr(rY); |
|
1005 |
while t <> nil do |
|
1006 |
begin |
|
351 | 1007 |
if (t <> Gear) and (t^.Kind = Kind) then |
498 | 1008 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
351 | 1009 |
exit(t); |
1010 |
t:= t^.NextGear |
|
10 | 1011 |
end; |
351 | 1012 |
CheckGearNear:= nil |
15 | 1013 |
end; |
1014 |
||
79 | 1015 |
procedure AmmoFlameWork(Ammo: PGear); |
1016 |
var t: PGear; |
|
1017 |
begin |
|
1018 |
t:= GearsList; |
|
1019 |
while t <> nil do |
|
1020 |
begin |
|
351 | 1021 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
498 | 1022 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
79 | 1023 |
begin |
351 | 1024 |
inc(t^.Damage, 5); |
1025 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
|
1026 |
t^.dY:= - _0_25; |
|
1027 |
t^.Active:= true; |
|
79 | 1028 |
DeleteCI(t); |
1029 |
FollowGear:= t |
|
1030 |
end; |
|
351 | 1031 |
t:= t^.NextGear |
79 | 1032 |
end; |
1033 |
end; |
|
1034 |
||
371 | 1035 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 1036 |
var t: PGear; |
1037 |
begin |
|
1038 |
t:= GearsList; |
|
1039 |
rX:= sqr(rX); |
|
1040 |
rY:= sqr(rY); |
|
1041 |
while t <> nil do |
|
1042 |
begin |
|
351 | 1043 |
if t^.Kind in Kind then |
498 | 1044 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
351 | 1045 |
exit(t); |
1046 |
t:= t^.NextGear |
|
16 | 1047 |
end; |
351 | 1048 |
CheckGearsNear:= nil |
16 | 1049 |
end; |
1050 |
||
1051 |
function CountGears(Kind: TGearType): Longword; |
|
1052 |
var t: PGear; |
|
351 | 1053 |
Result: Longword; |
16 | 1054 |
begin |
1055 |
Result:= 0; |
|
1056 |
t:= GearsList; |
|
1057 |
while t <> nil do |
|
1058 |
begin |
|
351 | 1059 |
if t^.Kind = Kind then inc(Result); |
1060 |
t:= t^.NextGear |
|
16 | 1061 |
end; |
351 | 1062 |
CountGears:= Result |
16 | 1063 |
end; |
1064 |
||
15 | 1065 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1066 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1067 |
i: TAmmoType; |
15 | 1068 |
begin |
614 | 1069 |
if (cCaseFactor = 0) or |
1070 |
(CountGears(gtCase) >= 5) or |
|
1071 |
(getrandom(cCaseFactor) <> 0) then exit; |
|
498 | 1072 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
295 | 1073 |
case getrandom(2) of |
1074 |
0: begin |
|
351 | 1075 |
FollowGear^.Health:= 25; |
1076 |
FollowGear^.Pos:= posCaseHealth |
|
295 | 1077 |
end; |
1078 |
1: begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1079 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1080 |
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
|
1081 |
inc(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1082 |
t:= GetRandom(t); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1083 |
i:= Low(TAmmoType); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1084 |
dec(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1085 |
while t >= 0 do |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1086 |
begin |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1087 |
inc(i); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1088 |
dec(t, Ammoz[i].Probability) |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1089 |
end; |
865 | 1090 |
PlaySound(sndReinforce, false); |
351 | 1091 |
FollowGear^.Pos:= posCaseAmmo; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1092 |
FollowGear^.State:= Longword(i) |
295 | 1093 |
end; |
1094 |
end; |
|
70 | 1095 |
FindPlace(FollowGear, true, 0, 2048) |
1096 |
end; |
|
1097 |
||
371 | 1098 |
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 1099 |
|
371 | 1100 |
function CountNonZeroz(x, y, r: LongInt): LongInt; |
1101 |
var i: LongInt; |
|
1102 |
Result: LongInt; |
|
70 | 1103 |
begin |
1104 |
Result:= 0; |
|
701 | 1105 |
if (y and $FFFFFC00) = 0 then |
1106 |
for i:= max(x - r, 0) to min(x + r, 2043) do |
|
351 | 1107 |
if Land[y, i] <> 0 then inc(Result); |
1108 |
CountNonZeroz:= Result |
|
70 | 1109 |
end; |
1110 |
||
495 | 1111 |
var x: LongInt; |
371 | 1112 |
y, sy: LongInt; |
386 | 1113 |
ar: array[0..511] of TPoint; |
1114 |
ar2: array[0..1023] of TPoint; |
|
392 | 1115 |
cnt, cnt2: Longword; |
1116 |
delta: LongInt; |
|
70 | 1117 |
begin |
386 | 1118 |
delta:= 250; |
1119 |
cnt2:= 0; |
|
16 | 1120 |
repeat |
392 | 1121 |
x:= Left + LongInt(GetRandom(Delta)); |
70 | 1122 |
repeat |
386 | 1123 |
inc(x, Delta); |
70 | 1124 |
cnt:= 0; |
351 | 1125 |
y:= -Gear^.Radius * 2; |
70 | 1126 |
while y < 1023 do |
16 | 1127 |
begin |
70 | 1128 |
repeat |
701 | 1129 |
inc(y, 2); |
351 | 1130 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) = 0); |
70 | 1131 |
sy:= y; |
1132 |
repeat |
|
1133 |
inc(y); |
|
351 | 1134 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) <> 0); |
1135 |
if (y - sy > Gear^.Radius * 2) |
|
70 | 1136 |
and (y < 1023) |
351 | 1137 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
70 | 1138 |
begin |
1139 |
ar[cnt].X:= x; |
|
351 | 1140 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
1141 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
70 | 1142 |
inc(cnt) |
1143 |
end; |
|
386 | 1144 |
inc(y, 45) |
16 | 1145 |
end; |
70 | 1146 |
if cnt > 0 then |
1147 |
with ar[GetRandom(cnt)] do |
|
1148 |
begin |
|
386 | 1149 |
ar2[cnt2].x:= x; |
1150 |
ar2[cnt2].y:= y; |
|
1151 |
inc(cnt2) |
|
70 | 1152 |
end |
386 | 1153 |
until (x + Delta > Right); |
1154 |
dec(Delta, 60) |
|
1155 |
until (cnt2 > 0) or (Delta < 70); |
|
1156 |
if cnt2 > 0 then |
|
1157 |
with ar2[GetRandom(cnt2)] do |
|
1158 |
begin |
|
498 | 1159 |
Gear^.X:= int2hwFloat(x); |
1160 |
Gear^.Y:= int2hwFloat(y); |
|
386 | 1161 |
{$IFDEF DEBUGFILE} |
1162 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
1163 |
{$ENDIF} |
|
1164 |
end |
|
1165 |
else |
|
1166 |
begin |
|
1167 |
OutError('Can''t find place for Gear', false); |
|
1168 |
DeleteGear(Gear) |
|
1169 |
end |
|
10 | 1170 |
end; |
1171 |
||
4 | 1172 |
initialization |
1173 |
||
1174 |
finalization |
|
95 | 1175 |
FreeGearsList; |
4 | 1176 |
|
1177 |
end. |