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