author | koda |
Thu, 02 Jul 2009 00:58:46 +0000 | |
changeset 2218 | 59a9bebc4988 |
parent 2217 | 458c08d74ae6 |
child 2220 | 110266ba2ef7 |
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 |
|
1669 | 462 |
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
|
463 |
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
|
464 |
end; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
465 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
466 |
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
|
467 |
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
|
468 |
begin |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
469 |
cArtillery:= true; |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
470 |
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
|
471 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
2033 | 472 |
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
|
473 |
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
|
474 |
begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
475 |
cLaserSighting:= true; |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
476 |
HHGear^.Message:= 0; |
2052 | 477 |
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
|
478 |
end; |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
479 |
|
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
480 |
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
|
481 |
begin |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
482 |
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
|
483 |
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
|
484 |
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
|
485 |
PlaySound(sndGun, false, nil); |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
486 |
Gear^.doStep:= @doStepBulletWork; |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
487 |
end |
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
488 |
else |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2029
diff
changeset
|
489 |
if (GameTicks mod 32) = 0 then |
2052 | 490 |
if (GameTicks mod 4096) < 2048 then |
491 |
begin |
|
492 |
if(HHGear^.Angle + 1 <= cMaxAngle) then inc(HHGear^.Angle) |
|
493 |
end |
|
494 |
else |
|
495 |
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
|
496 |
|
2058 | 497 |
if (TurnTimeLeft > 0) then |
498 |
dec(TurnTimeLeft) |
|
499 |
else |
|
500 |
begin |
|
2139
5a083e71a71d
Properly decrement sniper rifle if timed out. Try to get camera position straight for once.
nemo
parents:
2090
diff
changeset
|
501 |
PHedgehog(Gear^.Hedgehog)^.AttacksNum:= Gear^.Ammo^.NumPerTurn+1; |
2058 | 502 |
DeleteGear(Gear); |
2059 | 503 |
AfterAttack; |
504 |
TurnTimeLeft:= 0 |
|
2058 | 505 |
end; |
559 | 506 |
end; |
507 |
||
37 | 508 |
//////////////////////////////////////////////////////////////////////////////// |
4 | 509 |
procedure doStepActionTimer(Gear: PGear); |
510 |
begin |
|
351 | 511 |
dec(Gear^.Timer); |
512 |
case Gear^.Kind of |
|
83 | 513 |
gtATStartGame: begin |
4 | 514 |
AllInactive:= false; |
351 | 515 |
if Gear^.Timer = 0 then |
83 | 516 |
AddCaption(trmsg[sidStartFight], $FFFFFF, capgrpGameState); |
4 | 517 |
end; |
83 | 518 |
gtATSmoothWindCh: begin |
351 | 519 |
if Gear^.Timer = 0 then |
6 | 520 |
begin |
351 | 521 |
if WindBarWidth < Gear^.Tag then inc(WindBarWidth) |
522 |
else if WindBarWidth > Gear^.Tag then dec(WindBarWidth); |
|
523 |
if WindBarWidth <> Gear^.Tag then Gear^.Timer:= 10; |
|
83 | 524 |
end |
525 |
end; |
|
526 |
gtATFinishGame: begin |
|
527 |
AllInactive:= false; |
|
351 | 528 |
if Gear^.Timer = 0 then |
113 | 529 |
begin |
530 |
SendIPC('N'); |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
306
diff
changeset
|
531 |
SendIPC('q'); |
83 | 532 |
GameState:= gsExit |
113 | 533 |
end |
6 | 534 |
end; |
4 | 535 |
end; |
351 | 536 |
if Gear^.Timer = 0 then DeleteGear(Gear) |
4 | 537 |
end; |
538 |
||
539 |
//////////////////////////////////////////////////////////////////////////////// |
|
540 |
procedure doStepPickHammerWork(Gear: PGear); |
|
371 | 541 |
var i, ei: LongInt; |
4 | 542 |
HHGear: PGear; |
543 |
begin |
|
70 | 544 |
AllInactive:= false; |
351 | 545 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
546 |
dec(Gear^.Timer); |
|
547 |
if (Gear^.Timer = 0)or((Gear^.Message and gm_Destroy) <> 0)or((HHGear^.State and gstHHDriven) = 0) then |
|
1200 | 548 |
begin |
549 |
StopSound(sndPickhammer); |
|
550 |
DeleteGear(Gear); |
|
551 |
AfterAttack; |
|
552 |
exit |
|
553 |
end; |
|
845 | 554 |
|
422 | 555 |
if (Gear^.Timer mod 33) = 0 then |
1200 | 556 |
begin |
557 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
558 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y) + 7, 6, EXPLDontDraw); |
|
559 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
|
560 |
end; |
|
422 | 561 |
|
562 |
if (Gear^.Timer mod 47) = 0 then |
|
1200 | 563 |
begin |
564 |
i:= hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2)); |
|
565 |
ei:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2)); |
|
566 |
while i <= ei do |
|
567 |
begin |
|
568 |
DrawExplosion(i, hwRound(Gear^.Y) + 3, 3); |
|
569 |
inc(i, 1) |
|
570 |
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
|
571 |
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
|
572 |
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
|
573 |
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
|
574 |
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
|
575 |
end; |
1200 | 576 |
SetAllHHToActive; |
577 |
end; |
|
4 | 578 |
if TestCollisionYwithGear(Gear, 1) then |
1200 | 579 |
begin |
580 |
Gear^.dY:= _0; |
|
581 |
SetLittle(HHGear^.dX); |
|
582 |
HHGear^.dY:= _0; |
|
583 |
end else |
|
584 |
begin |
|
585 |
Gear^.dY:= Gear^.dY + cGravity; |
|
586 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1417 | 587 |
if hwRound(Gear^.Y) > cWaterLine then Gear^.Timer:= 1 |
1200 | 588 |
end; |
4 | 589 |
|
351 | 590 |
Gear^.X:= Gear^.X + HHGear^.dX; |
591 |
HHGear^.X:= Gear^.X; |
|
498 | 592 |
HHGear^.Y:= Gear^.Y - int2hwFloat(cHHRadius); |
4 | 593 |
|
351 | 594 |
if (Gear^.Message and gm_Attack) <> 0 then |
595 |
if (Gear^.State and gsttmpFlag) <> 0 then Gear^.Timer:= 1 else else |
|
596 |
if (Gear^.State and gsttmpFlag) = 0 then Gear^.State:= Gear^.State or gsttmpFlag; |
|
597 |
if ((Gear^.Message and gm_Left) <> 0) then Gear^.dX:= - _0_3 else |
|
598 |
if ((Gear^.Message and gm_Right) <> 0) then Gear^.dX:= _0_3 |
|
498 | 599 |
else Gear^.dX:= _0; |
4 | 600 |
end; |
601 |
||
602 |
procedure doStepPickHammer(Gear: PGear); |
|
371 | 603 |
var i, y: LongInt; |
4 | 604 |
ar: TRangeArray; |
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
605 |
HHGear: PGear; |
4 | 606 |
begin |
607 |
i:= 0; |
|
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
608 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
609 |
|
498 | 610 |
y:= hwRound(Gear^.Y) - cHHRadius * 2; |
351 | 611 |
while y < hwRound(Gear^.Y) do |
4 | 612 |
begin |
371 | 613 |
ar[i].Left := hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2)); |
614 |
ar[i].Right:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2)); |
|
4 | 615 |
inc(y, 2); |
616 |
inc(i) |
|
617 |
end; |
|
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
618 |
|
498 | 619 |
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
|
620 |
Gear^.dY:= HHGear^.dY; |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
621 |
DeleteCI(HHGear); |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
622 |
|
1669 | 623 |
PlaySound(sndPickhammer, true, nil); |
4 | 624 |
doStepPickHammerWork(Gear); |
351 | 625 |
Gear^.doStep:= @doStepPickHammerWork |
4 | 626 |
end; |
627 |
||
628 |
//////////////////////////////////////////////////////////////////////////////// |
|
371 | 629 |
var BTPrevAngle, BTSteps: LongInt; |
302 | 630 |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
631 |
procedure doStepBlowTorchWork(Gear: PGear); |
302 | 632 |
var HHGear: PGear; |
1528 | 633 |
b: boolean; |
634 |
prevX: LongInt; |
|
302 | 635 |
begin |
636 |
AllInactive:= false; |
|
351 | 637 |
dec(Gear^.Timer); |
638 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
639 |
|
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
640 |
HedgehogChAngle(HHGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
641 |
|
305 | 642 |
b:= false; |
643 |
||
371 | 644 |
if abs(LongInt(HHGear^.Angle) - BTPrevAngle) > 7 then |
1528 | 645 |
begin |
646 |
Gear^.dX:= SignAs(AngleSin(HHGear^.Angle) * _0_5, HHGear^.dX); |
|
647 |
Gear^.dY:= AngleCos(HHGear^.Angle) * ( - _0_5); |
|
648 |
BTPrevAngle:= HHGear^.Angle; |
|
649 |
b:= true |
|
650 |
end; |
|
651 |
||
652 |
if ((HHGear^.State and gstMoving) <> 0) then |
|
653 |
begin |
|
654 |
doStepHedgehogMoving(HHGear); |
|
1736 | 655 |
if (HHGear^.State and gstHHDriven) = 0 then Gear^.Timer:= 0 |
1528 | 656 |
end; |
305 | 657 |
|
351 | 658 |
if Gear^.Timer mod cHHStepTicks = 0 then |
1528 | 659 |
begin |
660 |
b:= true; |
|
661 |
if Gear^.dX.isNegative then |
|
1547 | 662 |
HHGear^.Message:= (HHGear^.Message and (gm_Attack or gm_Up or gm_Down)) or gm_Left |
1528 | 663 |
else |
1547 | 664 |
HHGear^.Message:= (HHGear^.Message and (gm_Attack or gm_Up or gm_Down)) or gm_Right; |
305 | 665 |
|
1528 | 666 |
if ((HHGear^.State and gstMoving) = 0) then |
667 |
begin |
|
668 |
HHGear^.State:= HHGear^.State and not gstAttacking; |
|
669 |
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
|
670 |
|
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
|
671 |
// 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
|
672 |
if (prevX = hwRound(HHGear^.X)) and (Land[hwRound(HHGear^.Y) , hwRound(HHGear^.X + SignAs(_1, HHGear^.dX))] <> COLOR_INDESTRUCTIBLE) then HedgehogStep(HHGear); |
1528 | 673 |
|
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
|
674 |
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 | 675 |
HHGear^.State:= HHGear^.State or gstAttacking |
676 |
end; |
|
305 | 677 |
|
1528 | 678 |
inc(BTSteps); |
679 |
if BTSteps = 7 then |
|
680 |
begin |
|
681 |
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
|
682 |
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
|
683 |
begin |
1528 | 684 |
Gear^.X:= HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC); |
685 |
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
|
686 |
end; |
1528 | 687 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
1643 | 688 |
AmmoShove(Gear, 2, 15); |
1528 | 689 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
690 |
end; |
|
691 |
end; |
|
305 | 692 |
|
693 |
if b then |
|
498 | 694 |
DrawTunnel(HHGear^.X - Gear^.dX * cHHRadius, HHGear^.Y - _4 - Gear^.dY * cHHRadius + hwAbs(Gear^.dY) * 7, |
351 | 695 |
Gear^.dX, Gear^.dY, |
1501 | 696 |
cHHRadius * 5, cHHRadius * 2 + 7); |
305 | 697 |
|
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
|
698 |
if (Gear^.Timer = 0) or ((HHGear^.Message and gm_Attack) <> 0) then |
1528 | 699 |
begin |
700 |
HHGear^.Message:= 0; |
|
701 |
HHGear^.State:= HHGear^.State and (not gstNotKickable); |
|
702 |
DeleteGear(Gear); |
|
703 |
AfterAttack |
|
704 |
end |
|
302 | 705 |
end; |
706 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
707 |
procedure doStepBlowTorch(Gear: PGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
708 |
var HHGear: PGear; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
709 |
begin |
371 | 710 |
BTPrevAngle:= High(LongInt); |
305 | 711 |
BTSteps:= 0; |
351 | 712 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
713 |
HHGear^.Message:= 0; |
|
1528 | 714 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
351 | 715 |
Gear^.doStep:= @doStepBlowTorchWork |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
716 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
717 |
|
302 | 718 |
//////////////////////////////////////////////////////////////////////////////// |
719 |
||
1781 | 720 |
procedure doStepRope(Gear: PGear); forward; |
721 |
||
722 |
procedure doStepRopeAfterAttack(Gear: PGear); |
|
723 |
var HHGear: PGear; |
|
724 |
begin |
|
725 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
726 |
if ((HHGear^.State and gstHHDriven) = 0) |
|
727 |
or (CheckGearDrowning(HHGear)) |
|
728 |
or TestCollisionYwithGear(HHGear, 1) then |
|
729 |
begin |
|
730 |
DeleteGear(Gear); |
|
2060
3e9e5e1be6f5
fix crash in parachute/rope if drowning with active girder/teleport
nemo
parents:
2059
diff
changeset
|
731 |
isCursorVisible:= false; |
1781 | 732 |
exit |
733 |
end; |
|
734 |
||
1785 | 735 |
HedgehogChAngle(HHGear); |
736 |
||
2029 | 737 |
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then |
738 |
begin |
|
739 |
{$IFDEF DEBUGFILE}if HHGear^.dX.QWordValue > 1 then AddFileLog('Stopping hedgehog after rope attack due to wall collision');{$ENDIF} |
|
740 |
SetLittle(HHGear^.dX); |
|
741 |
end; |
|
742 |
||
1781 | 743 |
if HHGear^.dY.isNegative and TestCollisionYwithGear(HHGear, -1) then HHGear^.dY:= _0; |
744 |
HHGear^.X:= HHGear^.X + HHGear^.dX; |
|
745 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY; |
|
746 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
747 |
||
748 |
if (Gear^.Message and gm_Attack) <> 0 then |
|
749 |
begin |
|
750 |
Gear^.X:= HHGear^.X; |
|
751 |
Gear^.Y:= HHGear^.Y; |
|
1964 | 752 |
|
753 |
ApplyAngleBounds(PHedgehog(Gear^.Hedgehog)^, amRope); |
|
754 |
||
1781 | 755 |
Gear^.dX:= SignAs(AngleSin(HHGear^.Angle), HHGear^.dX); |
756 |
Gear^.dY:= -AngleCos(HHGear^.Angle); |
|
757 |
Gear^.Friction:= _450; |
|
758 |
Gear^.Elasticity:= _0; |
|
759 |
Gear^.State:= Gear^.State and not gsttmpflag; |
|
760 |
Gear^.doStep:= @doStepRope |
|
761 |
end |
|
762 |
end; |
|
763 |
||
4 | 764 |
procedure doStepRopeWork(Gear: PGear); |
765 |
var HHGear: PGear; |
|
1669 | 766 |
len, tx, ty, nx, ny, ropeDx, ropeDy, mdX, mdY: hwFloat; |
1504 | 767 |
lx, ly: LongInt; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
768 |
haveCollision, |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
769 |
haveDivided: boolean; |
4 | 770 |
|
1504 | 771 |
procedure DeleteMe; |
772 |
begin |
|
773 |
with HHGear^ do |
|
774 |
begin |
|
775 |
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
|
776 |
State:= (State or gstMoving) and not gstWinner; |
1504 | 777 |
end; |
778 |
DeleteGear(Gear) |
|
779 |
end; |
|
4 | 780 |
|
1781 | 781 |
procedure WaitCollision; |
782 |
begin |
|
783 |
with HHGear^ do |
|
784 |
begin |
|
785 |
Message:= Message and not gm_Attack; |
|
786 |
State:= State or gstMoving; |
|
787 |
end; |
|
788 |
RopePoints.Count:= 0; |
|
789 |
Gear^.Elasticity:= _0; |
|
790 |
Gear^.doStep:= @doStepRopeAfterAttack |
|
791 |
end; |
|
792 |
||
4 | 793 |
begin |
351 | 794 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
108 | 795 |
|
351 | 796 |
if ((HHGear^.State and gstHHDriven) = 0) |
1504 | 797 |
or (CheckGearDrowning(HHGear)) then |
798 |
begin |
|
799 |
DeleteMe; |
|
800 |
exit |
|
801 |
end; |
|
928
b9064b48b001
Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents:
925
diff
changeset
|
802 |
|
351 | 803 |
if (Gear^.Message and gm_Left <> 0) then HHGear^.dX:= HHGear^.dX - _0_0002 else |
804 |
if (Gear^.Message and gm_Right <> 0) then HHGear^.dX:= HHGear^.dX + _0_0002; |
|
4 | 805 |
|
351 | 806 |
if not TestCollisionYwithGear(HHGear, 1) then HHGear^.dY:= HHGear^.dY + cGravity; |
4 | 807 |
|
1652 | 808 |
ropeDx:= HHGear^.X - Gear^.X; // vector between hedgehog and rope attaching point |
809 |
ropeDy:= HHGear^.Y - Gear^.Y; |
|
810 |
||
811 |
mdX:= ropeDx + HHGear^.dX; |
|
812 |
mdY:= ropeDy + HHGear^.dY; |
|
813 |
len:= _1 / Distance(mdX, mdY); |
|
814 |
mdX:= mdX * len; // rope vector plus hedgehog direction vector normalized |
|
815 |
mdY:= mdY * len; |
|
816 |
||
817 |
Gear^.dX:= mdX; // for visual purposes only |
|
818 |
Gear^.dY:= mdY; |
|
819 |
||
820 |
///// |
|
821 |
tx:= HHGear^.X; |
|
822 |
ty:= HHGear^.Y; |
|
4 | 823 |
|
1652 | 824 |
if ((Gear^.Message and gm_Down) <> 0) and (Gear^.Elasticity < Gear^.Friction) then |
825 |
if not (TestCollisionXwithGear(HHGear, hwSign(ropeDx)) |
|
826 |
or TestCollisionYwithGear(HHGear, hwSign(ropeDy))) then |
|
827 |
Gear^.Elasticity:= Gear^.Elasticity + _0_3; |
|
828 |
||
829 |
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Elasticity > _30) then |
|
830 |
if not (TestCollisionXwithGear(HHGear, -hwSign(ropeDx)) |
|
831 |
or TestCollisionYwithGear(HHGear, -hwSign(ropeDy))) then |
|
832 |
Gear^.Elasticity:= Gear^.Elasticity - _0_3; |
|
833 |
||
834 |
HHGear^.X:= Gear^.X + mdX * Gear^.Elasticity; |
|
835 |
HHGear^.Y:= Gear^.Y + mdY * Gear^.Elasticity; |
|
836 |
||
837 |
HHGear^.dX:= HHGear^.X - tx; |
|
838 |
HHGear^.dY:= HHGear^.Y - ty; |
|
839 |
//// |
|
840 |
||
1554 | 841 |
|
1922 | 842 |
haveDivided:= false; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
843 |
// check whether rope needs dividing |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
844 |
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
|
845 |
nx:= ropeDx * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
846 |
ny:= ropeDy * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
847 |
|
1652 | 848 |
len:= Gear^.Elasticity - _0_3x70; |
849 |
while len > _0_3 do |
|
1504 | 850 |
begin |
1652 | 851 |
lx:= hwRound(Gear^.X + mdX * len); |
852 |
ly:= hwRound(Gear^.Y + mdY * len); |
|
1753 | 853 |
if ((ly and LAND_HEIGHT_MASK) = 0) and ((lx and LAND_WIDTH_MASK) = 0) and (Land[ly, lx] <> 0) then |
1504 | 854 |
begin |
855 |
with RopePoints.ar[RopePoints.Count] do |
|
856 |
begin |
|
857 |
X:= Gear^.X; |
|
858 |
Y:= Gear^.Y; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
859 |
if RopePoints.Count = 0 then RopePoints.HookAngle:= DxDy2Angle(Gear^.dY, Gear^.dX); |
1652 | 860 |
b:= (nx * HHGear^.dY) > (ny * HHGear^.dX); |
1504 | 861 |
dLen:= len |
862 |
end; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
863 |
Gear^.X:= Gear^.X + nx * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
864 |
Gear^.Y:= Gear^.Y + ny * len; |
1504 | 865 |
inc(RopePoints.Count); |
866 |
TryDo(RopePoints.Count <= MAXROPEPOINTS, 'Rope points overflow', true); |
|
867 |
Gear^.Elasticity:= Gear^.Elasticity - len; |
|
868 |
Gear^.Friction:= Gear^.Friction - len; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
869 |
haveDivided:= true; |
1504 | 870 |
break |
871 |
end; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
872 |
len:= len - _0_3 // should be the same as increase step |
1504 | 873 |
end; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
874 |
|
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
875 |
if not haveDivided then |
1504 | 876 |
if RopePoints.Count > 0 then // check whether the last dividing point could be removed |
877 |
begin |
|
878 |
tx:= RopePoints.ar[Pred(RopePoints.Count)].X; |
|
879 |
ty:= RopePoints.ar[Pred(RopePoints.Count)].Y; |
|
880 |
if RopePoints.ar[Pred(RopePoints.Count)].b xor ((tx - Gear^.X) * (ty - HHGear^.Y) > (tx - HHGear^.X) * (ty - Gear^.Y)) then |
|
881 |
begin |
|
882 |
dec(RopePoints.Count); |
|
1652 | 883 |
Gear^.X:= RopePoints.ar[RopePoints.Count].X; |
884 |
Gear^.Y:= RopePoints.ar[RopePoints.Count].Y; |
|
1504 | 885 |
Gear^.Elasticity:= Gear^.Elasticity + RopePoints.ar[RopePoints.Count].dLen; |
886 |
Gear^.Friction:= Gear^.Friction + RopePoints.ar[RopePoints.Count].dLen |
|
887 |
end |
|
888 |
end; |
|
4 | 889 |
|
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
|
890 |
haveCollision:= false; |
351 | 891 |
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
|
892 |
begin |
1504 | 893 |
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
|
894 |
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
|
895 |
end; |
351 | 896 |
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
|
897 |
begin |
1504 | 898 |
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
|
899 |
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
|
900 |
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
|
901 |
|
1579
2f581b1f289e
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents:
1573
diff
changeset
|
902 |
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
|
903 |
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
|
904 |
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
|
905 |
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
|
906 |
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
|
907 |
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
|
908 |
end; |
4 | 909 |
|
789 | 910 |
len:= Distance(HHGear^.dX, HHGear^.dY); |
940 | 911 |
if len > _0_8 then |
1504 | 912 |
begin |
913 |
len:= _0_8 / len; |
|
914 |
HHGear^.dX:= HHGear^.dX * len; |
|
915 |
HHGear^.dY:= HHGear^.dY * len; |
|
916 |
end; |
|
789 | 917 |
|
351 | 918 |
if (Gear^.Message and gm_Attack) <> 0 then |
1504 | 919 |
if (Gear^.State and gsttmpFlag) <> 0 then |
1922 | 920 |
with PHedgehog(Gear^.Hedgehog)^ do |
1964 | 921 |
if Ammo^[CurSlot, CurAmmo].AmmoType <> amParachute then |
1922 | 922 |
WaitCollision |
923 |
else |
|
924 |
DeleteMe |
|
1504 | 925 |
else |
926 |
else |
|
927 |
if (Gear^.State and gsttmpFlag) = 0 then |
|
928 |
Gear^.State:= Gear^.State or gsttmpFlag; |
|
4 | 929 |
end; |
930 |
||
931 |
procedure doStepRopeAttach(Gear: PGear); |
|
932 |
var HHGear: PGear; |
|
1781 | 933 |
tx, ty, tt: hwFloat; |
934 |
||
935 |
procedure RemoveFromAmmo; |
|
936 |
begin |
|
937 |
if (Gear^.State and gstAttacked) = 0 then |
|
938 |
begin |
|
939 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
|
940 |
Gear^.State:= Gear^.State or gstAttacked |
|
1964 | 941 |
end; |
942 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^) |
|
1781 | 943 |
end; |
944 |
||
4 | 945 |
begin |
351 | 946 |
Gear^.X:= Gear^.X - Gear^.dX; |
947 |
Gear^.Y:= Gear^.Y - Gear^.dY; |
|
498 | 948 |
Gear^.Elasticity:= Gear^.Elasticity + _1; |
351 | 949 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
517 | 950 |
DeleteCI(HHGear); |
542 | 951 |
if (HHGear^.State and gstMoving) <> 0 then |
1433 | 952 |
if TestCollisionYwithGear(HHGear, 1) then |
953 |
begin |
|
954 |
CheckHHDamage(HHGear); |
|
955 |
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
|
956 |
HHGear^.State:= HHGear^.State and not (gstMoving or gstHHJumping or gstHHHJump); |
1433 | 957 |
end else |
958 |
begin |
|
959 |
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then SetLittle(HHGear^.dX); |
|
960 |
HHGear^.X:= HHGear^.X + HHGear^.dX; |
|
961 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY; |
|
962 |
Gear^.X:= Gear^.X + HHGear^.dX; |
|
963 |
Gear^.Y:= Gear^.Y + HHGear^.dY; |
|
964 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
965 |
tt:= Gear^.Elasticity; |
|
966 |
tx:= _0; |
|
967 |
ty:= _0; |
|
968 |
while tt > _20 do |
|
969 |
begin |
|
970 |
if TestCollisionXwithXYShift(Gear, tx, hwRound(ty), -hwSign(Gear^.dX)) |
|
971 |
or TestCollisionYwithXYShift(Gear, hwRound(tx), hwRound(ty), -hwSign(Gear^.dY)) then |
|
972 |
begin |
|
973 |
Gear^.X:= Gear^.X + tx; |
|
974 |
Gear^.Y:= Gear^.Y + ty; |
|
975 |
Gear^.Elasticity:= tt; |
|
976 |
Gear^.doStep:= @doStepRopeWork; |
|
1752
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
977 |
with HHGear^ do State:= State and not (gstAttacking or gstMoving or gstHHHJump); |
1781 | 978 |
|
979 |
RemoveFromAmmo; |
|
980 |
||
1752
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
981 |
tt:= _0; |
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
982 |
exit |
1433 | 983 |
end; |
984 |
tx:= tx + Gear^.dX + Gear^.dX; |
|
985 |
ty:= ty + Gear^.dY + Gear^.dY; |
|
986 |
tt:= tt - _2; |
|
987 |
end; |
|
988 |
end; |
|
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
989 |
|
4 | 990 |
CheckCollision(Gear); |
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
991 |
|
351 | 992 |
if (Gear^.State and gstCollision) <> 0 then |
2068 | 993 |
if Gear^.Elasticity < _10 then |
994 |
Gear^.Elasticity:= _10000 |
|
995 |
else |
|
996 |
begin |
|
997 |
Gear^.doStep:= @doStepRopeWork; |
|
998 |
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
|
999 |
|
2068 | 1000 |
RemoveFromAmmo; |
1001 |
||
1002 |
exit |
|
1003 |
end; |
|
4 | 1004 |
|
1634
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1005 |
if (Gear^.Elasticity > Gear^.Friction) |
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1006 |
or ((Gear^.Message and gm_Attack) = 0) |
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1007 |
or (HHGear^.Damage > 0) then |
1433 | 1008 |
begin |
1009 |
with PHedgehog(Gear^.Hedgehog)^.Gear^ do |
|
1010 |
begin |
|
1011 |
State:= State and not gstAttacking; |
|
1012 |
Message:= Message and not gm_Attack |
|
1013 |
end; |
|
1014 |
DeleteGear(Gear) |
|
1015 |
end |
|
4 | 1016 |
end; |
1017 |
||
1018 |
procedure doStepRope(Gear: PGear); |
|
1019 |
begin |
|
351 | 1020 |
Gear^.dX:= - Gear^.dX; |
1021 |
Gear^.dY:= - Gear^.dY; |
|
1022 |
Gear^.doStep:= @doStepRopeAttach |
|
4 | 1023 |
end; |
1024 |
||
1025 |
//////////////////////////////////////////////////////////////////////////////// |
|
1026 |
procedure doStepSmokeTrace(Gear: PGear); |
|
1027 |
begin |
|
351 | 1028 |
inc(Gear^.Timer); |
1029 |
if Gear^.Timer > 64 then |
|
1133 | 1030 |
begin |
1031 |
Gear^.Timer:= 0; |
|
1032 |
dec(Gear^.State) |
|
1033 |
end; |
|
351 | 1034 |
Gear^.dX:= Gear^.dX + cWindSpeed; |
1035 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1036 |
if Gear^.State = 0 then DeleteGear(Gear) |
|
4 | 1037 |
end; |
9 | 1038 |
|
1039 |
//////////////////////////////////////////////////////////////////////////////// |
|
1045 | 1040 |
procedure doStepExplosionWork(Gear: PGear); |
9 | 1041 |
begin |
351 | 1042 |
inc(Gear^.Timer); |
1043 |
if Gear^.Timer > 75 then |
|
1133 | 1044 |
begin |
1045 |
inc(Gear^.State); |
|
1046 |
Gear^.Timer:= 0; |
|
1047 |
if Gear^.State > 5 then DeleteGear(Gear) |
|
1048 |
end; |
|
9 | 1049 |
end; |
10 | 1050 |
|
1045 | 1051 |
procedure doStepExplosion(Gear: PGear); |
1052 |
var i: LongWord; |
|
1053 |
begin |
|
1047 | 1054 |
for i:= 0 to 31 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtFire); |
1055 |
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart); |
|
1056 |
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart2); |
|
1045 | 1057 |
Gear^.doStep:= @doStepExplosionWork |
1058 |
end; |
|
1059 |
||
10 | 1060 |
//////////////////////////////////////////////////////////////////////////////// |
1061 |
procedure doStepMine(Gear: PGear); |
|
1062 |
begin |
|
542 | 1063 |
if (Gear^.State and gstMoving) <> 0 then |
914 | 1064 |
begin |
1065 |
DeleteCI(Gear); |
|
1066 |
doStepFallingGear(Gear); |
|
1067 |
if (Gear^.State and gstMoving) = 0 then |
|
1068 |
begin |
|
1069 |
AddGearCI(Gear); |
|
1070 |
Gear^.dX:= _0; |
|
1071 |
Gear^.dY:= _0 |
|
1072 |
end; |
|
1073 |
CalcRotationDirAngle(Gear); |
|
1074 |
AllInactive:= false |
|
1075 |
end else |
|
1076 |
if ((GameTicks and $3F) = 25) then |
|
1077 |
doStepFallingGear(Gear); |
|
351 | 1078 |
|
1079 |
if ((Gear^.State and gsttmpFlag) <> 0) then |
|
1133 | 1080 |
if ((Gear^.State and gstAttacking) = 0) then |
1081 |
begin |
|
1082 |
if ((GameTicks and $1F) = 0) then |
|
1083 |
if CheckGearNear(Gear, gtHedgehog, 46, 32) <> nil then Gear^.State:= Gear^.State or gstAttacking |
|
1084 |
end else // gstAttacking <> 0 |
|
1085 |
begin |
|
1086 |
AllInactive:= false; |
|
1669 | 1087 |
if (Gear^.Timer and $FF) = 0 then PlaySound(sndMineTick, false, nil); |
1133 | 1088 |
if Gear^.Timer = 0 then |
1089 |
begin |
|
1090 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
1091 |
DeleteGear(Gear); |
|
1092 |
exit |
|
1093 |
end; |
|
1094 |
dec(Gear^.Timer); |
|
1095 |
end else // gsttmpFlag = 0 |
|
1096 |
if TurnTimeLeft = 0 then Gear^.State:= Gear^.State or gsttmpFlag; |
|
10 | 1097 |
end; |
57 | 1098 |
|
39 | 1099 |
//////////////////////////////////////////////////////////////////////////////// |
1100 |
procedure doStepDynamite(Gear: PGear); |
|
1101 |
begin |
|
43 | 1102 |
doStepFallingGear(Gear); |
1103 |
AllInactive:= false; |
|
351 | 1104 |
if Gear^.Timer mod 166 = 0 then inc(Gear^.Tag); |
1105 |
if Gear^.Timer = 0 then |
|
1133 | 1106 |
begin |
1107 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound); |
|
1108 |
DeleteGear(Gear); |
|
1109 |
exit |
|
1110 |
end; |
|
351 | 1111 |
dec(Gear^.Timer); |
39 | 1112 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1113 |
|
351 | 1114 |
/////////////////////////////////////////////////////////////////////////////// |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1115 |
procedure doStepCase(Gear: PGear); |
371 | 1116 |
var i, x, y: LongInt; |
1436 | 1117 |
k: TGearType; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1118 |
begin |
351 | 1119 |
if (Gear^.Message and gm_Destroy) > 0 then |
1133 | 1120 |
begin |
1121 |
DeleteGear(Gear); |
|
1122 |
FreeActionsList; |
|
1123 |
SetAllToActive; // something (hh, mine, etc...) could be on top of the case |
|
1124 |
with CurrentHedgehog^ do |
|
1125 |
if Gear <> nil then Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
|
1126 |
exit |
|
1127 |
end; |
|
15 | 1128 |
|
351 | 1129 |
if Gear^.Damage > 0 then |
1133 | 1130 |
begin |
1131 |
x:= hwRound(Gear^.X); |
|
1132 |
y:= hwRound(Gear^.Y); |
|
1436 | 1133 |
k:= Gear^.Kind; |
1134 |
DeleteGear(Gear); // <-- delete gear! |
|
1135 |
||
1136 |
if k = gtCase then |
|
1133 | 1137 |
begin |
1138 |
doMakeExplosion(x, y, 25, EXPLAutoSound); |
|
1139 |
for i:= 0 to 63 do |
|
1140 |
AddGear(x, y, gtFlame, 0, _0, _0, 0); |
|
1141 |
end; |
|
1142 |
exit |
|
1143 |
end; |
|
79 | 1144 |
|
351 | 1145 |
if (Gear^.dY.QWordValue <> 0) or (not TestCollisionYwithGear(Gear, 1)) then |
1133 | 1146 |
begin |
1147 |
AllInactive:= false; |
|
1148 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1149 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1150 |
if (Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0 else |
|
1151 |
if (not Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, 1) then |
|
1152 |
begin |
|
1153 |
Gear^.dY:= - Gear^.dY * Gear^.Elasticity; |
|
1154 |
if Gear^.dY > - _0_001 then Gear^.dY:= _0 |
|
1669 | 1155 |
else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false, nil); |
1133 | 1156 |
end; |
1157 |
CheckGearDrowning(Gear); |
|
1158 |
end; |
|
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1159 |
|
511 | 1160 |
if (Gear^.dY.QWordValue = 0) then AddGearCI(Gear) |
1133 | 1161 |
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
|
1162 |
end; |
49 | 1163 |
|
1164 |
//////////////////////////////////////////////////////////////////////////////// |
|
854 | 1165 |
procedure doStepIdle(Gear: PGear); |
1166 |
begin |
|
1167 |
AllInactive:= false; |
|
925 | 1168 |
dec(Gear^.Timer); |
854 | 1169 |
if Gear^.Timer = 0 then |
1170 |
begin |
|
1171 |
DeleteGear(Gear); |
|
1172 |
AfterAttack |
|
1173 |
end |
|
1174 |
end; |
|
1175 |
||
79 | 1176 |
procedure doStepShover(Gear: PGear); |
1177 |
var HHGear: PGear; |
|
1178 |
begin |
|
351 | 1179 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
1180 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1181 |
DeleteCI(HHGear); |
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1182 |
|
79 | 1183 |
AmmoShove(Gear, 30, 115); |
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1184 |
|
351 | 1185 |
HHGear^.State:= HHGear^.State and not gstNoDamage; |
854 | 1186 |
Gear^.Timer:= 250; |
1187 |
Gear^.doStep:= @doStepIdle |
|
79 | 1188 |
end; |
1189 |
||
1190 |
//////////////////////////////////////////////////////////////////////////////// |
|
925 | 1191 |
procedure doStepWhip(Gear: PGear); |
1192 |
var HHGear: PGear; |
|
1193 |
i: LongInt; |
|
1194 |
begin |
|
1195 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1196 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1197 |
DeleteCI(HHGear); |
925 | 1198 |
|
1199 |
for i:= 0 to 3 do |
|
1200 |
begin |
|
1201 |
AmmoShove(Gear, 30, 25); |
|
1202 |
Gear^.X:= Gear^.X + Gear^.dX * 5 |
|
1203 |
end; |
|
1204 |
||
1205 |
HHGear^.State:= HHGear^.State and not gstNoDamage; |
|
1206 |
Gear^.Timer:= 250; |
|
1207 |
Gear^.doStep:= @doStepIdle |
|
1208 |
end; |
|
1209 |
||
1210 |
//////////////////////////////////////////////////////////////////////////////// |
|
79 | 1211 |
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
|
1212 |
var i: Integer; |
79 | 1213 |
begin |
1214 |
AllInactive:= false; |
|
1433 | 1215 |
|
79 | 1216 |
if not TestCollisionYwithGear(Gear, 1) then |
1133 | 1217 |
begin |
1586 | 1218 |
if hwAbs(Gear^.dX) > _0_01 then |
1219 |
Gear^.dX:= Gear^.dX * _0_995; |
|
1297 | 1220 |
|
1133 | 1221 |
Gear^.dY:= Gear^.dY + cGravity; |
1830 | 1222 |
if hwAbs(Gear^.dY) > _0_2 then Gear^.dY:= Gear^.dY * _0_995; |
1297 | 1223 |
|
1830 | 1224 |
Gear^.X:= Gear^.X + Gear^.dX + cWindSpeed * 640; |
1133 | 1225 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
1297 | 1226 |
|
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
|
1227 |
if (hwRound(Gear^.Y) > cWaterLine) then |
1133 | 1228 |
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
|
1229 |
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
|
1230 |
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
|
1231 |
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
|
1232 |
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
|
1233 |
end; |
1133 | 1234 |
DeleteGear(Gear); |
1235 |
exit |
|
1236 |
end |
|
1237 |
end else begin |
|
1238 |
if Gear^.Timer > 0 then dec(Gear^.Timer) |
|
1239 |
else begin |
|
1586 | 1240 |
Gear^.Radius:= 9; |
1241 |
AmmoShove(Gear, 4, 100); |
|
1297 | 1242 |
Gear^.Radius:= 1; |
1243 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 4, EXPLNoDamage); |
|
1133 | 1244 |
dec(Gear^.Health); |
1586 | 1245 |
Gear^.Timer:= 450 - Gear^.Tag * 8 |
1133 | 1246 |
end |
1247 |
end; |
|
79 | 1248 |
|
1295 | 1249 |
//if (((GameTicks div 8) mod 64) = Gear^.Tag) then |
1250 |
// AmmoFlameWork(Gear); |
|
79 | 1251 |
|
351 | 1252 |
if Gear^.Health = 0 then |
1133 | 1253 |
DeleteGear(Gear) |
79 | 1254 |
end; |
82 | 1255 |
|
1256 |
//////////////////////////////////////////////////////////////////////////////// |
|
1257 |
procedure doStepFirePunchWork(Gear: PGear); |
|
1258 |
var HHGear: PGear; |
|
1259 |
begin |
|
1260 |
AllInactive:= false; |
|
351 | 1261 |
if ((Gear^.Message and gm_Destroy) <> 0) then |
1133 | 1262 |
begin |
1263 |
DeleteGear(Gear); |
|
1264 |
AfterAttack; |
|
1265 |
exit |
|
1266 |
end; |
|
82 | 1267 |
|
351 | 1268 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
1269 |
if hwRound(HHGear^.Y) <= Gear^.Tag - 2 then |
|
1133 | 1270 |
begin |
1271 |
Gear^.Tag:= hwRound(HHGear^.Y); |
|
1272 |
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y - _1, _0_5, _0, cHHRadius * 4, 2); |
|
1273 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
1274 |
Gear^.Y:= HHGear^.Y; |
|
1275 |
AmmoShove(Gear, 30, 40); |
|
1276 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
|
1277 |
end; |
|
351 | 1278 |
|
1279 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
1280 |
if not (HHGear^.dY.isNegative) then |
|
1133 | 1281 |
begin |
1282 |
HHGear^.State:= HHGear^.State or gstMoving; |
|
1283 |
DeleteGear(Gear); |
|
1284 |
AfterAttack; |
|
1285 |
exit |
|
1286 |
end; |
|
2089 | 1287 |
|
1288 |
if Land[hwRound(HHGear^.Y + HHGear^.dY), hwRound(HHGear^.X)] <> COLOR_INDESTRUCTIBLE then HHGear^.Y:= HHGear^.Y + HHGear^.dY |
|
82 | 1289 |
end; |
1290 |
||
1291 |
procedure doStepFirePunch(Gear: PGear); |
|
1292 |
var HHGear: PGear; |
|
1293 |
begin |
|
1294 |
AllInactive:= false; |
|
351 | 1295 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
514 | 1296 |
DeleteCI(HHGear); |
498 | 1297 |
HHGear^.X:= int2hwFloat(hwRound(HHGear^.X)) - _0_5; |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
992
diff
changeset
|
1298 |
HHGear^.dX:= SignAs(cLittle, Gear^.dX); |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
992
diff
changeset
|
1299 |
|
351 | 1300 |
HHGear^.dY:= - _0_3; |
82 | 1301 |
|
351 | 1302 |
Gear^.X:= HHGear^.X; |
979
edb8f208c1d9
Fix firepunch direction when attacking from high jump
unc0rr
parents:
974
diff
changeset
|
1303 |
Gear^.dX:= SignAs(_0_45, Gear^.dX); |
351 | 1304 |
Gear^.dY:= - _0_9; |
1305 |
Gear^.doStep:= @doStepFirePunchWork; |
|
498 | 1306 |
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y + _1, _0_5, _0, cHHRadius * 4, 5); |
1279 | 1307 |
|
1669 | 1308 |
PlaySound(TSound(ord(sndFirePunch1) + GetRandom(6)), false, PHedgehog(HHGear^.Hedgehog)^.Team^.voicepack) |
82 | 1309 |
end; |
1310 |
||
263 | 1311 |
//////////////////////////////////////////////////////////////////////////////// |
1312 |
||
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1313 |
procedure doStepParachuteWork(Gear: PGear); |
211 | 1314 |
var HHGear: PGear; |
1315 |
begin |
|
351 | 1316 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
82 | 1317 |
|
516 | 1318 |
inc(Gear^.Timer); |
1319 |
||
212 | 1320 |
if TestCollisionYwithGear(HHGear, 1) |
1133 | 1321 |
or ((HHGear^.State and gstHHDriven) = 0) |
1322 |
or CheckGearDrowning(HHGear) |
|
1323 |
or ((Gear^.Message and gm_Attack) <> 0) then |
|
1324 |
begin |
|
1325 |
with HHGear^ do |
|
1326 |
begin |
|
1327 |
Message:= 0; |
|
1328 |
SetLittle(dX); |
|
1329 |
dY:= _0; |
|
1330 |
State:= State or gstMoving; |
|
1331 |
end; |
|
1332 |
DeleteGear(Gear); |
|
2060
3e9e5e1be6f5
fix crash in parachute/rope if drowning with active girder/teleport
nemo
parents:
2059
diff
changeset
|
1333 |
isCursorVisible:= false; |
1133 | 1334 |
exit |
1335 |
end; |
|
211 | 1336 |
|
351 | 1337 |
if not TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then |
1133 | 1338 |
HHGear^.X:= HHGear^.X + cWindSpeed * 200; |
211 | 1339 |
|
351 | 1340 |
if (Gear^.Message and gm_Left) <> 0 then HHGear^.X:= HHGear^.X - cMaxWindSpeed * 40 |
1341 |
else if (Gear^.Message and gm_Right) <> 0 then HHGear^.X:= HHGear^.X + cMaxWindSpeed * 40; |
|
1342 |
if (Gear^.Message and gm_Up) <> 0 then HHGear^.Y:= HHGear^.Y - cGravity * 40 |
|
1343 |
else if (Gear^.Message and gm_Down) <> 0 then HHGear^.Y:= HHGear^.Y + cGravity * 40; |
|
211 | 1344 |
|
351 | 1345 |
HHGear^.Y:= HHGear^.Y + cGravity * 100; |
568 | 1346 |
Gear^.X:= HHGear^.X; |
1347 |
Gear^.Y:= HHGear^.Y |
|
263 | 1348 |
end; |
211 | 1349 |
|
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1350 |
procedure doStepParachute(Gear: PGear); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1351 |
var HHGear: PGear; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1352 |
begin |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1353 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1354 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1355 |
DeleteCI(HHGear); |
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 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1358 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1359 |
|
931 | 1360 |
HHGear^.State:= HHGear^.State and not (gstAttacking or gstAttacked or gstMoving); |
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1361 |
HHGear^.Message:= HHGear^.Message and not gm_Attack; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1362 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1363 |
Gear^.doStep:= @doStepParachuteWork; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1364 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1365 |
Gear^.Message:= HHGear^.Message; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1366 |
doStepParachuteWork(Gear) |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1367 |
end; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1368 |
|
263 | 1369 |
//////////////////////////////////////////////////////////////////////////////// |
1370 |
procedure doStepAirAttackWork(Gear: PGear); |
|
1507 | 1371 |
var i: Longint; |
263 | 1372 |
begin |
1373 |
AllInactive:= false; |
|
498 | 1374 |
Gear^.X:= Gear^.X + cAirPlaneSpeed * Gear^.Tag; |
1124 | 1375 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1376 |
if (Gear^.Health > 0)and(not (Gear^.X < Gear^.dX))and(Gear^.X < Gear^.dX + cAirPlaneSpeed) then |
1124 | 1377 |
begin |
1378 |
dec(Gear^.Health); |
|
1379 |
case Gear^.State of |
|
1380 |
0: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAirBomb, 0, cBombsSpeed * Gear^.Tag, _0, 0); |
|
1381 |
1: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtMine, 0, cBombsSpeed * Gear^.Tag, _0, 0); |
|
1586 | 1382 |
2: for i:= -19 to 19 do |
1383 |
FollowGear:= AddGear(hwRound(Gear^.X) + i div 3, hwRound(Gear^.Y), gtFlame, 0, _0_001 * i, _0, 0); |
|
1124 | 1384 |
end; |
1385 |
Gear^.dX:= Gear^.dX + int2hwFloat(30 * Gear^.Tag) |
|
1386 |
end; |
|
1387 |
||
1388 |
if (GameTicks and $3F) = 0 then |
|
1389 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0); |
|
1390 |
||
1753 | 1391 |
if (hwRound(Gear^.X) > (LAND_WIDTH+1024)) or (hwRound(Gear^.X) < -1024) then DeleteGear(Gear) |
263 | 1392 |
end; |
1393 |
||
1394 |
procedure doStepAirAttack(Gear: PGear); |
|
1395 |
begin |
|
1396 |
AllInactive:= false; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1397 |
|
1507 | 1398 |
if Gear^.X.QWordValue = 0 then |
1771 | 1399 |
begin |
1400 |
Gear^.Tag:= 1; |
|
1401 |
Gear^.X:= -_1024; |
|
1402 |
end |
|
1507 | 1403 |
else |
1771 | 1404 |
begin |
1507 | 1405 |
Gear^.Tag:= -1; |
1771 | 1406 |
Gear^.X:= int2hwFloat(LAND_WIDTH + 1024); |
1407 |
end; |
|
1507 | 1408 |
|
1784 | 1409 |
Gear^.Y:= int2hwFloat(topY-300); |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1410 |
Gear^.dX:= int2hwFloat(TargetPoint.X - 5 * Gear^.Tag * 15); |
357 | 1411 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1412 |
if int2hwFloat(TargetPoint.Y) - Gear^.Y > _0 then |
1133 | 1413 |
Gear^.dX:= Gear^.dX - cBombsSpeed * hwSqrt((int2hwFloat(TargetPoint.Y) - Gear^.Y) * 2 / cGravity) * Gear^.Tag; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1414 |
|
351 | 1415 |
Gear^.Health:= 6; |
801 | 1416 |
Gear^.doStep:= @doStepAirAttackWork; |
1669 | 1417 |
PlaySound(sndIncoming, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack) |
263 | 1418 |
end; |
1419 |
||
1420 |
//////////////////////////////////////////////////////////////////////////////// |
|
1421 |
||
1422 |
procedure doStepAirBomb(Gear: PGear); |
|
1423 |
begin |
|
1424 |
AllInactive:= false; |
|
1425 |
doStepFallingGear(Gear); |
|
351 | 1426 |
if (Gear^.State and gstCollision) <> 0 then |
1133 | 1427 |
begin |
1428 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
1429 |
DeleteGear(Gear); |
|
1430 |
exit |
|
1431 |
end; |
|
263 | 1432 |
if (GameTicks and $3F) = 0 then |
1133 | 1433 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0) |
211 | 1434 |
end; |
409 | 1435 |
|
1436 |
//////////////////////////////////////////////////////////////////////////////// |
|
1437 |
||
1438 |
procedure doStepGirder(Gear: PGear); |
|
415 | 1439 |
var HHGear: PGear; |
1915 | 1440 |
x, y, tx, ty: hwFloat; |
409 | 1441 |
begin |
1442 |
AllInactive:= false; |
|
415 | 1443 |
|
1444 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1915 | 1445 |
tx:= int2hwFloat(TargetPoint.X); |
1446 |
ty:= int2hwFloat(TargetPoint.Y); |
|
1447 |
x:= HHGear^.X; |
|
1448 |
y:= HHGear^.Y; |
|
1909 | 1449 |
|
1915 | 1450 |
if (Distance(tx - x, ty - y) > _256) or |
1451 |
not TryPlaceOnLand(TargetPoint.X - SpritesData[sprAmGirder].Width div 2, |
|
1452 |
TargetPoint.Y - SpritesData[sprAmGirder].Height div 2, |
|
520 | 1453 |
sprAmGirder, Gear^.State, true) then |
1133 | 1454 |
begin |
1914 | 1455 |
PlaySound(sndDenied, false, nil); |
1456 |
HHGear^.Message:= HHGear^.Message and not gm_Attack; |
|
1457 |
HHGear^.State:= HHGear^.State and not gstAttacking; |
|
1133 | 1458 |
HHGear^.State:= HHGear^.State or gstHHChooseTarget; |
1914 | 1459 |
isCursorVisible:= true; |
1460 |
DeleteGear(Gear) |
|
1133 | 1461 |
end |
1462 |
else begin |
|
1914 | 1463 |
PlaySound(sndPlaced, false, nil); |
1133 | 1464 |
DeleteGear(Gear); |
1909 | 1465 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
1914 | 1466 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^) |
1467 |
end; |
|
1468 |
||
1909 | 1469 |
HHGear^.State:= HHGear^.State and not (gstAttacking or gstAttacked); |
1470 |
HHGear^.Message:= HHGear^.Message and not gm_Attack; |
|
415 | 1471 |
TargetPoint.X:= NoPointX |
409 | 1472 |
end; |
520 | 1473 |
|
1474 |
//////////////////////////////////////////////////////////////////////////////// |
|
525 | 1475 |
procedure doStepTeleportAfter(Gear: PGear); |
912 | 1476 |
var HHGear: PGear; |
1477 |
begin |
|
1478 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1479 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY; // hedgehog falling to collect cases |
|
1480 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
940
diff
changeset
|
1481 |
if TestCollisionYwithGear(HHGear, 1) |
1133 | 1482 |
or CheckGearDrowning(HHGear) then |
1483 |
begin |
|
1484 |
DeleteGear(Gear); |
|
1485 |
AfterAttack |
|
1486 |
end |
|
912 | 1487 |
end; |
1488 |
||
1489 |
procedure doStepTeleportAnim(Gear: PGear); |
|
525 | 1490 |
begin |
853 | 1491 |
inc(Gear^.Timer); |
1492 |
if Gear^.Timer = 65 then |
|
1493 |
begin |
|
1494 |
Gear^.Timer:= 0; |
|
1495 |
inc(Gear^.Pos); |
|
1496 |
if Gear^.Pos = 11 then |
|
912 | 1497 |
Gear^.doStep:= @doStepTeleportAfter |
2217 | 1498 |
end; |
525 | 1499 |
end; |
520 | 1500 |
|
1501 |
procedure doStepTeleport(Gear: PGear); |
|
1502 |
var HHGear: PGear; |
|
1503 |
begin |
|
1504 |
AllInactive:= false; |
|
1505 |
||
1506 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1507 |
if not TryPlaceOnLand(TargetPoint.X - SpritesData[sprHHTelepMask].Width div 2, |
|
1508 |
TargetPoint.Y - SpritesData[sprHHTelepMask].Height div 2, |
|
1509 |
sprHHTelepMask, 0, false) then |
|
853 | 1510 |
begin |
1511 |
HHGear^.Message:= HHGear^.Message and not gm_Attack; |
|
1512 |
HHGear^.State:= HHGear^.State and not gstAttacking; |
|
1513 |
HHGear^.State:= HHGear^.State or gstHHChooseTarget; |
|
1514 |
DeleteGear(Gear); |
|
1515 |
isCursorVisible:= true |
|
1516 |
end |
|
1517 |
else begin |
|
1518 |
DeleteCI(HHGear); |
|
1519 |
SetAllHHToActive; |
|
912 | 1520 |
Gear^.doStep:= @doStepTeleportAnim; |
853 | 1521 |
Gear^.X:= HHGear^.X; |
1522 |
Gear^.Y:= HHGear^.Y; |
|
1523 |
HHGear^.X:= int2hwFloat(TargetPoint.X); |
|
1524 |
HHGear^.Y:= int2hwFloat(TargetPoint.Y); |
|
1525 |
HHGear^.State:= HHGear^.State or gstMoving |
|
1526 |
end; |
|
2217 | 1527 |
TargetPoint.X:= NoPointX; |
1528 |
playSound(sndWarp, false, nil); |
|
1529 |
||
520 | 1530 |
end; |
534 | 1531 |
|
1532 |
//////////////////////////////////////////////////////////////////////////////// |
|
1533 |
procedure doStepSwitcherWork(Gear: PGear); |
|
1534 |
var HHGear: PGear; |
|
1535 |
Msg, State: Longword; |
|
1536 |
begin |
|
1537 |
AllInactive:= false; |
|
1538 |
||
540 | 1539 |
if ((Gear^.Message and not gm_Switch) <> 0) or (TurnTimeLeft = 0) then |
1133 | 1540 |
begin |
1541 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1542 |
Msg:= Gear^.Message and not gm_Switch; |
|
1543 |
DeleteGear(Gear); |
|
1544 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
|
1545 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^); |
|
534 | 1546 |
|
1133 | 1547 |
HHGear:= CurrentHedgehog^.Gear; |
1548 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^); |
|
1549 |
HHGear^.Message:= Msg; |
|
1550 |
exit |
|
1551 |
end; |
|
534 | 1552 |
|
1553 |
if (Gear^.Message and gm_Switch) <> 0 then |
|
1133 | 1554 |
begin |
1555 |
HHGear:= CurrentHedgehog^.Gear; |
|
1556 |
HHGear^.Message:= HHGear^.Message and not gm_Switch; |
|
1557 |
Gear^.Message:= Gear^.Message and not gm_Switch; |
|
1558 |
State:= HHGear^.State; |
|
1559 |
HHGear^.State:= 0; |
|
1560 |
HHGear^.Active:= false; |
|
1561 |
HHGear^.Z:= cHHZ; |
|
1562 |
RemoveGearFromList(HHGear); |
|
1563 |
InsertGearToList(HHGear); |
|
534 | 1564 |
|
1133 | 1565 |
repeat |
1566 |
CurrentTeam^.CurrHedgehog:= Succ(CurrentTeam^.CurrHedgehog) mod (CurrentTeam^.HedgehogsNumber); |
|
1567 |
until (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil); |
|
652 | 1568 |
|
1133 | 1569 |
CurrentHedgehog:= @CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog]; |
534 | 1570 |
|
1133 | 1571 |
HHGear:= CurrentHedgehog^.Gear; |
1572 |
HHGear^.State:= State; |
|
1573 |
HHGear^.Active:= true; |
|
1574 |
FollowGear:= HHGear; |
|
1575 |
HHGear^.Z:= cCurrHHZ; |
|
1576 |
RemoveGearFromList(HHGear); |
|
1577 |
InsertGearToList(HHGear); |
|
1578 |
Gear^.X:= HHGear^.X; |
|
1579 |
Gear^.Y:= HHGear^.Y |
|
1580 |
end; |
|
534 | 1581 |
end; |
1582 |
||
1583 |
procedure doStepSwitcher(Gear: PGear); |
|
1584 |
var HHGear: PGear; |
|
1585 |
begin |
|
1586 |
Gear^.doStep:= @doStepSwitcherWork; |
|
1587 |
||
1588 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1589 |
with HHGear^ do |
|
1133 | 1590 |
begin |
1591 |
State:= State and not gstAttacking; |
|
1592 |
Message:= Message and not gm_Attack |
|
1593 |
end |
|
534 | 1594 |
end; |
924 | 1595 |
|
1596 |
//////////////////////////////////////////////////////////////////////////////// |
|
1597 |
procedure doStepMortar(Gear: PGear); |
|
1598 |
var dX, dY: hwFloat; |
|
1599 |
i: LongInt; |
|
963 | 1600 |
dxn, dyn: boolean; |
924 | 1601 |
begin |
1602 |
AllInactive:= false; |
|
963 | 1603 |
dxn:= Gear^.dX.isNegative; |
1604 |
dyn:= Gear^.dY.isNegative; |
|
1605 |
||
924 | 1606 |
doStepFallingGear(Gear); |
1607 |
if (Gear^.State and gstCollision) <> 0 then |
|
1608 |
begin |
|
1609 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 20, EXPLAutoSound); |
|
963 | 1610 |
|
1611 |
Gear^.dX.isNegative:= not dxn; |
|
1612 |
Gear^.dY.isNegative:= not dyn; |
|
924 | 1613 |
for i:= 0 to 4 do |
1614 |
begin |
|
963 | 1615 |
dX:= Gear^.dX + (GetRandom - _0_5) * _0_03; |
1616 |
dY:= Gear^.dY + (GetRandom - _0_5) * _0_03; |
|
1273 | 1617 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtCluster, 0, dX, dY, 25); |
924 | 1618 |
end; |
1619 |
||
1620 |
DeleteGear(Gear); |
|
1621 |
exit |
|
1622 |
end; |
|
963 | 1623 |
|
924 | 1624 |
if (GameTicks and $3F) = 0 then |
1625 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0) |
|
1626 |
end; |
|
984 | 1627 |
|
1628 |
//////////////////////////////////////////////////////////////////////////////// |
|
1629 |
procedure doStepKamikazeWork(Gear: PGear); |
|
1630 |
const upd: Longword = 0; |
|
987 | 1631 |
var i: LongWord; |
984 | 1632 |
HHGear: PGear; |
1633 |
begin |
|
1634 |
AllInactive:= false; |
|
1635 |
||
1636 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1637 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
1638 |
DeleteCI(HHGear); |
|
1639 |
||
1640 |
i:= 2; |
|
1641 |
repeat |
|
1642 |
Gear^.X:= Gear^.X + HHGear^.dX; |
|
1643 |
Gear^.Y:= Gear^.Y + HHGear^.dY; |
|
1644 |
HHGear^.X:= Gear^.X; |
|
1645 |
HHGear^.Y:= Gear^.Y; |
|
1646 |
||
1647 |
inc(Gear^.Damage, 2); |
|
1648 |
||
1200 | 1649 |
// if TestCollisionXwithGear(HHGear, hwSign(Gear^.dX)) |
1650 |
// or TestCollisionYwithGear(HHGear, hwSign(Gear^.dY)) then inc(Gear^.Damage, 3); |
|
984 | 1651 |
|
1652 |
dec(i) |
|
1653 |
until (i = 0) or (Gear^.Damage > Gear^.Health); |
|
1654 |
||
1655 |
inc(upd); |
|
1656 |
if upd > 3 then |
|
1657 |
begin |
|
987 | 1658 |
if Gear^.Health < 1500 then Gear^.Pos:= 2; |
1659 |
||
984 | 1660 |
AmmoShove(Gear, 30, 40); |
1661 |
||
1662 |
DrawTunnel(HHGear^.X - HHGear^.dX * 10, |
|
1200 | 1663 |
HHGear^.Y - _2 - HHGear^.dY * 10 + hwAbs(HHGear^.dY) * 2, |
984 | 1664 |
HHGear^.dX, |
1665 |
HHGear^.dY, |
|
1666 |
20 + cHHRadius * 2, |
|
1200 | 1667 |
cHHRadius * 2 + 6); |
984 | 1668 |
|
1669 |
upd:= 0 |
|
1670 |
end; |
|
1671 |
||
1672 |
if Gear^.Health < Gear^.Damage then |
|
1673 |
begin |
|
1674 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
1675 |
AfterAttack; |
|
1676 |
DeleteGear(Gear); |
|
1677 |
DeleteGear(HHGear); |
|
1678 |
end else |
|
1679 |
begin |
|
1680 |
dec(Gear^.Health, Gear^.Damage); |
|
1681 |
Gear^.Damage:= 0 |
|
1682 |
end |
|
1683 |
end; |
|
1684 |
||
987 | 1685 |
procedure doStepKamikazeIdle(Gear: PGear); |
1686 |
begin |
|
1687 |
AllInactive:= false; |
|
1688 |
dec(Gear^.Timer); |
|
1689 |
if Gear^.Timer = 0 then |
|
1690 |
begin |
|
1691 |
Gear^.Pos:= 1; |
|
1669 | 1692 |
PlaySound(sndKamikaze, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
987 | 1693 |
Gear^.doStep:= @doStepKamikazeWork |
1694 |
end |
|
1695 |
end; |
|
1696 |
||
984 | 1697 |
procedure doStepKamikaze(Gear: PGear); |
1698 |
var HHGear: PGear; |
|
1699 |
begin |
|
1700 |
AllInactive:= false; |
|
1701 |
||
1702 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1703 |
||
1704 |
HHGear^.dX:= Gear^.dX; |
|
1705 |
HHGear^.dY:= Gear^.dY; |
|
1706 |
||
1707 |
Gear^.dX:= SignAs(_0_45, Gear^.dX); |
|
1708 |
Gear^.dY:= - _0_9; |
|
1709 |
||
987 | 1710 |
Gear^.Timer:= 550; |
1711 |
||
1712 |
Gear^.doStep:= @doStepKamikazeIdle |
|
984 | 1713 |
end; |
1714 |
||
1103 | 1715 |
//////////////////////////////////////////////////////////////////////////////// |
1716 |
const cakeh = 27; |
|
1110 | 1717 |
cakeDmg = 75; |
1103 | 1718 |
var CakePoints: array[0..Pred(cakeh)] of record x, y: hwFloat; end; |
1719 |
CakeI: Longword; |
|
1720 |
||
1110 | 1721 |
procedure doStepCakeExpl(Gear: PGear); |
1722 |
begin |
|
2141 | 1723 |
AllInactive:= false; |
1724 |
||
1110 | 1725 |
inc(Gear^.Tag); |
1726 |
if Gear^.Tag < 2250 then exit; |
|
1727 |
||
1728 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cakeDmg, EXPLAutoSound); |
|
1729 |
AfterAttack; |
|
1730 |
DeleteGear(Gear) |
|
1731 |
end; |
|
1732 |
||
1109 | 1733 |
procedure doStepCakeDown(Gear: PGear); |
1133 | 1734 |
var gi: PGear; |
1735 |
dmg: LongInt; |
|
1109 | 1736 |
begin |
1737 |
AllInactive:= false; |
|
1738 |
||
1739 |
inc(Gear^.Tag); |
|
1740 |
if Gear^.Tag < 100 then exit; |
|
1741 |
Gear^.Tag:= 0; |
|
1742 |
||
1743 |
if Gear^.Pos = 0 then |
|
1744 |
begin |
|
1110 | 1745 |
gi:= GearsList; |
1746 |
while gi <> nil do |
|
1747 |
begin |
|
1748 |
dmg:= cakeDmg * 2 - hwRound(Distance(gi^.X - Gear^.X, gi^.Y - Gear^.Y)); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
1749 |
if (dmg > 1) and (gi^.Kind = gtHedgehog) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
1750 |
if (CurrentHedgehog^.Gear = gi) and (not gi^.Invulnerable) then |
1867 | 1751 |
gi^.State:= gi^.State or gstLoser |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
1752 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
1753 |
gi^.State:= gi^.State or gstWinner; |
1110 | 1754 |
gi:= gi^.NextGear |
1755 |
end; |
|
1756 |
Gear^.doStep:= @doStepCakeExpl; |
|
1669 | 1757 |
PlaySound(sndCake, false, nil) |
1109 | 1758 |
end else dec(Gear^.Pos) |
1759 |
end; |
|
1760 |
||
1761 |
||
1089 | 1762 |
procedure doStepCakeWork(Gear: PGear); |
1763 |
const dirs: array[0..3] of TPoint = ((x: 0; y: -1), (x: 1; y: 0),(x: 0; y: 1),(x: -1; y: 0)); |
|
1764 |
var xx, yy, xxn, yyn: LongInt; |
|
1765 |
da: LongInt; |
|
1103 | 1766 |
tdx, tdy: hwFloat; |
1089 | 1767 |
|
1768 |
procedure PrevAngle; |
|
1769 |
begin |
|
1133 | 1770 |
Gear^.Angle:= (LongInt(Gear^.Angle) + 4 - dA) mod 4 |
1089 | 1771 |
end; |
1772 |
||
1773 |
procedure NextAngle; |
|
1774 |
begin |
|
1133 | 1775 |
Gear^.Angle:= (LongInt(Gear^.Angle) + 4 + dA) mod 4 |
1089 | 1776 |
end; |
1777 |
||
1088 | 1778 |
begin |
2141 | 1779 |
AllInactive:= false; |
1780 |
||
1089 | 1781 |
inc(Gear^.Tag); |
1108 | 1782 |
if Gear^.Tag < 7 then exit; |
1089 | 1783 |
|
1784 |
dA:= hwSign(Gear^.dX); |
|
1785 |
xx:= dirs[Gear^.Angle].x; |
|
1786 |
yy:= dirs[Gear^.Angle].y; |
|
1133 | 1787 |
xxn:= dirs[(LongInt(Gear^.Angle) + 4 + dA) mod 4].x; |
1788 |
yyn:= dirs[(LongInt(Gear^.Angle) + 4 + dA) mod 4].y; |
|
1089 | 1789 |
|
1790 |
if (xx = 0) then |
|
1791 |
if TestCollisionYwithGear(Gear, yy) then |
|
1792 |
PrevAngle |
|
1793 |
else begin |
|
1794 |
Gear^.Tag:= 0; |
|
1795 |
Gear^.Y:= Gear^.Y + int2hwFloat(yy); |
|
1635
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1796 |
if not TestCollisionXwithGear(Gear, xxn) then |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1797 |
begin |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1798 |
Gear^.X:= Gear^.X + int2hwFloat(xxn); |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1799 |
NextAngle |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1800 |
end; |
1089 | 1801 |
end; |
1802 |
||
1803 |
if (yy = 0) then |
|
1804 |
if TestCollisionXwithGear(Gear, xx) then |
|
1805 |
PrevAngle |
|
1806 |
else begin |
|
1807 |
Gear^.Tag:= 0; |
|
1808 |
Gear^.X:= Gear^.X + int2hwFloat(xx); |
|
1635
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1809 |
if not TestCollisionYwithGear(Gear, yyn) then |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1810 |
begin |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1811 |
Gear^.Y:= Gear^.Y + int2hwFloat(yyn); |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1812 |
NextAngle |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1813 |
end; |
1089 | 1814 |
end; |
1815 |
||
1103 | 1816 |
if Gear^.Tag = 0 then |
1817 |
begin |
|
1818 |
CakeI:= (CakeI + 1) mod cakeh; |
|
1819 |
tdx:= CakePoints[CakeI].x - Gear^.X; |
|
1820 |
tdy:= - CakePoints[CakeI].y + Gear^.Y; |
|
1821 |
CakePoints[CakeI].x:= Gear^.X; |
|
1822 |
CakePoints[CakeI].y:= Gear^.Y; |
|
1823 |
Gear^.DirAngle:= DxDy2Angle(tdx, tdy); |
|
1824 |
end; |
|
1825 |
||
1089 | 1826 |
dec(Gear^.Health); |
2208
7d1a084d11ab
disable timers on a few silly items, trying out a timer on cake
nemo
parents:
2204
diff
changeset
|
1827 |
Gear^.Timer:= Gear^.Health*10; // This is not seconds, but at least it is *some* feedback |
1090 | 1828 |
if (Gear^.Health = 0) or ((Gear^.Message and gm_Attack) <> 0) then |
1089 | 1829 |
begin |
1109 | 1830 |
FollowGear:= Gear; |
1831 |
Gear^.doStep:= @doStepCakeDown |
|
1089 | 1832 |
end |
1088 | 1833 |
end; |
1089 | 1834 |
|
1103 | 1835 |
procedure doStepCakeUp(Gear: PGear); |
1836 |
var i: Longword; |
|
1837 |
begin |
|
1838 |
AllInactive:= false; |
|
1839 |
||
1108 | 1840 |
inc(Gear^.Tag); |
1109 | 1841 |
if Gear^.Tag < 100 then exit; |
1108 | 1842 |
Gear^.Tag:= 0; |
1843 |
||
1109 | 1844 |
if Gear^.Pos = 6 then |
1103 | 1845 |
begin |
1846 |
for i:= 0 to Pred(cakeh) do |
|
1847 |
begin |
|
1848 |
CakePoints[i].x:= Gear^.X; |
|
1849 |
CakePoints[i].y:= Gear^.Y |
|
1850 |
end; |
|
1851 |
CakeI:= 0; |
|
1852 |
Gear^.doStep:= @doStepCakeWork |
|
1109 | 1853 |
end else inc(Gear^.Pos) |
1103 | 1854 |
end; |
1855 |
||
1089 | 1856 |
procedure doStepCakeFall(Gear: PGear); |
1857 |
begin |
|
1858 |
AllInactive:= false; |
|
1859 |
||
1860 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1861 |
if TestCollisionYwithGear(Gear, 1) then |
|
1103 | 1862 |
Gear^.doStep:= @doStepCakeUp |
1089 | 1863 |
else |
1864 |
begin |
|
1865 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1866 |
if CheckGearDrowning(Gear) then AfterAttack |
|
1867 |
end |
|
1868 |
end; |
|
1869 |
||
1870 |
procedure doStepCake(Gear: PGear); |
|
1871 |
var HHGear: PGear; |
|
1872 |
begin |
|
1873 |
AllInactive:= false; |
|
1874 |
||
1875 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1103 | 1876 |
HHGear^.Message:= HHGear^.Message and (not gm_Attack); |
1089 | 1877 |
DeleteCI(HHGear); |
1878 |
||
1106 | 1879 |
FollowGear:= Gear; |
1880 |
||
1089 | 1881 |
Gear^.doStep:= @doStepCakeFall |
1882 |
end; |
|
1883 |
||
1259 | 1884 |
//////////////////////////////////////////////////////////////////////////////// |
1284 | 1885 |
procedure doStepSeductionWork(Gear: PGear); |
1886 |
var x, y: LongInt; |
|
1259 | 1887 |
begin |
1888 |
AllInactive:= false; |
|
1284 | 1889 |
|
1890 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1891 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1892 |
x:= hwRound(Gear^.X); |
|
1893 |
y:= hwRound(Gear^.Y); |
|
1259 | 1894 |
|
1753 | 1895 |
if ((y and LAND_HEIGHT_MASK) = 0) and ((x and LAND_WIDTH_MASK) = 0) then |
1284 | 1896 |
if (Land[y, x] <> 0) then |
1897 |
begin |
|
1898 |
Gear^.dX.isNegative:= not Gear^.dX.isNegative; |
|
1899 |
Gear^.dY.isNegative:= not Gear^.dY.isNegative; |
|
1286 | 1900 |
Gear^.dX:= Gear^.dX * _1_5; |
1901 |
Gear^.dY:= Gear^.dY * _1_5 - _0_3; |
|
1284 | 1902 |
AmmoShove(Gear, 0, 40); |
1286 | 1903 |
AfterAttack; |
1284 | 1904 |
DeleteGear(Gear) |
1905 |
end |
|
1906 |
else |
|
1907 |
else |
|
1286 | 1908 |
begin |
1909 |
AfterAttack; |
|
1284 | 1910 |
DeleteGear(Gear) |
1286 | 1911 |
end |
1912 |
end; |
|
1913 |
||
1914 |
procedure doStepSeductionWear(Gear: PGear); |
|
1915 |
begin |
|
1916 |
AllInactive:= false; |
|
1917 |
inc(Gear^.Timer); |
|
1918 |
if Gear^.Timer > 250 then |
|
1919 |
begin |
|
1920 |
Gear^.Timer:= 0; |
|
1388 | 1921 |
inc(Gear^.Pos); |
1922 |
if Gear^.Pos = 5 then |
|
1669 | 1923 |
PlaySound(sndYoohoo, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack) |
1286 | 1924 |
end; |
1367 | 1925 |
|
1926 |
if Gear^.Pos = 14 then |
|
1286 | 1927 |
Gear^.doStep:= @doStepSeductionWork |
1259 | 1928 |
end; |
1284 | 1929 |
|
1930 |
procedure doStepSeduction(Gear: PGear); |
|
1931 |
begin |
|
1932 |
AllInactive:= false; |
|
1933 |
DeleteCI(PHedgehog(Gear^.Hedgehog)^.Gear); |
|
1286 | 1934 |
Gear^.doStep:= @doStepSeductionWear |
1284 | 1935 |
end; |
1298 | 1936 |
|
1937 |
//////////////////////////////////////////////////////////////////////////////// |
|
1938 |
procedure doStepWaterUp(Gear: PGear); |
|
1939 |
var i: LongWord; |
|
1940 |
begin |
|
1941 |
AllInactive:= false; |
|
1942 |
||
1943 |
inc(Gear^.Timer); |
|
1944 |
if Gear^.Timer = 17 then |
|
1945 |
Gear^.Timer:= 0 |
|
1946 |
else |
|
1947 |
exit; |
|
1948 |
||
1949 |
if cWaterLine > 0 then |
|
1950 |
begin |
|
1951 |
dec(cWaterLine); |
|
1760 | 1952 |
for i:= 0 to LAND_WIDTH - 1 do |
1298 | 1953 |
Land[cWaterLine, i]:= 0; |
1954 |
SetAllToActive |
|
1955 |
end; |
|
1956 |
||
1957 |
inc(Gear^.Tag); |
|
1343 | 1958 |
if (Gear^.Tag = 47) or (cWaterLine = 0) then |
1298 | 1959 |
DeleteGear(Gear) |
1960 |
end; |
|
1573 | 1961 |
|
1962 |
//////////////////////////////////////////////////////////////////////////////// |
|
1590 | 1963 |
procedure doStepDrillDrilling(Gear: PGear); |
1633 | 1964 |
var t: PGearArray; |
1965 |
ox, oy: hwFloat; |
|
1573 | 1966 |
begin |
1590 | 1967 |
AllInactive:= false; |
1968 |
||
1633 | 1969 |
if (Gear^.Timer > 0) and ((Gear^.Timer mod 10) = 0) then |
1590 | 1970 |
begin |
1573 | 1971 |
ox:= Gear^.X; |
1972 |
oy:= Gear^.Y; |
|
1973 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1974 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1975 |
DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 2, 6); |
|
1976 |
CheckGearDrowning(Gear); |
|
1590 | 1977 |
end; |
1978 |
||
1633 | 1979 |
t:= CheckGearsCollision(Gear); //fixes drill not exploding when touching HH bug |
1590 | 1980 |
if (Gear^.Timer = 0) |
1633 | 1981 |
or (t^.Count <> 0) |
1590 | 1982 |
or (not TestCollisionYWithGear(Gear, hwSign(Gear^.dY)) |
1784 | 1983 |
and not TestCollisionXWithGear(Gear, hwSign(Gear^.dX))) |
1984 |
or (Land[hwRound(Gear^.Y), hwRound(Gear^.X)] = COLOR_INDESTRUCTIBLE) then |
|
1590 | 1985 |
begin //out of time or exited ground |
1986 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
1987 |
DeleteGear(Gear); |
|
1988 |
exit |
|
1989 |
end; |
|
1990 |
||
1991 |
dec(Gear^.Timer); |
|
1573 | 1992 |
end; |
1993 |
||
1994 |
procedure doStepDrill(Gear: PGear); |
|
1590 | 1995 |
var t: PGearArray; |
1633 | 1996 |
oldDx, oldDy: hwFloat; |
1997 |
t2: hwFloat; |
|
1573 | 1998 |
begin |
1590 | 1999 |
AllInactive:= false; |
1573 | 2000 |
|
1590 | 2001 |
Gear^.dX:= Gear^.dX + cWindSpeed; |
2002 |
oldDx:= Gear^.dX; |
|
2003 |
oldDy:= Gear^.dY; |
|
2004 |
||
2005 |
doStepFallingGear(Gear); |
|
2006 |
||
2007 |
if (GameTicks and $3F) = 0 then |
|
2008 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0); |
|
1573 | 2009 |
|
1633 | 2010 |
if ((Gear^.State and gstCollision) <> 0) then begin //hit |
1590 | 2011 |
Gear^.dX:= oldDx; |
2012 |
Gear^.dY:= oldDy; |
|
1633 | 2013 |
|
1590 | 2014 |
t:= CheckGearsCollision(Gear); |
1633 | 2015 |
if (t^.Count = 0) then begin //hit the ground not the HH |
2016 |
t2 := _0_5 / Distance(Gear^.dX, Gear^.dY); |
|
2017 |
Gear^.dX:= Gear^.dX * t2; |
|
2018 |
Gear^.dY:= Gear^.dY * t2; |
|
2019 |
end else begin //explode right on contact with HH |
|
2020 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
2021 |
DeleteGear(Gear); |
|
2022 |
exit; |
|
2023 |
end; |
|
2024 |
||
1590 | 2025 |
Gear^.doStep:= @doStepDrillDrilling; |
1633 | 2026 |
dec(Gear^.Timer) |
1590 | 2027 |
end |
2028 |
end; |
|
1601 | 2029 |
|
1633 | 2030 |
//////////////////////////////////////////////////////////////////////////////// |
1601 | 2031 |
procedure doStepBallgunWork(Gear: PGear); |
2032 |
var HHGear: PGear; |
|
1630 | 2033 |
rx, ry: hwFloat; |
1601 | 2034 |
begin |
2035 |
AllInactive:= false; |
|
2036 |
dec(Gear^.Timer); |
|
2037 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2038 |
HedgehogChAngle(HHGear); |
|
2039 |
if (Gear^.Timer mod 100) = 0 then |
|
2040 |
begin |
|
1630 | 2041 |
rx:= rndSign(getRandom * _0_1); |
2042 |
ry:= rndSign(getRandom * _0_1); |
|
1631
6e313b3818ef
Remove debug stuff, ballgun 64but incompatibility fixed in previous revision
unc0rr
parents:
1630
diff
changeset
|
2043 |
|
1630 | 2044 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtBall, 0, |
2045 |
SignAs(AngleSin(HHGear^.Angle) * _0_8, HHGear^.dX) + rx, |
|
2046 |
AngleCos(HHGear^.Angle) * ( - _0_8) + ry, |
|
2047 |
0); |
|
1601 | 2048 |
|
1669 | 2049 |
PlaySound(sndGun, false, nil); |
1601 | 2050 |
end; |
2051 |
||
1643 | 2052 |
if (Gear^.Timer = 0) or (HHGear^.Damage <> 0) then |
1601 | 2053 |
begin |
2054 |
DeleteGear(Gear); |
|
1643 | 2055 |
AfterAttack |
2056 |
end |
|
1601 | 2057 |
end; |
2058 |
||
2059 |
procedure doStepBallgun(Gear: PGear); |
|
2060 |
var HHGear: PGear; |
|
2061 |
begin |
|
2062 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2063 |
HHGear^.Message:= HHGear^.Message and not (gm_Up or gm_Down); |
|
2064 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
|
2065 |
Gear^.doStep:= @doStepBallgunWork |
|
1633 | 2066 |
end; |
1689 | 2067 |
|
1696 | 2068 |
//////////////////////////////////////////////////////////////////////////////// |
1689 | 2069 |
procedure doStepRCPlaneWork(Gear: PGear); |
2070 |
const cAngleSpeed = 3; |
|
2071 |
var HHGear: PGear; |
|
2072 |
i: LongInt; |
|
2073 |
dX, dY: hwFloat; |
|
2074 |
fChanged: boolean; |
|
2075 |
trueAngle: Longword; |
|
2076 |
t: PGear; |
|
2077 |
begin |
|
2078 |
AllInactive:= false; |
|
2079 |
||
1696 | 2080 |
if Gear^.Timer > 0 then dec(Gear^.Timer); |
1689 | 2081 |
|
2082 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2083 |
FollowGear:= Gear; |
|
2084 |
||
2085 |
fChanged:= false; |
|
1696 | 2086 |
if ((HHGear^.State and gstHHDriven) = 0) or (Gear^.Timer = 0) then |
1689 | 2087 |
begin |
2088 |
fChanged:= true; |
|
1696 | 2089 |
if Gear^.Angle > 2048 then dec(Gear^.Angle) else |
2090 |
if Gear^.Angle < 2048 then inc(Gear^.Angle) else fChanged:= false |
|
2091 |
end |
|
2092 |
else |
|
2093 |
begin |
|
2094 |
if ((Gear^.Message and gm_Left) <> 0) then |
|
2095 |
begin |
|
2096 |
fChanged:= true; |
|
2097 |
Gear^.Angle:= (Gear^.Angle + (4096 - cAngleSpeed)) mod 4096 |
|
2098 |
end; |
|
1689 | 2099 |
|
1696 | 2100 |
if ((Gear^.Message and gm_Right) <> 0) then |
2101 |
begin |
|
2102 |
fChanged:= true; |
|
2103 |
Gear^.Angle:= (Gear^.Angle + cAngleSpeed) mod 4096 |
|
2104 |
end |
|
1689 | 2105 |
end; |
2106 |
||
2107 |
if fChanged then |
|
2108 |
begin |
|
2109 |
Gear^.dX.isNegative:= (Gear^.Angle > 2048); |
|
2110 |
if Gear^.dX.isNegative then |
|
2111 |
trueAngle:= 4096 - Gear^.Angle |
|
2112 |
else |
|
2113 |
trueAngle:= Gear^.Angle; |
|
2114 |
||
2115 |
Gear^.dX:= SignAs(AngleSin(trueAngle), Gear^.dX) * _0_25; |
|
2116 |
Gear^.dY:= AngleCos(trueAngle) * -_0_25; |
|
2117 |
end; |
|
2118 |
||
2119 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
2120 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
2121 |
||
2122 |
if (GameTicks and $FF) = 0 then |
|
1698 | 2123 |
if Gear^.Timer < 3500 then |
1696 | 2124 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtEvilTrace, 0, _0, _0, 0) |
2125 |
else |
|
2126 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0); |
|
1689 | 2127 |
|
1696 | 2128 |
if ((HHGear^.Message and gm_Attack) <> 0) and (Gear^.Health <> 0) then |
1689 | 2129 |
begin |
2130 |
HHGear^.Message := HHGear^.Message and not gm_Attack; |
|
1708 | 2131 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAirBomb, 0, Gear^.dX * _0_5, Gear^.dY * _0_5, 0); |
1689 | 2132 |
dec(Gear^.Health) |
1712 | 2133 |
end; |
2134 |
||
2135 |
if ((HHGear^.Message and gm_LJump) <> 0) |
|
2136 |
and ((Gear^.State and gsttmpFlag) = 0) then |
|
2137 |
begin |
|
2138 |
Gear^.State:= Gear^.State or gsttmpFlag; |
|
2139 |
PauseMusic; |
|
2140 |
playSound(sndRideOfTheValkyries, false, nil); |
|
2141 |
end; |
|
1689 | 2142 |
|
2143 |
// pickup bonuses |
|
2144 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
2145 |
if t <> nil then |
|
2146 |
PickUp(HHGear, t); |
|
2147 |
||
2148 |
CheckCollision(Gear); |
|
2149 |
||
1712 | 2150 |
if ((Gear^.State and gstCollision) <> 0) |
2151 |
or CheckGearDrowning(Gear) then |
|
1689 | 2152 |
begin |
1712 | 2153 |
StopSound(sndRCPlane); |
2154 |
StopSound(sndRideOfTheValkyries); |
|
2155 |
ResumeMusic; |
|
2156 |
||
2157 |
if ((Gear^.State and gstCollision) <> 0) then |
|
1689 | 2158 |
begin |
1712 | 2159 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, EXPLAutoSound); |
1714 | 2160 |
for i:= 0 to 32 do |
1712 | 2161 |
begin |
1714 | 2162 |
dX:= AngleCos(i * 64) * _0_5 * (GetRandom + _1); |
2163 |
dY:= AngleSin(i * 64) * _0_5 * (GetRandom + _1); |
|
1712 | 2164 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, dY, 0); |
2165 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, -dY, 0); |
|
2166 |
end; |
|
2167 |
DeleteGear(Gear) |
|
1689 | 2168 |
end; |
1713 | 2169 |
|
1689 | 2170 |
AfterAttack; |
1713 | 2171 |
CurAmmoGear:= nil; |
1697 | 2172 |
TurnTimeLeft:= 14 * 125; |
1712 | 2173 |
HHGear^.Message:= 0; |
1697 | 2174 |
ParseCommand('/taunt '#1, true) |
2175 |
end |
|
1689 | 2176 |
end; |
2177 |
||
2178 |
procedure doStepRCPlane(Gear: PGear); |
|
2179 |
var HHGear: PGear; |
|
2180 |
begin |
|
2181 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2182 |
HHGear^.Message:= 0; |
|
2183 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
|
2184 |
Gear^.Angle:= HHGear^.Angle; |
|
1696 | 2185 |
Gear^.Tag:= hwSign(HHGear^.dX); |
1689 | 2186 |
if HHGear^.dX.isNegative then Gear^.Angle:= 4096 - Gear^.Angle; |
2187 |
Gear^.doStep:= @doStepRCPlaneWork |
|
1712 | 2188 |
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:
2143
diff
changeset
|
2189 |
|
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:
2143
diff
changeset
|
2190 |
procedure doStepJetpackWork(Gear: PGear); |
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:
2143
diff
changeset
|
2191 |
var HHGear: PGear; |
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:
2143
diff
changeset
|
2192 |
fuel: LongInt; |
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:
2143
diff
changeset
|
2193 |
move: hwFloat; |
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:
2143
diff
changeset
|
2194 |
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:
2143
diff
changeset
|
2195 |
AllInactive:= false; |
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:
2143
diff
changeset
|
2196 |
HHGear:=PHedgehog(Gear^.Hedgehog)^.Gear; |
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:
2143
diff
changeset
|
2197 |
//dec(Gear^.Timer); |
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:
2143
diff
changeset
|
2198 |
move:= _0_2; |
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:
2143
diff
changeset
|
2199 |
fuel:= 50; |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2200 |
(*if (HHGear^.Message and gm_Precise) <> 0 then |
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:
2143
diff
changeset
|
2201 |
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:
2143
diff
changeset
|
2202 |
move:= _0_02; |
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:
2143
diff
changeset
|
2203 |
fuel:= 5; |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2204 |
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:
2143
diff
changeset
|
2205 |
|
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:
2143
diff
changeset
|
2206 |
if (HHGear^.Message and gm_Up) <> 0 then |
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:
2143
diff
changeset
|
2207 |
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:
2143
diff
changeset
|
2208 |
HHGear^.dY:= HHGear^.dY - move; |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2209 |
dec(Gear^.Health, fuel); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2210 |
Gear^.MsgParam:= Gear^.MsgParam or gm_Up; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2211 |
Gear^.Timer:= GameTicks |
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:
2143
diff
changeset
|
2212 |
end; |
2187
66c0f9b3bd6f
set vector to negative *after* applying upward vector
nemo
parents:
2186
diff
changeset
|
2213 |
if (HHGear^.Message and gm_Left) <> 0 then move.isNegative:= true; |
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:
2143
diff
changeset
|
2214 |
if (HHGear^.Message and (gm_Left or gm_Right)) <> 0 then |
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:
2143
diff
changeset
|
2215 |
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:
2143
diff
changeset
|
2216 |
HHGear^.dX:= HHGear^.dX + (move * _0_2); |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2217 |
dec(Gear^.Health, fuel div 5); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2218 |
Gear^.MsgParam:= Gear^.MsgParam or (HHGear^.Message and (gm_Left or gm_Right)); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2219 |
Gear^.Timer:= GameTicks |
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:
2143
diff
changeset
|
2220 |
end; |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2221 |
|
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2222 |
// erases 'em all at once :-/ |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2223 |
if (Gear^.Timer <> 0) and (GameTicks - Gear^.Timer > 250) then |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2224 |
begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2225 |
Gear^.Timer:= 0; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2226 |
Gear^.MsgParam:= 0 |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2227 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2181
diff
changeset
|
2228 |
|
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:
2143
diff
changeset
|
2229 |
if Gear^.Health < 0 then Gear^.Health:= 0; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2202
diff
changeset
|
2230 |
if (GameTicks and $3F) = 0 then |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2202
diff
changeset
|
2231 |
begin |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2202
diff
changeset
|
2232 |
//AddCaption('Fuel: '+inttostr(round(Gear^.Health/20))+'%', $FFFFFF, capgrpAmmostate); |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2202
diff
changeset
|
2233 |
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:
2202
diff
changeset
|
2234 |
Gear^.Tex:= RenderStringTex(trmsg[sidFuel] + ': ' + inttostr(round(Gear^.Health / 20)) + '%', $FFFFFFFF, fntSmall) |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2202
diff
changeset
|
2235 |
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:
2143
diff
changeset
|
2236 |
|
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:
2143
diff
changeset
|
2237 |
HHGear^.Message:= HHGear^.Message and not (gm_Up or gm_Precise or gm_Left or gm_Right); |
2181
26d3b13ee553
thanks unc0rr (corrected flag - also check on turn time)
nemo
parents:
2180
diff
changeset
|
2238 |
HHGear^.State:= HHGear^.State or gstMoving; |
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:
2143
diff
changeset
|
2239 |
|
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:
2143
diff
changeset
|
2240 |
Gear^.X:= HHGear^.X; |
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:
2143
diff
changeset
|
2241 |
Gear^.Y:= HHGear^.Y; |
2196 | 2242 |
// For some reason I need to reapply followgear here, something else grabs it otherwise. |
2243 |
FollowGear:= HHGear; |
|
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:
2143
diff
changeset
|
2244 |
doStepHedgehogMoving(HHGear); |
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:
2143
diff
changeset
|
2245 |
|
2179 | 2246 |
if (Gear^.Health = 0) |
2180
6c5a339f8e28
Use different group to not erase messages, restore gear deletion on hog damage.
nemo
parents:
2179
diff
changeset
|
2247 |
or (HHGear^.Damage <> 0) |
2179 | 2248 |
or CheckGearDrowning(HHGear) |
2181
26d3b13ee553
thanks unc0rr (corrected flag - also check on turn time)
nemo
parents:
2180
diff
changeset
|
2249 |
or (TurnTimeLeft = 0) |
2189 | 2250 |
// allow brief ground touches - to be fair on this, might need another counter |
2190 | 2251 |
or (((GameTicks and $1FF) = 0) and (not HHGear^.dY.isNegative) and TestCollisionYwithGear(HHGear, 1)) |
2179 | 2252 |
or ((Gear^.Message and gm_Attack) <> 0) then |
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:
2143
diff
changeset
|
2253 |
begin |
2179 | 2254 |
with HHGear^ do |
2255 |
begin |
|
2256 |
Message:= 0; |
|
2257 |
Active:= true; |
|
2258 |
State:= State or gstMoving |
|
2259 |
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:
2143
diff
changeset
|
2260 |
DeleteGear(Gear); |
2179 | 2261 |
isCursorVisible:= false; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2202
diff
changeset
|
2262 |
// 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:
2202
diff
changeset
|
2263 |
// Gear^.Tex:= RenderStringTex(trmsg[sidFuel] + ': ' + inttostr(round(Gear^.Health / 20)) + '%', $FFFFFFFF, fntSmall) |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2202
diff
changeset
|
2264 |
//AddCaption(trmsg[sidFuel]+': '+inttostr(round(Gear^.Health/20))+'%', $FFFFFF, capgrpAmmostate); |
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:
2143
diff
changeset
|
2265 |
end |
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:
2143
diff
changeset
|
2266 |
end; |
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:
2143
diff
changeset
|
2267 |
|
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:
2143
diff
changeset
|
2268 |
procedure doStepJetpack(Gear: PGear); |
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:
2143
diff
changeset
|
2269 |
var HHGear: PGear; |
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:
2143
diff
changeset
|
2270 |
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:
2143
diff
changeset
|
2271 |
Gear^.doStep:= @doStepJetpackWork; |
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:
2143
diff
changeset
|
2272 |
|
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:
2143
diff
changeset
|
2273 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
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:
2143
diff
changeset
|
2274 |
FollowGear:= HHGear; |
2179 | 2275 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
2276 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^); |
|
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:
2143
diff
changeset
|
2277 |
with HHGear^ do |
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:
2143
diff
changeset
|
2278 |
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:
2143
diff
changeset
|
2279 |
State:= State and not gstAttacking; |
2186
5ec3e4a03d51
disable selection sprite, nudge ship into the air on launch
nemo
parents:
2185
diff
changeset
|
2280 |
Message:= Message and not gm_Attack; |
5ec3e4a03d51
disable selection sprite, nudge ship into the air on launch
nemo
parents:
2185
diff
changeset
|
2281 |
dY:= dY - _0_2 |
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:
2143
diff
changeset
|
2282 |
end |
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:
2143
diff
changeset
|
2283 |
end; |