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