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