author | unc0rr |
Tue, 22 Apr 2008 12:41:14 +0000 | |
changeset 857 | 43912f139db1 |
parent 856 | beecc5c5c71c |
child 861 | 9588286683be |
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); |
498 | 330 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
809
diff
changeset
|
331 |
uStats.HedgehogDamaged(Gear, t) |
307 | 332 |
end; |
351 | 333 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
602 | 334 |
if CurrentHedgehog^.Gear = Gear then |
145 | 335 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
351 | 336 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
307 | 337 |
inc(KilledHHs); |
48 | 338 |
RecountTeamHealth(team); |
47 | 339 |
end; |
357 | 340 |
{$IFDEF DEBUGFILE}AddFileLog('DeleteGear');{$ENDIF} |
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
593
diff
changeset
|
341 |
if Gear^.TriggerId <> 0 then TickTrigger(Gear^.TriggerId); |
82 | 342 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 343 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 344 |
RemoveGearFromList(Gear); |
4 | 345 |
Dispose(Gear) |
346 |
end; |
|
347 |
||
348 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
349 |
var Gear: PGear; |
|
350 |
begin |
|
351 | 351 |
CheckNoDamage:= true; |
4 | 352 |
Gear:= GearsList; |
353 |
while Gear <> nil do |
|
354 |
begin |
|
351 | 355 |
if Gear^.Kind = gtHedgehog then |
356 |
if Gear^.Damage <> 0 then |
|
4 | 357 |
begin |
351 | 358 |
CheckNoDamage:= false; |
359 |
if Gear^.Health < Gear^.Damage then Gear^.Health:= 0 |
|
522 | 360 |
else dec(Gear^.Health, Gear^.Damage); |
361 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
|
498 | 362 |
gtHealthTag, Gear^.Damage, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
351 | 363 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
364 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
365 |
||
366 |
Gear^.Damage:= 0 |
|
4 | 367 |
end; |
351 | 368 |
Gear:= Gear^.NextGear |
83 | 369 |
end; |
4 | 370 |
end; |
371 |
||
522 | 372 |
procedure AddDamageTag(X, Y, Damage: LongWord; Gear: PGear); |
373 |
begin |
|
529 | 374 |
if cAltDamage then |
375 |
AddGear(X, Y, gtSmallDamage, Damage, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
522 | 376 |
end; |
377 |
||
4 | 378 |
procedure ProcessGears; |
614 | 379 |
const delay: LongWord = 0; |
815 | 380 |
step: (stDelay, stChDmg, stChWin, stTurnReact, |
381 |
stAfterDelay, stSpawn, stNTurn) = stDelay; |
|
4 | 382 |
var Gear, t: PGear; |
383 |
begin |
|
384 |
AllInactive:= true; |
|
385 |
t:= GearsList; |
|
386 |
while t<>nil do |
|
387 |
begin |
|
388 |
Gear:= t; |
|
351 | 389 |
t:= Gear^.NextGear; |
390 |
if Gear^.Active then Gear^.doStep(Gear); |
|
4 | 391 |
end; |
89 | 392 |
|
4 | 393 |
if AllInactive then |
15 | 394 |
case step of |
395 |
stDelay: begin |
|
396 |
if delay = 0 then |
|
397 |
delay:= cInactDelay |
|
614 | 398 |
else |
399 |
dec(delay); |
|
400 |
||
401 |
if delay = 0 then |
|
402 |
inc(step) |
|
15 | 403 |
end; |
404 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
|
351 | 405 |
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
|
406 |
stTurnReact: begin |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
407 |
if not isInMultiShoot then |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
408 |
begin |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
409 |
uStats.TurnReaction; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
410 |
inc(step) |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
411 |
end else |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
412 |
inc(step, 2); |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
809
diff
changeset
|
413 |
end; |
815 | 414 |
stAfterDelay: begin |
415 |
if delay = 0 then |
|
416 |
delay:= cInactDelay |
|
417 |
else |
|
418 |
dec(delay); |
|
419 |
||
420 |
if delay = 0 then |
|
421 |
inc(step) |
|
422 |
end; |
|
15 | 423 |
stSpawn: begin |
424 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
425 |
inc(step) |
|
426 |
end; |
|
427 |
stNTurn: begin |
|
351 | 428 |
//AwareOfExplosion(0, 0, 0); |
15 | 429 |
if isInMultiShoot then isInMultiShoot:= false |
307 | 430 |
else begin |
351 | 431 |
ParseCommand('/nextturn', true); |
307 | 432 |
end; |
15 | 433 |
step:= Low(step) |
434 |
end; |
|
435 |
end; |
|
436 |
||
4 | 437 |
if TurnTimeLeft > 0 then |
602 | 438 |
if CurrentHedgehog^.Gear <> nil then |
439 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
4 | 440 |
and not isInMultiShoot then dec(TurnTimeLeft); |
351 | 441 |
|
651 | 442 |
if (not CurrentTeam^.ExtDriven) and |
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
443 |
((GameTicks and $FFFF) = $FFFF) then |
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
444 |
begin |
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
445 |
SendIPCTimeInc; |
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
446 |
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
|
447 |
end; |
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
448 |
|
515 | 449 |
inc(GameTicks) |
4 | 450 |
end; |
451 |
||
452 |
procedure SetAllToActive; |
|
453 |
var t: PGear; |
|
454 |
begin |
|
455 |
AllInactive:= false; |
|
456 |
t:= GearsList; |
|
351 | 457 |
while t <> nil do |
4 | 458 |
begin |
351 | 459 |
t^.Active:= true; |
460 |
t:= t^.NextGear |
|
4 | 461 |
end |
462 |
end; |
|
463 |
||
464 |
procedure SetAllHHToActive; |
|
465 |
var t: PGear; |
|
466 |
begin |
|
467 |
AllInactive:= false; |
|
468 |
t:= GearsList; |
|
351 | 469 |
while t <> nil do |
4 | 470 |
begin |
351 | 471 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
472 |
t:= t^.NextGear |
|
4 | 473 |
end |
474 |
end; |
|
475 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
476 |
procedure DrawHH(Gear: PGear); |
371 | 477 |
var t: LongInt; |
822 | 478 |
amt: TAmmoType; |
479 |
hx, hy: LongInt; |
|
480 |
aangle: real; |
|
824 | 481 |
defaultPos: boolean; |
292 | 482 |
begin |
824 | 483 |
defaultPos:= true; |
847 | 484 |
|
485 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
|
486 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
487 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
488 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
489 |
if (Gear^.State and gstHHDriven) <> 0 then |
822 | 490 |
begin |
491 |
if CurAmmoGear <> nil then |
|
492 |
begin |
|
847 | 493 |
case CurAmmoGear^.Kind of |
494 |
gtRope: begin |
|
495 |
DrawHedgehog(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
496 |
1, |
|
497 |
1, |
|
498 |
0, |
|
499 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) - 110); |
|
500 |
defaultPos:= false |
|
501 |
end; |
|
502 |
gtBlowTorch: begin |
|
503 |
DrawRotated(sprBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
504 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
505 |
hwSign(Gear^.dX), |
|
506 |
1, |
|
507 |
3, |
|
508 |
0); |
|
509 |
end; |
|
854 | 510 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
853 | 511 |
gtPickHammer, |
512 |
gtTeleport: defaultPos:= false; |
|
847 | 513 |
end |
822 | 514 |
end else |
824 | 515 |
if ((Gear^.State and gstHHJumping) <> 0) then |
516 |
begin |
|
517 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
518 |
hwSign(Gear^.dX), |
|
519 |
1, |
|
520 |
1, |
|
521 |
0); |
|
522 |
defaultPos:= false |
|
523 |
end else |
|
524 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) |
|
525 |
or ((Gear^.State and gstAttacked) <> 0) then |
|
526 |
begin |
|
822 | 527 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
528 |
hwSign(Gear^.dX), |
|
529 |
0, |
|
530 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
824 | 531 |
0); |
532 |
defaultPos:= false |
|
533 |
end |
|
822 | 534 |
else |
535 |
begin |
|
536 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
537 |
case amt of |
|
823
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
538 |
amBazooka: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
822 | 539 |
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
|
540 |
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
|
541 |
amDEagle: DrawRotated(sprHandDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
847 | 542 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
822 | 543 |
end; |
826 | 544 |
|
822 | 545 |
case amt of |
823
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
546 |
amBazooka, |
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
547 |
amRope, |
90d651e75547
Use ammo-in-hand sprites for desert eagle, shotgun and bazooka
unc0rr
parents:
822
diff
changeset
|
548 |
amShotgun, |
834 | 549 |
amDEagle, |
847 | 550 |
amBaseballBat: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
825 | 551 |
hwSign(Gear^.dX), |
552 |
0, |
|
553 |
4, |
|
554 |
0); |
|
555 |
amAirAttack, |
|
847 | 556 |
amMineStrike: DrawRotated(sprHandAirAttack, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) + WorldDy, hwSign(Gear^.dX), 0); |
557 |
amPickHammer: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
834 | 558 |
hwSign(Gear^.dX), |
559 |
1, |
|
560 |
2, |
|
561 |
0); |
|
847 | 562 |
amBlowTorch: DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
563 |
hwSign(Gear^.dX), |
|
564 |
1, |
|
565 |
3, |
|
566 |
0); |
|
853 | 567 |
amTeleport: DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, 0, hwSign(Gear^.dX), 0); |
822 | 568 |
else |
569 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
|
570 |
hwSign(Gear^.dX), |
|
571 |
0, |
|
847 | 572 |
4, |
822 | 573 |
0); |
834 | 574 |
end; |
575 |
||
576 |
case amt of |
|
577 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
578 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
579 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
580 |
end; |
|
581 |
||
582 |
defaultPos:= false |
|
822 | 583 |
end |
824 | 584 |
end; |
585 |
||
845 | 586 |
if defaultPos then |
822 | 587 |
DrawHedgehog(hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, |
588 |
hwSign(Gear^.dX), |
|
589 |
0, |
|
590 |
3, |
|
591 |
0); |
|
292 | 592 |
|
351 | 593 |
with PHedgehog(Gear^.Hedgehog)^ do |
538 | 594 |
if (Gear^.State{ and not gstAnimation}) = 0 then |
292 | 595 |
begin |
351 | 596 |
t:= hwRound(Gear^.Y) - cHHRadius - 10 + WorldDy; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
597 |
if (cTagsMask and 1) <> 0 then |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
598 |
begin |
762 | 599 |
dec(t, HealthTagTex^.h + 2); |
600 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
601 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
602 |
if (cTagsMask and 2) <> 0 then |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
603 |
begin |
762 | 604 |
dec(t, NameTagTex^.h + 2); |
605 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
606 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
607 |
if (cTagsMask and 4) <> 0 then |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
608 |
begin |
762 | 609 |
dec(t, Team^.NameTagTex^.h + 2); |
610 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
538
diff
changeset
|
611 |
end |
292 | 612 |
end else // Current hedgehog |
538 | 613 |
if (Gear^.State and gstHHDriven) <> 0 then |
292 | 614 |
begin |
351 | 615 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
616 |
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
|
617 |
GameTicks div 32 mod 16); |
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
618 |
|
542 | 619 |
if (Gear^.State and (gstMoving or gstDrowning)) = 0 then |
351 | 620 |
if (Gear^.State and gstHHThinking) <> 0 then |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
621 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
292 | 622 |
else |
351 | 623 |
if ShowCrosshair and ((Gear^.State and gstAttacked) = 0) then |
777 | 624 |
DrawRotatedTex(Team^.CrosshairTex, |
625 |
12, 12, |
|
626 |
Round(hwRound(Gear^.X) + |
|
627 |
hwSign(Gear^.dX) * Sin(Gear^.Angle*pi/cMaxAngle)*60) + WorldDx, |
|
628 |
Round(hwRound(Gear^.Y) - |
|
822 | 629 |
Cos(Gear^.Angle*pi/cMaxAngle)*60) + WorldDy, 0, |
840 | 630 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle) |
292 | 631 |
end; |
632 |
end; |
|
633 |
||
4 | 634 |
procedure DrawGears(Surface: PSDL_Surface); |
853 | 635 |
var Gear, HHGear: PGear; |
4 | 636 |
i: Longword; |
371 | 637 |
roplen: LongInt; |
4 | 638 |
|
371 | 639 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
640 |
var eX, eY, dX, dY: LongInt; |
|
641 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 642 |
b: boolean; |
4 | 643 |
begin |
37 | 644 |
if (X1 = X2) and (Y1 = Y2) then |
645 |
begin |
|
351 | 646 |
OutError('WARNING: zero length rope line!', false); |
37 | 647 |
exit |
648 |
end; |
|
366 | 649 |
eX:= 0; |
650 |
eY:= 0; |
|
651 |
dX:= X2 - X1; |
|
652 |
dY:= Y2 - Y1; |
|
653 |
||
654 |
if (dX > 0) then sX:= 1 |
|
655 |
else |
|
656 |
if (dX < 0) then |
|
657 |
begin |
|
658 |
sX:= -1; |
|
659 |
dX:= -dX |
|
660 |
end else sX:= dX; |
|
661 |
||
662 |
if (dY > 0) then sY:= 1 |
|
663 |
else |
|
664 |
if (dY < 0) then |
|
4 | 665 |
begin |
366 | 666 |
sY:= -1; |
667 |
dY:= -dY |
|
668 |
end else sY:= dY; |
|
669 |
||
670 |
if (dX > dY) then d:= dX |
|
671 |
else d:= dY; |
|
672 |
||
673 |
x:= X1; |
|
674 |
y:= Y1; |
|
675 |
||
676 |
for i:= 0 to d do |
|
677 |
begin |
|
678 |
inc(eX, dX); |
|
679 |
inc(eY, dY); |
|
680 |
b:= false; |
|
681 |
if (eX > d) then |
|
35 | 682 |
begin |
366 | 683 |
dec(eX, d); |
684 |
inc(x, sX); |
|
685 |
b:= true |
|
35 | 686 |
end; |
366 | 687 |
if (eY > d) then |
35 | 688 |
begin |
366 | 689 |
dec(eY, d); |
690 |
inc(y, sY); |
|
691 |
b:= true |
|
35 | 692 |
end; |
366 | 693 |
if b then |
694 |
begin |
|
695 |
inc(roplen); |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
696 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
366 | 697 |
end |
4 | 698 |
end |
366 | 699 |
end; |
4 | 700 |
|
701 |
begin |
|
702 |
Gear:= GearsList; |
|
703 |
while Gear<>nil do |
|
704 |
begin |
|
351 | 705 |
case Gear^.Kind of |
822 | 706 |
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
|
707 |
gtHedgehog: DrawHH(Gear); |
822 | 708 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
522 | 709 |
gtHealthTag, |
762 | 710 |
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
|
711 |
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
|
712 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
848 | 713 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
4 | 714 |
gtRope: begin |
35 | 715 |
roplen:= 0; |
4 | 716 |
if RopePoints.Count > 0 then |
717 |
begin |
|
718 |
i:= 0; |
|
719 |
while i < Pred(RopePoints.Count) do |
|
720 |
begin |
|
351 | 721 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
722 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 723 |
inc(i) |
724 |
end; |
|
351 | 725 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
726 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
727 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
728 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 729 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
4 | 730 |
end else |
35 | 731 |
begin |
351 | 732 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
733 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 734 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
35 | 735 |
end; |
4 | 736 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
737 |
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
|
738 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
351 | 739 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 740 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
741 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 742 |
gtCase: case Gear^.Pos of |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
743 |
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
|
744 |
posCaseHealth: DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, (GameTicks shr 6) mod 13); |
42 | 745 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
746 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1); |
822 | 747 |
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
|
748 |
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
|
749 |
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
|
750 |
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
|
751 |
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
|
752 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 1); |
822 | 753 |
gtAirBomb: DrawRotated(sprAirBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
853 | 754 |
gtTeleport: begin |
755 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
756 |
DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
757 |
DrawRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
|
758 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
759 |
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
|
760 |
gtTarget: DrawSprite(sprTarget, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
4 | 761 |
end; |
351 | 762 |
Gear:= Gear^.NextGear |
4 | 763 |
end; |
764 |
end; |
|
765 |
||
766 |
procedure FreeGearsList; |
|
767 |
var t, tt: PGear; |
|
768 |
begin |
|
769 |
tt:= GearsList; |
|
770 |
GearsList:= nil; |
|
771 |
while tt<>nil do |
|
772 |
begin |
|
773 |
t:= tt; |
|
351 | 774 |
tt:= tt^.NextGear; |
4 | 775 |
Dispose(t) |
776 |
end; |
|
777 |
end; |
|
778 |
||
10 | 779 |
procedure AddMiscGears; |
371 | 780 |
var i: LongInt; |
4 | 781 |
begin |
498 | 782 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
22 | 783 |
if (GameFlags and gfForts) = 0 then |
622 | 784 |
for i:= 0 to Pred(cLandAdditions) do |
498 | 785 |
FindPlace(AddGear(0, 0, gtMine, 0, _0, _0, 0), false, 0, 2048); |
4 | 786 |
end; |
787 |
||
371 | 788 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 789 |
var Gear: PGear; |
506 | 790 |
dmg, dmgRadius: LongInt; |
4 | 791 |
begin |
792 |
TargetPoint.X:= NoPointX; |
|
793 |
{$IFDEF DEBUGFILE}if Radius > 3 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
|
498 | 794 |
if Radius = 50 then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
355 | 795 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion, false); |
506 | 796 |
if (Mask and EXPLAllDamageInRadius)=0 then dmgRadius:= Radius shl 1 |
797 |
else dmgRadius:= Radius; |
|
4 | 798 |
Gear:= GearsList; |
799 |
while Gear <> nil do |
|
800 |
begin |
|
506 | 801 |
dmg:= dmgRadius - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
538 | 802 |
if (dmg > 1) and |
522 | 803 |
((Gear^.State and gstNoDamage) = 0) then |
4 | 804 |
begin |
355 | 805 |
dmg:= dmg div 2; |
351 | 806 |
case Gear^.Kind of |
10 | 807 |
gtHedgehog, |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
808 |
gtMine, |
79 | 809 |
gtCase, |
593 | 810 |
gtTarget, |
79 | 811 |
gtFlame: begin |
355 | 812 |
{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
522 | 813 |
if (Mask and EXPLNoDamage) = 0 then |
814 |
begin |
|
815 |
inc(Gear^.Damage, dmg); |
|
816 |
if Gear^.Kind = gtHedgehog then |
|
831 | 817 |
begin |
818 |
uStats.HedgehogDamaged(Gear, dmg); |
|
522 | 819 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, Gear) |
831 | 820 |
end |
522 | 821 |
end; |
351 | 822 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
42 | 823 |
begin |
506 | 824 |
DeleteCI(Gear); |
498 | 825 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
826 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
503 | 827 |
Gear^.State:= Gear^.State or gstMoving; |
351 | 828 |
Gear^.Active:= true; |
42 | 829 |
FollowGear:= Gear |
830 |
end; |
|
4 | 831 |
end; |
51 | 832 |
gtGrave: begin |
351 | 833 |
Gear^.dY:= - _0_004 * dmg; |
834 |
Gear^.Active:= true; |
|
51 | 835 |
end; |
4 | 836 |
end; |
837 |
end; |
|
351 | 838 |
Gear:= Gear^.NextGear |
80 | 839 |
end; |
621 | 840 |
if (Mask and EXPLDontDraw) = 0 then |
841 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(X, Y, Radius); |
|
498 | 842 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 843 |
end; |
844 |
||
506 | 845 |
procedure ShotgunShot(Gear: PGear); |
846 |
var t: PGear; |
|
847 |
dmg: integer; |
|
848 |
begin |
|
509 | 849 |
Gear^.Radius:= cShotgunRadius; |
506 | 850 |
t:= GearsList; |
851 |
while t <> nil do |
|
852 |
begin |
|
853 |
dmg:= min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25); |
|
538 | 854 |
if dmg > 0 then |
506 | 855 |
case t^.Kind of |
856 |
gtHedgehog, |
|
857 |
gtMine, |
|
593 | 858 |
gtCase, |
859 |
gtTarget: begin |
|
506 | 860 |
inc(t^.Damage, dmg); |
522 | 861 |
if t^.Kind = gtHedgehog then |
862 |
begin |
|
531 | 863 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, t); |
837
05e910ef2bf8
- Fix hedgehog moveing direction after being shot by shotgun
unc0rr
parents:
834
diff
changeset
|
864 |
uStats.HedgehogDamaged(t, dmg) |
522 | 865 |
end; |
506 | 866 |
DeleteCI(t); |
856 | 867 |
t^.dX:= t^.dX + Gear^.dX * dmg * _0_01 + SignAs(cHHKick, Gear^.dX); |
506 | 868 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
869 |
t^.State:= t^.State or gstMoving; |
|
870 |
t^.Active:= true; |
|
871 |
FollowGear:= t |
|
872 |
end; |
|
873 |
gtGrave: begin |
|
874 |
t^.dY:= - _0_1; |
|
875 |
t^.Active:= true |
|
876 |
end; |
|
877 |
end; |
|
878 |
t:= t^.NextGear |
|
879 |
end; |
|
621 | 880 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 881 |
end; |
882 |
||
371 | 883 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 884 |
var t: PGearArray; |
371 | 885 |
i: LongInt; |
38 | 886 |
begin |
53 | 887 |
t:= CheckGearsCollision(Ammo); |
351 | 888 |
i:= t^.Count; |
53 | 889 |
while i > 0 do |
890 |
begin |
|
891 |
dec(i); |
|
351 | 892 |
if (t^.ar[i]^.State and gstNoDamage) = 0 then |
893 |
case t^.ar[i]^.Kind of |
|
53 | 894 |
gtHedgehog, |
895 |
gtMine, |
|
593 | 896 |
gtTarget, |
53 | 897 |
gtCase: begin |
351 | 898 |
inc(t^.ar[i]^.Damage, Damage); |
522 | 899 |
if t^.ar[i]^.Kind = gtHedgehog then |
900 |
begin |
|
901 |
AddDamageTag(hwRound(t^.ar[i]^.X), hwRound(t^.ar[i]^.Y), Damage, t^.ar[i]); |
|
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
809
diff
changeset
|
902 |
uStats.HedgehogDamaged(t^.ar[i], Damage) |
522 | 903 |
end; |
538 | 904 |
DeleteCI(t^.ar[i]); |
351 | 905 |
t^.ar[i]^.dX:= Ammo^.dX * Power * _0_01; |
906 |
t^.ar[i]^.dY:= Ammo^.dY * Power * _0_01; |
|
907 |
t^.ar[i]^.Active:= true; |
|
503 | 908 |
t^.ar[i]^.State:= t^.ar[i]^.State or gstMoving; |
351 | 909 |
FollowGear:= t^.ar[i] |
53 | 910 |
end; |
911 |
end |
|
126 | 912 |
end; |
913 |
SetAllToActive |
|
38 | 914 |
end; |
915 |
||
4 | 916 |
procedure AssignHHCoords; |
547 | 917 |
var i, t, p: LongInt; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
918 |
ar: array[0..Pred(cMaxHHs)] of PGear; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
919 |
Count: Longword; |
4 | 920 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
921 |
if (GameFlags and gfForts) <> 0 then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
922 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
923 |
t:= 0; |
547 | 924 |
for p:= 0 to Pred(TeamsCount) do |
925 |
with TeamsArray[p]^ do |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
926 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
927 |
for i:= 0 to cMaxHHIndex do |
547 | 928 |
with Hedgehogs[i] do |
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
929 |
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
|
930 |
inc(t, 1024); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
931 |
end |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
932 |
end else // mix hedgehogs |
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 |
Count:= 0; |
547 | 935 |
for p:= 0 to Pred(TeamsCount) do |
936 |
with TeamsArray[p]^ do |
|
4 | 937 |
begin |
82 | 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 |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
941 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
942 |
ar[Count]:= Gear; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
943 |
inc(Count) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
944 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
945 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
946 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
947 |
while (Count > 0) do |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
948 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
949 |
i:= GetRandom(Count); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
950 |
FindPlace(ar[i], false, 0, 2048); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
951 |
ar[i]:= ar[Count - 1]; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
952 |
dec(Count) |
4 | 953 |
end |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
954 |
end |
4 | 955 |
end; |
956 |
||
371 | 957 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 958 |
var t: PGear; |
959 |
begin |
|
960 |
t:= GearsList; |
|
961 |
rX:= sqr(rX); |
|
962 |
rY:= sqr(rY); |
|
963 |
while t <> nil do |
|
964 |
begin |
|
351 | 965 |
if (t <> Gear) and (t^.Kind = Kind) then |
498 | 966 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
351 | 967 |
exit(t); |
968 |
t:= t^.NextGear |
|
10 | 969 |
end; |
351 | 970 |
CheckGearNear:= nil |
15 | 971 |
end; |
972 |
||
79 | 973 |
procedure AmmoFlameWork(Ammo: PGear); |
974 |
var t: PGear; |
|
975 |
begin |
|
976 |
t:= GearsList; |
|
977 |
while t <> nil do |
|
978 |
begin |
|
351 | 979 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
498 | 980 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
79 | 981 |
begin |
351 | 982 |
inc(t^.Damage, 5); |
983 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
|
984 |
t^.dY:= - _0_25; |
|
985 |
t^.Active:= true; |
|
79 | 986 |
DeleteCI(t); |
987 |
FollowGear:= t |
|
988 |
end; |
|
351 | 989 |
t:= t^.NextGear |
79 | 990 |
end; |
991 |
end; |
|
992 |
||
371 | 993 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 994 |
var t: PGear; |
995 |
begin |
|
996 |
t:= GearsList; |
|
997 |
rX:= sqr(rX); |
|
998 |
rY:= sqr(rY); |
|
999 |
while t <> nil do |
|
1000 |
begin |
|
351 | 1001 |
if t^.Kind in Kind then |
498 | 1002 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
351 | 1003 |
exit(t); |
1004 |
t:= t^.NextGear |
|
16 | 1005 |
end; |
351 | 1006 |
CheckGearsNear:= nil |
16 | 1007 |
end; |
1008 |
||
1009 |
function CountGears(Kind: TGearType): Longword; |
|
1010 |
var t: PGear; |
|
351 | 1011 |
Result: Longword; |
16 | 1012 |
begin |
1013 |
Result:= 0; |
|
1014 |
t:= GearsList; |
|
1015 |
while t <> nil do |
|
1016 |
begin |
|
351 | 1017 |
if t^.Kind = Kind then inc(Result); |
1018 |
t:= t^.NextGear |
|
16 | 1019 |
end; |
351 | 1020 |
CountGears:= Result |
16 | 1021 |
end; |
1022 |
||
15 | 1023 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1024 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1025 |
i: TAmmoType; |
15 | 1026 |
begin |
614 | 1027 |
if (cCaseFactor = 0) or |
1028 |
(CountGears(gtCase) >= 5) or |
|
1029 |
(getrandom(cCaseFactor) <> 0) then exit; |
|
498 | 1030 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
295 | 1031 |
case getrandom(2) of |
1032 |
0: begin |
|
351 | 1033 |
FollowGear^.Health:= 25; |
1034 |
FollowGear^.Pos:= posCaseHealth |
|
295 | 1035 |
end; |
1036 |
1: begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1037 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1038 |
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
|
1039 |
inc(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1040 |
t:= GetRandom(t); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1041 |
i:= Low(TAmmoType); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1042 |
dec(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1043 |
while t >= 0 do |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1044 |
begin |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1045 |
inc(i); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1046 |
dec(t, Ammoz[i].Probability) |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1047 |
end; |
351 | 1048 |
FollowGear^.Pos:= posCaseAmmo; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1049 |
FollowGear^.State:= Longword(i) |
295 | 1050 |
end; |
1051 |
end; |
|
70 | 1052 |
FindPlace(FollowGear, true, 0, 2048) |
1053 |
end; |
|
1054 |
||
371 | 1055 |
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 1056 |
|
371 | 1057 |
function CountNonZeroz(x, y, r: LongInt): LongInt; |
1058 |
var i: LongInt; |
|
1059 |
Result: LongInt; |
|
70 | 1060 |
begin |
1061 |
Result:= 0; |
|
701 | 1062 |
if (y and $FFFFFC00) = 0 then |
1063 |
for i:= max(x - r, 0) to min(x + r, 2043) do |
|
351 | 1064 |
if Land[y, i] <> 0 then inc(Result); |
1065 |
CountNonZeroz:= Result |
|
70 | 1066 |
end; |
1067 |
||
495 | 1068 |
var x: LongInt; |
371 | 1069 |
y, sy: LongInt; |
386 | 1070 |
ar: array[0..511] of TPoint; |
1071 |
ar2: array[0..1023] of TPoint; |
|
392 | 1072 |
cnt, cnt2: Longword; |
1073 |
delta: LongInt; |
|
70 | 1074 |
begin |
386 | 1075 |
delta:= 250; |
1076 |
cnt2:= 0; |
|
16 | 1077 |
repeat |
392 | 1078 |
x:= Left + LongInt(GetRandom(Delta)); |
70 | 1079 |
repeat |
386 | 1080 |
inc(x, Delta); |
70 | 1081 |
cnt:= 0; |
351 | 1082 |
y:= -Gear^.Radius * 2; |
70 | 1083 |
while y < 1023 do |
16 | 1084 |
begin |
70 | 1085 |
repeat |
701 | 1086 |
inc(y, 2); |
351 | 1087 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) = 0); |
70 | 1088 |
sy:= y; |
1089 |
repeat |
|
1090 |
inc(y); |
|
351 | 1091 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) <> 0); |
1092 |
if (y - sy > Gear^.Radius * 2) |
|
70 | 1093 |
and (y < 1023) |
351 | 1094 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
70 | 1095 |
begin |
1096 |
ar[cnt].X:= x; |
|
351 | 1097 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
1098 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
70 | 1099 |
inc(cnt) |
1100 |
end; |
|
386 | 1101 |
inc(y, 45) |
16 | 1102 |
end; |
70 | 1103 |
if cnt > 0 then |
1104 |
with ar[GetRandom(cnt)] do |
|
1105 |
begin |
|
386 | 1106 |
ar2[cnt2].x:= x; |
1107 |
ar2[cnt2].y:= y; |
|
1108 |
inc(cnt2) |
|
70 | 1109 |
end |
386 | 1110 |
until (x + Delta > Right); |
1111 |
dec(Delta, 60) |
|
1112 |
until (cnt2 > 0) or (Delta < 70); |
|
1113 |
if cnt2 > 0 then |
|
1114 |
with ar2[GetRandom(cnt2)] do |
|
1115 |
begin |
|
498 | 1116 |
Gear^.X:= int2hwFloat(x); |
1117 |
Gear^.Y:= int2hwFloat(y); |
|
386 | 1118 |
{$IFDEF DEBUGFILE} |
1119 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
1120 |
{$ENDIF} |
|
1121 |
end |
|
1122 |
else |
|
1123 |
begin |
|
1124 |
OutError('Can''t find place for Gear', false); |
|
1125 |
DeleteGear(Gear) |
|
1126 |
end |
|
10 | 1127 |
end; |
1128 |
||
4 | 1129 |
initialization |
1130 |
||
1131 |
finalization |
|
95 | 1132 |
FreeGearsList; |
4 | 1133 |
|
1134 |
end. |