author | unc0rr |
Sun, 05 Apr 2009 07:56:16 +0000 | |
changeset 1944 | f00c749ea445 |
parent 1939 | 4b8e4cd9e7c0 |
child 1948 | 1e0e1f03180d |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1689 | 3 |
* Copyright (c) 2004-2009 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; |
|
1259 | 27 |
TGearStepProcedure = procedure (Gear: PGear); |
28 |
TGear = record |
|
29 |
NextGear, PrevGear: PGear; |
|
30 |
Active: Boolean; |
|
1849 | 31 |
Invulnerable: Boolean; |
1259 | 32 |
Ammo : PAmmo; |
33 |
State : Longword; |
|
34 |
X : hwFloat; |
|
35 |
Y : hwFloat; |
|
36 |
dX: hwFloat; |
|
37 |
dY: hwFloat; |
|
38 |
Kind: TGearType; |
|
39 |
Pos: Longword; |
|
40 |
doStep: TGearStepProcedure; |
|
41 |
Radius: LongInt; |
|
42 |
Angle, Power : Longword; |
|
43 |
DirAngle: real; |
|
44 |
Timer : LongWord; |
|
45 |
Elasticity: hwFloat; |
|
46 |
Friction : hwFloat; |
|
47 |
Message, MsgParam : Longword; |
|
48 |
Hedgehog: pointer; |
|
49 |
Health, Damage: LongInt; |
|
50 |
CollisionIndex: LongInt; |
|
51 |
Tag: LongInt; |
|
52 |
Tex: PTexture; |
|
53 |
Z: Longword; |
|
54 |
IntersectGear: PGear; |
|
55 |
TriggerId: Longword; |
|
1503 | 56 |
uid: Longword; |
1259 | 57 |
end; |
4 | 58 |
|
371 | 59 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
4 | 60 |
procedure ProcessGears; |
1849 | 61 |
procedure ResetUtilities; |
4 | 62 |
procedure SetAllToActive; |
63 |
procedure SetAllHHToActive; |
|
956 | 64 |
procedure DrawGears; |
4 | 65 |
procedure FreeGearsList; |
10 | 66 |
procedure AddMiscGears; |
4 | 67 |
procedure AssignHHCoords; |
294 | 68 |
procedure InsertGearToList(Gear: PGear); |
69 |
procedure RemoveGearFromList(Gear: PGear); |
|
4 | 70 |
|
71 |
var CurAmmoGear: PGear = nil; |
|
68 | 72 |
GearsList: PGear = nil; |
307 | 73 |
KilledHHs: Longword = 0; |
70 | 74 |
|
4 | 75 |
implementation |
81 | 76 |
uses uWorld, uMisc, uStore, uConsole, uSound, uTeams, uRandom, uCollisions, |
1906 | 77 |
uLand, uIO, uLandGraphics, uAIMisc, uLocale, uAI, uAmmos, uTriggers, |
78 |
{$IFDEF IPHONE} |
|
79 |
gles11, |
|
80 |
{$ELSE} |
|
81 |
GL, |
|
82 |
{$ENDIF} |
|
1259 | 83 |
uStats, uVisualGears; |
789 | 84 |
|
1207
ceaab010269e
Some adjusting... it still doesn't solve problem fully
unc0rr
parents:
1200
diff
changeset
|
85 |
const MAXROPEPOINTS = 384; |
68 | 86 |
var RopePoints: record |
4 | 87 |
Count: Longword; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
88 |
HookAngle: GLfloat; |
789 | 89 |
ar: array[0..MAXROPEPOINTS] of record |
351 | 90 |
X, Y: hwFloat; |
91 |
dLen: hwFloat; |
|
4 | 92 |
b: boolean; |
93 |
end; |
|
94 |
end; |
|
95 |
||
1515 | 96 |
procedure DeleteGear(Gear: PGear); forward; |
371 | 97 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); forward; |
98 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); forward; |
|
1433 | 99 |
//procedure AmmoFlameWork(Ammo: PGear); forward; |
371 | 100 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; forward; |
15 | 101 |
procedure SpawnBoxOfSmth; forward; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
24
diff
changeset
|
102 |
procedure AfterAttack; forward; |
1515 | 103 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); forward; |
302 | 104 |
procedure HedgehogStep(Gear: PGear); forward; |
1528 | 105 |
procedure doStepHedgehogMoving(Gear: PGear); forward; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
106 |
procedure HedgehogChAngle(Gear: PGear); forward; |
506 | 107 |
procedure ShotgunShot(Gear: PGear); forward; |
1689 | 108 |
procedure PickUp(HH, Gear: PGear); forward; |
4 | 109 |
|
110 |
{$INCLUDE GSHandlers.inc} |
|
111 |
{$INCLUDE HHHandlers.inc} |
|
112 |
||
113 |
const doStepHandlers: array[TGearType] of TGearStepProcedure = ( |
|
1259 | 114 |
@doStepBomb, |
115 |
@doStepHedgehog, |
|
116 |
@doStepGrenade, |
|
117 |
@doStepHealthTag, |
|
118 |
@doStepGrave, |
|
119 |
@doStepUFO, |
|
120 |
@doStepShotgunShot, |
|
121 |
@doStepPickHammer, |
|
122 |
@doStepRope, |
|
123 |
@doStepSmokeTrace, |
|
124 |
@doStepExplosion, |
|
125 |
@doStepMine, |
|
126 |
@doStepCase, |
|
127 |
@doStepDEagleShot, |
|
128 |
@doStepDynamite, |
|
129 |
@doStepTeamHealthSorter, |
|
130 |
@doStepBomb, |
|
131 |
@doStepCluster, |
|
132 |
@doStepShover, |
|
133 |
@doStepFlame, |
|
134 |
@doStepFirePunch, |
|
135 |
@doStepActionTimer, |
|
136 |
@doStepActionTimer, |
|
137 |
@doStepActionTimer, |
|
138 |
@doStepParachute, |
|
139 |
@doStepAirAttack, |
|
140 |
@doStepAirBomb, |
|
141 |
@doStepBlowTorch, |
|
142 |
@doStepGirder, |
|
143 |
@doStepTeleport, |
|
144 |
@doStepSwitcher, |
|
145 |
@doStepCase, |
|
146 |
@doStepMortar, |
|
147 |
@doStepWhip, |
|
148 |
@doStepKamikaze, |
|
149 |
@doStepCake, |
|
1261 | 150 |
@doStepSeduction, |
1279 | 151 |
@doStepWatermelon, |
1263 | 152 |
@doStepCluster, |
153 |
@doStepBomb, |
|
1298 | 154 |
@doStepSmokeTrace, |
1573 | 155 |
@doStepWaterUp, |
1601 | 156 |
@doStepDrill, |
157 |
@doStepBallgun, |
|
1689 | 158 |
@doStepBomb, |
159 |
@doStepRCPlane |
|
1259 | 160 |
); |
4 | 161 |
|
294 | 162 |
procedure InsertGearToList(Gear: PGear); |
803 | 163 |
var tmp, ptmp: PGear; |
294 | 164 |
begin |
165 |
if GearsList = nil then |
|
1505 | 166 |
GearsList:= Gear |
167 |
else begin |
|
168 |
tmp:= GearsList; |
|
169 |
ptmp:= GearsList; |
|
170 |
while (tmp <> nil) and (tmp^.Z <= Gear^.Z) do |
|
171 |
begin |
|
172 |
ptmp:= tmp; |
|
173 |
tmp:= tmp^.NextGear |
|
174 |
end; |
|
294 | 175 |
|
1505 | 176 |
if ptmp <> nil then |
177 |
begin |
|
178 |
Gear^.NextGear:= ptmp^.NextGear; |
|
179 |
Gear^.PrevGear:= ptmp; |
|
180 |
if ptmp^.NextGear <> nil then ptmp^.NextGear^.PrevGear:= Gear; |
|
181 |
ptmp^.NextGear:= Gear |
|
182 |
end |
|
183 |
else GearsList:= Gear |
|
184 |
end |
|
294 | 185 |
end; |
186 |
||
187 |
procedure RemoveGearFromList(Gear: PGear); |
|
188 |
begin |
|
351 | 189 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
1505 | 190 |
if Gear^.PrevGear <> nil then |
191 |
Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
192 |
else |
|
193 |
GearsList:= Gear^.NextGear |
|
294 | 194 |
end; |
195 |
||
371 | 196 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
79 | 197 |
const Counter: Longword = 0; |
351 | 198 |
var Result: PGear; |
4 | 199 |
begin |
79 | 200 |
inc(Counter); |
1495 | 201 |
{$IFDEF DEBUGFILE} |
1503 | 202 |
AddFileLog('AddGear: #' + inttostr(Counter) + ' (' + inttostr(x) + ',' + inttostr(y) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 203 |
{$ENDIF} |
204 |
||
4 | 205 |
New(Result); |
206 |
FillChar(Result^, sizeof(TGear), 0); |
|
498 | 207 |
Result^.X:= int2hwFloat(X); |
208 |
Result^.Y:= int2hwFloat(Y); |
|
351 | 209 |
Result^.Kind := Kind; |
210 |
Result^.State:= State; |
|
211 |
Result^.Active:= true; |
|
212 |
Result^.dX:= dX; |
|
213 |
Result^.dY:= dY; |
|
214 |
Result^.doStep:= doStepHandlers[Kind]; |
|
511 | 215 |
Result^.CollisionIndex:= -1; |
351 | 216 |
Result^.Timer:= Timer; |
1270 | 217 |
Result^.Z:= cUsualZ; |
1503 | 218 |
Result^.uid:= Counter; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
219 |
|
4 | 220 |
if CurrentTeam <> nil then |
1505 | 221 |
begin |
222 |
Result^.Hedgehog:= CurrentHedgehog; |
|
223 |
Result^.IntersectGear:= CurrentHedgehog^.Gear |
|
224 |
end; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
789
diff
changeset
|
225 |
|
4 | 226 |
case Kind of |
915 | 227 |
gtAmmo_Bomb, |
228 |
gtClusterBomb: begin |
|
351 | 229 |
Result^.Radius:= 4; |
230 |
Result^.Elasticity:= _0_6; |
|
997 | 231 |
Result^.Friction:= _0_96; |
4 | 232 |
end; |
1261 | 233 |
gtWatermelon: begin |
234 |
Result^.Radius:= 4; |
|
235 |
Result^.Elasticity:= _0_8; |
|
236 |
Result^.Friction:= _0_995; |
|
237 |
end; |
|
4 | 238 |
gtHedgehog: begin |
351 | 239 |
Result^.Radius:= cHHRadius; |
240 |
Result^.Elasticity:= _0_35; |
|
241 |
Result^.Friction:= _0_999; |
|
242 |
Result^.Angle:= cMaxAngle div 2; |
|
243 |
Result^.Z:= cHHZ; |
|
4 | 244 |
end; |
245 |
gtAmmo_Grenade: begin |
|
351 | 246 |
Result^.Radius:= 4; |
4 | 247 |
end; |
248 |
gtHealthTag: begin |
|
351 | 249 |
Result^.Timer:= 1500; |
522 | 250 |
Result^.Z:= 2001; |
4 | 251 |
end; |
252 |
gtGrave: begin |
|
351 | 253 |
Result^.Radius:= 10; |
254 |
Result^.Elasticity:= _0_6; |
|
4 | 255 |
end; |
256 |
gtUFO: begin |
|
351 | 257 |
Result^.Radius:= 5; |
258 |
Result^.Timer:= 500; |
|
259 |
Result^.Elasticity:= _0_9 |
|
4 | 260 |
end; |
261 |
gtShotgunShot: begin |
|
351 | 262 |
Result^.Timer:= 900; |
263 |
Result^.Radius:= 2 |
|
4 | 264 |
end; |
265 |
gtPickHammer: begin |
|
351 | 266 |
Result^.Radius:= 10; |
267 |
Result^.Timer:= 4000 |
|
4 | 268 |
end; |
1263 | 269 |
gtSmokeTrace, |
270 |
gtEvilTrace: begin |
|
498 | 271 |
Result^.X:= Result^.X - _16; |
272 |
Result^.Y:= Result^.Y - _16; |
|
1270 | 273 |
Result^.State:= 8; |
274 |
Result^.Z:= cSmokeZ |
|
4 | 275 |
end; |
276 |
gtRope: begin |
|
351 | 277 |
Result^.Radius:= 3; |
498 | 278 |
Result^.Friction:= _450; |
4 | 279 |
RopePoints.Count:= 0; |
280 |
end; |
|
9 | 281 |
gtExplosion: begin |
1012 | 282 |
Result^.X:= Result^.X; |
283 |
Result^.Y:= Result^.Y; |
|
9 | 284 |
end; |
10 | 285 |
gtMine: begin |
503 | 286 |
Result^.State:= Result^.State or gstMoving; |
915 | 287 |
Result^.Radius:= 2; |
351 | 288 |
Result^.Elasticity:= _0_55; |
289 |
Result^.Friction:= _0_995; |
|
290 |
Result^.Timer:= 3000; |
|
10 | 291 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
292 |
gtCase: begin |
351 | 293 |
Result^.Radius:= 16; |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
294 |
Result^.Elasticity:= _0_3 |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
295 |
end; |
37 | 296 |
gtDEagleShot: begin |
351 | 297 |
Result^.Radius:= 1; |
298 |
Result^.Health:= 50 |
|
37 | 299 |
end; |
39 | 300 |
gtDynamite: begin |
351 | 301 |
Result^.Radius:= 3; |
302 |
Result^.Elasticity:= _0_55; |
|
303 |
Result^.Friction:= _0_03; |
|
304 |
Result^.Timer:= 5000; |
|
39 | 305 |
end; |
910 | 306 |
gtCluster: Result^.Radius:= 2; |
878 | 307 |
gtShover: Result^.Radius:= 20; |
79 | 308 |
gtFlame: begin |
1586 | 309 |
Result^.Tag:= Counter mod 32; |
351 | 310 |
Result^.Radius:= 1; |
1586 | 311 |
Result^.Health:= 5; |
1555 | 312 |
if (Result^.dY.QWordValue = 0) and (Result^.dX.QWordValue = 0) then |
313 |
begin |
|
314 |
Result^.dY:= (getrandom - _0_8) * _0_03; |
|
315 |
Result^.dX:= (getrandom - _0_5) * _0_4 |
|
316 |
end |
|
79 | 317 |
end; |
82 | 318 |
gtFirePunch: begin |
351 | 319 |
Result^.Radius:= 15; |
320 |
Result^.Tag:= Y |
|
82 | 321 |
end; |
302 | 322 |
gtAirBomb: begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
323 |
Result^.Radius:= 5; |
302 | 324 |
end; |
325 |
gtBlowTorch: begin |
|
511 | 326 |
Result^.Radius:= cHHRadius + cBlowTorchC; |
351 | 327 |
Result^.Timer:= 7500; |
302 | 328 |
end; |
540 | 329 |
gtSwitcher: begin |
330 |
Result^.Z:= cCurrHHZ |
|
331 |
end; |
|
593 | 332 |
gtTarget: begin |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
333 |
Result^.Radius:= 16; |
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
334 |
Result^.Elasticity:= _0_3 |
593 | 335 |
end; |
924 | 336 |
gtMortar: begin |
994 | 337 |
Result^.Radius:= 4; |
924 | 338 |
Result^.Elasticity:= _0_2; |
339 |
Result^.Friction:= _0_08 |
|
340 |
end; |
|
925 | 341 |
gtWhip: Result^.Radius:= 20; |
984 | 342 |
gtKamikaze: begin |
343 |
Result^.Health:= 2048; |
|
344 |
Result^.Radius:= 20 |
|
345 |
end; |
|
1089 | 346 |
gtCake: begin |
1261 | 347 |
Result^.Health:= 2048; |
1103 | 348 |
Result^.Radius:= 7; |
1109 | 349 |
Result^.Z:= cOnHHZ; |
1089 | 350 |
if hwSign(dX) > 0 then Result^.Angle:= 1 else Result^.Angle:= 3 |
351 |
end; |
|
1263 | 352 |
gtHellishBomb: begin |
353 |
Result^.Radius:= 4; |
|
354 |
Result^.Elasticity:= _0_5; |
|
355 |
Result^.Friction:= _0_96; |
|
356 |
end; |
|
1573 | 357 |
gtDrill: begin |
358 |
Result^.Timer:= 5000; |
|
359 |
Result^.Radius:= 4; |
|
360 |
end; |
|
1601 | 361 |
gtBall: begin |
362 |
Result^.Radius:= 5; |
|
363 |
Result^.Tag:= random(8); |
|
364 |
Result^.Timer:= 5000; |
|
365 |
Result^.Elasticity:= _0_7; |
|
366 |
Result^.Friction:= _0_995; |
|
367 |
end; |
|
368 |
gtBallgun: begin |
|
369 |
Result^.Timer:= 5001; |
|
370 |
end; |
|
1689 | 371 |
gtRCPlane: begin |
372 |
Result^.Timer:= 15000; |
|
373 |
Result^.Health:= 3; |
|
374 |
Result^.Radius:= 8; |
|
375 |
end; |
|
4 | 376 |
end; |
351 | 377 |
InsertGearToList(Result); |
378 |
AddGear:= Result |
|
4 | 379 |
end; |
380 |
||
1515 | 381 |
procedure DeleteGear(Gear: PGear); |
48 | 382 |
var team: PTeam; |
1515 | 383 |
t: Longword; |
4 | 384 |
begin |
503 | 385 |
DeleteCI(Gear); |
762 | 386 |
|
387 |
if Gear^.Tex <> nil then |
|
1495 | 388 |
begin |
389 |
FreeTexture(Gear^.Tex); |
|
390 |
Gear^.Tex:= nil |
|
391 |
end; |
|
762 | 392 |
|
351 | 393 |
if Gear^.Kind = gtHedgehog then |
1495 | 394 |
if CurAmmoGear <> nil then |
395 |
begin |
|
396 |
Gear^.Message:= gm_Destroy; |
|
397 |
CurAmmoGear^.Message:= gm_Destroy; |
|
398 |
exit |
|
399 |
end |
|
400 |
else |
|
401 |
begin |
|
402 |
if not (hwRound(Gear^.Y) < cWaterLine) then |
|
403 |
begin |
|
404 |
t:= max(Gear^.Damage, Gear^.Health); |
|
405 |
Gear^.Damage:= t; |
|
406 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
407 |
uStats.HedgehogDamaged(Gear) |
|
408 |
end; |
|
1515 | 409 |
|
1495 | 410 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
411 |
if CurrentHedgehog^.Gear = Gear then |
|
412 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
|
1515 | 413 |
|
1495 | 414 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
415 |
inc(KilledHHs); |
|
1515 | 416 |
RecountTeamHealth(team) |
1495 | 417 |
end; |
418 |
{$IFDEF DEBUGFILE} |
|
1503 | 419 |
with Gear^ do AddFileLog('Delete: #' + inttostr(uid) + ' (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 420 |
{$ENDIF} |
421 |
||
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
593
diff
changeset
|
422 |
if Gear^.TriggerId <> 0 then TickTrigger(Gear^.TriggerId); |
82 | 423 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 424 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 425 |
RemoveGearFromList(Gear); |
1515 | 426 |
Dispose(Gear) |
4 | 427 |
end; |
428 |
||
429 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
430 |
var Gear: PGear; |
|
1849 | 431 |
dmg: LongInt; |
4 | 432 |
begin |
351 | 433 |
CheckNoDamage:= true; |
4 | 434 |
Gear:= GearsList; |
435 |
while Gear <> nil do |
|
867 | 436 |
begin |
437 |
if Gear^.Kind = gtHedgehog then |
|
1861 | 438 |
begin |
1849 | 439 |
if (Gear^.Damage <> 0) and |
440 |
(not Gear^.Invulnerable) then |
|
1861 | 441 |
begin |
1869 | 442 |
if (PHedgehog(Gear^.Hedgehog)^.Team = CurrentTeam) and |
443 |
(Gear^.Damage <> int(cHealthDecrease)) then |
|
1868 | 444 |
Gear^.State:= Gear^.State or gstLoser; |
1861 | 445 |
CheckNoDamage:= false; |
446 |
uStats.HedgehogDamaged(Gear); |
|
447 |
dmg:= Gear^.Damage; |
|
448 |
if Gear^.Health < dmg then |
|
449 |
Gear^.Health:= 0 |
|
450 |
else |
|
451 |
dec(Gear^.Health, dmg); |
|
351 | 452 |
|
1861 | 453 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
454 |
gtHealthTag, dmg, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
867 | 455 |
|
1861 | 456 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
457 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
1505 | 458 |
|
1861 | 459 |
end; |
460 |
Gear^.Damage:= 0; |
|
461 |
end; |
|
867 | 462 |
Gear:= Gear^.NextGear |
463 |
end; |
|
4 | 464 |
end; |
465 |
||
1054 | 466 |
procedure HealthMachine; |
467 |
var Gear: PGear; |
|
468 |
begin |
|
469 |
Gear:= GearsList; |
|
470 |
||
471 |
while Gear <> nil do |
|
472 |
begin |
|
473 |
if Gear^.Kind = gtHedgehog then |
|
474 |
Gear^.Damage:= min(cHealthDecrease, Gear^.Health - 1); |
|
475 |
||
476 |
Gear:= Gear^.NextGear |
|
477 |
end; |
|
478 |
end; |
|
479 |
||
4 | 480 |
procedure ProcessGears; |
614 | 481 |
const delay: LongWord = 0; |
1797 | 482 |
step: (stDelay, stChDmg, stSweep, stTurnReact, |
1495 | 483 |
stAfterDelay, stChWin, stWater, stChWin2, stHealth, |
484 |
stSpawn, stNTurn) = stDelay; |
|
1054 | 485 |
|
4 | 486 |
var Gear, t: PGear; |
487 |
begin |
|
868 | 488 |
PrvInactive:= AllInactive; |
4 | 489 |
AllInactive:= true; |
1495 | 490 |
|
4 | 491 |
t:= GearsList; |
1054 | 492 |
while t <> nil do |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
493 |
begin |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
494 |
Gear:= t; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
495 |
t:= Gear^.NextGear; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
496 |
if Gear^.Active then Gear^.doStep(Gear); |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
497 |
end; |
89 | 498 |
|
4 | 499 |
if AllInactive then |
1343 | 500 |
case step of |
501 |
stDelay: begin |
|
502 |
if delay = 0 then |
|
503 |
delay:= cInactDelay |
|
504 |
else |
|
505 |
dec(delay); |
|
614 | 506 |
|
1343 | 507 |
if delay = 0 then |
508 |
inc(step) |
|
509 |
end; |
|
1797 | 510 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
511 |
stSweep: if SweepDirty then |
|
1792 | 512 |
begin |
1918 | 513 |
SetAllToActive; |
1792 | 514 |
step:= stChDmg |
1797 | 515 |
end else inc(step); |
1343 | 516 |
stTurnReact: begin |
517 |
if (not bBetweenTurns) and (not isInMultiShoot) then |
|
518 |
begin |
|
519 |
uStats.TurnReaction; |
|
520 |
inc(step) |
|
521 |
end else |
|
522 |
inc(step, 2); |
|
523 |
end; |
|
524 |
stAfterDelay: begin |
|
525 |
if delay = 0 then |
|
526 |
delay:= cInactDelay |
|
527 |
else |
|
528 |
dec(delay); |
|
815 | 529 |
|
1343 | 530 |
if delay = 0 then |
531 |
inc(step) |
|
532 |
end; |
|
533 |
stChWin: begin |
|
534 |
CheckForWin; |
|
535 |
inc(step) |
|
536 |
end; |
|
537 |
stWater: if (not bBetweenTurns) and (not isInMultiShoot) then |
|
538 |
begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
539 |
if TotalRounds = cSuddenDTurns + 2 then bWaterRising:= true; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
540 |
|
1343 | 541 |
if bWaterRising then |
542 |
AddGear(0, 0, gtWaterUp, 0, _0, _0, 0); |
|
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
543 |
|
1343 | 544 |
inc(step) |
545 |
end else inc(step); |
|
546 |
stChWin2: begin |
|
547 |
CheckForWin; |
|
548 |
inc(step) |
|
549 |
end; |
|
550 |
stHealth: begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
551 |
if (TotalRounds = cSuddenDTurns) and (cHealthDecrease = 0) then |
1343 | 552 |
begin |
553 |
cHealthDecrease:= 5; |
|
554 |
AddCaption(trmsg[sidSuddenDeath], $FFFFFF, capgrpGameState) |
|
555 |
end; |
|
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
556 |
|
1343 | 557 |
if (cHealthDecrease = 0) |
558 |
or bBetweenTurns |
|
559 |
or isInMultiShoot |
|
560 |
or (TotalRounds = 0) then inc(step) |
|
561 |
else begin |
|
562 |
bBetweenTurns:= true; |
|
563 |
HealthMachine; |
|
564 |
step:= stChDmg |
|
565 |
end |
|
566 |
end; |
|
567 |
stSpawn: begin |
|
568 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
569 |
inc(step) |
|
570 |
end; |
|
571 |
stNTurn: begin |
|
572 |
if isInMultiShoot then isInMultiShoot:= false |
|
573 |
else begin |
|
1849 | 574 |
ResetUtilities; |
1343 | 575 |
ParseCommand('/nextturn', true); |
576 |
SwitchHedgehog; |
|
1298 | 577 |
|
1343 | 578 |
inc(step); |
1298 | 579 |
|
1343 | 580 |
AfterSwitchHedgehog; |
581 |
bBetweenTurns:= false |
|
582 |
end; |
|
583 |
step:= Low(step) |
|
584 |
end; |
|
585 |
end; |
|
15 | 586 |
|
4 | 587 |
if TurnTimeLeft > 0 then |
870 | 588 |
if CurrentHedgehog^.Gear <> nil then |
589 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
590 |
and not isInMultiShoot then |
|
591 |
begin |
|
592 |
if (TurnTimeLeft = 5000) |
|
593 |
and (CurrentHedgehog^.Gear <> nil) |
|
1669 | 594 |
and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then |
595 |
PlaySound(sndHurry, false, CurrentTeam^.voicepack); |
|
870 | 596 |
dec(TurnTimeLeft) |
597 |
end; |
|
351 | 598 |
|
651 | 599 |
if (not CurrentTeam^.ExtDriven) and |
917 | 600 |
((GameTicks and $FFFF) = $FFFF) then |
601 |
begin |
|
602 |
SendIPCTimeInc; |
|
603 |
inc(hiTicks) // we do not recieve a message for this |
|
604 |
end; |
|
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
605 |
|
515 | 606 |
inc(GameTicks) |
4 | 607 |
end; |
608 |
||
1854 | 609 |
//Purpose, to reset all transient attributes toggled by a utility. |
610 |
//If any of these are set as permanent toggles in the frontend, that needs to be checked and skipped here. |
|
1849 | 611 |
procedure ResetUtilities; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
612 |
var i: LongInt; |
1849 | 613 |
begin |
1895 | 614 |
if (GameFlags and gfLowGravity) = 0 then |
615 |
cGravity:= cMaxWindSpeed; |
|
616 |
||
1849 | 617 |
cDamageModifier:= _1; |
1895 | 618 |
|
619 |
if (GameFlags and gfLaserSight) = 0 then |
|
620 |
cLaserSighting:= false; |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
621 |
// have to sweep *all* current team hedgehogs since it is theoretically possible if you have enough invulnerabilities and switch turns to make your entire team invulnerable |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
622 |
|
1895 | 623 |
if (GameFlags and gfInvulnerable) = 0 then |
624 |
if (CurrentTeam <> nil) then |
|
625 |
with CurrentTeam^ do |
|
626 |
for i:= 0 to cMaxHHIndex do |
|
627 |
with Hedgehogs[i] do |
|
628 |
if (Gear <> nil) then |
|
629 |
Gear^.Invulnerable:= false; |
|
1849 | 630 |
end; |
631 |
||
4 | 632 |
procedure SetAllToActive; |
633 |
var t: PGear; |
|
634 |
begin |
|
635 |
AllInactive:= false; |
|
636 |
t:= GearsList; |
|
351 | 637 |
while t <> nil do |
1505 | 638 |
begin |
639 |
t^.Active:= true; |
|
640 |
t:= t^.NextGear |
|
641 |
end |
|
4 | 642 |
end; |
643 |
||
644 |
procedure SetAllHHToActive; |
|
645 |
var t: PGear; |
|
646 |
begin |
|
647 |
AllInactive:= false; |
|
648 |
t:= GearsList; |
|
351 | 649 |
while t <> nil do |
1505 | 650 |
begin |
651 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
|
652 |
t:= t^.NextGear |
|
653 |
end |
|
4 | 654 |
end; |
655 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
656 |
procedure DrawHH(Gear: PGear); |
371 | 657 |
var t: LongInt; |
822 | 658 |
amt: TAmmoType; |
1939 | 659 |
hx, hy, cx, cy, tx, ty, sx, sy, m: LongInt; // hedgehog, crosshair, temp, sprite |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
660 |
lx, ly, dx, dy, ax, ay, aAngle, dAngle: real; // laser, change |
1253 | 661 |
defaultPos, HatVisible: boolean; |
1906 | 662 |
VertexBuffer: array [0..1] of TVertex2f; |
292 | 663 |
begin |
868 | 664 |
if (Gear^.State and gstHHDeath) <> 0 then |
665 |
begin |
|
666 |
DrawSprite(sprHHDeath, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 26 + WorldDy, Gear^.Pos); |
|
667 |
exit |
|
668 |
end; |
|
1002 | 669 |
|
824 | 670 |
defaultPos:= true; |
1253 | 671 |
HatVisible:= false; |
847 | 672 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
673 |
sx:= hwRound(Gear^.X) + 1 + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
674 |
sy:= hwRound(Gear^.Y) - 3 + WorldDy; |
1002 | 675 |
if (Gear^.State and gstDrowning) <> 0 then |
676 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
677 |
DrawHedgehog(sx, sy, |
1002 | 678 |
hwSign(Gear^.dX), |
679 |
1, |
|
680 |
7, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
681 |
0); |
1002 | 682 |
defaultPos:= false |
683 |
end else |
|
684 |
||
1892 | 685 |
if ((Gear^.State and gstWinner) <> 0) and |
686 |
((CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtPickHammer)) then |
|
1011 | 687 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
688 |
DrawHedgehog(sx, sy, |
1011 | 689 |
hwSign(Gear^.dX), |
690 |
2, |
|
691 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
692 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
693 |
defaultPos:= false |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
694 |
end else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
695 |
if (Gear^.State and gstLoser) <> 0 then // for now using the jackhammer for its kind of bemused "oops" look |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
696 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
697 |
DrawHedgehog(sx, sy, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
698 |
hwSign(Gear^.dX), |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
699 |
1, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
700 |
2, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
701 |
0); |
1011 | 702 |
defaultPos:= false |
703 |
end else |
|
704 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
705 |
if (Gear^.State and gstHHDriven) <> 0 then |
966 | 706 |
begin |
1002 | 707 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
708 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
709 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
874 | 710 |
|
1002 | 711 |
if CurAmmoGear <> nil then |
712 |
begin |
|
713 |
case CurAmmoGear^.Kind of |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
714 |
gtShotgunShot: begin |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
715 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
716 |
DrawRotated(sprShotgun, hx, hy, hwSign(Gear^.dX), aangle) |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
717 |
else |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
718 |
DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
719 |
end; |
1002 | 720 |
gtDEagleShot: DrawRotated(sprDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
1601 | 721 |
gtBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 722 |
gtRCPlane: begin |
723 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
724 |
defaultPos:= false |
|
725 |
end; |
|
1002 | 726 |
gtRope: begin |
727 |
if Gear^.X < CurAmmoGear^.X then |
|
728 |
begin |
|
729 |
dAngle:= 0; |
|
730 |
m:= 1 |
|
731 |
end else |
|
732 |
begin |
|
733 |
dAngle:= 180; |
|
734 |
m:= -1 |
|
966 | 735 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
736 |
sx:= hwRound(Gear^.X) + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
737 |
sy:= hwRound(Gear^.Y) + WorldDy; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
738 |
DrawHedgehog(sx, sy, |
1002 | 739 |
m, |
740 |
1, |
|
741 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
742 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
1002 | 743 |
defaultPos:= false |
744 |
end; |
|
745 |
gtBlowTorch: begin |
|
746 |
DrawRotated(sprBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
747 |
DrawHedgehog(sx, sy, |
1002 | 748 |
hwSign(Gear^.dX), |
749 |
3, |
|
1113 | 750 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
751 |
0); |
1002 | 752 |
defaultPos:= false |
753 |
end; |
|
754 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
|
755 |
gtFirePunch: begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
756 |
DrawHedgehog(sx, sy, |
1002 | 757 |
hwSign(Gear^.dX), |
758 |
1, |
|
759 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
760 |
0); |
1002 | 761 |
defaultPos:= false |
762 |
end; |
|
1892 | 763 |
gtPickHammer: begin |
764 |
defaultPos:= false; |
|
765 |
dec(sy,20); |
|
766 |
end; |
|
1002 | 767 |
gtTeleport: defaultPos:= false; |
1010 | 768 |
gtWhip: begin |
769 |
DrawRotatedF(sprWhip, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
770 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
771 |
sy, |
1010 | 772 |
1, |
773 |
hwSign(Gear^.dX), |
|
774 |
0); |
|
775 |
defaultPos:= false |
|
776 |
end; |
|
1002 | 777 |
gtKamikaze: begin |
1286 | 778 |
if CurAmmoGear^.Pos = 0 then |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
779 |
DrawHedgehog(sx, sy, |
1286 | 780 |
hwSign(Gear^.dX), |
781 |
1, |
|
782 |
6, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
783 |
0) |
1286 | 784 |
else |
785 |
DrawRotatedF(sprKamikaze, |
|
786 |
hwRound(Gear^.X) + WorldDx, |
|
787 |
hwRound(Gear^.Y) + WorldDy, |
|
788 |
CurAmmoGear^.Pos - 1, |
|
789 |
1, |
|
790 |
DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
791 |
defaultPos:= false |
|
792 |
end; |
|
793 |
gtSeduction: begin |
|
794 |
if CurAmmoGear^.Pos >= 6 then |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
795 |
DrawHedgehog(sx, sy, |
1286 | 796 |
hwSign(Gear^.dX), |
797 |
2, |
|
798 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
799 |
0) |
1286 | 800 |
else |
801 |
begin |
|
802 |
DrawRotatedF(sprDress, |
|
803 |
hwRound(Gear^.X) + WorldDx, |
|
804 |
hwRound(Gear^.Y) + WorldDy, |
|
805 |
CurAmmoGear^.Pos, |
|
806 |
hwSign(Gear^.dX), |
|
807 |
0); |
|
808 |
DrawSprite(sprCensored, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 20 + WorldDy, 0) |
|
809 |
end; |
|
810 |
defaultPos:= false |
|
811 |
end; |
|
1002 | 812 |
end; |
813 |
||
814 |
case CurAmmoGear^.Kind of |
|
815 |
gtShotgunShot, |
|
816 |
gtDEagleShot, |
|
817 |
gtShover: begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
818 |
DrawHedgehog(sx, sy, |
1002 | 819 |
hwSign(Gear^.dX), |
820 |
0, |
|
821 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
822 |
0); |
1002 | 823 |
defaultPos:= false |
824 |
end |
|
825 |
end |
|
826 |
end else |
|
876 | 827 |
|
1002 | 828 |
if ((Gear^.State and gstHHJumping) <> 0) then |
829 |
begin |
|
830 |
if ((Gear^.State and gstHHHJump) <> 0) then |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
831 |
DrawHedgehog(sx, sy, |
1002 | 832 |
- hwSign(Gear^.dX), |
833 |
1, |
|
834 |
1, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
835 |
0) |
1002 | 836 |
else |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
837 |
DrawHedgehog(sx, sy, |
1002 | 838 |
hwSign(Gear^.dX), |
839 |
1, |
|
840 |
1, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
841 |
0); |
1002 | 842 |
defaultPos:= false |
843 |
end else |
|
874 | 844 |
|
1913 | 845 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) and (not isCursorVisible) then |
824 | 846 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
847 |
DrawHedgehog(sx, sy, |
1002 | 848 |
hwSign(Gear^.dX), |
849 |
0, |
|
850 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
851 |
0); |
1257 | 852 |
defaultPos:= false; |
853 |
HatVisible:= true |
|
1002 | 854 |
end |
855 |
else |
|
856 |
||
1033 | 857 |
if ((Gear^.State and gstAnimation) <> 0) then |
858 |
begin |
|
1034 | 859 |
DrawRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
860 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
861 |
sy, |
1033 | 862 |
Gear^.Pos, |
863 |
hwSign(Gear^.dX), |
|
864 |
0.0); |
|
865 |
defaultPos:= false |
|
866 |
end |
|
867 |
else |
|
1002 | 868 |
if ((Gear^.State and gstAttacked) = 0) then |
869 |
begin |
|
870 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
871 |
case amt of |
|
872 |
amBazooka, |
|
1717 | 873 |
amMortar: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
874 |
amBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
875 |
amDrill: DrawRotated(sprHandDrill, hx, hy, hwSign(Gear^.dX), aangle); |
|
1002 | 876 |
amRope: DrawRotated(sprHandRope, hx, hy, hwSign(Gear^.dX), aangle); |
877 |
amShotgun: DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
878 |
amDEagle: DrawRotated(sprHandDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
|
879 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
1717 | 880 |
amRCPlane: begin |
881 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
882 |
defaultPos:= false |
|
883 |
end; |
|
1939 | 884 |
amGirder: begin |
885 |
DrawSpriteClipped(sprGirder, |
|
886 |
sx-256, |
|
887 |
sy-256, |
|
888 |
LongInt(topY)+WorldDy, |
|
889 |
LongInt(rightX)+WorldDx, |
|
890 |
cWaterLine+WorldDy, |
|
891 |
LongInt(leftX)+WorldDx); |
|
892 |
end; |
|
1002 | 893 |
end; |
894 |
||
895 |
case amt of |
|
896 |
amAirAttack, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
897 |
amMineStrike: DrawRotated(sprHandAirAttack, sx, hwRound(Gear^.Y) + WorldDy, hwSign(Gear^.dX), 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
898 |
amPickHammer: DrawHedgehog(sx, sy, |
1002 | 899 |
hwSign(Gear^.dX), |
900 |
1, |
|
901 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
902 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
903 |
amBlowTorch: DrawHedgehog(sx, sy, |
1002 | 904 |
hwSign(Gear^.dX), |
905 |
1, |
|
906 |
3, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
907 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
908 |
amTeleport: DrawRotatedF(sprTeleport, sx, sy, 0, hwSign(Gear^.dX), 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
909 |
amKamikaze: DrawHedgehog(sx, sy, |
1002 | 910 |
hwSign(Gear^.dX), |
911 |
1, |
|
912 |
5, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
913 |
0); |
1221 | 914 |
amWhip: DrawRotatedF(sprWhip, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
915 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
916 |
sy, |
1010 | 917 |
0, |
918 |
hwSign(Gear^.dX), |
|
919 |
0); |
|
1002 | 920 |
else |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
921 |
DrawHedgehog(sx, sy, |
822 | 922 |
hwSign(Gear^.dX), |
923 |
0, |
|
1002 | 924 |
4, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
925 |
0); |
1253 | 926 |
|
927 |
HatVisible:= true; |
|
928 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
929 |
if (HatTex <> nil) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
930 |
and (HatVisibility > 0) then |
1253 | 931 |
DrawTextureF(HatTex, |
932 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
933 |
sx, |
1253 | 934 |
hwRound(Gear^.Y) - 8 + WorldDy, |
935 |
0, |
|
936 |
hwSign(Gear^.dX), |
|
937 |
32); |
|
1002 | 938 |
end; |
966 | 939 |
|
1002 | 940 |
case amt of |
941 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
942 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
943 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
944 |
end; |
|
966 | 945 |
|
1002 | 946 |
defaultPos:= false |
947 |
end |
|
948 |
end else // not gstHHDriven |
|
1012 | 949 |
begin |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
950 |
if (Gear^.Damage > 0) |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
951 |
and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
952 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
953 |
DrawHedgehog(sx, sy, |
1012 | 954 |
hwSign(Gear^.dX), |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
955 |
2, |
1012 | 956 |
1, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
957 |
Gear^.DirAngle); |
1012 | 958 |
defaultPos:= false |
1020 | 959 |
end else |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
960 |
|
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
961 |
if ((Gear^.State and gstHHJumping) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
962 |
begin |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
963 |
if ((Gear^.State and gstHHHJump) <> 0) then |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
964 |
DrawHedgehog(sx, sy, |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
965 |
- hwSign(Gear^.dX), |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
966 |
1, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
967 |
1, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
968 |
0) |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
969 |
else |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
970 |
DrawHedgehog(sx, sy, |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
971 |
hwSign(Gear^.dX), |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
972 |
1, |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
973 |
1, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
974 |
0); |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
975 |
defaultPos:= false |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
976 |
end; |
1012 | 977 |
end; |
834 | 978 |
|
1251 | 979 |
with PHedgehog(Gear^.Hedgehog)^ do |
970 | 980 |
begin |
1251 | 981 |
if defaultPos then |
982 |
begin |
|
983 |
DrawRotatedF(sprHHIdle, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
984 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
985 |
sy, |
1251 | 986 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
987 |
hwSign(Gear^.dX), |
|
988 |
0); |
|
1253 | 989 |
HatVisible:= true; |
990 |
end; |
|
991 |
||
992 |
if HatVisible then |
|
1251 | 993 |
if HatVisibility < 1.0 then |
1254 | 994 |
HatVisibility:= HatVisibility + 0.2 |
1253 | 995 |
else |
1251 | 996 |
else |
997 |
if HatVisibility > 0.0 then |
|
1254 | 998 |
HatVisibility:= HatVisibility - 0.2; |
1253 | 999 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1000 |
if (HatTex <> nil) |
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1001 |
and (HatVisibility > 0) then |
1255 | 1002 |
if DefaultPos then |
1003 |
DrawTextureF(HatTex, |
|
1004 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1005 |
sx, |
1255 | 1006 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1007 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
1008 |
hwSign(Gear^.dX), |
|
1009 |
32) |
|
1010 |
else |
|
1011 |
DrawTextureF(HatTex, |
|
1012 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1013 |
sx, |
1255 | 1014 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1015 |
0, |
|
1016 |
hwSign(Gear^.dX), |
|
1017 |
32); |
|
970 | 1018 |
end; |
292 | 1019 |
|
1251 | 1020 |
|
351 | 1021 |
with PHedgehog(Gear^.Hedgehog)^ do |
994 | 1022 |
begin |
1011 | 1023 |
if ((Gear^.State and not gstWinner) = 0) |
994 | 1024 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
958 | 1025 |
begin |
1660 | 1026 |
t:= hwRound(Gear^.Y) - cHHRadius - 12 + WorldDy; |
1027 |
if (cTagsMask and 1) <> 0 then |
|
1028 |
begin |
|
1029 |
dec(t, HealthTagTex^.h + 2); |
|
1030 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
1031 |
end; |
|
1032 |
if (cTagsMask and 2) <> 0 then |
|
1033 |
begin |
|
1034 |
dec(t, NameTagTex^.h + 2); |
|
1035 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
1036 |
end; |
|
1037 |
if (cTagsMask and 4) <> 0 then |
|
1038 |
begin |
|
1039 |
dec(t, Team^.NameTagTex^.h + 2); |
|
1040 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
1041 |
end |
|
958 | 1042 |
end; |
994 | 1043 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
958 | 1044 |
begin |
1045 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
|
1046 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
1047 |
GameTicks div 32 mod 16); |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
1048 |
|
958 | 1049 |
if (Gear^.State and gstDrowning) = 0 then |
1050 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
1051 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
|
1052 |
else |
|
1033 | 1053 |
if ShowCrosshair and ((Gear^.State and (gstAttacked or gstAnimation)) = 0) then |
958 | 1054 |
begin |
1854 | 1055 |
(* These calculations are a little complex for a few reasons: |
1056 |
1: I need to draw the laser from weapon origin to nearest land |
|
1057 |
2: I need to start the beam outside the hedgie for attractiveness. |
|
1058 |
3: I need to extend the beam beyond land. |
|
1059 |
This routine perhaps should be pushed into uStore or somesuch instead of continuuing the increase in size of this function. |
|
1060 |
*) |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1061 |
if ((Gear^.State and gstHHHJump) <> 0) then m:= -1 else m:= 1; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1062 |
dx:= hwSign(Gear^.dX) * m * Sin(Gear^.Angle * pi / cMaxAngle); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1063 |
dy:= - Cos(Gear^.Angle * pi / cMaxAngle); |
1854 | 1064 |
if cLaserSighting then |
1065 |
begin |
|
1066 |
lx:= hwRound(Gear^.X); |
|
1067 |
ly:= hwRound(Gear^.Y); |
|
1068 |
lx:= lx + dx * 16; |
|
1069 |
ly:= ly + dy * 16; |
|
1070 |
||
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1071 |
ax:= dx * 4; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1072 |
ay:= dy * 4; |
1854 | 1073 |
|
1074 |
tx:= round(lx); |
|
1075 |
ty:= round(ly); |
|
1076 |
hx:= tx; |
|
1077 |
hy:= ty; |
|
1078 |
while ((ty and LAND_HEIGHT_MASK) = 0) and |
|
1079 |
((tx and LAND_WIDTH_MASK) = 0) and |
|
1080 |
(Land[ty, tx] = 0) do |
|
1081 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1082 |
lx:= lx + ax; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1083 |
ly:= ly + ay; |
1854 | 1084 |
tx:= round(lx); |
1085 |
ty:= round(ly) |
|
1086 |
end; |
|
1087 |
// reached edge of land. assume infinite beam. Extend it way out past camera |
|
1088 |
if ((ty and LAND_HEIGHT_MASK) <> 0) or ((tx and LAND_WIDTH_MASK) <> 0) then |
|
1089 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1090 |
tx:= round(lx + ax * (LAND_WIDTH div 4)); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1091 |
ty:= round(ly + ay * (LAND_WIDTH div 4)); |
1854 | 1092 |
end; |
1093 |
||
1094 |
//if (abs(lx-tx)>8) or (abs(ly-ty)>8) then |
|
1095 |
begin |
|
1096 |
glDisable(GL_TEXTURE_2D); |
|
1097 |
glEnable(GL_LINE_SMOOTH); |
|
1906 | 1098 |
|
1854 | 1099 |
glColor4ub($FF, $00, $00, $C0); |
1906 | 1100 |
VertexBuffer[0].X:= hx + WorldDx; |
1101 |
VertexBuffer[0].Y:= hy + WorldDy; |
|
1102 |
VertexBuffer[1].X:= tx + WorldDx; |
|
1103 |
VertexBuffer[1].Y:= ty + WorldDy; |
|
1104 |
||
1105 |
glEnableClientState(GL_VERTEX_ARRAY); |
|
1106 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
|
1107 |
glDrawArrays(GL_LINES, 0, Length(VertexBuffer)); |
|
1854 | 1108 |
glColor4f(1, 1, 1, 1); |
1109 |
glEnable(GL_TEXTURE_2D); |
|
1110 |
glDisable(GL_LINE_SMOOTH); |
|
1111 |
end; |
|
1112 |
end; |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1113 |
// draw crosshair |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1114 |
cx:= Round(hwRound(Gear^.X) + dx * 80); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1115 |
cy:= Round(hwRound(Gear^.Y) + dy * 80); |
958 | 1116 |
DrawRotatedTex(Team^.CrosshairTex, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1117 |
12, 12, cx + WorldDx, cy + WorldDy, 0, |
1854 | 1118 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle); |
958 | 1119 |
end |
994 | 1120 |
end |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1121 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1122 |
|
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1123 |
if Gear^.Invulnerable then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1124 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1125 |
DrawSprite(sprInvulnerable, sx - 24, sy - 24, 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1126 |
end; |
292 | 1127 |
end; |
1128 |
||
956 | 1129 |
procedure DrawGears; |
853 | 1130 |
var Gear, HHGear: PGear; |
4 | 1131 |
i: Longword; |
371 | 1132 |
roplen: LongInt; |
4 | 1133 |
|
371 | 1134 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
1135 |
var eX, eY, dX, dY: LongInt; |
|
1136 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 1137 |
b: boolean; |
4 | 1138 |
begin |
37 | 1139 |
if (X1 = X2) and (Y1 = Y2) then |
1140 |
begin |
|
351 | 1141 |
OutError('WARNING: zero length rope line!', false); |
37 | 1142 |
exit |
1143 |
end; |
|
366 | 1144 |
eX:= 0; |
1145 |
eY:= 0; |
|
1146 |
dX:= X2 - X1; |
|
1147 |
dY:= Y2 - Y1; |
|
1148 |
||
1149 |
if (dX > 0) then sX:= 1 |
|
1150 |
else |
|
1151 |
if (dX < 0) then |
|
1152 |
begin |
|
1153 |
sX:= -1; |
|
1154 |
dX:= -dX |
|
1155 |
end else sX:= dX; |
|
1156 |
||
1157 |
if (dY > 0) then sY:= 1 |
|
1158 |
else |
|
1159 |
if (dY < 0) then |
|
4 | 1160 |
begin |
366 | 1161 |
sY:= -1; |
1162 |
dY:= -dY |
|
1163 |
end else sY:= dY; |
|
1164 |
||
1165 |
if (dX > dY) then d:= dX |
|
1166 |
else d:= dY; |
|
1167 |
||
1168 |
x:= X1; |
|
1169 |
y:= Y1; |
|
1170 |
||
1171 |
for i:= 0 to d do |
|
1172 |
begin |
|
1173 |
inc(eX, dX); |
|
1174 |
inc(eY, dY); |
|
1175 |
b:= false; |
|
1176 |
if (eX > d) then |
|
35 | 1177 |
begin |
366 | 1178 |
dec(eX, d); |
1179 |
inc(x, sX); |
|
1180 |
b:= true |
|
35 | 1181 |
end; |
366 | 1182 |
if (eY > d) then |
35 | 1183 |
begin |
366 | 1184 |
dec(eY, d); |
1185 |
inc(y, sY); |
|
1186 |
b:= true |
|
35 | 1187 |
end; |
366 | 1188 |
if b then |
1189 |
begin |
|
1190 |
inc(roplen); |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1191 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
366 | 1192 |
end |
4 | 1193 |
end |
366 | 1194 |
end; |
4 | 1195 |
|
1196 |
begin |
|
1197 |
Gear:= GearsList; |
|
1198 |
while Gear<>nil do |
|
1689 | 1199 |
begin |
1200 |
case Gear^.Kind of |
|
822 | 1201 |
gtAmmo_Bomb: DrawRotated(sprBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1689 | 1202 |
|
1696 | 1203 |
gtRCPlane: if (Gear^.Tag = -1) then |
1689 | 1204 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, -1, DxDy2Angle(Gear^.dX, Gear^.dY) + 90) |
1205 |
else |
|
1206 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy,0,DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
1207 |
||
1601 | 1208 |
gtBall: DrawRotatedf(sprBalls, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tag,0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1209 |
|
1573 | 1210 |
gtDrill: DrawRotated(sprDrill, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1211 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1212 |
gtHedgehog: DrawHH(Gear); |
1689 | 1213 |
|
822 | 1214 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1215 |
|
1505 | 1216 |
gtHealthTag: if Gear^.Tex <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tex); |
1689 | 1217 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1218 |
gtGrave: DrawSurfSprite(hwRound(Gear^.X) + WorldDx - 16, hwRound(Gear^.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, PHedgehog(Gear^.Hedgehog)^.Team^.GraveTex); |
1689 | 1219 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1220 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
1689 | 1221 |
|
848 | 1222 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
4 | 1223 |
gtRope: begin |
35 | 1224 |
roplen:= 0; |
4 | 1225 |
if RopePoints.Count > 0 then |
1226 |
begin |
|
1227 |
i:= 0; |
|
1228 |
while i < Pred(RopePoints.Count) do |
|
1229 |
begin |
|
351 | 1230 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
1231 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 1232 |
inc(i) |
1233 |
end; |
|
351 | 1234 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
1235 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
1236 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
1237 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 1238 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
4 | 1239 |
end else |
1781 | 1240 |
if Gear^.Elasticity.QWordValue > 0 then |
35 | 1241 |
begin |
351 | 1242 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
1243 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 1244 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
35 | 1245 |
end; |
4 | 1246 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1247 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
1012 | 1248 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 32 + WorldDy, Gear^.State); |
351 | 1249 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 1250 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
1251 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 1252 |
gtCase: case Gear^.Pos of |
1794 | 1253 |
posCaseAmmo : begin |
1254 |
i:= (GameTicks shr 6) mod 64; |
|
1255 |
if i > 18 then i:= 0; |
|
1256 |
DrawSprite(sprCase, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
|
1257 |
end; |
|
1009 | 1258 |
posCaseHealth: begin |
1863 | 1259 |
i:= ((GameTicks shr 6) + 38) mod 64; |
1260 |
if i > 13 then i:= 0; |
|
1009 | 1261 |
DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
1262 |
end; |
|
1861 | 1263 |
posCaseUtility: begin |
1863 | 1264 |
i:= (GameTicks shr 6) mod 70; |
1265 |
if i > 23 then i:= 0; |
|
1909 | 1266 |
i:= i mod 12; |
1863 | 1267 |
DrawSprite(sprUtility, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
1861 | 1268 |
end; |
42 | 1269 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1270 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1); |
822 | 1271 |
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
|
1272 |
gtCluster: DrawSprite(sprClusterParticle, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, 0); |
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1555
diff
changeset
|
1273 |
gtFlame: DrawSprite(sprFlame, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, (GameTicks div 128 + LongWord(Gear^.Tag)) mod 8); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1274 |
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
|
1275 |
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
|
1276 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 1); |
822 | 1277 |
gtAirBomb: DrawRotated(sprAirBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
853 | 1278 |
gtTeleport: begin |
1279 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1280 |
DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
1281 |
DrawRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
1282 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1283 |
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
|
1284 |
gtTarget: DrawSprite(sprTarget, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
959 | 1285 |
gtMortar: DrawRotated(sprMortar, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1108 | 1286 |
gtCake: if Gear^.Pos = 6 then |
1287 |
DrawRotatedf(sprCakeWalk, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (GameTicks div 40) mod 6, hwSign(Gear^.dX), Gear^.DirAngle + hwSign(Gear^.dX) * 90) |
|
1288 |
else |
|
1262 | 1289 |
DrawRotatedf(sprCakeDown, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 5 - Gear^.Pos, hwSign(Gear^.dX), 0); |
1367 | 1290 |
gtSeduction: if Gear^.Pos >= 14 then DrawSprite(sprSeduction, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
1262 | 1291 |
gtWatermelon: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, 0, Gear^.DirAngle); |
1292 |
gtMelonPiece: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 1, 0, Gear^.DirAngle); |
|
1263 | 1293 |
gtHellishBomb: DrawRotated(sprHellishBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1294 |
gtEvilTrace: if Gear^.State < 8 then DrawSprite(sprEvilTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
|
1295 |
end; |
|
351 | 1296 |
Gear:= Gear^.NextGear |
4 | 1297 |
end; |
1298 |
end; |
|
1299 |
||
1300 |
procedure FreeGearsList; |
|
1301 |
var t, tt: PGear; |
|
1302 |
begin |
|
1303 |
tt:= GearsList; |
|
1304 |
GearsList:= nil; |
|
1505 | 1305 |
while tt <> nil do |
1306 |
begin |
|
1307 |
t:= tt; |
|
1308 |
tt:= tt^.NextGear; |
|
1309 |
Dispose(t) |
|
1310 |
end; |
|
4 | 1311 |
end; |
1312 |
||
10 | 1313 |
procedure AddMiscGears; |
371 | 1314 |
var i: LongInt; |
1515 | 1315 |
Gear: PGear; |
4 | 1316 |
begin |
498 | 1317 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
1435
d4b32ee3caa6
Fix using freed memory (could be the cause of queue error problem and other bugs)
unc0rr
parents:
1434
diff
changeset
|
1318 |
|
1895 | 1319 |
if ((GameFlags and gfForts) = 0) and ((GameFlags and gfMines) <> 0) then |
1435
d4b32ee3caa6
Fix using freed memory (could be the cause of queue error problem and other bugs)
unc0rr
parents:
1434
diff
changeset
|
1320 |
for i:= 0 to Pred(cLandAdditions) do |
1515 | 1321 |
begin |
1322 |
Gear:= AddGear(0, 0, gtMine, 0, _0, _0, 0); |
|
1760 | 1323 |
FindPlace(Gear, false, 0, LAND_WIDTH) |
1895 | 1324 |
end; |
1325 |
||
1326 |
if (GameFlags and gfLowGravity) <> 0 then |
|
1327 |
cGravity:= cMaxWindSpeed / 2; |
|
1328 |
||
1329 |
Gear:= GearsList; |
|
1330 |
if (GameFlags and gfInvulnerable) <> 0 then |
|
1331 |
while Gear <> nil do |
|
1332 |
begin |
|
1333 |
Gear^.Invulnerable:= true; // this is only checked on hogs right now, so no need for gear type check |
|
1334 |
Gear:= Gear^.NextGear |
|
1335 |
end; |
|
1336 |
||
1337 |
if (GameFlags and gfLaserSight) <> 0 then |
|
1338 |
cLaserSighting:= true |
|
4 | 1339 |
end; |
1340 |
||
371 | 1341 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 1342 |
var Gear: PGear; |
506 | 1343 |
dmg, dmgRadius: LongInt; |
4 | 1344 |
begin |
1345 |
TargetPoint.X:= NoPointX; |
|
1434 | 1346 |
{$IFDEF DEBUGFILE}if Radius > 4 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
1049 | 1347 |
if (Radius > 10) then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
1669 | 1348 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion, false, nil); |
1433 | 1349 |
|
1350 |
if (Mask and EXPLAllDamageInRadius) = 0 then |
|
1351 |
dmgRadius:= Radius shl 1 |
|
1352 |
else |
|
1353 |
dmgRadius:= Radius; |
|
1354 |
||
4 | 1355 |
Gear:= GearsList; |
1356 |
while Gear <> nil do |
|
1200 | 1357 |
begin |
1358 |
dmg:= dmgRadius + cHHRadius div 2 - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
|
1359 |
if (dmg > 1) and |
|
1360 |
((Gear^.State and gstNoDamage) = 0) then |
|
1361 |
begin |
|
1861 | 1362 |
dmg:= modifyDamage(min(dmg div 2, Radius)); |
1200 | 1363 |
case Gear^.Kind of |
1364 |
gtHedgehog, |
|
1365 |
gtMine, |
|
1366 |
gtCase, |
|
1367 |
gtTarget, |
|
1368 |
gtFlame: begin |
|
1346 | 1369 |
//{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
1200 | 1370 |
if (Mask and EXPLNoDamage) = 0 then |
1371 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1372 |
if not Gear^.Invulnerable then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1373 |
begin |
1854 | 1374 |
inc(Gear^.Damage, dmg); |
1375 |
if Gear^.Kind = gtHedgehog then |
|
1376 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1377 |
end |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1378 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1379 |
Gear^.State:= Gear^.State or gstWinner; |
1200 | 1380 |
end; |
1381 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
|
1382 |
begin |
|
1383 |
DeleteCI(Gear); |
|
1384 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
|
1385 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
1868 | 1386 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstLoser); |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1387 |
if not Gear^.Invulnerable then |
1868 | 1388 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstWinner); |
1200 | 1389 |
Gear^.Active:= true; |
1390 |
FollowGear:= Gear |
|
1391 |
end; |
|
1392 |
end; |
|
1393 |
gtGrave: begin |
|
1394 |
Gear^.dY:= - _0_004 * dmg; |
|
1395 |
Gear^.Active:= true; |
|
1396 |
end; |
|
1397 |
end; |
|
1398 |
end; |
|
1399 |
Gear:= Gear^.NextGear |
|
1400 |
end; |
|
1401 |
||
621 | 1402 |
if (Mask and EXPLDontDraw) = 0 then |
1200 | 1403 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(X, Y, Radius); |
1404 |
||
498 | 1405 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 1406 |
end; |
1407 |
||
506 | 1408 |
procedure ShotgunShot(Gear: PGear); |
1409 |
var t: PGear; |
|
955 | 1410 |
dmg: LongInt; |
506 | 1411 |
begin |
509 | 1412 |
Gear^.Radius:= cShotgunRadius; |
506 | 1413 |
t:= GearsList; |
1414 |
while t <> nil do |
|
1286 | 1415 |
begin |
1861 | 1416 |
dmg:= modifyDamage(min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25)); |
1286 | 1417 |
if dmg > 0 then |
1418 |
case t^.Kind of |
|
1419 |
gtHedgehog, |
|
1420 |
gtMine, |
|
1421 |
gtCase, |
|
1422 |
gtTarget: begin |
|
1854 | 1423 |
if (not t^.Invulnerable) then |
1424 |
begin |
|
1849 | 1425 |
inc(t^.Damage, dmg); |
1854 | 1426 |
if t^.Kind = gtHedgehog then |
1427 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, PHedgehog(t^.Hedgehog)^.Team^.Clan^.Color); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1428 |
end |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1429 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1430 |
Gear^.State:= Gear^.State or gstWinner; |
867 | 1431 |
|
1286 | 1432 |
DeleteCI(t); |
1433 |
t^.dX:= t^.dX + Gear^.dX * dmg * _0_01 + SignAs(cHHKick, Gear^.dX); |
|
1434 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
|
1435 |
t^.State:= t^.State or gstMoving; |
|
1436 |
t^.Active:= true; |
|
1437 |
FollowGear:= t |
|
1438 |
end; |
|
1439 |
gtGrave: begin |
|
1440 |
t^.dY:= - _0_1; |
|
1441 |
t^.Active:= true |
|
1442 |
end; |
|
1443 |
end; |
|
1444 |
t:= t^.NextGear |
|
1445 |
end; |
|
621 | 1446 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 1447 |
end; |
1448 |
||
371 | 1449 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 1450 |
var t: PGearArray; |
371 | 1451 |
i: LongInt; |
38 | 1452 |
begin |
53 | 1453 |
t:= CheckGearsCollision(Ammo); |
351 | 1454 |
i:= t^.Count; |
1506 | 1455 |
|
1861 | 1456 |
Damage:= modifyDamage(Damage); |
1457 |
||
53 | 1458 |
while i > 0 do |
981 | 1459 |
begin |
1460 |
dec(i); |
|
1461 |
if (t^.ar[i]^.State and gstNoDamage) = 0 then |
|
1462 |
case t^.ar[i]^.Kind of |
|
1463 |
gtHedgehog, |
|
1464 |
gtMine, |
|
1465 |
gtTarget, |
|
1466 |
gtCase: begin |
|
1573 | 1467 |
if (Ammo^.Kind = gtDrill) then begin Ammo^.Timer:= 0; exit; end; |
1854 | 1468 |
if (not t^.ar[i]^.Invulnerable) then |
1469 |
begin |
|
1470 |
inc(t^.ar[i]^.Damage, Damage); |
|
981 | 1471 |
|
1854 | 1472 |
if (t^.ar[i]^.Kind = gtHedgehog) and (Damage > 0) then |
1473 |
AddDamageTag(hwRound(t^.ar[i]^.X), hwRound(t^.ar[i]^.Y), Damage, PHedgehog(t^.ar[i]^.Hedgehog)^.Team^.Clan^.Color); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1474 |
end |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1475 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1476 |
t^.ar[i]^.State:= t^.ar[i]^.State or gstWinner; |
867 | 1477 |
|
981 | 1478 |
DeleteCI(t^.ar[i]); |
1479 |
t^.ar[i]^.dX:= Ammo^.dX * Power * _0_01; |
|
1480 |
t^.ar[i]^.dY:= Ammo^.dY * Power * _0_01; |
|
1481 |
t^.ar[i]^.Active:= true; |
|
1482 |
t^.ar[i]^.State:= t^.ar[i]^.State or gstMoving; |
|
867 | 1483 |
|
982 | 1484 |
if TestCollisionXwithGear(t^.ar[i], hwSign(t^.ar[i]^.dX)) then |
981 | 1485 |
begin |
1486 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -3, hwSign(t^.ar[i]^.dX)) |
|
1487 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1488 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -2, hwSign(t^.ar[i]^.dX)) |
|
1489 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1490 |
if not (TestCollisionXwithXYShift(t^.ar[i], _0, -1, hwSign(t^.ar[i]^.dX)) |
|
1491 |
or TestCollisionYwithGear(t^.ar[i], -1)) then t^.ar[i]^.Y:= t^.ar[i]^.Y - _1; |
|
1492 |
end; |
|
982 | 1493 |
|
981 | 1494 |
FollowGear:= t^.ar[i] |
1495 |
end; |
|
1496 |
end |
|
1497 |
end; |
|
126 | 1498 |
SetAllToActive |
38 | 1499 |
end; |
1500 |
||
4 | 1501 |
procedure AssignHHCoords; |
955 | 1502 |
var i, t, p, j: LongInt; |
1760 | 1503 |
ar: array[0..Pred(cMaxHHs)] of PHedgehog; |
1504 |
Count: Longword; |
|
4 | 1505 |
begin |
1428 | 1506 |
if (GameFlags and (gfForts or gfDivideTeams)) <> 0 then |
955 | 1507 |
begin |
1508 |
t:= 0; |
|
1428 | 1509 |
TryDo(ClansCount = 2, 'More or less than 2 clans on map in divided teams mode!', true); |
955 | 1510 |
for p:= 0 to 1 do |
1511 |
begin |
|
1512 |
with ClansArray[p]^ do |
|
1513 |
for j:= 0 to Pred(TeamsNumber) do |
|
1514 |
with Teams[j]^ do |
|
1515 |
for i:= 0 to cMaxHHIndex do |
|
1516 |
with Hedgehogs[i] do |
|
958 | 1517 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
1518 |
begin |
|
1760 | 1519 |
FindPlace(Gear, false, t, t + LAND_WIDTH div 2);// could make Gear == nil |
1515 | 1520 |
if Gear <> nil then |
1521 |
begin |
|
1784 | 1522 |
Gear^.Pos:= GetRandom(49); |
1515 | 1523 |
Gear^.dX.isNegative:= p = 1; |
1524 |
end |
|
958 | 1525 |
end; |
1760 | 1526 |
t:= LAND_WIDTH div 2 |
955 | 1527 |
end |
1528 |
end else // mix hedgehogs |
|
1529 |
begin |
|
1530 |
Count:= 0; |
|
1531 |
for p:= 0 to Pred(TeamsCount) do |
|
1532 |
with TeamsArray[p]^ do |
|
1533 |
begin |
|
1534 |
for i:= 0 to cMaxHHIndex do |
|
1535 |
with Hedgehogs[i] do |
|
1536 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
|
1537 |
begin |
|
1515 | 1538 |
ar[Count]:= @Hedgehogs[i]; |
955 | 1539 |
inc(Count) |
1540 |
end; |
|
1541 |
end; |
|
1792 | 1542 |
// unC0Rr, while it is true user can watch value on map screen, IMO this (and check above) should be enforced in UI |
1543 |
// - is there a good place to put values for the different widgets to check? Right now they are kind of disconnected. |
|
1544 |
//it'd be nice if divide teams, forts mode and hh per map could all be checked by the team widget, or maybe disable start button |
|
1795 | 1545 |
TryDo(Count <= MaxHedgehogs, 'Too many hedgehogs for this map! (max # is ' + inttostr(MaxHedgehogs) + ')', true); |
955 | 1546 |
while (Count > 0) do |
1547 |
begin |
|
1548 |
i:= GetRandom(Count); |
|
1760 | 1549 |
FindPlace(ar[i]^.Gear, false, 0, LAND_WIDTH); |
1515 | 1550 |
if ar[i]^.Gear <> nil then |
1551 |
begin |
|
1760 | 1552 |
ar[i]^.Gear^.dX.isNegative:= hwRound(ar[i]^.Gear^.X) > LAND_WIDTH div 2; |
1776 | 1553 |
ar[i]^.Gear^.Pos:= GetRandom(19) |
1515 | 1554 |
end; |
1776 | 1555 |
ar[i]:= ar[Count - 1]; |
955 | 1556 |
dec(Count) |
1557 |
end |
|
1558 |
end |
|
4 | 1559 |
end; |
1560 |
||
371 | 1561 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 1562 |
var t: PGear; |
1563 |
begin |
|
1564 |
t:= GearsList; |
|
1565 |
rX:= sqr(rX); |
|
1566 |
rY:= sqr(rY); |
|
1433 | 1567 |
|
10 | 1568 |
while t <> nil do |
1433 | 1569 |
begin |
1570 |
if (t <> Gear) and (t^.Kind = Kind) then |
|
1571 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
|
1572 |
exit(t); |
|
1573 |
t:= t^.NextGear |
|
1574 |
end; |
|
1575 |
||
351 | 1576 |
CheckGearNear:= nil |
15 | 1577 |
end; |
1578 |
||
1433 | 1579 |
{procedure AmmoFlameWork(Ammo: PGear); |
79 | 1580 |
var t: PGear; |
1581 |
begin |
|
1582 |
t:= GearsList; |
|
1583 |
while t <> nil do |
|
1295 | 1584 |
begin |
1585 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
|
1586 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
|
1587 |
begin |
|
1588 |
inc(t^.Damage, 5); |
|
1589 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
|
1590 |
t^.dY:= - _0_25; |
|
1591 |
t^.Active:= true; |
|
1592 |
DeleteCI(t); |
|
1593 |
FollowGear:= t |
|
1594 |
end; |
|
1595 |
t:= t^.NextGear |
|
1596 |
end; |
|
1433 | 1597 |
end;} |
79 | 1598 |
|
371 | 1599 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 1600 |
var t: PGear; |
1601 |
begin |
|
1602 |
t:= GearsList; |
|
1603 |
rX:= sqr(rX); |
|
1604 |
rY:= sqr(rY); |
|
1605 |
while t <> nil do |
|
1515 | 1606 |
begin |
1607 |
if t^.Kind in Kind then |
|
1608 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
|
1609 |
exit(t); |
|
1610 |
t:= t^.NextGear |
|
1611 |
end; |
|
351 | 1612 |
CheckGearsNear:= nil |
16 | 1613 |
end; |
1614 |
||
1615 |
function CountGears(Kind: TGearType): Longword; |
|
1616 |
var t: PGear; |
|
351 | 1617 |
Result: Longword; |
16 | 1618 |
begin |
1619 |
Result:= 0; |
|
1620 |
t:= GearsList; |
|
1621 |
while t <> nil do |
|
1515 | 1622 |
begin |
1623 |
if t^.Kind = Kind then inc(Result); |
|
1624 |
t:= t^.NextGear |
|
1625 |
end; |
|
351 | 1626 |
CountGears:= Result |
16 | 1627 |
end; |
1628 |
||
15 | 1629 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1630 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1631 |
i: TAmmoType; |
15 | 1632 |
begin |
614 | 1633 |
if (cCaseFactor = 0) or |
1634 |
(CountGears(gtCase) >= 5) or |
|
1635 |
(getrandom(cCaseFactor) <> 0) then exit; |
|
1295 | 1636 |
|
1861 | 1637 |
case getrandom(20) of |
1638 |
0..6: begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1639 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
351 | 1640 |
FollowGear^.Health:= 25; |
1641 |
FollowGear^.Pos:= posCaseHealth |
|
295 | 1642 |
end; |
1861 | 1643 |
7..13: begin |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1644 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1645 |
for i:= Low(TAmmoType) to High(TAmmoType) do |
1861 | 1646 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
1647 |
inc(t, Ammoz[i].Probability); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1648 |
if (t > 0) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1649 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1650 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1651 |
t:= GetRandom(t); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1652 |
i:= Low(TAmmoType); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1653 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1654 |
dec(t, Ammoz[i].Probability); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1655 |
while t >= 0 do |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1656 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1657 |
inc(i); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1658 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1659 |
dec(t, Ammoz[i].Probability) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1660 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1661 |
FollowGear^.Pos:= posCaseAmmo; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1662 |
FollowGear^.State:= Longword(i) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1663 |
end |
295 | 1664 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1665 |
14..19: begin |
1861 | 1666 |
t:= 0; |
1667 |
for i:= Low(TAmmoType) to High(TAmmoType) do |
|
1668 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
|
1669 |
inc(t, Ammoz[i].Probability); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1670 |
if (t > 0) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1671 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1672 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1673 |
t:= GetRandom(t); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1674 |
i:= Low(TAmmoType); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1675 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1676 |
dec(t, Ammoz[i].Probability); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1677 |
while t >= 0 do |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1678 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1679 |
inc(i); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1680 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1681 |
dec(t, Ammoz[i].Probability) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1682 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1683 |
FollowGear^.Pos:= posCaseUtility; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1684 |
FollowGear^.State:= Longword(i) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1685 |
end |
1861 | 1686 |
end; |
295 | 1687 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1688 |
// handles case of no ammo or utility crates - considered also placing booleans in uAmmos and altering probabilities |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1689 |
if (FollowGear <> nil) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1690 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1691 |
FindPlace(FollowGear, true, 0, LAND_WIDTH); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1692 |
|
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1693 |
if (FollowGear <> nil) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1694 |
PlaySound(sndReinforce, false, CurrentTeam^.voicepack) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1695 |
end |
70 | 1696 |
end; |
1697 |
||
1515 | 1698 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 1699 |
|
1515 | 1700 |
function CountNonZeroz(x, y, r: LongInt): LongInt; |
1701 |
var i: LongInt; |
|
1702 |
Result: LongInt; |
|
1703 |
begin |
|
1704 |
Result:= 0; |
|
1753 | 1705 |
if (y and LAND_HEIGHT_MASK) = 0 then |
1760 | 1706 |
for i:= max(x - r, 0) to min(x + r, LAND_WIDTH - 4) do |
1515 | 1707 |
if Land[y, i] <> 0 then inc(Result); |
1708 |
CountNonZeroz:= Result |
|
1709 |
end; |
|
70 | 1710 |
|
495 | 1711 |
var x: LongInt; |
1515 | 1712 |
y, sy: LongInt; |
1713 |
ar: array[0..511] of TPoint; |
|
1714 |
ar2: array[0..1023] of TPoint; |
|
1715 |
cnt, cnt2: Longword; |
|
1716 |
delta: LongInt; |
|
70 | 1717 |
begin |
386 | 1718 |
delta:= 250; |
1719 |
cnt2:= 0; |
|
16 | 1720 |
repeat |
1515 | 1721 |
x:= Left + LongInt(GetRandom(Delta)); |
1722 |
repeat |
|
1723 |
inc(x, Delta); |
|
1724 |
cnt:= 0; |
|
1939 | 1725 |
if topY > 1024 then |
1726 |
y:= 1024-Gear^.Radius * 2 |
|
1727 |
else |
|
1728 |
y:= topY-Gear^.Radius * 2; |
|
1753 | 1729 |
while y < LAND_HEIGHT do |
1515 | 1730 |
begin |
1731 |
repeat |
|
1732 |
inc(y, 2); |
|
1760 | 1733 |
until (y >= LAND_HEIGHT) or (CountNonZeroz(x, y, Gear^.Radius - 1) = 0); |
1515 | 1734 |
|
1735 |
sy:= y; |
|
1736 |
||
1737 |
repeat |
|
1738 |
inc(y); |
|
1760 | 1739 |
until (y >= LAND_HEIGHT) or (CountNonZeroz(x, y, Gear^.Radius - 1) <> 0); |
1515 | 1740 |
|
1741 |
if (y - sy > Gear^.Radius * 2) |
|
1753 | 1742 |
and (y < LAND_HEIGHT) |
1515 | 1743 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
1744 |
begin |
|
1745 |
ar[cnt].X:= x; |
|
1746 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
|
1747 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
1748 |
inc(cnt) |
|
1749 |
end; |
|
1750 |
||
1751 |
inc(y, 45) |
|
1752 |
end; |
|
1753 |
||
1754 |
if cnt > 0 then |
|
1755 |
with ar[GetRandom(cnt)] do |
|
1756 |
begin |
|
1757 |
ar2[cnt2].x:= x; |
|
1758 |
ar2[cnt2].y:= y; |
|
1759 |
inc(cnt2) |
|
1760 |
end |
|
1761 |
until (x + Delta > Right); |
|
1760 | 1762 |
|
1515 | 1763 |
dec(Delta, 60) |
386 | 1764 |
until (cnt2 > 0) or (Delta < 70); |
1515 | 1765 |
|
386 | 1766 |
if cnt2 > 0 then |
1515 | 1767 |
with ar2[GetRandom(cnt2)] do |
1768 |
begin |
|
1769 |
Gear^.X:= int2hwFloat(x); |
|
1770 |
Gear^.Y:= int2hwFloat(y); |
|
1771 |
{$IFDEF DEBUGFILE} |
|
1772 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
1773 |
{$ENDIF} |
|
1774 |
end |
|
1775 |
else |
|
1776 |
begin |
|
1777 |
OutError('Can''t find place for Gear', false); |
|
1778 |
DeleteGear(Gear); |
|
1779 |
Gear:= nil |
|
1780 |
end |
|
10 | 1781 |
end; |
1782 |
||
4 | 1783 |
initialization |
1784 |
||
1785 |
finalization |
|
95 | 1786 |
FreeGearsList; |
4 | 1787 |
|
1788 |
end. |