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