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