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