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