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