author | unc0rr |
Tue, 29 May 2007 21:56:35 +0000 | |
changeset 531 | 1f6c6eb0ea02 |
parent 529 | 812682c1ab62 |
child 534 | 92fb2b0d5117 |
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; |
351 | 40 |
DirAngle: hwFloat; |
4 | 41 |
Timer : LongWord; |
351 | 42 |
Elasticity: hwFloat; |
43 |
Friction : hwFloat; |
|
4 | 44 |
Message : Longword; |
45 |
Hedgehog: pointer; |
|
371 | 46 |
Health, Damage: LongInt; |
511 | 47 |
CollisionIndex: LongInt; |
371 | 48 |
Tag: LongInt; |
95 | 49 |
Surf: PSDL_Surface; |
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; |
4 | 52 |
end; |
53 |
||
371 | 54 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
4 | 55 |
procedure ProcessGears; |
56 |
procedure SetAllToActive; |
|
57 |
procedure SetAllHHToActive; |
|
58 |
procedure DrawGears(Surface: PSDL_Surface); |
|
59 |
procedure FreeGearsList; |
|
10 | 60 |
procedure AddMiscGears; |
293 | 61 |
procedure AddClouds; |
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, |
295 | 72 |
uLand, uIO, uLandGraphics, uAIMisc, uLocale, uAI, uAmmos; |
68 | 73 |
var RopePoints: record |
4 | 74 |
Count: Longword; |
371 | 75 |
HookAngle: LongInt; |
4 | 76 |
ar: array[0..300] of record |
351 | 77 |
X, Y: hwFloat; |
78 |
dLen: hwFloat; |
|
4 | 79 |
b: boolean; |
80 |
end; |
|
81 |
end; |
|
307 | 82 |
StepDamage: Longword = 0; |
4 | 83 |
|
84 |
procedure DeleteGear(Gear: PGear); forward; |
|
371 | 85 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); forward; |
86 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); forward; |
|
79 | 87 |
procedure AmmoFlameWork(Ammo: PGear); forward; |
371 | 88 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; forward; |
15 | 89 |
procedure SpawnBoxOfSmth; forward; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
24
diff
changeset
|
90 |
procedure AfterAttack; forward; |
371 | 91 |
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: LongInt); forward; |
302 | 92 |
procedure HedgehogStep(Gear: PGear); forward; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
93 |
procedure HedgehogChAngle(Gear: PGear); forward; |
506 | 94 |
procedure ShotgunShot(Gear: PGear); forward; |
522 | 95 |
procedure AddDamageTag(X, Y, Damage: LongWord; Gear: PGear); forward; |
4 | 96 |
|
97 |
{$INCLUDE GSHandlers.inc} |
|
98 |
{$INCLUDE HHHandlers.inc} |
|
99 |
||
100 |
const doStepHandlers: array[TGearType] of TGearStepProcedure = ( |
|
351 | 101 |
@doStepCloud, |
102 |
@doStepBomb, |
|
103 |
@doStepHedgehog, |
|
104 |
@doStepGrenade, |
|
105 |
@doStepHealthTag, |
|
106 |
@doStepGrave, |
|
107 |
@doStepUFO, |
|
108 |
@doStepShotgunShot, |
|
109 |
@doStepPickHammer, |
|
110 |
@doStepRope, |
|
111 |
@doStepSmokeTrace, |
|
112 |
@doStepExplosion, |
|
113 |
@doStepMine, |
|
114 |
@doStepCase, |
|
115 |
@doStepDEagleShot, |
|
116 |
@doStepDynamite, |
|
117 |
@doStepTeamHealthSorter, |
|
118 |
@doStepBomb, |
|
119 |
@doStepCluster, |
|
120 |
@doStepShover, |
|
121 |
@doStepFlame, |
|
122 |
@doStepFirePunch, |
|
123 |
@doStepActionTimer, |
|
124 |
@doStepActionTimer, |
|
125 |
@doStepActionTimer, |
|
126 |
@doStepParachute, |
|
127 |
@doStepAirAttack, |
|
128 |
@doStepAirBomb, |
|
409 | 129 |
@doStepBlowTorch, |
520 | 130 |
@doStepGirder, |
522 | 131 |
@doStepTeleport, |
132 |
@doStepHealthTag |
|
4 | 133 |
); |
134 |
||
294 | 135 |
procedure InsertGearToList(Gear: PGear); |
136 |
var tmp: PGear; |
|
137 |
begin |
|
138 |
if GearsList = nil then |
|
139 |
GearsList:= Gear |
|
140 |
else begin |
|
141 |
// WARNING: this code assumes that the first gears added to the list are clouds (have maximal Z) |
|
142 |
tmp:= GearsList; |
|
351 | 143 |
while (tmp <> nil) and (tmp^.Z < Gear^.Z) do |
144 |
tmp:= tmp^.NextGear; |
|
294 | 145 |
|
351 | 146 |
if tmp^.PrevGear <> nil then tmp^.PrevGear^.NextGear:= Gear; |
147 |
Gear^.PrevGear:= tmp^.PrevGear; |
|
148 |
tmp^.PrevGear:= Gear; |
|
149 |
Gear^.NextGear:= tmp; |
|
294 | 150 |
if GearsList = tmp then GearsList:= Gear |
151 |
end |
|
152 |
end; |
|
153 |
||
154 |
procedure RemoveGearFromList(Gear: PGear); |
|
155 |
begin |
|
351 | 156 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
157 |
if Gear^.PrevGear <> nil then Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
294 | 158 |
else begin |
351 | 159 |
GearsList:= Gear^.NextGear; |
160 |
if GearsList <> nil then GearsList^.PrevGear:= nil |
|
294 | 161 |
end; |
162 |
end; |
|
163 |
||
371 | 164 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
79 | 165 |
const Counter: Longword = 0; |
351 | 166 |
var Result: PGear; |
4 | 167 |
begin |
79 | 168 |
inc(Counter); |
108 | 169 |
{$IFDEF DEBUGFILE}AddFileLog('AddGear: ('+inttostr(x)+','+inttostr(y)+'), d('+floattostr(dX)+','+floattostr(dY)+')');{$ENDIF} |
4 | 170 |
New(Result); |
357 | 171 |
{$IFDEF DEBUGFILE}AddFileLog('AddGear: type = ' + inttostr(ord(Kind)));{$ENDIF} |
4 | 172 |
FillChar(Result^, sizeof(TGear), 0); |
498 | 173 |
Result^.X:= int2hwFloat(X); |
174 |
Result^.Y:= int2hwFloat(Y); |
|
351 | 175 |
Result^.Kind := Kind; |
176 |
Result^.State:= State; |
|
177 |
Result^.Active:= true; |
|
178 |
Result^.dX:= dX; |
|
179 |
Result^.dY:= dY; |
|
180 |
Result^.doStep:= doStepHandlers[Kind]; |
|
511 | 181 |
Result^.CollisionIndex:= -1; |
351 | 182 |
Result^.Timer:= Timer; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
183 |
|
4 | 184 |
if CurrentTeam <> nil then |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
185 |
begin |
351 | 186 |
Result^.Hedgehog:= @(CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog]); |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
187 |
Result^.IntersectGear:= CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
188 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
189 |
|
4 | 190 |
case Kind of |
351 | 191 |
gtCloud: Result^.Z:= High(Result^.Z); |
4 | 192 |
gtAmmo_Bomb: begin |
351 | 193 |
Result^.Radius:= 4; |
194 |
Result^.Elasticity:= _0_6; |
|
195 |
Result^.Friction:= _0_995; |
|
4 | 196 |
end; |
197 |
gtHedgehog: begin |
|
351 | 198 |
Result^.Radius:= cHHRadius; |
199 |
Result^.Elasticity:= _0_35; |
|
200 |
Result^.Friction:= _0_999; |
|
201 |
Result^.Angle:= cMaxAngle div 2; |
|
202 |
Result^.Z:= cHHZ; |
|
4 | 203 |
end; |
204 |
gtAmmo_Grenade: begin |
|
351 | 205 |
Result^.Radius:= 4; |
4 | 206 |
end; |
207 |
gtHealthTag: begin |
|
351 | 208 |
Result^.Timer:= 1500; |
522 | 209 |
Result^.Z:= 2001; |
4 | 210 |
end; |
211 |
gtGrave: begin |
|
351 | 212 |
Result^.Radius:= 10; |
213 |
Result^.Elasticity:= _0_6; |
|
4 | 214 |
end; |
215 |
gtUFO: begin |
|
351 | 216 |
Result^.Radius:= 5; |
217 |
Result^.Timer:= 500; |
|
218 |
Result^.Elasticity:= _0_9 |
|
4 | 219 |
end; |
220 |
gtShotgunShot: begin |
|
351 | 221 |
Result^.Timer:= 900; |
222 |
Result^.Radius:= 2 |
|
4 | 223 |
end; |
224 |
gtPickHammer: begin |
|
351 | 225 |
Result^.Radius:= 10; |
226 |
Result^.Timer:= 4000 |
|
4 | 227 |
end; |
228 |
gtSmokeTrace: begin |
|
498 | 229 |
Result^.X:= Result^.X - _16; |
230 |
Result^.Y:= Result^.Y - _16; |
|
351 | 231 |
Result^.State:= 8 |
4 | 232 |
end; |
233 |
gtRope: begin |
|
351 | 234 |
Result^.Radius:= 3; |
498 | 235 |
Result^.Friction:= _450; |
4 | 236 |
RopePoints.Count:= 0; |
237 |
end; |
|
9 | 238 |
gtExplosion: begin |
498 | 239 |
Result^.X:= Result^.X - _25; |
240 |
Result^.Y:= Result^.Y - _25; |
|
9 | 241 |
end; |
10 | 242 |
gtMine: begin |
503 | 243 |
Result^.State:= Result^.State or gstMoving; |
351 | 244 |
Result^.Radius:= 3; |
245 |
Result^.Elasticity:= _0_55; |
|
246 |
Result^.Friction:= _0_995; |
|
247 |
Result^.Timer:= 3000; |
|
10 | 248 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
249 |
gtCase: begin |
351 | 250 |
Result^.Radius:= 16; |
251 |
Result^.Elasticity:= _0_4 |
|
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
252 |
end; |
37 | 253 |
gtDEagleShot: begin |
351 | 254 |
Result^.Radius:= 1; |
255 |
Result^.Health:= 50 |
|
37 | 256 |
end; |
39 | 257 |
gtDynamite: begin |
351 | 258 |
Result^.Radius:= 3; |
259 |
Result^.Elasticity:= _0_55; |
|
260 |
Result^.Friction:= _0_03; |
|
261 |
Result^.Timer:= 5000; |
|
39 | 262 |
end; |
78 | 263 |
gtClusterBomb: begin |
351 | 264 |
Result^.Radius:= 4; |
265 |
Result^.Elasticity:= _0_6; |
|
266 |
Result^.Friction:= _0_995; |
|
78 | 267 |
end; |
79 | 268 |
gtFlame: begin |
351 | 269 |
Result^.Angle:= Counter mod 64; |
270 |
Result^.Radius:= 1; |
|
271 |
Result^.Health:= 2; |
|
272 |
Result^.dY:= (getrandom - _0_8) * _0_03; |
|
273 |
Result^.dX:= (getrandom - _0_5) * _0_4 |
|
79 | 274 |
end; |
82 | 275 |
gtFirePunch: begin |
351 | 276 |
Result^.Radius:= 15; |
277 |
Result^.Tag:= Y |
|
82 | 278 |
end; |
302 | 279 |
gtAirBomb: begin |
351 | 280 |
Result^.Radius:= 10; |
302 | 281 |
end; |
282 |
gtBlowTorch: begin |
|
511 | 283 |
Result^.Radius:= cHHRadius + cBlowTorchC; |
351 | 284 |
Result^.Timer:= 7500; |
302 | 285 |
end; |
522 | 286 |
gtSmallDamage: begin |
287 |
Result^.Timer:= 1100; |
|
288 |
Result^.Z:= 2000; |
|
289 |
end; |
|
4 | 290 |
end; |
351 | 291 |
InsertGearToList(Result); |
292 |
AddGear:= Result |
|
4 | 293 |
end; |
294 |
||
295 |
procedure DeleteGear(Gear: PGear); |
|
48 | 296 |
var team: PTeam; |
307 | 297 |
t: Longword; |
4 | 298 |
begin |
503 | 299 |
DeleteCI(Gear); |
522 | 300 |
if Gear^.Surf <> nil then |
301 |
begin |
|
302 |
SDL_FreeSurface(Gear^.Surf); |
|
303 |
Gear^.Surf:= nil |
|
304 |
end; |
|
351 | 305 |
if Gear^.Kind = gtHedgehog then |
4 | 306 |
if CurAmmoGear <> nil then |
307 |
begin |
|
351 | 308 |
Gear^.Message:= gm_Destroy; |
309 |
CurAmmoGear^.Message:= gm_Destroy; |
|
4 | 310 |
exit |
47 | 311 |
end else |
312 |
begin |
|
498 | 313 |
if not (hwRound(Gear^.Y) < cWaterLine) then |
307 | 314 |
begin |
351 | 315 |
t:= max(Gear^.Damage, Gear^.Health); |
498 | 316 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
307 | 317 |
inc(StepDamage, t) |
318 |
end; |
|
351 | 319 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
320 |
if CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear = Gear then |
|
145 | 321 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
351 | 322 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
307 | 323 |
inc(KilledHHs); |
48 | 324 |
RecountTeamHealth(team); |
47 | 325 |
end; |
357 | 326 |
{$IFDEF DEBUGFILE}AddFileLog('DeleteGear');{$ENDIF} |
82 | 327 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 328 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 329 |
RemoveGearFromList(Gear); |
4 | 330 |
Dispose(Gear) |
331 |
end; |
|
332 |
||
333 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
334 |
var Gear: PGear; |
|
335 |
begin |
|
351 | 336 |
CheckNoDamage:= true; |
4 | 337 |
Gear:= GearsList; |
338 |
while Gear <> nil do |
|
339 |
begin |
|
351 | 340 |
if Gear^.Kind = gtHedgehog then |
341 |
if Gear^.Damage <> 0 then |
|
4 | 342 |
begin |
351 | 343 |
CheckNoDamage:= false; |
344 |
inc(StepDamage, Gear^.Damage); |
|
345 |
if Gear^.Health < Gear^.Damage then Gear^.Health:= 0 |
|
522 | 346 |
else dec(Gear^.Health, Gear^.Damage); |
347 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
|
498 | 348 |
gtHealthTag, Gear^.Damage, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
351 | 349 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
350 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
351 |
||
352 |
Gear^.Damage:= 0 |
|
4 | 353 |
end; |
351 | 354 |
Gear:= Gear^.NextGear |
83 | 355 |
end; |
4 | 356 |
end; |
357 |
||
522 | 358 |
procedure AddDamageTag(X, Y, Damage: LongWord; Gear: PGear); |
359 |
begin |
|
529 | 360 |
if cAltDamage then |
361 |
AddGear(X, Y, gtSmallDamage, Damage, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
522 | 362 |
end; |
363 |
||
4 | 364 |
procedure ProcessGears; |
371 | 365 |
const delay: LongInt = cInactDelay; |
92
0c359a7a2356
- Fix win message to appear only after all hedgehogs death
unc0rr
parents:
89
diff
changeset
|
366 |
step: (stDelay, stChDmg, stChWin, stSpawn, stNTurn) = stDelay; |
4 | 367 |
var Gear, t: PGear; |
368 |
begin |
|
369 |
AllInactive:= true; |
|
370 |
t:= GearsList; |
|
371 |
while t<>nil do |
|
372 |
begin |
|
373 |
Gear:= t; |
|
351 | 374 |
t:= Gear^.NextGear; |
375 |
if Gear^.Active then Gear^.doStep(Gear); |
|
4 | 376 |
end; |
89 | 377 |
|
4 | 378 |
if AllInactive then |
15 | 379 |
case step of |
380 |
stDelay: begin |
|
381 |
dec(delay); |
|
382 |
if delay = 0 then |
|
383 |
begin |
|
384 |
inc(step); |
|
385 |
delay:= cInactDelay |
|
386 |
end |
|
387 |
end; |
|
388 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
|
351 | 389 |
stChWin: if not CheckForWin then inc(step) else step:= stDelay; |
15 | 390 |
stSpawn: begin |
391 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
392 |
inc(step) |
|
393 |
end; |
|
394 |
stNTurn: begin |
|
351 | 395 |
//AwareOfExplosion(0, 0, 0); |
15 | 396 |
if isInMultiShoot then isInMultiShoot:= false |
307 | 397 |
else begin |
351 | 398 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
307 | 399 |
if MaxStepDamage < StepDamage then MaxStepDamage:= StepDamage; |
400 |
StepDamage:= 0; |
|
351 | 401 |
ParseCommand('/nextturn', true); |
307 | 402 |
end; |
15 | 403 |
step:= Low(step) |
404 |
end; |
|
405 |
end; |
|
406 |
||
4 | 407 |
if TurnTimeLeft > 0 then |
408 |
if CurrentTeam <> nil then |
|
351 | 409 |
if CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil then |
410 |
if ((CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^.State and gstAttacking) = 0) |
|
4 | 411 |
and not isInMultiShoot then dec(TurnTimeLeft); |
351 | 412 |
|
515 | 413 |
inc(GameTicks) |
4 | 414 |
end; |
415 |
||
416 |
procedure SetAllToActive; |
|
417 |
var t: PGear; |
|
418 |
begin |
|
419 |
AllInactive:= false; |
|
420 |
t:= GearsList; |
|
351 | 421 |
while t <> nil do |
4 | 422 |
begin |
351 | 423 |
t^.Active:= true; |
424 |
t:= t^.NextGear |
|
4 | 425 |
end |
426 |
end; |
|
427 |
||
428 |
procedure SetAllHHToActive; |
|
429 |
var t: PGear; |
|
430 |
begin |
|
431 |
AllInactive:= false; |
|
432 |
t:= GearsList; |
|
351 | 433 |
while t <> nil do |
4 | 434 |
begin |
351 | 435 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
436 |
t:= t^.NextGear |
|
4 | 437 |
end |
438 |
end; |
|
439 |
||
292 | 440 |
procedure DrawHH(Gear: PGear; Surface: PSDL_Surface); |
371 | 441 |
var t: LongInt; |
292 | 442 |
begin |
503 | 443 |
DrawHedgehog(hwRound(Gear^.X) - 15 + WorldDx, hwRound(Gear^.Y) - 18 + WorldDy, |
351 | 444 |
hwSign(Gear^.dX), 0, |
445 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
292 | 446 |
Surface); |
447 |
||
351 | 448 |
with PHedgehog(Gear^.Hedgehog)^ do |
511 | 449 |
if (Gear^.State and not gstAnimation) = 0 then |
292 | 450 |
begin |
351 | 451 |
t:= hwRound(Gear^.Y) - cHHRadius - 10 + WorldDy; |
452 |
dec(t, HealthTag^.h + 2); |
|
453 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTag, Surface); |
|
454 |
dec(t, NameTag^.h + 2); |
|
455 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTag, Surface); |
|
456 |
dec(t, Team^.NameTag^.h + 2); |
|
457 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTag, Surface) |
|
292 | 458 |
end else // Current hedgehog |
459 |
begin |
|
351 | 460 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
461 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
292 | 462 |
GameTicks div 32 mod 16, Surface); |
351 | 463 |
if (Gear^.State and (gstMoving or gstDrowning or gstFalling)) = 0 then |
464 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
465 |
DrawGear(sQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, Surface) |
|
292 | 466 |
else |
351 | 467 |
if ShowCrosshair and ((Gear^.State and gstAttacked) = 0) then |
468 |
DrawSurfSprite(Round(hwRound(Gear^.X) + hwSign(Gear^.dX) * Sin(Gear^.Angle*pi/cMaxAngle)*60) + WorldDx - 11, |
|
469 |
Round(hwRound(Gear^.Y) - Cos(Gear^.Angle*pi/cMaxAngle)*60) + WorldDy - 12, |
|
371 | 470 |
24, (18 + hwSign(Gear^.dX) * LongInt(((Gear^.Angle * 72 div cMaxAngle) + 1) div 2) mod 18) mod 18, |
351 | 471 |
Team^.CrosshairSurf, Surface); |
292 | 472 |
end; |
473 |
end; |
|
474 |
||
4 | 475 |
procedure DrawGears(Surface: PSDL_Surface); |
476 |
var Gear: PGear; |
|
477 |
i: Longword; |
|
371 | 478 |
roplen: LongInt; |
4 | 479 |
|
371 | 480 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
481 |
var eX, eY, dX, dY: LongInt; |
|
482 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 483 |
b: boolean; |
4 | 484 |
begin |
37 | 485 |
if (X1 = X2) and (Y1 = Y2) then |
486 |
begin |
|
351 | 487 |
OutError('WARNING: zero length rope line!', false); |
37 | 488 |
exit |
489 |
end; |
|
366 | 490 |
eX:= 0; |
491 |
eY:= 0; |
|
492 |
dX:= X2 - X1; |
|
493 |
dY:= Y2 - Y1; |
|
494 |
||
495 |
if (dX > 0) then sX:= 1 |
|
496 |
else |
|
497 |
if (dX < 0) then |
|
498 |
begin |
|
499 |
sX:= -1; |
|
500 |
dX:= -dX |
|
501 |
end else sX:= dX; |
|
502 |
||
503 |
if (dY > 0) then sY:= 1 |
|
504 |
else |
|
505 |
if (dY < 0) then |
|
4 | 506 |
begin |
366 | 507 |
sY:= -1; |
508 |
dY:= -dY |
|
509 |
end else sY:= dY; |
|
510 |
||
511 |
if (dX > dY) then d:= dX |
|
512 |
else d:= dY; |
|
513 |
||
514 |
x:= X1; |
|
515 |
y:= Y1; |
|
516 |
||
517 |
for i:= 0 to d do |
|
518 |
begin |
|
519 |
inc(eX, dX); |
|
520 |
inc(eY, dY); |
|
521 |
b:= false; |
|
522 |
if (eX > d) then |
|
35 | 523 |
begin |
366 | 524 |
dec(eX, d); |
525 |
inc(x, sX); |
|
526 |
b:= true |
|
35 | 527 |
end; |
366 | 528 |
if (eY > d) then |
35 | 529 |
begin |
366 | 530 |
dec(eY, d); |
531 |
inc(y, sY); |
|
532 |
b:= true |
|
35 | 533 |
end; |
366 | 534 |
if b then |
535 |
begin |
|
536 |
inc(roplen); |
|
537 |
if (roplen mod 4) = 0 then DrawGear(sRopeNode, x - 2, y - 2, Surface) |
|
538 |
end |
|
4 | 539 |
end |
366 | 540 |
end; |
4 | 541 |
|
542 |
begin |
|
543 |
Gear:= GearsList; |
|
544 |
while Gear<>nil do |
|
545 |
begin |
|
351 | 546 |
case Gear^.Kind of |
547 |
gtCloud: DrawSprite(sprCloud , hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State, Surface); |
|
548 |
gtAmmo_Bomb: DrawSprite(sprBomb , hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, hwRound(Gear^.DirAngle), Surface); |
|
292 | 549 |
gtHedgehog: DrawHH(Gear, Surface); |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
366
diff
changeset
|
550 |
gtAmmo_Grenade: DrawSprite(sprGrenade , hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, DxDy2Angle32(Gear^.dY, Gear^.dX), Surface); |
522 | 551 |
gtHealthTag, |
552 |
gtSmallDamage: if Gear^.Surf <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Surf, Surface); |
|
351 | 553 |
gtGrave: DrawSpriteFromRect(PHedgehog(Gear^.Hedgehog)^.Team^.GraveRect, hwRound(Gear^.X) + WorldDx - 16, hwRound(Gear^.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, Surface); |
554 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4, Surface); |
|
555 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State, Surface); |
|
4 | 556 |
gtRope: begin |
35 | 557 |
roplen:= 0; |
4 | 558 |
if RopePoints.Count > 0 then |
559 |
begin |
|
560 |
i:= 0; |
|
561 |
while i < Pred(RopePoints.Count) do |
|
562 |
begin |
|
351 | 563 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
564 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 565 |
inc(i) |
566 |
end; |
|
351 | 567 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
568 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
569 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
570 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
571 |
DrawSprite(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx - 16, hwRound(RopePoints.ar[0].Y) + WorldDy - 16, RopePoints.HookAngle, Surface); |
|
4 | 572 |
end else |
35 | 573 |
begin |
351 | 574 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
575 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
366
diff
changeset
|
576 |
DrawSprite(sprRopeHook, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, DxDy2Angle32(Gear^.dY, Gear^.dX), Surface); |
35 | 577 |
end; |
4 | 578 |
end; |
351 | 579 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State, Surface); |
580 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
|
581 |
then DrawSprite(sprMineOff , hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, hwRound(Gear^.DirAngle), Surface) |
|
582 |
else DrawSprite(sprMineOn , hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, hwRound(Gear^.DirAngle), Surface); |
|
583 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1, Surface); |
|
584 |
gtCase: case Gear^.Pos of |
|
585 |
posCaseAmmo : DrawSprite(sprCase, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0, Surface); |
|
586 |
posCaseHealth: DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, (GameTicks shr 6) mod 13, Surface); |
|
42 | 587 |
end; |
351 | 588 |
gtClusterBomb: DrawSprite(sprClusterBomb, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, hwRound(Gear^.DirAngle), Surface); |
589 |
gtCluster: DrawSprite(sprClusterParticle, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, 0, Surface); |
|
590 |
gtFlame: DrawSprite(sprFlame, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy,(GameTicks div 128 + Gear^.Angle) mod 8, Surface); |
|
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
366
diff
changeset
|
591 |
gtAirBomb: DrawSprite(sprAirBomb , hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, DxDy2Angle32(Gear^.dY, Gear^.dX), Surface); |
408 | 592 |
gtAirAttack: if Gear^.Tag > 0 then DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 0, Surface) |
593 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - 60 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, 1, Surface) |
|
4 | 594 |
end; |
351 | 595 |
Gear:= Gear^.NextGear |
4 | 596 |
end; |
597 |
end; |
|
598 |
||
599 |
procedure FreeGearsList; |
|
600 |
var t, tt: PGear; |
|
601 |
begin |
|
602 |
tt:= GearsList; |
|
603 |
GearsList:= nil; |
|
604 |
while tt<>nil do |
|
605 |
begin |
|
606 |
t:= tt; |
|
351 | 607 |
tt:= tt^.NextGear; |
4 | 608 |
Dispose(t) |
609 |
end; |
|
610 |
end; |
|
611 |
||
10 | 612 |
procedure AddMiscGears; |
371 | 613 |
var i: LongInt; |
4 | 614 |
begin |
498 | 615 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
22 | 616 |
if (GameFlags and gfForts) = 0 then |
617 |
for i:= 0 to 3 do |
|
498 | 618 |
FindPlace(AddGear(0, 0, gtMine, 0, _0, _0, 0), false, 0, 2048); |
4 | 619 |
end; |
620 |
||
293 | 621 |
procedure AddClouds; |
371 | 622 |
var i: LongInt; |
360 | 623 |
dx, dy: hwFloat; |
293 | 624 |
begin |
625 |
for i:= 0 to cCloudsNumber do |
|
360 | 626 |
begin |
627 |
dx.isNegative:= random(2) = 1; |
|
628 |
dx.QWordValue:= random(214748364); |
|
629 |
dy.isNegative:= (i and 1) = 1; |
|
630 |
dy.QWordValue:= 21474836 + random(64424509); |
|
631 |
AddGear( - cScreenWidth + i * ((cScreenWidth * 2 + 2304) div cCloudsNumber), -140, |
|
632 |
gtCloud, random(4), dx, dy, 0) |
|
633 |
end |
|
293 | 634 |
end; |
635 |
||
371 | 636 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 637 |
var Gear: PGear; |
506 | 638 |
dmg, dmgRadius: LongInt; |
4 | 639 |
begin |
640 |
TargetPoint.X:= NoPointX; |
|
641 |
{$IFDEF DEBUGFILE}if Radius > 3 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
|
498 | 642 |
if Radius = 50 then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
355 | 643 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion, false); |
506 | 644 |
if (Mask and EXPLAllDamageInRadius)=0 then dmgRadius:= Radius shl 1 |
645 |
else dmgRadius:= Radius; |
|
4 | 646 |
Gear:= GearsList; |
647 |
while Gear <> nil do |
|
648 |
begin |
|
506 | 649 |
dmg:= dmgRadius - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
522 | 650 |
if (dmg > 0) and |
651 |
((Gear^.State and gstNoDamage) = 0) then |
|
4 | 652 |
begin |
355 | 653 |
dmg:= dmg div 2; |
351 | 654 |
case Gear^.Kind of |
10 | 655 |
gtHedgehog, |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
656 |
gtMine, |
79 | 657 |
gtCase, |
658 |
gtFlame: begin |
|
355 | 659 |
{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
522 | 660 |
if (Mask and EXPLNoDamage) = 0 then |
661 |
begin |
|
662 |
inc(Gear^.Damage, dmg); |
|
663 |
if Gear^.Kind = gtHedgehog then |
|
664 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, Gear) |
|
665 |
end; |
|
351 | 666 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
42 | 667 |
begin |
506 | 668 |
DeleteCI(Gear); |
498 | 669 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
670 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
503 | 671 |
Gear^.State:= Gear^.State or gstMoving; |
351 | 672 |
Gear^.Active:= true; |
42 | 673 |
FollowGear:= Gear |
674 |
end; |
|
4 | 675 |
end; |
51 | 676 |
gtGrave: begin |
351 | 677 |
Gear^.dY:= - _0_004 * dmg; |
678 |
Gear^.Active:= true; |
|
51 | 679 |
end; |
4 | 680 |
end; |
681 |
end; |
|
351 | 682 |
Gear:= Gear^.NextGear |
80 | 683 |
end; |
506 | 684 |
if (Mask and EXPLDontDraw) = 0 then DrawExplosion(X, Y, Radius); |
498 | 685 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 686 |
end; |
687 |
||
506 | 688 |
procedure ShotgunShot(Gear: PGear); |
689 |
var t: PGear; |
|
690 |
dmg: integer; |
|
522 | 691 |
hh: PHedgehog; |
506 | 692 |
begin |
509 | 693 |
Gear^.Radius:= cShotgunRadius; |
522 | 694 |
hh:= Gear^.Hedgehog; |
506 | 695 |
t:= GearsList; |
696 |
while t <> nil do |
|
697 |
begin |
|
698 |
dmg:= min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25); |
|
699 |
if dmg >= 0 then |
|
700 |
case t^.Kind of |
|
701 |
gtHedgehog, |
|
702 |
gtMine, |
|
703 |
gtCase: begin |
|
704 |
inc(t^.Damage, dmg); |
|
522 | 705 |
if t^.Kind = gtHedgehog then |
706 |
begin |
|
531 | 707 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), dmg, t); |
522 | 708 |
inc(hh^.DamageGiven, dmg) |
709 |
end; |
|
506 | 710 |
DeleteCI(t); |
711 |
t^.dX:= t^.dX + SignAs(Gear^.dX * dmg * _0_01 + cHHKick, t^.X - Gear^.X); |
|
712 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
|
713 |
t^.State:= t^.State or gstMoving; |
|
714 |
t^.Active:= true; |
|
715 |
FollowGear:= t |
|
716 |
end; |
|
717 |
gtGrave: begin |
|
718 |
t^.dY:= - _0_1; |
|
719 |
t^.Active:= true |
|
720 |
end; |
|
721 |
end; |
|
722 |
t:= t^.NextGear |
|
723 |
end; |
|
509 | 724 |
DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 725 |
end; |
726 |
||
371 | 727 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 728 |
var t: PGearArray; |
371 | 729 |
i: LongInt; |
307 | 730 |
hh: PHedgehog; |
38 | 731 |
begin |
53 | 732 |
t:= CheckGearsCollision(Ammo); |
351 | 733 |
i:= t^.Count; |
734 |
hh:= Ammo^.Hedgehog; |
|
53 | 735 |
while i > 0 do |
736 |
begin |
|
737 |
dec(i); |
|
351 | 738 |
if (t^.ar[i]^.State and gstNoDamage) = 0 then |
739 |
case t^.ar[i]^.Kind of |
|
53 | 740 |
gtHedgehog, |
741 |
gtMine, |
|
742 |
gtCase: begin |
|
351 | 743 |
inc(t^.ar[i]^.Damage, Damage); |
522 | 744 |
if t^.ar[i]^.Kind = gtHedgehog then |
745 |
begin |
|
746 |
AddDamageTag(hwRound(t^.ar[i]^.X), hwRound(t^.ar[i]^.Y), Damage, t^.ar[i]); |
|
747 |
inc(hh^.DamageGiven, Damage) |
|
748 |
end; |
|
351 | 749 |
t^.ar[i]^.dX:= Ammo^.dX * Power * _0_01; |
750 |
t^.ar[i]^.dY:= Ammo^.dY * Power * _0_01; |
|
751 |
t^.ar[i]^.Active:= true; |
|
503 | 752 |
t^.ar[i]^.State:= t^.ar[i]^.State or gstMoving; |
351 | 753 |
DeleteCI(t^.ar[i]); |
754 |
FollowGear:= t^.ar[i] |
|
53 | 755 |
end; |
756 |
end |
|
126 | 757 |
end; |
758 |
SetAllToActive |
|
38 | 759 |
end; |
760 |
||
4 | 761 |
procedure AssignHHCoords; |
82 | 762 |
var Team: PTeam; |
371 | 763 |
i, t: LongInt; |
4 | 764 |
begin |
82 | 765 |
Team:= TeamsList; |
766 |
t:= 0; |
|
767 |
while Team <> nil do |
|
4 | 768 |
begin |
82 | 769 |
for i:= 0 to cMaxHHIndex do |
351 | 770 |
with Team^.Hedgehogs[i] do |
82 | 771 |
if Gear <> nil then |
772 |
if (GameFlags and gfForts) = 0 then FindPlace(Gear, false, 0, 2048) |
|
773 |
else FindPlace(Gear, false, t, t + 1024); |
|
774 |
inc(t, 1024); |
|
351 | 775 |
Team:= Team^.Next |
4 | 776 |
end |
777 |
end; |
|
778 |
||
371 | 779 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 780 |
var t: PGear; |
781 |
begin |
|
782 |
t:= GearsList; |
|
783 |
rX:= sqr(rX); |
|
784 |
rY:= sqr(rY); |
|
785 |
while t <> nil do |
|
786 |
begin |
|
351 | 787 |
if (t <> Gear) and (t^.Kind = Kind) then |
498 | 788 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
351 | 789 |
exit(t); |
790 |
t:= t^.NextGear |
|
10 | 791 |
end; |
351 | 792 |
CheckGearNear:= nil |
15 | 793 |
end; |
794 |
||
79 | 795 |
procedure AmmoFlameWork(Ammo: PGear); |
796 |
var t: PGear; |
|
797 |
begin |
|
798 |
t:= GearsList; |
|
799 |
while t <> nil do |
|
800 |
begin |
|
351 | 801 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
498 | 802 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
79 | 803 |
begin |
351 | 804 |
inc(t^.Damage, 5); |
805 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
|
806 |
t^.dY:= - _0_25; |
|
807 |
t^.Active:= true; |
|
79 | 808 |
DeleteCI(t); |
809 |
FollowGear:= t |
|
810 |
end; |
|
351 | 811 |
t:= t^.NextGear |
79 | 812 |
end; |
813 |
end; |
|
814 |
||
371 | 815 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 816 |
var t: PGear; |
817 |
begin |
|
818 |
t:= GearsList; |
|
819 |
rX:= sqr(rX); |
|
820 |
rY:= sqr(rY); |
|
821 |
while t <> nil do |
|
822 |
begin |
|
351 | 823 |
if t^.Kind in Kind then |
498 | 824 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
351 | 825 |
exit(t); |
826 |
t:= t^.NextGear |
|
16 | 827 |
end; |
351 | 828 |
CheckGearsNear:= nil |
16 | 829 |
end; |
830 |
||
831 |
function CountGears(Kind: TGearType): Longword; |
|
832 |
var t: PGear; |
|
351 | 833 |
Result: Longword; |
16 | 834 |
begin |
835 |
Result:= 0; |
|
836 |
t:= GearsList; |
|
837 |
while t <> nil do |
|
838 |
begin |
|
351 | 839 |
if t^.Kind = Kind then inc(Result); |
840 |
t:= t^.NextGear |
|
16 | 841 |
end; |
351 | 842 |
CountGears:= Result |
16 | 843 |
end; |
844 |
||
15 | 845 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
846 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
847 |
i: TAmmoType; |
15 | 848 |
begin |
295 | 849 |
if (CountGears(gtCase) >= 5) or (getrandom(cCaseFactor) <> 0) then exit; |
498 | 850 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
295 | 851 |
case getrandom(2) of |
852 |
0: begin |
|
351 | 853 |
FollowGear^.Health:= 25; |
854 |
FollowGear^.Pos:= posCaseHealth |
|
295 | 855 |
end; |
856 |
1: begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
857 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
858 |
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
|
859 |
inc(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
860 |
t:= GetRandom(t); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
861 |
i:= Low(TAmmoType); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
862 |
dec(t, Ammoz[i].Probability); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
863 |
while t >= 0 do |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
864 |
begin |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
865 |
inc(i); |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
866 |
dec(t, Ammoz[i].Probability) |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
867 |
end; |
351 | 868 |
FollowGear^.Pos:= posCaseAmmo; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
869 |
FollowGear^.State:= Longword(i) |
295 | 870 |
end; |
871 |
end; |
|
70 | 872 |
FindPlace(FollowGear, true, 0, 2048) |
873 |
end; |
|
874 |
||
371 | 875 |
procedure FindPlace(Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 876 |
|
371 | 877 |
function CountNonZeroz(x, y, r: LongInt): LongInt; |
878 |
var i: LongInt; |
|
879 |
Result: LongInt; |
|
70 | 880 |
begin |
881 |
Result:= 0; |
|
882 |
if (y and $FFFFFC00) <> 0 then exit; |
|
883 |
for i:= max(x - r, 0) to min(x + r, 2043) do |
|
351 | 884 |
if Land[y, i] <> 0 then inc(Result); |
885 |
CountNonZeroz:= Result |
|
70 | 886 |
end; |
887 |
||
495 | 888 |
var x: LongInt; |
371 | 889 |
y, sy: LongInt; |
386 | 890 |
ar: array[0..511] of TPoint; |
891 |
ar2: array[0..1023] of TPoint; |
|
392 | 892 |
cnt, cnt2: Longword; |
893 |
delta: LongInt; |
|
70 | 894 |
begin |
386 | 895 |
delta:= 250; |
896 |
cnt2:= 0; |
|
16 | 897 |
repeat |
392 | 898 |
x:= Left + LongInt(GetRandom(Delta)); |
70 | 899 |
repeat |
386 | 900 |
inc(x, Delta); |
70 | 901 |
cnt:= 0; |
351 | 902 |
y:= -Gear^.Radius * 2; |
70 | 903 |
while y < 1023 do |
16 | 904 |
begin |
70 | 905 |
repeat |
906 |
inc(y, 2); |
|
351 | 907 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) = 0); |
70 | 908 |
sy:= y; |
909 |
repeat |
|
910 |
inc(y); |
|
351 | 911 |
until (y > 1023) or (CountNonZeroz(x, y, Gear^.Radius - 1) <> 0); |
912 |
if (y - sy > Gear^.Radius * 2) |
|
70 | 913 |
and (y < 1023) |
351 | 914 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
70 | 915 |
begin |
916 |
ar[cnt].X:= x; |
|
351 | 917 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
918 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
70 | 919 |
inc(cnt) |
920 |
end; |
|
386 | 921 |
inc(y, 45) |
16 | 922 |
end; |
70 | 923 |
if cnt > 0 then |
924 |
with ar[GetRandom(cnt)] do |
|
925 |
begin |
|
386 | 926 |
ar2[cnt2].x:= x; |
927 |
ar2[cnt2].y:= y; |
|
928 |
inc(cnt2) |
|
70 | 929 |
end |
386 | 930 |
until (x + Delta > Right); |
931 |
dec(Delta, 60) |
|
932 |
until (cnt2 > 0) or (Delta < 70); |
|
933 |
if cnt2 > 0 then |
|
934 |
with ar2[GetRandom(cnt2)] do |
|
935 |
begin |
|
498 | 936 |
Gear^.X:= int2hwFloat(x); |
937 |
Gear^.Y:= int2hwFloat(y); |
|
386 | 938 |
{$IFDEF DEBUGFILE} |
939 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
940 |
{$ENDIF} |
|
941 |
end |
|
942 |
else |
|
943 |
begin |
|
944 |
OutError('Can''t find place for Gear', false); |
|
945 |
DeleteGear(Gear) |
|
946 |
end |
|
10 | 947 |
end; |
948 |
||
4 | 949 |
initialization |
950 |
||
951 |
finalization |
|
95 | 952 |
FreeGearsList; |
4 | 953 |
|
954 |
end. |