author | nemo |
Mon, 22 Jun 2009 00:27:55 +0000 | |
changeset 2189 | bf6eafc3b2e6 |
parent 2188 | 6cdf9109cc58 |
child 2190 | cfcad6142d48 |
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 |
procedure doStepDrowningGear(Gear: PGear); forward; |
|
20 |
||
21 |
function CheckGearDrowning(Gear: PGear): boolean; |
|
1918 | 22 |
var skipSpeed, skipAngle, skipDecay: hwFloat; |
4 | 23 |
begin |
1918 | 24 |
// probably needs tweaking. might need to be in a case statement based upon gear type |
25 |
//(not Gear^.dY.isNegative) and this should not be necessary |
|
498 | 26 |
if cWaterLine < hwRound(Gear^.Y) + Gear^.Radius then |
1918 | 27 |
begin |
28 |
skipSpeed:= _0_25; // was 0.36 - couldn't manage baseball bat. Tiy's build is 0.36... |
|
29 |
skipAngle:= _1 + _0_9; // these should perhaps also be constants, once work out what proper values are |
|
30 |
skipDecay:= _0_87; // this could perhaps be a tiny bit higher. |
|
1919 | 31 |
if (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > skipSpeed) and |
1920 | 32 |
(hwAbs(Gear^.dX) > skipAngle * hwAbs(Gear^.dY)) then |
1918 | 33 |
begin |
34 |
Gear^.dY.isNegative:= true; |
|
1919 | 35 |
Gear^.dY:= Gear^.dY * skipDecay; |
36 |
Gear^.dX:= Gear^.dX * skipDecay; |
|
1918 | 37 |
CheckGearDrowning:= false |
38 |
end |
|
39 |
else |
|
40 |
begin |
|
41 |
CheckGearDrowning:= true; |
|
42 |
Gear^.State:= gstDrowning; |
|
43 |
Gear^.doStep:= @doStepDrowningGear; |
|
2142 | 44 |
if Gear^.Kind = gtHedgehog then AddCaption(Format(GetEventString(eidDrowned), PHedgehog(Gear^.Hedgehog)^.Name), $FFFFFF, capgrpMessage); |
1918 | 45 |
end; |
46 |
PlaySound(sndSplash, false, nil) |
|
47 |
end |
|
48 |
else |
|
1133 | 49 |
CheckGearDrowning:= false |
4 | 50 |
end; |
51 |
||
52 |
procedure CheckCollision(Gear: PGear); |
|
53 |
begin |
|
351 | 54 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.X)) or TestCollisionYwithGear(Gear, hwSign(Gear^.Y)) |
1133 | 55 |
then Gear^.State:= Gear^.State or gstCollision |
56 |
else Gear^.State:= Gear^.State and not gstCollision |
|
4 | 57 |
end; |
58 |
||
59 |
procedure CheckHHDamage(Gear: PGear); |
|
522 | 60 |
var dmg: Longword; |
4 | 61 |
begin |
1849 | 62 |
if(Gear^.Invulnerable) then exit; |
522 | 63 |
if _0_4 < Gear^.dY then |
1123 | 64 |
begin |
65 |
if _0_6 < Gear^.dY then |
|
1669 | 66 |
PlaySound(sndOw4, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack) |
1123 | 67 |
else |
1669 | 68 |
PlaySound(sndOw1, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
1123 | 69 |
|
1861 | 70 |
dmg:= modifyDamage(1 + hwRound((hwAbs(Gear^.dY) - _0_4) * 70)); |
2017 | 71 |
ApplyDamage(Gear, dmg); |
1123 | 72 |
end |
4 | 73 |
end; |
74 |
||
75 |
//////////////////////////////////////////////////////////////////////////////// |
|
76 |
//////////////////////////////////////////////////////////////////////////////// |
|
77 |
procedure CalcRotationDirAngle(Gear: PGear); |
|
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
764
diff
changeset
|
78 |
var dAngle: real; |
4 | 79 |
begin |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
764
diff
changeset
|
80 |
dAngle:= (hwAbs(Gear^.dX) + hwAbs(Gear^.dY)).QWordValue / $80000000; |
1133 | 81 |
if not Gear^.dX.isNegative then |
82 |
Gear^.DirAngle:= Gear^.DirAngle + dAngle |
|
83 |
else |
|
84 |
Gear^.DirAngle:= Gear^.DirAngle - dAngle; |
|
85 |
||
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
764
diff
changeset
|
86 |
if Gear^.DirAngle < 0 then Gear^.DirAngle:= Gear^.DirAngle + 360 |
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
764
diff
changeset
|
87 |
else if 360 < Gear^.DirAngle then Gear^.DirAngle:= Gear^.DirAngle - 360 |
4 | 88 |
end; |
89 |
||
90 |
//////////////////////////////////////////////////////////////////////////////// |
|
91 |
procedure doStepDrowningGear(Gear: PGear); |
|
92 |
begin |
|
93 |
AllInactive:= false; |
|
351 | 94 |
Gear^.Y:= Gear^.Y + cDrownSpeed; |
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:
2142
diff
changeset
|
95 |
if hwRound(Gear^.Y) > Gear^.Radius + cWaterLine + cVisibleWater then DeleteGear(Gear); |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2142
diff
changeset
|
96 |
// Create some bubbles (0.5% might be better but causes too few bubbles sometimes) |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2142
diff
changeset
|
97 |
if Random(1000) < 10 then AddVisualGear(hwRound(Gear^.X) - Gear^.Radius, hwRound(Gear^.Y) - Gear^.Radius, vgtBubble); |
4 | 98 |
end; |
99 |
||
100 |
//////////////////////////////////////////////////////////////////////////////// |
|
101 |
procedure doStepFallingGear(Gear: PGear); |
|
542 | 102 |
var isFalling: boolean; |
4 | 103 |
begin |
503 | 104 |
Gear^.State:= Gear^.State and not gstCollision; |
105 |
||
106 |
if Gear^.dY.isNegative then |
|
1133 | 107 |
begin |
108 |
isFalling:= true; |
|
109 |
if TestCollisionYwithGear(Gear, -1) then |
|
110 |
begin |
|
111 |
Gear^.dX:= Gear^.dX * Gear^.Friction; |
|
112 |
Gear^.dY:= - Gear^.dY * Gear^.Elasticity; |
|
113 |
Gear^.State:= Gear^.State or gstCollision |
|
114 |
end |
|
115 |
end else |
|
116 |
if TestCollisionYwithGear(Gear, 1) then |
|
117 |
begin |
|
118 |
isFalling:= false; |
|
119 |
Gear^.dX:= Gear^.dX * Gear^.Friction; |
|
120 |
Gear^.dY:= - Gear^.dY * Gear^.Elasticity; |
|
121 |
Gear^.State:= Gear^.State or gstCollision |
|
122 |
end else isFalling:= true; |
|
503 | 123 |
|
351 | 124 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
1133 | 125 |
begin |
126 |
Gear^.dX:= - Gear^.dX * Gear^.Elasticity; |
|
127 |
Gear^.dY:= Gear^.dY * Gear^.Elasticity; |
|
128 |
Gear^.State:= Gear^.State or gstCollision |
|
129 |
end; |
|
503 | 130 |
|
542 | 131 |
if isFalling then Gear^.dY:= Gear^.dY + cGravity; |
503 | 132 |
|
351 | 133 |
Gear^.X:= Gear^.X + Gear^.dX; |
134 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
4 | 135 |
CheckGearDrowning(Gear); |
503 | 136 |
if (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) < _0_0002) and |
1133 | 137 |
(not isFalling) then |
138 |
Gear^.State:= Gear^.State and not gstMoving |
|
139 |
else |
|
140 |
Gear^.State:= Gear^.State or gstMoving |
|
4 | 141 |
end; |
142 |
||
143 |
//////////////////////////////////////////////////////////////////////////////// |
|
144 |
procedure doStepBomb(Gear: PGear); |
|
371 | 145 |
var i: LongInt; |
919 | 146 |
dX, dY: hwFloat; |
4 | 147 |
begin |
148 |
AllInactive:= false; |
|
1263 | 149 |
|
4 | 150 |
doStepFallingGear(Gear); |
1263 | 151 |
|
351 | 152 |
dec(Gear^.Timer); |
153 |
if Gear^.Timer = 0 then |
|
1133 | 154 |
begin |
155 |
case Gear^.Kind of |
|
156 |
gtAmmo_Bomb: doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
1603 | 157 |
gtBall: doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 40, EXPLAutoSound); |
1133 | 158 |
gtClusterBomb: begin |
159 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 20, EXPLAutoSound); |
|
160 |
for i:= 0 to 4 do |
|
161 |
begin |
|
162 |
dX:= rndSign(GetRandom * _0_1); |
|
163 |
dY:= (GetRandom - _3) * _0_08; |
|
1261 | 164 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtCluster, 0, dX, dY, 25); |
165 |
end |
|
166 |
end; |
|
167 |
gtWatermelon: begin |
|
168 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound); |
|
169 |
for i:= 0 to 5 do |
|
170 |
begin |
|
171 |
dX:= rndSign(GetRandom * _0_1); |
|
1496 | 172 |
dY:= (GetRandom - _1_5) * _0_3; |
1262 | 173 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtMelonPiece, 0, dX, dY, 75)^.DirAngle:= i * 60; |
1133 | 174 |
end |
1263 | 175 |
end; |
1555 | 176 |
gtHellishBomb: begin |
177 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 90, EXPLAutoSound); |
|
178 |
for i:= 0 to 127 do |
|
179 |
begin |
|
180 |
dX:= AngleCos(i * 16) * _0_5 * (GetRandom + _1); |
|
181 |
dY:= AngleSin(i * 16) * _0_5 * (GetRandom + _1); |
|
182 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, dY, 0); |
|
183 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, -dY, 0); |
|
184 |
end |
|
185 |
end; |
|
1133 | 186 |
end; |
187 |
DeleteGear(Gear); |
|
188 |
exit |
|
189 |
end; |
|
1263 | 190 |
|
4 | 191 |
CalcRotationDirAngle(Gear); |
1263 | 192 |
|
193 |
if Gear^.Kind = gtHellishBomb then |
|
1279 | 194 |
begin |
1669 | 195 |
if Gear^.Timer = 3000 then PlaySound(sndHellish, false, nil); |
1279 | 196 |
|
1263 | 197 |
if (GameTicks and $3F) = 0 then |
198 |
if (Gear^.State and gstCollision) = 0 then |
|
199 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtEvilTrace, 0, _0, _0, 0); |
|
1279 | 200 |
end; |
1263 | 201 |
|
1158 | 202 |
if (Gear^.State and (gstCollision or gstMoving)) = (gstCollision or gstMoving) then |
203 |
if (hwAbs(Gear^.dX) > _0_1) or |
|
204 |
(hwAbs(Gear^.dY) > _0_1) then |
|
1669 | 205 |
PlaySound(sndGrenadeImpact, false, nil) |
4 | 206 |
end; |
207 |
||
1279 | 208 |
procedure doStepWatermelon(Gear: PGear); |
209 |
begin |
|
210 |
AllInactive:= false; |
|
1669 | 211 |
PlaySound(sndMelon, false, nil); |
1279 | 212 |
Gear^.doStep:= @doStepBomb |
213 |
end; |
|
214 |
||
78 | 215 |
procedure doStepCluster(Gear: PGear); |
216 |
begin |
|
217 |
AllInactive:= false; |
|
218 |
doStepFallingGear(Gear); |
|
351 | 219 |
if (Gear^.State and gstCollision) <> 0 then |
1133 | 220 |
begin |
1261 | 221 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Timer, EXPLAutoSound); |
1133 | 222 |
DeleteGear(Gear); |
223 |
exit |
|
224 |
end; |
|
1262 | 225 |
|
226 |
if Gear^.Kind = gtMelonPiece then |
|
227 |
CalcRotationDirAngle(Gear) |
|
228 |
else |
|
229 |
if (GameTicks and $1F) = 0 then |
|
230 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0) |
|
78 | 231 |
end; |
232 |
||
4 | 233 |
//////////////////////////////////////////////////////////////////////////////// |
234 |
procedure doStepGrenade(Gear: PGear); |
|
235 |
begin |
|
236 |
AllInactive:= false; |
|
351 | 237 |
Gear^.dX:= Gear^.dX + cWindSpeed; |
4 | 238 |
doStepFallingGear(Gear); |
351 | 239 |
if (Gear^.State and gstCollision) <> 0 then |
1133 | 240 |
begin |
241 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
242 |
DeleteGear(Gear); |
|
243 |
exit |
|
244 |
end; |
|
4 | 245 |
if (GameTicks and $3F) = 0 then |
1133 | 246 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0) |
4 | 247 |
end; |
248 |
||
249 |
//////////////////////////////////////////////////////////////////////////////// |
|
95 | 250 |
procedure doStepHealthTagWork(Gear: PGear); |
4 | 251 |
begin |
522 | 252 |
if Gear^.Kind = gtHealthTag then |
1505 | 253 |
AllInactive:= false; |
254 |
||
351 | 255 |
dec(Gear^.Timer); |
522 | 256 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
1505 | 257 |
|
351 | 258 |
if Gear^.Timer = 0 then |
1133 | 259 |
begin |
2017 | 260 |
if (Gear^.Kind = gtHealthTag) and (PHedgehog(Gear^.Hedgehog)^.Gear <> nil) then |
1133 | 261 |
PHedgehog(Gear^.Hedgehog)^.Gear^.Active:= true; // to let current hh die |
262 |
DeleteGear(Gear) |
|
263 |
end |
|
4 | 264 |
end; |
265 |
||
263 | 266 |
procedure doStepHealthTagWorkUnderWater(Gear: PGear); |
267 |
begin |
|
1505 | 268 |
AllInactive:= false; |
1495 | 269 |
|
351 | 270 |
Gear^.Y:= Gear^.Y - _0_08; |
1495 | 271 |
|
498 | 272 |
if hwRound(Gear^.Y) < cWaterLine + 10 then |
1505 | 273 |
DeleteGear(Gear) |
263 | 274 |
end; |
275 |
||
95 | 276 |
procedure doStepHealthTag(Gear: PGear); |
277 |
var s: shortstring; |
|
278 |
begin |
|
1505 | 279 |
AllInactive:= false; |
280 |
Gear^.dY:= -_0_08; |
|
522 | 281 |
|
351 | 282 |
str(Gear^.State, s); |
1505 | 283 |
Gear^.Tex:= RenderStringTex(s, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color, fnt16); |
284 |
||
285 |
if hwRound(Gear^.Y) < cWaterLine then |
|
286 |
Gear^.doStep:= @doStepHealthTagWork |
|
287 |
else |
|
288 |
Gear^.doStep:= @doStepHealthTagWorkUnderWater; |
|
289 |
||
762 | 290 |
Gear^.Y:= Gear^.Y - int2hwFloat(Gear^.Tex^.h) |
95 | 291 |
end; |
292 |
||
4 | 293 |
//////////////////////////////////////////////////////////////////////////////// |
294 |
procedure doStepGrave(Gear: PGear); |
|
295 |
begin |
|
296 |
AllInactive:= false; |
|
498 | 297 |
if Gear^.dY.isNegative then |
298 |
if TestCollisionY(Gear, -1) then Gear^.dY:= _0; |
|
4 | 299 |
|
351 | 300 |
if not Gear^.dY.isNegative then |
68 | 301 |
if TestCollisionY(Gear, 1) then |
4 | 302 |
begin |
351 | 303 |
Gear^.dY:= - Gear^.dY * Gear^.Elasticity; |
304 |
if Gear^.dY > - _1div1024 then |
|
4 | 305 |
begin |
351 | 306 |
Gear^.Active:= false; |
4 | 307 |
exit |
1669 | 308 |
end else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false, nil) |
4 | 309 |
end; |
1505 | 310 |
|
351 | 311 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
4 | 312 |
CheckGearDrowning(Gear); |
351 | 313 |
Gear^.dY:= Gear^.dY + cGravity |
4 | 314 |
end; |
315 |
||
316 |
//////////////////////////////////////////////////////////////////////////////// |
|
317 |
procedure doStepUFOWork(Gear: PGear); |
|
351 | 318 |
var t: hwFloat; |
374 | 319 |
y: LongInt; |
4 | 320 |
begin |
321 |
AllInactive:= false; |
|
351 | 322 |
t:= Distance(Gear^.dX, Gear^.dY); |
323 |
Gear^.dX:= Gear^.Elasticity * (Gear^.dX + _0_000004 * (TargetPoint.X - hwRound(Gear^.X))); |
|
324 |
Gear^.dY:= Gear^.Elasticity * (Gear^.dY + _0_000004 * (TargetPoint.Y - hwRound(Gear^.Y))); |
|
325 |
t:= t / Distance(Gear^.dX, Gear^.dY); |
|
326 |
Gear^.dX:= Gear^.dX * t; |
|
327 |
Gear^.dY:= Gear^.dY * t; |
|
328 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
329 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
374 | 330 |
|
331 |
if (GameTicks and $3F) = 0 then |
|
332 |
begin |
|
333 |
y:= hwRound(Gear^.Y); |
|
334 |
if y + Gear^.Radius < cWaterLine then |
|
498 | 335 |
AddGear(hwRound(Gear^.X), y, gtSmokeTrace, 0, _0, _0, 0); |
374 | 336 |
end; |
337 |
||
4 | 338 |
CheckCollision(Gear); |
351 | 339 |
dec(Gear^.Timer); |
340 |
if ((Gear^.State and gstCollision) <> 0) or (Gear^.Timer = 0) then |
|
4 | 341 |
begin |
560 | 342 |
StopSound(sndUFO); |
351 | 343 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
4 | 344 |
DeleteGear(Gear); |
345 |
end; |
|
346 |
end; |
|
347 |
||
348 |
procedure doStepUFO(Gear: PGear); |
|
349 |
begin |
|
350 |
AllInactive:= false; |
|
351 | 351 |
Gear^.X:= Gear^.X + Gear^.dX; |
352 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
353 |
Gear^.dY:= Gear^.dY + cGravity; |
|
4 | 354 |
CheckCollision(Gear); |
351 | 355 |
if (Gear^.State and gstCollision) <> 0 then |
4 | 356 |
begin |
351 | 357 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
4 | 358 |
DeleteGear(Gear); |
359 |
exit |
|
360 |
end; |
|
351 | 361 |
dec(Gear^.Timer); |
362 |
if Gear^.Timer = 0 then |
|
4 | 363 |
begin |
1669 | 364 |
PlaySound(sndUFO, true, nil); |
351 | 365 |
Gear^.Timer:= 5000; |
366 |
Gear^.doStep:= @doStepUFOWork |
|
4 | 367 |
end; |
368 |
end; |
|
369 |
||
370 |
//////////////////////////////////////////////////////////////////////////////// |
|
876 | 371 |
procedure doStepShotIdle(Gear: PGear); |
372 |
begin |
|
373 |
AllInactive:= false; |
|
374 |
inc(Gear^.Timer); |
|
375 |
if Gear^.Timer > 75 then |
|
376 |
begin |
|
377 |
DeleteGear(Gear); |
|
378 |
AfterAttack |
|
379 |
end |
|
380 |
end; |
|
381 |
||
4 | 382 |
procedure doStepShotgunShot(Gear: PGear); |
383 |
var i: LongWord; |
|
384 |
begin |
|
385 |
AllInactive:= false; |
|
876 | 386 |
|
387 |
if ((Gear^.State and gstAnimation) = 0) then |
|
388 |
begin |
|
389 |
dec(Gear^.Timer); |
|
390 |
if Gear^.Timer = 0 then |
|
391 |
begin |
|
1669 | 392 |
PlaySound(sndShotgunFire, false, nil); |
876 | 393 |
Gear^.State:= Gear^.State or gstAnimation |
394 |
end; |
|
395 |
exit |
|
396 |
end |
|
397 |
else inc(Gear^.Timer); |
|
398 |
||
4 | 399 |
i:= 200; |
400 |
repeat |
|
351 | 401 |
Gear^.X:= Gear^.X + Gear^.dX; |
402 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
4 | 403 |
CheckCollision(Gear); |
351 | 404 |
if (Gear^.State and gstCollision) <> 0 then |
876 | 405 |
begin |
406 |
Gear^.X:= Gear^.X + Gear^.dX * 8; |
|
407 |
Gear^.Y:= Gear^.Y + Gear^.dY * 8; |
|
408 |
ShotgunShot(Gear); |
|
409 |
Gear^.doStep:= @doStepShotIdle; |
|
410 |
exit |
|
411 |
end; |
|
4 | 412 |
dec(i) |
413 |
until i = 0; |
|
1760 | 414 |
if (hwRound(Gear^.X) and LAND_WIDTH_MASK <> 0) or (hwRound(Gear^.Y) and LAND_HEIGHT_MASK <> 0) then |
876 | 415 |
Gear^.doStep:= @doStepShotIdle |
4 | 416 |
end; |
417 |
||
418 |
//////////////////////////////////////////////////////////////////////////////// |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
419 |
procedure doStepBulletWork(Gear: PGear); |
38 | 420 |
var i, x, y: LongWord; |
351 | 421 |
oX, oY: hwFloat; |
38 | 422 |
begin |
423 |
AllInactive:= false; |
|
876 | 424 |
inc(Gear^.Timer); |
37 | 425 |
i:= 80; |
351 | 426 |
oX:= Gear^.X; |
427 |
oY:= Gear^.Y; |
|
37 | 428 |
repeat |
351 | 429 |
Gear^.X:= Gear^.X + Gear^.dX; |
430 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
431 |
x:= hwRound(Gear^.X); |
|
432 |
y:= hwRound(Gear^.Y); |
|
1753 | 433 |
if ((y and LAND_HEIGHT_MASK) = 0) and ((x and LAND_WIDTH_MASK) = 0) |
351 | 434 |
and (Land[y, x] <> 0) then inc(Gear^.Damage); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
435 |
if Gear^.Damage > 5 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
436 |
if Gear^.Ammo^.AmmoType = amDEagle then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
437 |
AmmoShove(Gear, 7, 20) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
438 |
else |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
439 |
AmmoShove(Gear, Gear^.Timer, 20); |
38 | 440 |
dec(i) |
351 | 441 |
until (i = 0) or (Gear^.Damage > Gear^.Health); |
442 |
if Gear^.Damage > 0 then |
|
37 | 443 |
begin |
351 | 444 |
DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 82 - i, 1); |
445 |
dec(Gear^.Health, Gear^.Damage); |
|
446 |
Gear^.Damage:= 0 |
|
37 | 447 |
end; |
1760 | 448 |
|
449 |
if (Gear^.Health <= 0) |
|
450 |
or (hwRound(Gear^.X) and LAND_WIDTH_MASK <> 0) |
|
451 |
or (hwRound(Gear^.Y) and LAND_HEIGHT_MASK <> 0) then |
|
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
452 |
begin |
2087 | 453 |
if (Gear^.Kind = gtSniperRifleShot) and ((GameFlags and gfLaserSight) = 0) then cLaserSighting:= false; |
2033 | 454 |
if (Gear^.Ammo^.NumPerTurn <= CurrentHedgehog^.AttacksNum) and |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
455 |
((GameFlags and gfArtillery) = 0) then cArtillery:= false; |
876 | 456 |
Gear^.doStep:= @doStepShotIdle |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
457 |
end; |
37 | 458 |
end; |
459 |
||
559 | 460 |
procedure doStepDEagleShot(Gear: PGear); |
461 |
begin |
|
2185
cf8f98e75bf9
Localise words "Fuel" and "Remaining" - add shot counter to deagle.
nemo
parents:
2182
diff
changeset
|
462 |
if Ammoz[amDEagle].Ammo.NumPerTurn>CurrentHedgehog^.AttacksNum then |
cf8f98e75bf9
Localise words "Fuel" and "Remaining" - add shot counter to deagle.
nemo
parents:
2182
diff
changeset
|
463 |
AddCaption(inttostr(Ammoz[amDEagle].Ammo.NumPerTurn-CurrentHedgehog^.AttacksNum)+' '+trmsg[sidRemaining], $FFFFFF, capgrpAmmostate); |
1669 | 464 |
PlaySound(sndGun, false, nil); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
465 |
Gear^.doStep:= @doStepBulletWork |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
466 |
end; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
467 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
468 |
procedure doStepSniperRifleShot(Gear: PGear); |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
469 |
var HHGear: PGear; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
470 |
begin |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
471 |
cArtillery:= true; |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
472 |
HHGear:=PHedgehog(Gear^.Hedgehog)^.Gear; |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
473 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
2033 | 474 |
HedgehogChAngle(HHGear); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
475 |
if not cLaserSighting then // game doesn't have default laser sight. turn it on and give them a chance to aim |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
476 |
begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
477 |
cLaserSighting:= true; |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
478 |
HHGear^.Message:= 0; |
2052 | 479 |
if(HHGear^.Angle - 32 >= 0) then dec(HHGear^.Angle,32) |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
480 |
end; |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
481 |
|
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
482 |
if (HHGear^.Message and gm_Attack) <> 0 then |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
483 |
begin |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
484 |
Gear^.State:= Gear^.State or gstAnimation; |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
485 |
Gear^.dX:= SignAs(AngleSin(HHGear^.Angle), HHGear^.dX) * _0_5; |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
486 |
Gear^.dY:= -AngleCos(HHGear^.Angle) * _0_5; |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
487 |
PlaySound(sndGun, false, nil); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
488 |
Gear^.doStep:= @doStepBulletWork; |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
489 |
end |
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
490 |
else |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
491 |
if (GameTicks mod 32) = 0 then |
2052 | 492 |
if (GameTicks mod 4096) < 2048 then |
493 |
begin |
|
494 |
if(HHGear^.Angle + 1 <= cMaxAngle) then inc(HHGear^.Angle) |
|
495 |
end |
|
496 |
else |
|
497 |
if(HHGear^.Angle - 1 >= 0) then dec(HHGear^.Angle); |
|
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
498 |
|
2058 | 499 |
if (TurnTimeLeft > 0) then |
500 |
dec(TurnTimeLeft) |
|
501 |
else |
|
502 |
begin |
|
2139
5a083e71a71d
Properly decrement sniper rifle if timed out. Try to get camera position straight for once.
nemo
parents:
2090
diff
changeset
|
503 |
PHedgehog(Gear^.Hedgehog)^.AttacksNum:= Gear^.Ammo^.NumPerTurn+1; |
2058 | 504 |
DeleteGear(Gear); |
2059 | 505 |
AfterAttack; |
506 |
TurnTimeLeft:= 0 |
|
2058 | 507 |
end; |
559 | 508 |
end; |
509 |
||
37 | 510 |
//////////////////////////////////////////////////////////////////////////////// |
4 | 511 |
procedure doStepActionTimer(Gear: PGear); |
512 |
begin |
|
351 | 513 |
dec(Gear^.Timer); |
514 |
case Gear^.Kind of |
|
83 | 515 |
gtATStartGame: begin |
4 | 516 |
AllInactive:= false; |
351 | 517 |
if Gear^.Timer = 0 then |
83 | 518 |
AddCaption(trmsg[sidStartFight], $FFFFFF, capgrpGameState); |
4 | 519 |
end; |
83 | 520 |
gtATSmoothWindCh: begin |
351 | 521 |
if Gear^.Timer = 0 then |
6 | 522 |
begin |
351 | 523 |
if WindBarWidth < Gear^.Tag then inc(WindBarWidth) |
524 |
else if WindBarWidth > Gear^.Tag then dec(WindBarWidth); |
|
525 |
if WindBarWidth <> Gear^.Tag then Gear^.Timer:= 10; |
|
83 | 526 |
end |
527 |
end; |
|
528 |
gtATFinishGame: begin |
|
529 |
AllInactive:= false; |
|
351 | 530 |
if Gear^.Timer = 0 then |
113 | 531 |
begin |
532 |
SendIPC('N'); |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
306
diff
changeset
|
533 |
SendIPC('q'); |
83 | 534 |
GameState:= gsExit |
113 | 535 |
end |
6 | 536 |
end; |
4 | 537 |
end; |
351 | 538 |
if Gear^.Timer = 0 then DeleteGear(Gear) |
4 | 539 |
end; |
540 |
||
541 |
//////////////////////////////////////////////////////////////////////////////// |
|
542 |
procedure doStepPickHammerWork(Gear: PGear); |
|
371 | 543 |
var i, ei: LongInt; |
4 | 544 |
HHGear: PGear; |
545 |
begin |
|
70 | 546 |
AllInactive:= false; |
351 | 547 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
548 |
dec(Gear^.Timer); |
|
549 |
if (Gear^.Timer = 0)or((Gear^.Message and gm_Destroy) <> 0)or((HHGear^.State and gstHHDriven) = 0) then |
|
1200 | 550 |
begin |
551 |
StopSound(sndPickhammer); |
|
552 |
DeleteGear(Gear); |
|
553 |
AfterAttack; |
|
554 |
exit |
|
555 |
end; |
|
845 | 556 |
|
422 | 557 |
if (Gear^.Timer mod 33) = 0 then |
1200 | 558 |
begin |
559 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
560 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y) + 7, 6, EXPLDontDraw); |
|
561 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
|
562 |
end; |
|
422 | 563 |
|
564 |
if (Gear^.Timer mod 47) = 0 then |
|
1200 | 565 |
begin |
566 |
i:= hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2)); |
|
567 |
ei:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2)); |
|
568 |
while i <= ei do |
|
569 |
begin |
|
570 |
DrawExplosion(i, hwRound(Gear^.Y) + 3, 3); |
|
571 |
inc(i, 1) |
|
572 |
end; |
|
2090
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
573 |
if Land[hwRound(Gear^.Y + _1_9) , hwRound(Gear^.X + Gear^.dX)] <> COLOR_INDESTRUCTIBLE then |
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
574 |
begin |
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
575 |
Gear^.X:= Gear^.X + Gear^.dX; |
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
576 |
Gear^.Y:= Gear^.Y + _1_9; |
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
577 |
end; |
1200 | 578 |
SetAllHHToActive; |
579 |
end; |
|
4 | 580 |
if TestCollisionYwithGear(Gear, 1) then |
1200 | 581 |
begin |
582 |
Gear^.dY:= _0; |
|
583 |
SetLittle(HHGear^.dX); |
|
584 |
HHGear^.dY:= _0; |
|
585 |
end else |
|
586 |
begin |
|
587 |
Gear^.dY:= Gear^.dY + cGravity; |
|
588 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1417 | 589 |
if hwRound(Gear^.Y) > cWaterLine then Gear^.Timer:= 1 |
1200 | 590 |
end; |
4 | 591 |
|
351 | 592 |
Gear^.X:= Gear^.X + HHGear^.dX; |
593 |
HHGear^.X:= Gear^.X; |
|
498 | 594 |
HHGear^.Y:= Gear^.Y - int2hwFloat(cHHRadius); |
4 | 595 |
|
351 | 596 |
if (Gear^.Message and gm_Attack) <> 0 then |
597 |
if (Gear^.State and gsttmpFlag) <> 0 then Gear^.Timer:= 1 else else |
|
598 |
if (Gear^.State and gsttmpFlag) = 0 then Gear^.State:= Gear^.State or gsttmpFlag; |
|
599 |
if ((Gear^.Message and gm_Left) <> 0) then Gear^.dX:= - _0_3 else |
|
600 |
if ((Gear^.Message and gm_Right) <> 0) then Gear^.dX:= _0_3 |
|
498 | 601 |
else Gear^.dX:= _0; |
4 | 602 |
end; |
603 |
||
604 |
procedure doStepPickHammer(Gear: PGear); |
|
371 | 605 |
var i, y: LongInt; |
4 | 606 |
ar: TRangeArray; |
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
607 |
HHGear: PGear; |
4 | 608 |
begin |
609 |
i:= 0; |
|
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
610 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
611 |
|
498 | 612 |
y:= hwRound(Gear^.Y) - cHHRadius * 2; |
351 | 613 |
while y < hwRound(Gear^.Y) do |
4 | 614 |
begin |
371 | 615 |
ar[i].Left := hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2)); |
616 |
ar[i].Right:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2)); |
|
4 | 617 |
inc(y, 2); |
618 |
inc(i) |
|
619 |
end; |
|
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
620 |
|
498 | 621 |
DrawHLinesExplosions(@ar, 3, hwRound(Gear^.Y) - cHHRadius * 2, 2, Pred(i)); |
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
622 |
Gear^.dY:= HHGear^.dY; |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
623 |
DeleteCI(HHGear); |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
624 |
|
1669 | 625 |
PlaySound(sndPickhammer, true, nil); |
4 | 626 |
doStepPickHammerWork(Gear); |
351 | 627 |
Gear^.doStep:= @doStepPickHammerWork |
4 | 628 |
end; |
629 |
||
630 |
//////////////////////////////////////////////////////////////////////////////// |
|
371 | 631 |
var BTPrevAngle, BTSteps: LongInt; |
302 | 632 |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
633 |
procedure doStepBlowTorchWork(Gear: PGear); |
302 | 634 |
var HHGear: PGear; |
1528 | 635 |
b: boolean; |
636 |
prevX: LongInt; |
|
302 | 637 |
begin |
638 |
AllInactive:= false; |
|
351 | 639 |
dec(Gear^.Timer); |
640 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
641 |
|
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
642 |
HedgehogChAngle(HHGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
643 |
|
305 | 644 |
b:= false; |
645 |
||
371 | 646 |
if abs(LongInt(HHGear^.Angle) - BTPrevAngle) > 7 then |
1528 | 647 |
begin |
648 |
Gear^.dX:= SignAs(AngleSin(HHGear^.Angle) * _0_5, HHGear^.dX); |
|
649 |
Gear^.dY:= AngleCos(HHGear^.Angle) * ( - _0_5); |
|
650 |
BTPrevAngle:= HHGear^.Angle; |
|
651 |
b:= true |
|
652 |
end; |
|
653 |
||
654 |
if ((HHGear^.State and gstMoving) <> 0) then |
|
655 |
begin |
|
656 |
doStepHedgehogMoving(HHGear); |
|
1736 | 657 |
if (HHGear^.State and gstHHDriven) = 0 then Gear^.Timer:= 0 |
1528 | 658 |
end; |
305 | 659 |
|
351 | 660 |
if Gear^.Timer mod cHHStepTicks = 0 then |
1528 | 661 |
begin |
662 |
b:= true; |
|
663 |
if Gear^.dX.isNegative then |
|
1547 | 664 |
HHGear^.Message:= (HHGear^.Message and (gm_Attack or gm_Up or gm_Down)) or gm_Left |
1528 | 665 |
else |
1547 | 666 |
HHGear^.Message:= (HHGear^.Message and (gm_Attack or gm_Up or gm_Down)) or gm_Right; |
305 | 667 |
|
1528 | 668 |
if ((HHGear^.State and gstMoving) = 0) then |
669 |
begin |
|
670 |
HHGear^.State:= HHGear^.State and not gstAttacking; |
|
671 |
prevX:= hwRound(HHGear^.X); |
|
2090
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
672 |
|
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
673 |
// why the call to HedgehogStep then a further increment of X? |
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
674 |
if (prevX = hwRound(HHGear^.X)) and (Land[hwRound(HHGear^.Y) , hwRound(HHGear^.X + SignAs(_1, HHGear^.dX))] <> COLOR_INDESTRUCTIBLE) then HedgehogStep(HHGear); |
1528 | 675 |
|
2090
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
676 |
if (prevX = hwRound(HHGear^.X)) and (Land[hwRound(HHGear^.Y) , hwRound(HHGear^.X + SignAs(_1, HHGear^.dX))] <> COLOR_INDESTRUCTIBLE) then HHGear^.X:= HHGear^.X + SignAs(_1, HHGear^.dX); |
1528 | 677 |
HHGear^.State:= HHGear^.State or gstAttacking |
678 |
end; |
|
305 | 679 |
|
1528 | 680 |
inc(BTSteps); |
681 |
if BTSteps = 7 then |
|
682 |
begin |
|
683 |
BTSteps:= 0; |
|
2090
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
684 |
if Land[hwRound(HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC)) , hwRound(HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC))] <> COLOR_INDESTRUCTIBLE then |
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
685 |
begin |
1528 | 686 |
Gear^.X:= HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC); |
687 |
Gear^.Y:= HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC); |
|
2090
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
688 |
end; |
1528 | 689 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
1643 | 690 |
AmmoShove(Gear, 2, 15); |
1528 | 691 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
692 |
end; |
|
693 |
end; |
|
305 | 694 |
|
695 |
if b then |
|
498 | 696 |
DrawTunnel(HHGear^.X - Gear^.dX * cHHRadius, HHGear^.Y - _4 - Gear^.dY * cHHRadius + hwAbs(Gear^.dY) * 7, |
351 | 697 |
Gear^.dX, Gear^.dY, |
1501 | 698 |
cHHRadius * 5, cHHRadius * 2 + 7); |
305 | 699 |
|
2090
4edb0d49a42d
prevent unc0rr from getting clever with jackhammer too. bring blowtorch into line with the other - should be more fun anyway
nemo
parents:
2089
diff
changeset
|
700 |
if (Gear^.Timer = 0) or ((HHGear^.Message and gm_Attack) <> 0) then |
1528 | 701 |
begin |
702 |
HHGear^.Message:= 0; |
|
703 |
HHGear^.State:= HHGear^.State and (not gstNotKickable); |
|
704 |
DeleteGear(Gear); |
|
705 |
AfterAttack |
|
706 |
end |
|
302 | 707 |
end; |
708 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
709 |
procedure doStepBlowTorch(Gear: PGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
710 |
var HHGear: PGear; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
711 |
begin |
371 | 712 |
BTPrevAngle:= High(LongInt); |
305 | 713 |
BTSteps:= 0; |
351 | 714 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
715 |
HHGear^.Message:= 0; |
|
1528 | 716 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
351 | 717 |
Gear^.doStep:= @doStepBlowTorchWork |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
718 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
719 |
|
302 | 720 |
//////////////////////////////////////////////////////////////////////////////// |
721 |
||
1781 | 722 |
procedure doStepRope(Gear: PGear); forward; |
723 |
||
724 |
procedure doStepRopeAfterAttack(Gear: PGear); |
|
725 |
var HHGear: PGear; |
|
726 |
begin |
|
727 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
728 |
if ((HHGear^.State and gstHHDriven) = 0) |
|
729 |
or (CheckGearDrowning(HHGear)) |
|
730 |
or TestCollisionYwithGear(HHGear, 1) then |
|
731 |
begin |
|
732 |
DeleteGear(Gear); |
|
2060
3e9e5e1be6f5
fix crash in parachute/rope if drowning with active girder/teleport
nemo
parents:
2059
diff
changeset
|
733 |
isCursorVisible:= false; |
1781 | 734 |
exit |
735 |
end; |
|
736 |
||
1785 | 737 |
HedgehogChAngle(HHGear); |
738 |
||
2029 | 739 |
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then |
740 |
begin |
|
741 |
{$IFDEF DEBUGFILE}if HHGear^.dX.QWordValue > 1 then AddFileLog('Stopping hedgehog after rope attack due to wall collision');{$ENDIF} |
|
742 |
SetLittle(HHGear^.dX); |
|
743 |
end; |
|
744 |
||
1781 | 745 |
if HHGear^.dY.isNegative and TestCollisionYwithGear(HHGear, -1) then HHGear^.dY:= _0; |
746 |
HHGear^.X:= HHGear^.X + HHGear^.dX; |
|
747 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY; |
|
748 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
749 |
||
750 |
if (Gear^.Message and gm_Attack) <> 0 then |
|
751 |
begin |
|
752 |
Gear^.X:= HHGear^.X; |
|
753 |
Gear^.Y:= HHGear^.Y; |
|
1964 | 754 |
|
755 |
ApplyAngleBounds(PHedgehog(Gear^.Hedgehog)^, amRope); |
|
756 |
||
1781 | 757 |
Gear^.dX:= SignAs(AngleSin(HHGear^.Angle), HHGear^.dX); |
758 |
Gear^.dY:= -AngleCos(HHGear^.Angle); |
|
759 |
Gear^.Friction:= _450; |
|
760 |
Gear^.Elasticity:= _0; |
|
761 |
Gear^.State:= Gear^.State and not gsttmpflag; |
|
762 |
Gear^.doStep:= @doStepRope |
|
763 |
end |
|
764 |
end; |
|
765 |
||
4 | 766 |
procedure doStepRopeWork(Gear: PGear); |
767 |
var HHGear: PGear; |
|
1669 | 768 |
len, tx, ty, nx, ny, ropeDx, ropeDy, mdX, mdY: hwFloat; |
1504 | 769 |
lx, ly: LongInt; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
770 |
haveCollision, |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
771 |
haveDivided: boolean; |
4 | 772 |
|
1504 | 773 |
procedure DeleteMe; |
774 |
begin |
|
775 |
with HHGear^ do |
|
776 |
begin |
|
777 |
Message:= Message and not gm_Attack; |
|
2025
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2024
diff
changeset
|
778 |
State:= (State or gstMoving) and not gstWinner; |
1504 | 779 |
end; |
780 |
DeleteGear(Gear) |
|
781 |
end; |
|
4 | 782 |
|
1781 | 783 |
procedure WaitCollision; |
784 |
begin |
|
785 |
with HHGear^ do |
|
786 |
begin |
|
787 |
Message:= Message and not gm_Attack; |
|
788 |
State:= State or gstMoving; |
|
789 |
end; |
|
790 |
RopePoints.Count:= 0; |
|
791 |
Gear^.Elasticity:= _0; |
|
792 |
Gear^.doStep:= @doStepRopeAfterAttack |
|
793 |
end; |
|
794 |
||
4 | 795 |
begin |
351 | 796 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
108 | 797 |
|
351 | 798 |
if ((HHGear^.State and gstHHDriven) = 0) |
1504 | 799 |
or (CheckGearDrowning(HHGear)) then |
800 |
begin |
|
801 |
DeleteMe; |
|
802 |
exit |
|
803 |
end; |
|
928
b9064b48b001
Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents:
925
diff
changeset
|
804 |
|
351 | 805 |
if (Gear^.Message and gm_Left <> 0) then HHGear^.dX:= HHGear^.dX - _0_0002 else |
806 |
if (Gear^.Message and gm_Right <> 0) then HHGear^.dX:= HHGear^.dX + _0_0002; |
|
4 | 807 |
|
351 | 808 |
if not TestCollisionYwithGear(HHGear, 1) then HHGear^.dY:= HHGear^.dY + cGravity; |
4 | 809 |
|
1652 | 810 |
ropeDx:= HHGear^.X - Gear^.X; // vector between hedgehog and rope attaching point |
811 |
ropeDy:= HHGear^.Y - Gear^.Y; |
|
812 |
||
813 |
mdX:= ropeDx + HHGear^.dX; |
|
814 |
mdY:= ropeDy + HHGear^.dY; |
|
815 |
len:= _1 / Distance(mdX, mdY); |
|
816 |
mdX:= mdX * len; // rope vector plus hedgehog direction vector normalized |
|
817 |
mdY:= mdY * len; |
|
818 |
||
819 |
Gear^.dX:= mdX; // for visual purposes only |
|
820 |
Gear^.dY:= mdY; |
|
821 |
||
822 |
///// |
|
823 |
tx:= HHGear^.X; |
|
824 |
ty:= HHGear^.Y; |
|
4 | 825 |
|
1652 | 826 |
if ((Gear^.Message and gm_Down) <> 0) and (Gear^.Elasticity < Gear^.Friction) then |
827 |
if not (TestCollisionXwithGear(HHGear, hwSign(ropeDx)) |
|
828 |
or TestCollisionYwithGear(HHGear, hwSign(ropeDy))) then |
|
829 |
Gear^.Elasticity:= Gear^.Elasticity + _0_3; |
|
830 |
||
831 |
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Elasticity > _30) then |
|
832 |
if not (TestCollisionXwithGear(HHGear, -hwSign(ropeDx)) |
|
833 |
or TestCollisionYwithGear(HHGear, -hwSign(ropeDy))) then |
|
834 |
Gear^.Elasticity:= Gear^.Elasticity - _0_3; |
|
835 |
||
836 |
HHGear^.X:= Gear^.X + mdX * Gear^.Elasticity; |
|
837 |
HHGear^.Y:= Gear^.Y + mdY * Gear^.Elasticity; |
|
838 |
||
839 |
HHGear^.dX:= HHGear^.X - tx; |
|
840 |
HHGear^.dY:= HHGear^.Y - ty; |
|
841 |
//// |
|
842 |
||
1554 | 843 |
|
1922 | 844 |
haveDivided:= false; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
845 |
// check whether rope needs dividing |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
846 |
len:= _1 / Distance(ropeDx, ropeDy); // old rope pos |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
847 |
nx:= ropeDx * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
848 |
ny:= ropeDy * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
849 |
|
1652 | 850 |
len:= Gear^.Elasticity - _0_3x70; |
851 |
while len > _0_3 do |
|
1504 | 852 |
begin |
1652 | 853 |
lx:= hwRound(Gear^.X + mdX * len); |
854 |
ly:= hwRound(Gear^.Y + mdY * len); |
|
1753 | 855 |
if ((ly and LAND_HEIGHT_MASK) = 0) and ((lx and LAND_WIDTH_MASK) = 0) and (Land[ly, lx] <> 0) then |
1504 | 856 |
begin |
857 |
with RopePoints.ar[RopePoints.Count] do |
|
858 |
begin |
|
859 |
X:= Gear^.X; |
|
860 |
Y:= Gear^.Y; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
861 |
if RopePoints.Count = 0 then RopePoints.HookAngle:= DxDy2Angle(Gear^.dY, Gear^.dX); |
1652 | 862 |
b:= (nx * HHGear^.dY) > (ny * HHGear^.dX); |
1504 | 863 |
dLen:= len |
864 |
end; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
865 |
Gear^.X:= Gear^.X + nx * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
866 |
Gear^.Y:= Gear^.Y + ny * len; |
1504 | 867 |
inc(RopePoints.Count); |
868 |
TryDo(RopePoints.Count <= MAXROPEPOINTS, 'Rope points overflow', true); |
|
869 |
Gear^.Elasticity:= Gear^.Elasticity - len; |
|
870 |
Gear^.Friction:= Gear^.Friction - len; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
871 |
haveDivided:= true; |
1504 | 872 |
break |
873 |
end; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
874 |
len:= len - _0_3 // should be the same as increase step |
1504 | 875 |
end; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
876 |
|
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
877 |
if not haveDivided then |
1504 | 878 |
if RopePoints.Count > 0 then // check whether the last dividing point could be removed |
879 |
begin |
|
880 |
tx:= RopePoints.ar[Pred(RopePoints.Count)].X; |
|
881 |
ty:= RopePoints.ar[Pred(RopePoints.Count)].Y; |
|
882 |
if RopePoints.ar[Pred(RopePoints.Count)].b xor ((tx - Gear^.X) * (ty - HHGear^.Y) > (tx - HHGear^.X) * (ty - Gear^.Y)) then |
|
883 |
begin |
|
884 |
dec(RopePoints.Count); |
|
1652 | 885 |
Gear^.X:= RopePoints.ar[RopePoints.Count].X; |
886 |
Gear^.Y:= RopePoints.ar[RopePoints.Count].Y; |
|
1504 | 887 |
Gear^.Elasticity:= Gear^.Elasticity + RopePoints.ar[RopePoints.Count].dLen; |
888 |
Gear^.Friction:= Gear^.Friction + RopePoints.ar[RopePoints.Count].dLen |
|
889 |
end |
|
890 |
end; |
|
4 | 891 |
|
1551
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
892 |
haveCollision:= false; |
351 | 893 |
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then |
1551
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
894 |
begin |
1504 | 895 |
HHGear^.dX:= -_0_6 * HHGear^.dX; |
1551
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
896 |
haveCollision:= true |
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
897 |
end; |
351 | 898 |
if TestCollisionYwithGear(HHGear, hwSign(HHGear^.dY)) then |
1551
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
899 |
begin |
1504 | 900 |
HHGear^.dY:= -_0_6 * HHGear^.dY; |
1551
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
901 |
haveCollision:= true |
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
902 |
end; |
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
903 |
|
1579
2f581b1f289e
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents:
1573
diff
changeset
|
904 |
if haveCollision |
2f581b1f289e
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents:
1573
diff
changeset
|
905 |
and (Gear^.Message and (gm_Left or gm_Right) <> 0) |
2f581b1f289e
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents:
1573
diff
changeset
|
906 |
and (Gear^.Message and (gm_Up or gm_Down) <> 0) then |
1551
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
907 |
begin |
1579
2f581b1f289e
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents:
1573
diff
changeset
|
908 |
HHGear^.dX:= SignAs(hwAbs(HHGear^.dX) + _0_2, HHGear^.dX); |
2f581b1f289e
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents:
1573
diff
changeset
|
909 |
HHGear^.dY:= SignAs(hwAbs(HHGear^.dY) + _0_2, HHGear^.dY) |
1551
c747e69f98f3
Add some speed to hedgehog on rope when colliding with land and pressing left or right arrow key
unc0rr
parents:
1548
diff
changeset
|
910 |
end; |
4 | 911 |
|
789 | 912 |
len:= Distance(HHGear^.dX, HHGear^.dY); |
940 | 913 |
if len > _0_8 then |
1504 | 914 |
begin |
915 |
len:= _0_8 / len; |
|
916 |
HHGear^.dX:= HHGear^.dX * len; |
|
917 |
HHGear^.dY:= HHGear^.dY * len; |
|
918 |
end; |
|
789 | 919 |
|
351 | 920 |
if (Gear^.Message and gm_Attack) <> 0 then |
1504 | 921 |
if (Gear^.State and gsttmpFlag) <> 0 then |
1922 | 922 |
with PHedgehog(Gear^.Hedgehog)^ do |
1964 | 923 |
if Ammo^[CurSlot, CurAmmo].AmmoType <> amParachute then |
1922 | 924 |
WaitCollision |
925 |
else |
|
926 |
DeleteMe |
|
1504 | 927 |
else |
928 |
else |
|
929 |
if (Gear^.State and gsttmpFlag) = 0 then |
|
930 |
Gear^.State:= Gear^.State or gsttmpFlag; |
|
4 | 931 |
end; |
932 |
||
933 |
procedure doStepRopeAttach(Gear: PGear); |
|
934 |
var HHGear: PGear; |
|
1781 | 935 |
tx, ty, tt: hwFloat; |
936 |
||
937 |
procedure RemoveFromAmmo; |
|
938 |
begin |
|
939 |
if (Gear^.State and gstAttacked) = 0 then |
|
940 |
begin |
|
941 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
|
942 |
Gear^.State:= Gear^.State or gstAttacked |
|
1964 | 943 |
end; |
944 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^) |
|
1781 | 945 |
end; |
946 |
||
4 | 947 |
begin |
351 | 948 |
Gear^.X:= Gear^.X - Gear^.dX; |
949 |
Gear^.Y:= Gear^.Y - Gear^.dY; |
|
498 | 950 |
Gear^.Elasticity:= Gear^.Elasticity + _1; |
351 | 951 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
517 | 952 |
DeleteCI(HHGear); |
542 | 953 |
if (HHGear^.State and gstMoving) <> 0 then |
1433 | 954 |
if TestCollisionYwithGear(HHGear, 1) then |
955 |
begin |
|
956 |
CheckHHDamage(HHGear); |
|
957 |
HHGear^.dY:= _0; |
|
2025
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2024
diff
changeset
|
958 |
HHGear^.State:= HHGear^.State and not (gstMoving or gstHHJumping or gstHHHJump); |
1433 | 959 |
end else |
960 |
begin |
|
961 |
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then SetLittle(HHGear^.dX); |
|
962 |
HHGear^.X:= HHGear^.X + HHGear^.dX; |
|
963 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY; |
|
964 |
Gear^.X:= Gear^.X + HHGear^.dX; |
|
965 |
Gear^.Y:= Gear^.Y + HHGear^.dY; |
|
966 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
967 |
tt:= Gear^.Elasticity; |
|
968 |
tx:= _0; |
|
969 |
ty:= _0; |
|
970 |
while tt > _20 do |
|
971 |
begin |
|
972 |
if TestCollisionXwithXYShift(Gear, tx, hwRound(ty), -hwSign(Gear^.dX)) |
|
973 |
or TestCollisionYwithXYShift(Gear, hwRound(tx), hwRound(ty), -hwSign(Gear^.dY)) then |
|
974 |
begin |
|
975 |
Gear^.X:= Gear^.X + tx; |
|
976 |
Gear^.Y:= Gear^.Y + ty; |
|
977 |
Gear^.Elasticity:= tt; |
|
978 |
Gear^.doStep:= @doStepRopeWork; |
|
1752
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
979 |
with HHGear^ do State:= State and not (gstAttacking or gstMoving or gstHHHJump); |
1781 | 980 |
|
981 |
RemoveFromAmmo; |
|
982 |
||
1752
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
983 |
tt:= _0; |
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
984 |
exit |
1433 | 985 |
end; |
986 |
tx:= tx + Gear^.dX + Gear^.dX; |
|
987 |
ty:= ty + Gear^.dY + Gear^.dY; |
|
988 |
tt:= tt - _2; |
|
989 |
end; |
|
990 |
end; |
|
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
991 |
|
4 | 992 |
CheckCollision(Gear); |
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
993 |
|
351 | 994 |
if (Gear^.State and gstCollision) <> 0 then |
2068 | 995 |
if Gear^.Elasticity < _10 then |
996 |
Gear^.Elasticity:= _10000 |
|
997 |
else |
|
998 |
begin |
|
999 |
Gear^.doStep:= @doStepRopeWork; |
|
1000 |
with HHGear^ do State:= State and not (gstAttacking or gstHHHJump); |
|
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1001 |
|
2068 | 1002 |
RemoveFromAmmo; |
1003 |
||
1004 |
exit |
|
1005 |
end; |
|
4 | 1006 |
|
1634
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1007 |
if (Gear^.Elasticity > Gear^.Friction) |
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1008 |
or ((Gear^.Message and gm_Attack) = 0) |
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1009 |
or (HHGear^.Damage > 0) then |
1433 | 1010 |
begin |
1011 |
with PHedgehog(Gear^.Hedgehog)^.Gear^ do |
|
1012 |
begin |
|
1013 |
State:= State and not gstAttacking; |
|
1014 |
Message:= Message and not gm_Attack |
|
1015 |
end; |
|
1016 |
DeleteGear(Gear) |
|
1017 |
end |
|
4 | 1018 |
end; |
1019 |
||
1020 |
procedure doStepRope(Gear: PGear); |
|
1021 |
begin |
|
351 | 1022 |
Gear^.dX:= - Gear^.dX; |
1023 |
Gear^.dY:= - Gear^.dY; |
|
1024 |
Gear^.doStep:= @doStepRopeAttach |
|
4 | 1025 |
end; |
1026 |
||
1027 |
//////////////////////////////////////////////////////////////////////////////// |
|
1028 |
procedure doStepSmokeTrace(Gear: PGear); |
|
1029 |
begin |
|
351 | 1030 |
inc(Gear^.Timer); |
1031 |
if Gear^.Timer > 64 then |
|
1133 | 1032 |
begin |
1033 |
Gear^.Timer:= 0; |
|
1034 |
dec(Gear^.State) |
|
1035 |
end; |
|
351 | 1036 |
Gear^.dX:= Gear^.dX + cWindSpeed; |
1037 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1038 |
if Gear^.State = 0 then DeleteGear(Gear) |
|
4 | 1039 |
end; |
9 | 1040 |
|
1041 |
//////////////////////////////////////////////////////////////////////////////// |
|
1045 | 1042 |
procedure doStepExplosionWork(Gear: PGear); |
9 | 1043 |
begin |
351 | 1044 |
inc(Gear^.Timer); |
1045 |
if Gear^.Timer > 75 then |
|
1133 | 1046 |
begin |
1047 |
inc(Gear^.State); |
|
1048 |
Gear^.Timer:= 0; |
|
1049 |
if Gear^.State > 5 then DeleteGear(Gear) |
|
1050 |
end; |
|
9 | 1051 |
end; |
10 | 1052 |
|
1045 | 1053 |
procedure doStepExplosion(Gear: PGear); |
1054 |
var i: LongWord; |
|
1055 |
begin |
|
1047 | 1056 |
for i:= 0 to 31 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtFire); |
1057 |
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart); |
|
1058 |
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart2); |
|
1045 | 1059 |
Gear^.doStep:= @doStepExplosionWork |
1060 |
end; |
|
1061 |
||
10 | 1062 |
//////////////////////////////////////////////////////////////////////////////// |
1063 |
procedure doStepMine(Gear: PGear); |
|
1064 |
begin |
|
542 | 1065 |
if (Gear^.State and gstMoving) <> 0 then |
914 | 1066 |
begin |
1067 |
DeleteCI(Gear); |
|
1068 |
doStepFallingGear(Gear); |
|
1069 |
if (Gear^.State and gstMoving) = 0 then |
|
1070 |
begin |
|
1071 |
AddGearCI(Gear); |
|
1072 |
Gear^.dX:= _0; |
|
1073 |
Gear^.dY:= _0 |
|
1074 |
end; |
|
1075 |
CalcRotationDirAngle(Gear); |
|
1076 |
AllInactive:= false |
|
1077 |
end else |
|
1078 |
if ((GameTicks and $3F) = 25) then |
|
1079 |
doStepFallingGear(Gear); |
|
351 | 1080 |
|
1081 |
if ((Gear^.State and gsttmpFlag) <> 0) then |
|
1133 | 1082 |
if ((Gear^.State and gstAttacking) = 0) then |
1083 |
begin |
|
1084 |
if ((GameTicks and $1F) = 0) then |
|
1085 |
if CheckGearNear(Gear, gtHedgehog, 46, 32) <> nil then Gear^.State:= Gear^.State or gstAttacking |
|
1086 |
end else // gstAttacking <> 0 |
|
1087 |
begin |
|
1088 |
AllInactive:= false; |
|
1669 | 1089 |
if (Gear^.Timer and $FF) = 0 then PlaySound(sndMineTick, false, nil); |
1133 | 1090 |
if Gear^.Timer = 0 then |
1091 |
begin |
|
1092 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
1093 |
DeleteGear(Gear); |
|
1094 |
exit |
|
1095 |
end; |
|
1096 |
dec(Gear^.Timer); |
|
1097 |
end else // gsttmpFlag = 0 |
|
1098 |
if TurnTimeLeft = 0 then Gear^.State:= Gear^.State or gsttmpFlag; |
|
10 | 1099 |
end; |
57 | 1100 |
|
39 | 1101 |
//////////////////////////////////////////////////////////////////////////////// |
1102 |
procedure doStepDynamite(Gear: PGear); |
|
1103 |
begin |
|
43 | 1104 |
doStepFallingGear(Gear); |
1105 |
AllInactive:= false; |
|
351 | 1106 |
if Gear^.Timer mod 166 = 0 then inc(Gear^.Tag); |
1107 |
if Gear^.Timer = 0 then |
|
1133 | 1108 |
begin |
1109 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound); |
|
1110 |
DeleteGear(Gear); |
|
1111 |
exit |
|
1112 |
end; |
|
351 | 1113 |
dec(Gear^.Timer); |
39 | 1114 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1115 |
|
351 | 1116 |
/////////////////////////////////////////////////////////////////////////////// |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1117 |
procedure doStepCase(Gear: PGear); |
371 | 1118 |
var i, x, y: LongInt; |
1436 | 1119 |
k: TGearType; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1120 |
begin |
351 | 1121 |
if (Gear^.Message and gm_Destroy) > 0 then |
1133 | 1122 |
begin |
1123 |
DeleteGear(Gear); |
|
1124 |
FreeActionsList; |
|
1125 |
SetAllToActive; // something (hh, mine, etc...) could be on top of the case |
|
1126 |
with CurrentHedgehog^ do |
|
1127 |
if Gear <> nil then Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
|
1128 |
exit |
|
1129 |
end; |
|
15 | 1130 |
|
351 | 1131 |
if Gear^.Damage > 0 then |
1133 | 1132 |
begin |
1133 |
x:= hwRound(Gear^.X); |
|
1134 |
y:= hwRound(Gear^.Y); |
|
1436 | 1135 |
k:= Gear^.Kind; |
1136 |
DeleteGear(Gear); // <-- delete gear! |
|
1137 |
||
1138 |
if k = gtCase then |
|
1133 | 1139 |
begin |
1140 |
doMakeExplosion(x, y, 25, EXPLAutoSound); |
|
1141 |
for i:= 0 to 63 do |
|
1142 |
AddGear(x, y, gtFlame, 0, _0, _0, 0); |
|
1143 |
end; |
|
1144 |
exit |
|
1145 |
end; |
|
79 | 1146 |
|
351 | 1147 |
if (Gear^.dY.QWordValue <> 0) or (not TestCollisionYwithGear(Gear, 1)) then |
1133 | 1148 |
begin |
1149 |
AllInactive:= false; |
|
1150 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1151 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1152 |
if (Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0 else |
|
1153 |
if (not Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, 1) then |
|
1154 |
begin |
|
1155 |
Gear^.dY:= - Gear^.dY * Gear^.Elasticity; |
|
1156 |
if Gear^.dY > - _0_001 then Gear^.dY:= _0 |
|
1669 | 1157 |
else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false, nil); |
1133 | 1158 |
end; |
1159 |
CheckGearDrowning(Gear); |
|
1160 |
end; |
|
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1161 |
|
511 | 1162 |
if (Gear^.dY.QWordValue = 0) then AddGearCI(Gear) |
1133 | 1163 |
else if (Gear^.dY.QWordValue <> 0) then DeleteCI(Gear) |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1164 |
end; |
49 | 1165 |
|
1166 |
//////////////////////////////////////////////////////////////////////////////// |
|
854 | 1167 |
procedure doStepIdle(Gear: PGear); |
1168 |
begin |
|
1169 |
AllInactive:= false; |
|
925 | 1170 |
dec(Gear^.Timer); |
854 | 1171 |
if Gear^.Timer = 0 then |
1172 |
begin |
|
1173 |
DeleteGear(Gear); |
|
1174 |
AfterAttack |
|
1175 |
end |
|
1176 |
end; |
|
1177 |
||
79 | 1178 |
procedure doStepShover(Gear: PGear); |
1179 |
var HHGear: PGear; |
|
1180 |
begin |
|
351 | 1181 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
1182 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1183 |
DeleteCI(HHGear); |
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1184 |
|
79 | 1185 |
AmmoShove(Gear, 30, 115); |
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1186 |
|
351 | 1187 |
HHGear^.State:= HHGear^.State and not gstNoDamage; |
854 | 1188 |
Gear^.Timer:= 250; |
1189 |
Gear^.doStep:= @doStepIdle |
|
79 | 1190 |
end; |
1191 |
||
1192 |
//////////////////////////////////////////////////////////////////////////////// |
|
925 | 1193 |
procedure doStepWhip(Gear: PGear); |
1194 |
var HHGear: PGear; |
|
1195 |
i: LongInt; |
|
1196 |
begin |
|
1197 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1198 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1199 |
DeleteCI(HHGear); |
925 | 1200 |
|
1201 |
for i:= 0 to 3 do |
|
1202 |
begin |
|
1203 |
AmmoShove(Gear, 30, 25); |
|
1204 |
Gear^.X:= Gear^.X + Gear^.dX * 5 |
|
1205 |
end; |
|
1206 |
||
1207 |
HHGear^.State:= HHGear^.State and not gstNoDamage; |
|
1208 |
Gear^.Timer:= 250; |
|
1209 |
Gear^.doStep:= @doStepIdle |
|
1210 |
end; |
|
1211 |
||
1212 |
//////////////////////////////////////////////////////////////////////////////// |
|
79 | 1213 |
procedure doStepFlame(Gear: PGear); |
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:
2142
diff
changeset
|
1214 |
var i: Integer; |
79 | 1215 |
begin |
1216 |
AllInactive:= false; |
|
1433 | 1217 |
|
79 | 1218 |
if not TestCollisionYwithGear(Gear, 1) then |
1133 | 1219 |
begin |
1586 | 1220 |
if hwAbs(Gear^.dX) > _0_01 then |
1221 |
Gear^.dX:= Gear^.dX * _0_995; |
|
1297 | 1222 |
|
1133 | 1223 |
Gear^.dY:= Gear^.dY + cGravity; |
1830 | 1224 |
if hwAbs(Gear^.dY) > _0_2 then Gear^.dY:= Gear^.dY * _0_995; |
1297 | 1225 |
|
1830 | 1226 |
Gear^.X:= Gear^.X + Gear^.dX + cWindSpeed * 640; |
1133 | 1227 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
1297 | 1228 |
|
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:
2142
diff
changeset
|
1229 |
if (hwRound(Gear^.Y) > cWaterLine) then |
1133 | 1230 |
begin |
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:
2142
diff
changeset
|
1231 |
for i:= 0 to 3 do |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2142
diff
changeset
|
1232 |
begin |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2142
diff
changeset
|
1233 |
AddVisualGear(hwRound(Gear^.X) - 16 + Random(32), hwRound(Gear^.Y) - 16 + Random(16), vgtSteam); |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2142
diff
changeset
|
1234 |
PlaySound(sndVaporize, false, nil); |
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2142
diff
changeset
|
1235 |
end; |
1133 | 1236 |
DeleteGear(Gear); |
1237 |
exit |
|
1238 |
end |
|
1239 |
end else begin |
|
1240 |
if Gear^.Timer > 0 then dec(Gear^.Timer) |
|
1241 |
else begin |
|
1586 | 1242 |
Gear^.Radius:= 9; |
1243 |
AmmoShove(Gear, 4, 100); |
|
1297 | 1244 |
Gear^.Radius:= 1; |
1245 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 4, EXPLNoDamage); |
|
1133 | 1246 |
dec(Gear^.Health); |
1586 | 1247 |
Gear^.Timer:= 450 - Gear^.Tag * 8 |
1133 | 1248 |
end |
1249 |
end; |
|
79 | 1250 |
|
1295 | 1251 |
//if (((GameTicks div 8) mod 64) = Gear^.Tag) then |
1252 |
// AmmoFlameWork(Gear); |
|
79 | 1253 |
|
351 | 1254 |
if Gear^.Health = 0 then |
1133 | 1255 |
DeleteGear(Gear) |
79 | 1256 |
end; |
82 | 1257 |
|
1258 |
//////////////////////////////////////////////////////////////////////////////// |
|
1259 |
procedure doStepFirePunchWork(Gear: PGear); |
|
1260 |
var HHGear: PGear; |
|
1261 |
begin |
|
1262 |
AllInactive:= false; |
|
351 | 1263 |
if ((Gear^.Message and gm_Destroy) <> 0) then |
1133 | 1264 |
begin |
1265 |
DeleteGear(Gear); |
|
1266 |
AfterAttack; |
|
1267 |
exit |
|
1268 |
end; |
|
82 | 1269 |
|
351 | 1270 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
1271 |
if hwRound(HHGear^.Y) <= Gear^.Tag - 2 then |
|
1133 | 1272 |
begin |
1273 |
Gear^.Tag:= hwRound(HHGear^.Y); |
|
1274 |
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y - _1, _0_5, _0, cHHRadius * 4, 2); |
|
1275 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
1276 |
Gear^.Y:= HHGear^.Y; |
|
1277 |
AmmoShove(Gear, 30, 40); |
|
1278 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
|
1279 |
end; |
|
351 | 1280 |
|
1281 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
1282 |
if not (HHGear^.dY.isNegative) then |
|
1133 | 1283 |
begin |
1284 |
HHGear^.State:= HHGear^.State or gstMoving; |
|
1285 |
DeleteGear(Gear); |
|
1286 |
AfterAttack; |
|
1287 |
exit |
|
1288 |
end; |
|
2089 | 1289 |
|
1290 |
if Land[hwRound(HHGear^.Y + HHGear^.dY), hwRound(HHGear^.X)] <> COLOR_INDESTRUCTIBLE then HHGear^.Y:= HHGear^.Y + HHGear^.dY |
|
82 | 1291 |
end; |
1292 |
||
1293 |
procedure doStepFirePunch(Gear: PGear); |
|
1294 |
var HHGear: PGear; |
|
1295 |
begin |
|
1296 |
AllInactive:= false; |
|
351 | 1297 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
514 | 1298 |
DeleteCI(HHGear); |
498 | 1299 |
HHGear^.X:= int2hwFloat(hwRound(HHGear^.X)) - _0_5; |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
992
diff
changeset
|
1300 |
HHGear^.dX:= SignAs(cLittle, Gear^.dX); |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
992
diff
changeset
|
1301 |
|
351 | 1302 |
HHGear^.dY:= - _0_3; |
82 | 1303 |
|
351 | 1304 |
Gear^.X:= HHGear^.X; |
979
edb8f208c1d9
Fix firepunch direction when attacking from high jump
unc0rr
parents:
974
diff
changeset
|
1305 |
Gear^.dX:= SignAs(_0_45, Gear^.dX); |
351 | 1306 |
Gear^.dY:= - _0_9; |
1307 |
Gear^.doStep:= @doStepFirePunchWork; |
|
498 | 1308 |
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y + _1, _0_5, _0, cHHRadius * 4, 5); |
1279 | 1309 |
|
1669 | 1310 |
PlaySound(TSound(ord(sndFirePunch1) + GetRandom(6)), false, PHedgehog(HHGear^.Hedgehog)^.Team^.voicepack) |
82 | 1311 |
end; |
1312 |
||
263 | 1313 |
//////////////////////////////////////////////////////////////////////////////// |
1314 |
||
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1315 |
procedure doStepParachuteWork(Gear: PGear); |
211 | 1316 |
var HHGear: PGear; |
1317 |
begin |
|
351 | 1318 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
82 | 1319 |
|
516 | 1320 |
inc(Gear^.Timer); |
1321 |
||
212 | 1322 |
if TestCollisionYwithGear(HHGear, 1) |
1133 | 1323 |
or ((HHGear^.State and gstHHDriven) = 0) |
1324 |
or CheckGearDrowning(HHGear) |
|
1325 |
or ((Gear^.Message and gm_Attack) <> 0) then |
|
1326 |
begin |
|
1327 |
with HHGear^ do |
|
1328 |
begin |
|
1329 |
Message:= 0; |
|
1330 |
SetLittle(dX); |
|
1331 |
dY:= _0; |
|
1332 |
State:= State or gstMoving; |
|
1333 |
end; |
|
1334 |
DeleteGear(Gear); |
|
2060
3e9e5e1be6f5
fix crash in parachute/rope if drowning with active girder/teleport
nemo
parents:
2059
diff
changeset
|
1335 |
isCursorVisible:= false; |
1133 | 1336 |
exit |
1337 |
end; |
|
211 | 1338 |
|
351 | 1339 |
if not TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then |
1133 | 1340 |
HHGear^.X:= HHGear^.X + cWindSpeed * 200; |
211 | 1341 |
|
351 | 1342 |
if (Gear^.Message and gm_Left) <> 0 then HHGear^.X:= HHGear^.X - cMaxWindSpeed * 40 |
1343 |
else if (Gear^.Message and gm_Right) <> 0 then HHGear^.X:= HHGear^.X + cMaxWindSpeed * 40; |
|
1344 |
if (Gear^.Message and gm_Up) <> 0 then HHGear^.Y:= HHGear^.Y - cGravity * 40 |
|
1345 |
else if (Gear^.Message and gm_Down) <> 0 then HHGear^.Y:= HHGear^.Y + cGravity * 40; |
|
211 | 1346 |
|
351 | 1347 |
HHGear^.Y:= HHGear^.Y + cGravity * 100; |
568 | 1348 |
Gear^.X:= HHGear^.X; |
1349 |
Gear^.Y:= HHGear^.Y |
|
263 | 1350 |
end; |
211 | 1351 |
|
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1352 |
procedure doStepParachute(Gear: PGear); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1353 |
var HHGear: PGear; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1354 |
begin |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1355 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1356 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1357 |
DeleteCI(HHGear); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1358 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1359 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1360 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1361 |
|
931 | 1362 |
HHGear^.State:= HHGear^.State and not (gstAttacki |