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