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