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