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