author | nemo |
Sun, 03 May 2009 21:12:34 +0000 | |
changeset 2024 | 2985f3bd18b7 |
parent 2023 | 41d3afaa20c7 |
child 2025 | 692308790912 |
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 |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
474 |
AmmoShove(Gear, Gear^.Timer*2, 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 |
|
876 | 487 |
Gear^.doStep:= @doStepShotIdle |
37 | 488 |
end; |
489 |
||
559 | 490 |
procedure doStepDEagleShot(Gear: PGear); |
491 |
begin |
|
1669 | 492 |
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
|
493 |
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
|
494 |
end; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
495 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
496 |
procedure doStepSniperRifleShot(Gear: PGear); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
497 |
begin |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
498 |
cArtillery:= true; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
499 |
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
|
500 |
begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
501 |
cLaserSighting:= true; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
502 |
DeleteGear(Gear); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
503 |
AfterAttack; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
504 |
exit |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
505 |
end |
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
506 |
else |
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
507 |
inc(CurrentHedgehog^.AttacksNum); // burn up a shot, Tiy wants only a single shot |
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 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
509 |
if (PHedgehog(Gear^.Hedgehog)^.Gear^.Message and gm_Attack) <> 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
510 |
begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
511 |
Gear^.State:= Gear^.State or gstAnimation; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
512 |
PlaySound(sndGun, false, nil); |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
513 |
Gear^.doStep:= @doStepBulletWork |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
514 |
end; |
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
515 |
|
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
516 |
if (Gear^.Ammo^.NumPerTurn < CurrentHedgehog^.AttacksNum) and |
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
517 |
((GameFlags and gfArtillery) = 0) then cArtillery:= false; |
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
518 |
|
559 | 519 |
end; |
520 |
||
37 | 521 |
//////////////////////////////////////////////////////////////////////////////// |
4 | 522 |
procedure doStepActionTimer(Gear: PGear); |
523 |
begin |
|
351 | 524 |
dec(Gear^.Timer); |
525 |
case Gear^.Kind of |
|
83 | 526 |
gtATStartGame: begin |
4 | 527 |
AllInactive:= false; |
351 | 528 |
if Gear^.Timer = 0 then |
83 | 529 |
AddCaption(trmsg[sidStartFight], $FFFFFF, capgrpGameState); |
4 | 530 |
end; |
83 | 531 |
gtATSmoothWindCh: begin |
351 | 532 |
if Gear^.Timer = 0 then |
6 | 533 |
begin |
351 | 534 |
if WindBarWidth < Gear^.Tag then inc(WindBarWidth) |
535 |
else if WindBarWidth > Gear^.Tag then dec(WindBarWidth); |
|
536 |
if WindBarWidth <> Gear^.Tag then Gear^.Timer:= 10; |
|
83 | 537 |
end |
538 |
end; |
|
539 |
gtATFinishGame: begin |
|
540 |
AllInactive:= false; |
|
351 | 541 |
if Gear^.Timer = 0 then |
113 | 542 |
begin |
543 |
SendIPC('N'); |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
306
diff
changeset
|
544 |
SendIPC('q'); |
83 | 545 |
GameState:= gsExit |
113 | 546 |
end |
6 | 547 |
end; |
4 | 548 |
end; |
351 | 549 |
if Gear^.Timer = 0 then DeleteGear(Gear) |
4 | 550 |
end; |
551 |
||
552 |
//////////////////////////////////////////////////////////////////////////////// |
|
553 |
procedure doStepPickHammerWork(Gear: PGear); |
|
371 | 554 |
var i, ei: LongInt; |
4 | 555 |
HHGear: PGear; |
556 |
begin |
|
70 | 557 |
AllInactive:= false; |
351 | 558 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
559 |
dec(Gear^.Timer); |
|
560 |
if (Gear^.Timer = 0)or((Gear^.Message and gm_Destroy) <> 0)or((HHGear^.State and gstHHDriven) = 0) then |
|
1200 | 561 |
begin |
562 |
StopSound(sndPickhammer); |
|
563 |
DeleteGear(Gear); |
|
564 |
AfterAttack; |
|
565 |
exit |
|
566 |
end; |
|
845 | 567 |
|
422 | 568 |
if (Gear^.Timer mod 33) = 0 then |
1200 | 569 |
begin |
570 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
571 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y) + 7, 6, EXPLDontDraw); |
|
572 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
|
573 |
end; |
|
422 | 574 |
|
575 |
if (Gear^.Timer mod 47) = 0 then |
|
1200 | 576 |
begin |
577 |
i:= hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2)); |
|
578 |
ei:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2)); |
|
579 |
while i <= ei do |
|
580 |
begin |
|
581 |
DrawExplosion(i, hwRound(Gear^.Y) + 3, 3); |
|
582 |
inc(i, 1) |
|
583 |
end; |
|
584 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
585 |
Gear^.Y:= Gear^.Y + _1_9; |
|
586 |
SetAllHHToActive; |
|
587 |
end; |
|
4 | 588 |
if TestCollisionYwithGear(Gear, 1) then |
1200 | 589 |
begin |
590 |
Gear^.dY:= _0; |
|
591 |
SetLittle(HHGear^.dX); |
|
592 |
HHGear^.dY:= _0; |
|
593 |
end else |
|
594 |
begin |
|
595 |
Gear^.dY:= Gear^.dY + cGravity; |
|
596 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1417 | 597 |
if hwRound(Gear^.Y) > cWaterLine then Gear^.Timer:= 1 |
1200 | 598 |
end; |
4 | 599 |
|
351 | 600 |
Gear^.X:= Gear^.X + HHGear^.dX; |
601 |
HHGear^.X:= Gear^.X; |
|
498 | 602 |
HHGear^.Y:= Gear^.Y - int2hwFloat(cHHRadius); |
4 | 603 |
|
351 | 604 |
if (Gear^.Message and gm_Attack) <> 0 then |
605 |
if (Gear^.State and gsttmpFlag) <> 0 then Gear^.Timer:= 1 else else |
|
606 |
if (Gear^.State and gsttmpFlag) = 0 then Gear^.State:= Gear^.State or gsttmpFlag; |
|
607 |
if ((Gear^.Message and gm_Left) <> 0) then Gear^.dX:= - _0_3 else |
|
608 |
if ((Gear^.Message and gm_Right) <> 0) then Gear^.dX:= _0_3 |
|
498 | 609 |
else Gear^.dX:= _0; |
4 | 610 |
end; |
611 |
||
612 |
procedure doStepPickHammer(Gear: PGear); |
|
371 | 613 |
var i, y: LongInt; |
4 | 614 |
ar: TRangeArray; |
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
615 |
HHGear: PGear; |
4 | 616 |
begin |
617 |
i:= 0; |
|
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
618 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
619 |
|
498 | 620 |
y:= hwRound(Gear^.Y) - cHHRadius * 2; |
351 | 621 |
while y < hwRound(Gear^.Y) do |
4 | 622 |
begin |
371 | 623 |
ar[i].Left := hwRound(Gear^.X) - Gear^.Radius - LongInt(GetRandom(2)); |
624 |
ar[i].Right:= hwRound(Gear^.X) + Gear^.Radius + LongInt(GetRandom(2)); |
|
4 | 625 |
inc(y, 2); |
626 |
inc(i) |
|
627 |
end; |
|
911
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
628 |
|
498 | 629 |
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
|
630 |
Gear^.dY:= HHGear^.dY; |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
631 |
DeleteCI(HHGear); |
b709fe13ed69
Fix issue with hedgehog on top of the hedgehog with pickhammer
unc0rr
parents:
883
diff
changeset
|
632 |
|
1669 | 633 |
PlaySound(sndPickhammer, true, nil); |
4 | 634 |
doStepPickHammerWork(Gear); |
351 | 635 |
Gear^.doStep:= @doStepPickHammerWork |
4 | 636 |
end; |
637 |
||
638 |
//////////////////////////////////////////////////////////////////////////////// |
|
371 | 639 |
var BTPrevAngle, BTSteps: LongInt; |
302 | 640 |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
641 |
procedure doStepBlowTorchWork(Gear: PGear); |
302 | 642 |
var HHGear: PGear; |
1528 | 643 |
b: boolean; |
644 |
prevX: LongInt; |
|
302 | 645 |
begin |
646 |
AllInactive:= false; |
|
351 | 647 |
dec(Gear^.Timer); |
648 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
649 |
|
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
650 |
HedgehogChAngle(HHGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
651 |
|
305 | 652 |
b:= false; |
653 |
||
371 | 654 |
if abs(LongInt(HHGear^.Angle) - BTPrevAngle) > 7 then |
1528 | 655 |
begin |
656 |
Gear^.dX:= SignAs(AngleSin(HHGear^.Angle) * _0_5, HHGear^.dX); |
|
657 |
Gear^.dY:= AngleCos(HHGear^.Angle) * ( - _0_5); |
|
658 |
BTPrevAngle:= HHGear^.Angle; |
|
659 |
b:= true |
|
660 |
end; |
|
661 |
||
662 |
if ((HHGear^.State and gstMoving) <> 0) then |
|
663 |
begin |
|
664 |
doStepHedgehogMoving(HHGear); |
|
1736 | 665 |
if (HHGear^.State and gstHHDriven) = 0 then Gear^.Timer:= 0 |
1528 | 666 |
end; |
305 | 667 |
|
351 | 668 |
if Gear^.Timer mod cHHStepTicks = 0 then |
1528 | 669 |
begin |
670 |
b:= true; |
|
671 |
if Gear^.dX.isNegative then |
|
1547 | 672 |
HHGear^.Message:= (HHGear^.Message and (gm_Attack or gm_Up or gm_Down)) or gm_Left |
1528 | 673 |
else |
1547 | 674 |
HHGear^.Message:= (HHGear^.Message and (gm_Attack or gm_Up or gm_Down)) or gm_Right; |
305 | 675 |
|
1528 | 676 |
if ((HHGear^.State and gstMoving) = 0) then |
677 |
begin |
|
678 |
HHGear^.State:= HHGear^.State and not gstAttacking; |
|
679 |
prevX:= hwRound(HHGear^.X); |
|
680 |
||
681 |
HedgehogStep(HHGear); |
|
682 |
||
683 |
if (prevX = hwRound(HHGear^.X)) then HHGear^.X:= HHGear^.X + SignAs(_1, HHGear^.dX); |
|
684 |
HHGear^.State:= HHGear^.State or gstAttacking |
|
685 |
end; |
|
305 | 686 |
|
1528 | 687 |
inc(BTSteps); |
688 |
if BTSteps = 7 then |
|
689 |
begin |
|
690 |
BTSteps:= 0; |
|
691 |
Gear^.X:= HHGear^.X + Gear^.dX * (cHHRadius + cBlowTorchC); |
|
692 |
Gear^.Y:= HHGear^.Y + Gear^.dY * (cHHRadius + cBlowTorchC); |
|
693 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
1643 | 694 |
AmmoShove(Gear, 2, 15); |
1528 | 695 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
696 |
end; |
|
697 |
end; |
|
305 | 698 |
|
699 |
if b then |
|
498 | 700 |
DrawTunnel(HHGear^.X - Gear^.dX * cHHRadius, HHGear^.Y - _4 - Gear^.dY * cHHRadius + hwAbs(Gear^.dY) * 7, |
351 | 701 |
Gear^.dX, Gear^.dY, |
1501 | 702 |
cHHRadius * 5, cHHRadius * 2 + 7); |
305 | 703 |
|
1784 | 704 |
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 | 705 |
begin |
706 |
HHGear^.Message:= 0; |
|
707 |
HHGear^.State:= HHGear^.State and (not gstNotKickable); |
|
708 |
DeleteGear(Gear); |
|
709 |
AfterAttack |
|
710 |
end |
|
302 | 711 |
end; |
712 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
713 |
procedure doStepBlowTorch(Gear: PGear); |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
714 |
var HHGear: PGear; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
715 |
begin |
371 | 716 |
BTPrevAngle:= High(LongInt); |
305 | 717 |
BTSteps:= 0; |
351 | 718 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
719 |
HHGear^.Message:= 0; |
|
1528 | 720 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
351 | 721 |
Gear^.doStep:= @doStepBlowTorchWork |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
722 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
723 |
|
302 | 724 |
//////////////////////////////////////////////////////////////////////////////// |
725 |
||
1781 | 726 |
procedure doStepRope(Gear: PGear); forward; |
727 |
||
728 |
procedure doStepRopeAfterAttack(Gear: PGear); |
|
729 |
var HHGear: PGear; |
|
730 |
begin |
|
731 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
732 |
if ((HHGear^.State and gstHHDriven) = 0) |
|
733 |
or (CheckGearDrowning(HHGear)) |
|
734 |
or TestCollisionYwithGear(HHGear, 1) then |
|
735 |
begin |
|
736 |
DeleteGear(Gear); |
|
737 |
exit |
|
738 |
end; |
|
739 |
||
1785 | 740 |
HedgehogChAngle(HHGear); |
741 |
||
1781 | 742 |
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then SetLittle(HHGear^.dX); |
743 |
if HHGear^.dY.isNegative and TestCollisionYwithGear(HHGear, -1) then HHGear^.dY:= _0; |
|
744 |
HHGear^.X:= HHGear^.X + HHGear^.dX; |
|
745 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY; |
|
746 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
747 |
||
748 |
if (Gear^.Message and gm_Attack) <> 0 then |
|
749 |
begin |
|
750 |
Gear^.X:= HHGear^.X; |
|
751 |
Gear^.Y:= HHGear^.Y; |
|
1964 | 752 |
|
753 |
ApplyAngleBounds(PHedgehog(Gear^.Hedgehog)^, amRope); |
|
754 |
||
1781 | 755 |
Gear^.dX:= SignAs(AngleSin(HHGear^.Angle), HHGear^.dX); |
756 |
Gear^.dY:= -AngleCos(HHGear^.Angle); |
|
757 |
Gear^.Friction:= _450; |
|
758 |
Gear^.Elasticity:= _0; |
|
759 |
Gear^.State:= Gear^.State and not gsttmpflag; |
|
760 |
Gear^.doStep:= @doStepRope |
|
761 |
end |
|
762 |
end; |
|
763 |
||
4 | 764 |
procedure doStepRopeWork(Gear: PGear); |
765 |
var HHGear: PGear; |
|
1669 | 766 |
len, tx, ty, nx, ny, ropeDx, ropeDy, mdX, mdY: hwFloat; |
1504 | 767 |
lx, ly: LongInt; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
768 |
haveCollision, |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
769 |
haveDivided: boolean; |
4 | 770 |
|
1504 | 771 |
procedure DeleteMe; |
772 |
begin |
|
773 |
with HHGear^ do |
|
774 |
begin |
|
775 |
Message:= Message and not gm_Attack; |
|
776 |
State:= State or gstMoving; |
|
1892 | 777 |
State:= State and not gstWinner; |
1504 | 778 |
end; |
779 |
DeleteGear(Gear) |
|
780 |
end; |
|
4 | 781 |
|
1781 | 782 |
procedure WaitCollision; |
783 |
begin |
|
784 |
with HHGear^ do |
|
785 |
begin |
|
786 |
Message:= Message and not gm_Attack; |
|
787 |
State:= State or gstMoving; |
|
788 |
end; |
|
789 |
RopePoints.Count:= 0; |
|
790 |
Gear^.Elasticity:= _0; |
|
791 |
Gear^.doStep:= @doStepRopeAfterAttack |
|
792 |
end; |
|
793 |
||
4 | 794 |
begin |
351 | 795 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
108 | 796 |
|
351 | 797 |
if ((HHGear^.State and gstHHDriven) = 0) |
1504 | 798 |
or (CheckGearDrowning(HHGear)) then |
799 |
begin |
|
800 |
DeleteMe; |
|
801 |
exit |
|
802 |
end; |
|
928
b9064b48b001
Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents:
925
diff
changeset
|
803 |
|
351 | 804 |
if (Gear^.Message and gm_Left <> 0) then HHGear^.dX:= HHGear^.dX - _0_0002 else |
805 |
if (Gear^.Message and gm_Right <> 0) then HHGear^.dX:= HHGear^.dX + _0_0002; |
|
4 | 806 |
|
351 | 807 |
if not TestCollisionYwithGear(HHGear, 1) then HHGear^.dY:= HHGear^.dY + cGravity; |
4 | 808 |
|
1652 | 809 |
ropeDx:= HHGear^.X - Gear^.X; // vector between hedgehog and rope attaching point |
810 |
ropeDy:= HHGear^.Y - Gear^.Y; |
|
811 |
||
812 |
mdX:= ropeDx + HHGear^.dX; |
|
813 |
mdY:= ropeDy + HHGear^.dY; |
|
814 |
len:= _1 / Distance(mdX, mdY); |
|
815 |
mdX:= mdX * len; // rope vector plus hedgehog direction vector normalized |
|
816 |
mdY:= mdY * len; |
|
817 |
||
818 |
Gear^.dX:= mdX; // for visual purposes only |
|
819 |
Gear^.dY:= mdY; |
|
820 |
||
821 |
///// |
|
822 |
tx:= HHGear^.X; |
|
823 |
ty:= HHGear^.Y; |
|
4 | 824 |
|
1652 | 825 |
if ((Gear^.Message and gm_Down) <> 0) and (Gear^.Elasticity < Gear^.Friction) then |
826 |
if not (TestCollisionXwithGear(HHGear, hwSign(ropeDx)) |
|
827 |
or TestCollisionYwithGear(HHGear, hwSign(ropeDy))) then |
|
828 |
Gear^.Elasticity:= Gear^.Elasticity + _0_3; |
|
829 |
||
830 |
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Elasticity > _30) then |
|
831 |
if not (TestCollisionXwithGear(HHGear, -hwSign(ropeDx)) |
|
832 |
or TestCollisionYwithGear(HHGear, -hwSign(ropeDy))) then |
|
833 |
Gear^.Elasticity:= Gear^.Elasticity - _0_3; |
|
834 |
||
835 |
HHGear^.X:= Gear^.X + mdX * Gear^.Elasticity; |
|
836 |
HHGear^.Y:= Gear^.Y + mdY * Gear^.Elasticity; |
|
837 |
||
838 |
HHGear^.dX:= HHGear^.X - tx; |
|
839 |
HHGear^.dY:= HHGear^.Y - ty; |
|
840 |
//// |
|
841 |
||
1554 | 842 |
|
1922 | 843 |
haveDivided:= false; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
844 |
// check whether rope needs dividing |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
845 |
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
|
846 |
nx:= ropeDx * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
847 |
ny:= ropeDy * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
848 |
|
1652 | 849 |
len:= Gear^.Elasticity - _0_3x70; |
850 |
while len > _0_3 do |
|
1504 | 851 |
begin |
1652 | 852 |
lx:= hwRound(Gear^.X + mdX * len); |
853 |
ly:= hwRound(Gear^.Y + mdY * len); |
|
1753 | 854 |
if ((ly and LAND_HEIGHT_MASK) = 0) and ((lx and LAND_WIDTH_MASK) = 0) and (Land[ly, lx] <> 0) then |
1504 | 855 |
begin |
856 |
with RopePoints.ar[RopePoints.Count] do |
|
857 |
begin |
|
858 |
X:= Gear^.X; |
|
859 |
Y:= Gear^.Y; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
860 |
if RopePoints.Count = 0 then RopePoints.HookAngle:= DxDy2Angle(Gear^.dY, Gear^.dX); |
1652 | 861 |
b:= (nx * HHGear^.dY) > (ny * HHGear^.dX); |
1504 | 862 |
dLen:= len |
863 |
end; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
864 |
Gear^.X:= Gear^.X + nx * len; |
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
865 |
Gear^.Y:= Gear^.Y + ny * len; |
1504 | 866 |
inc(RopePoints.Count); |
867 |
TryDo(RopePoints.Count <= MAXROPEPOINTS, 'Rope points overflow', true); |
|
868 |
Gear^.Elasticity:= Gear^.Elasticity - len; |
|
869 |
Gear^.Friction:= Gear^.Friction - len; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
870 |
haveDivided:= true; |
1504 | 871 |
break |
872 |
end; |
|
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
873 |
len:= len - _0_3 // should be the same as increase step |
1504 | 874 |
end; |
1553
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
875 |
|
77f326c7f0ef
The best final fix for rope stucking in the ground bug
unc0rr
parents:
1552
diff
changeset
|
876 |
if not haveDivided then |
1504 | 877 |
if RopePoints.Count > 0 then // check whether the last dividing point could be removed |
878 |
begin |
|
879 |
tx:= RopePoints.ar[Pred(RopePoints.Count)].X; |
|
880 |
ty:= RopePoints.ar[Pred(RopePoints.Count)].Y; |
|
881 |
if RopePoints.ar[Pred(RopePoints.Count)].b xor ((tx - Gear^.X) * (ty - HHGear^.Y) > (tx - HHGear^.X) * (ty - Gear^.Y)) then |
|
882 |
begin |
|
883 |
dec(RopePoints.Count); |
|
1652 | 884 |
Gear^.X:= RopePoints.ar[RopePoints.Count].X; |
885 |
Gear^.Y:= RopePoints.ar[RopePoints.Count].Y; |
|
1504 | 886 |
Gear^.Elasticity:= Gear^.Elasticity + RopePoints.ar[RopePoints.Count].dLen; |
887 |
Gear^.Friction:= Gear^.Friction + RopePoints.ar[RopePoints.Count].dLen |
|
888 |
end |
|
889 |
end; |
|
4 | 890 |
|
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
|
891 |
haveCollision:= false; |
351 | 892 |
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
|
893 |
begin |
1504 | 894 |
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
|
895 |
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
|
896 |
end; |
351 | 897 |
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
|
898 |
begin |
1504 | 899 |
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
|
900 |
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
|
901 |
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
|
902 |
|
1579
2f581b1f289e
More bouncy rope, but you need to press vertical arrow and horizontal keys at once to bounce
unc0rr
parents:
1573
diff
changeset
|
903 |
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
|
904 |
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
|
905 |
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
|
906 |
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
|
907 |
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
|
908 |
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
|
909 |
end; |
4 | 910 |
|
789 | 911 |
len:= Distance(HHGear^.dX, HHGear^.dY); |
940 | 912 |
if len > _0_8 then |
1504 | 913 |
begin |
914 |
len:= _0_8 / len; |
|
915 |
HHGear^.dX:= HHGear^.dX * len; |
|
916 |
HHGear^.dY:= HHGear^.dY * len; |
|
917 |
end; |
|
789 | 918 |
|
351 | 919 |
if (Gear^.Message and gm_Attack) <> 0 then |
1504 | 920 |
if (Gear^.State and gsttmpFlag) <> 0 then |
1922 | 921 |
with PHedgehog(Gear^.Hedgehog)^ do |
1964 | 922 |
if Ammo^[CurSlot, CurAmmo].AmmoType <> amParachute then |
1922 | 923 |
WaitCollision |
924 |
else |
|
925 |
DeleteMe |
|
1504 | 926 |
else |
927 |
else |
|
928 |
if (Gear^.State and gsttmpFlag) = 0 then |
|
929 |
Gear^.State:= Gear^.State or gsttmpFlag; |
|
4 | 930 |
end; |
931 |
||
932 |
procedure doStepRopeAttach(Gear: PGear); |
|
933 |
var HHGear: PGear; |
|
1781 | 934 |
tx, ty, tt: hwFloat; |
935 |
||
936 |
procedure RemoveFromAmmo; |
|
937 |
begin |
|
938 |
if (Gear^.State and gstAttacked) = 0 then |
|
939 |
begin |
|
940 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
|
941 |
Gear^.State:= Gear^.State or gstAttacked |
|
1964 | 942 |
end; |
943 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^) |
|
1781 | 944 |
end; |
945 |
||
4 | 946 |
begin |
351 | 947 |
Gear^.X:= Gear^.X - Gear^.dX; |
948 |
Gear^.Y:= Gear^.Y - Gear^.dY; |
|
498 | 949 |
Gear^.Elasticity:= Gear^.Elasticity + _1; |
351 | 950 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
517 | 951 |
DeleteCI(HHGear); |
542 | 952 |
if (HHGear^.State and gstMoving) <> 0 then |
1433 | 953 |
if TestCollisionYwithGear(HHGear, 1) then |
954 |
begin |
|
955 |
CheckHHDamage(HHGear); |
|
956 |
HHGear^.dY:= _0; |
|
957 |
HHGear^.State:= HHGear^.State and not (gstMoving or gstHHJumping); |
|
958 |
end else |
|
959 |
begin |
|
960 |
if TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then SetLittle(HHGear^.dX); |
|
961 |
HHGear^.X:= HHGear^.X + HHGear^.dX; |
|
962 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY; |
|
963 |
Gear^.X:= Gear^.X + HHGear^.dX; |
|
964 |
Gear^.Y:= Gear^.Y + HHGear^.dY; |
|
965 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
966 |
tt:= Gear^.Elasticity; |
|
967 |
tx:= _0; |
|
968 |
ty:= _0; |
|
969 |
while tt > _20 do |
|
970 |
begin |
|
971 |
if TestCollisionXwithXYShift(Gear, tx, hwRound(ty), -hwSign(Gear^.dX)) |
|
972 |
or TestCollisionYwithXYShift(Gear, hwRound(tx), hwRound(ty), -hwSign(Gear^.dY)) then |
|
973 |
begin |
|
974 |
Gear^.X:= Gear^.X + tx; |
|
975 |
Gear^.Y:= Gear^.Y + ty; |
|
976 |
Gear^.Elasticity:= tt; |
|
977 |
Gear^.doStep:= @doStepRopeWork; |
|
1752
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
978 |
with HHGear^ do State:= State and not (gstAttacking or gstMoving or gstHHHJump); |
1781 | 979 |
|
980 |
RemoveFromAmmo; |
|
981 |
||
1752
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
982 |
tt:= _0; |
769986d39202
Fix accidental rope removinf from ammo in some cases
unc0rr
parents:
1736
diff
changeset
|
983 |
exit |
1433 | 984 |
end; |
985 |
tx:= tx + Gear^.dX + Gear^.dX; |
|
986 |
ty:= ty + Gear^.dY + Gear^.dY; |
|
987 |
tt:= tt - _2; |
|
988 |
end; |
|
989 |
end; |
|
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
990 |
|
4 | 991 |
CheckCollision(Gear); |
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
992 |
|
351 | 993 |
if (Gear^.State and gstCollision) <> 0 then |
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
994 |
begin |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
995 |
Gear^.doStep:= @doStepRopeWork; |
974
fc16141a0128
Prevent wrong aim direction when using rope after high jump
unc0rr
parents:
963
diff
changeset
|
996 |
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
|
997 |
|
1781 | 998 |
RemoveFromAmmo; |
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
999 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1000 |
if Gear^.Elasticity < _10 then |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1001 |
Gear^.Elasticity:= _10000; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1002 |
end; |
4 | 1003 |
|
1634
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1004 |
if (Gear^.Elasticity > Gear^.Friction) |
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1005 |
or ((Gear^.Message and gm_Attack) = 0) |
486a89f0e843
Fix rope bug which allowed hedgehog to go into land
unc0rr
parents:
1633
diff
changeset
|
1006 |
or (HHGear^.Damage > 0) then |
1433 | 1007 |
begin |
1008 |
with PHedgehog(Gear^.Hedgehog)^.Gear^ do |
|
1009 |
begin |
|
1010 |
State:= State and not gstAttacking; |
|
1011 |
Message:= Message and not gm_Attack |
|
1012 |
end; |
|
1013 |
DeleteGear(Gear) |
|
1014 |
end |
|
4 | 1015 |
end; |
1016 |
||
1017 |
procedure doStepRope(Gear: PGear); |
|
1018 |
begin |
|
351 | 1019 |
Gear^.dX:= - Gear^.dX; |
1020 |
Gear^.dY:= - Gear^.dY; |
|
1021 |
Gear^.doStep:= @doStepRopeAttach |
|
4 | 1022 |
end; |
1023 |
||
1024 |
//////////////////////////////////////////////////////////////////////////////// |
|
1025 |
procedure doStepSmokeTrace(Gear: PGear); |
|
1026 |
begin |
|
351 | 1027 |
inc(Gear^.Timer); |
1028 |
if Gear^.Timer > 64 then |
|
1133 | 1029 |
begin |
1030 |
Gear^.Timer:= 0; |
|
1031 |
dec(Gear^.State) |
|
1032 |
end; |
|
351 | 1033 |
Gear^.dX:= Gear^.dX + cWindSpeed; |
1034 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1035 |
if Gear^.State = 0 then DeleteGear(Gear) |
|
4 | 1036 |
end; |
9 | 1037 |
|
1038 |
//////////////////////////////////////////////////////////////////////////////// |
|
1045 | 1039 |
procedure doStepExplosionWork(Gear: PGear); |
9 | 1040 |
begin |
351 | 1041 |
inc(Gear^.Timer); |
1042 |
if Gear^.Timer > 75 then |
|
1133 | 1043 |
begin |
1044 |
inc(Gear^.State); |
|
1045 |
Gear^.Timer:= 0; |
|
1046 |
if Gear^.State > 5 then DeleteGear(Gear) |
|
1047 |
end; |
|
9 | 1048 |
end; |
10 | 1049 |
|
1045 | 1050 |
procedure doStepExplosion(Gear: PGear); |
1051 |
var i: LongWord; |
|
1052 |
begin |
|
1047 | 1053 |
for i:= 0 to 31 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtFire); |
1054 |
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart); |
|
1055 |
for i:= 0 to 8 do AddVisualGear(hwRound(Gear^.X), hwRound(Gear^.Y), vgtExplPart2); |
|
1045 | 1056 |
Gear^.doStep:= @doStepExplosionWork |
1057 |
end; |
|
1058 |
||
10 | 1059 |
//////////////////////////////////////////////////////////////////////////////// |
1060 |
procedure doStepMine(Gear: PGear); |
|
1061 |
begin |
|
542 | 1062 |
if (Gear^.State and gstMoving) <> 0 then |
914 | 1063 |
begin |
1064 |
DeleteCI(Gear); |
|
1065 |
doStepFallingGear(Gear); |
|
1066 |
if (Gear^.State and gstMoving) = 0 then |
|
1067 |
begin |
|
1068 |
AddGearCI(Gear); |
|
1069 |
Gear^.dX:= _0; |
|
1070 |
Gear^.dY:= _0 |
|
1071 |
end; |
|
1072 |
CalcRotationDirAngle(Gear); |
|
1073 |
AllInactive:= false |
|
1074 |
end else |
|
1075 |
if ((GameTicks and $3F) = 25) then |
|
1076 |
doStepFallingGear(Gear); |
|
351 | 1077 |
|
1078 |
if ((Gear^.State and gsttmpFlag) <> 0) then |
|
1133 | 1079 |
if ((Gear^.State and gstAttacking) = 0) then |
1080 |
begin |
|
1081 |
if ((GameTicks and $1F) = 0) then |
|
1082 |
if CheckGearNear(Gear, gtHedgehog, 46, 32) <> nil then Gear^.State:= Gear^.State or gstAttacking |
|
1083 |
end else // gstAttacking <> 0 |
|
1084 |
begin |
|
1085 |
AllInactive:= false; |
|
1669 | 1086 |
if (Gear^.Timer and $FF) = 0 then PlaySound(sndMineTick, false, nil); |
1133 | 1087 |
if Gear^.Timer = 0 then |
1088 |
begin |
|
1089 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
1090 |
DeleteGear(Gear); |
|
1091 |
exit |
|
1092 |
end; |
|
1093 |
dec(Gear^.Timer); |
|
1094 |
end else // gsttmpFlag = 0 |
|
1095 |
if TurnTimeLeft = 0 then Gear^.State:= Gear^.State or gsttmpFlag; |
|
10 | 1096 |
end; |
57 | 1097 |
|
39 | 1098 |
//////////////////////////////////////////////////////////////////////////////// |
1099 |
procedure doStepDynamite(Gear: PGear); |
|
1100 |
begin |
|
43 | 1101 |
doStepFallingGear(Gear); |
1102 |
AllInactive:= false; |
|
351 | 1103 |
if Gear^.Timer mod 166 = 0 then inc(Gear^.Tag); |
1104 |
if Gear^.Timer = 0 then |
|
1133 | 1105 |
begin |
1106 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 75, EXPLAutoSound); |
|
1107 |
DeleteGear(Gear); |
|
1108 |
exit |
|
1109 |
end; |
|
351 | 1110 |
dec(Gear^.Timer); |
39 | 1111 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1112 |
|
351 | 1113 |
/////////////////////////////////////////////////////////////////////////////// |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1114 |
procedure doStepCase(Gear: PGear); |
371 | 1115 |
var i, x, y: LongInt; |
1436 | 1116 |
k: TGearType; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1117 |
begin |
351 | 1118 |
if (Gear^.Message and gm_Destroy) > 0 then |
1133 | 1119 |
begin |
1120 |
DeleteGear(Gear); |
|
1121 |
FreeActionsList; |
|
1122 |
SetAllToActive; // something (hh, mine, etc...) could be on top of the case |
|
1123 |
with CurrentHedgehog^ do |
|
1124 |
if Gear <> nil then Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
|
1125 |
exit |
|
1126 |
end; |
|
15 | 1127 |
|
351 | 1128 |
if Gear^.Damage > 0 then |
1133 | 1129 |
begin |
1130 |
x:= hwRound(Gear^.X); |
|
1131 |
y:= hwRound(Gear^.Y); |
|
1436 | 1132 |
k:= Gear^.Kind; |
1133 |
DeleteGear(Gear); // <-- delete gear! |
|
1134 |
||
1135 |
if k = gtCase then |
|
1133 | 1136 |
begin |
1137 |
doMakeExplosion(x, y, 25, EXPLAutoSound); |
|
1138 |
for i:= 0 to 63 do |
|
1139 |
AddGear(x, y, gtFlame, 0, _0, _0, 0); |
|
1140 |
end; |
|
1141 |
exit |
|
1142 |
end; |
|
79 | 1143 |
|
351 | 1144 |
if (Gear^.dY.QWordValue <> 0) or (not TestCollisionYwithGear(Gear, 1)) then |
1133 | 1145 |
begin |
1146 |
AllInactive:= false; |
|
1147 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1148 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1149 |
if (Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, -1) then Gear^.dY:= _0 else |
|
1150 |
if (not Gear^.dY.isNegative) and TestCollisionYwithGear(Gear, 1) then |
|
1151 |
begin |
|
1152 |
Gear^.dY:= - Gear^.dY * Gear^.Elasticity; |
|
1153 |
if Gear^.dY > - _0_001 then Gear^.dY:= _0 |
|
1669 | 1154 |
else if Gear^.dY < - _0_03 then PlaySound(sndGraveImpact, false, nil); |
1133 | 1155 |
end; |
1156 |
CheckGearDrowning(Gear); |
|
1157 |
end; |
|
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
13
diff
changeset
|
1158 |
|
511 | 1159 |
if (Gear^.dY.QWordValue = 0) then AddGearCI(Gear) |
1133 | 1160 |
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
|
1161 |
end; |
49 | 1162 |
|
1163 |
//////////////////////////////////////////////////////////////////////////////// |
|
854 | 1164 |
procedure doStepIdle(Gear: PGear); |
1165 |
begin |
|
1166 |
AllInactive:= false; |
|
925 | 1167 |
dec(Gear^.Timer); |
854 | 1168 |
if Gear^.Timer = 0 then |
1169 |
begin |
|
1170 |
DeleteGear(Gear); |
|
1171 |
AfterAttack |
|
1172 |
end |
|
1173 |
end; |
|
1174 |
||
79 | 1175 |
procedure doStepShover(Gear: PGear); |
1176 |
var HHGear: PGear; |
|
1177 |
begin |
|
351 | 1178 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
1179 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1180 |
DeleteCI(HHGear); |
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1181 |
|
79 | 1182 |
AmmoShove(Gear, 30, 115); |
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1183 |
|
351 | 1184 |
HHGear^.State:= HHGear^.State and not gstNoDamage; |
854 | 1185 |
Gear^.Timer:= 250; |
1186 |
Gear^.doStep:= @doStepIdle |
|
79 | 1187 |
end; |
1188 |
||
1189 |
//////////////////////////////////////////////////////////////////////////////// |
|
925 | 1190 |
procedure doStepWhip(Gear: PGear); |
1191 |
var HHGear: PGear; |
|
1192 |
i: LongInt; |
|
1193 |
begin |
|
1194 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1195 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
980
20128e98988b
Don't push attacking hedgehog when using whip or baseball
unc0rr
parents:
979
diff
changeset
|
1196 |
DeleteCI(HHGear); |
925 | 1197 |
|
1198 |
for i:= 0 to 3 do |
|
1199 |
begin |
|
1200 |
AmmoShove(Gear, 30, 25); |
|
1201 |
Gear^.X:= Gear^.X + Gear^.dX * 5 |
|
1202 |
end; |
|
1203 |
||
1204 |
HHGear^.State:= HHGear^.State and not gstNoDamage; |
|
1205 |
Gear^.Timer:= 250; |
|
1206 |
Gear^.doStep:= @doStepIdle |
|
1207 |
end; |
|
1208 |
||
1209 |
//////////////////////////////////////////////////////////////////////////////// |
|
79 | 1210 |
procedure doStepFlame(Gear: PGear); |
1211 |
begin |
|
1212 |
AllInactive:= false; |
|
1433 | 1213 |
|
79 | 1214 |
if not TestCollisionYwithGear(Gear, 1) then |
1133 | 1215 |
begin |
1586 | 1216 |
if hwAbs(Gear^.dX) > _0_01 then |
1217 |
Gear^.dX:= Gear^.dX * _0_995; |
|
1297 | 1218 |
|
1133 | 1219 |
Gear^.dY:= Gear^.dY + cGravity; |
1830 | 1220 |
if hwAbs(Gear^.dY) > _0_2 then Gear^.dY:= Gear^.dY * _0_995; |
1297 | 1221 |
|
1830 | 1222 |
Gear^.X:= Gear^.X + Gear^.dX + cWindSpeed * 640; |
1133 | 1223 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
1297 | 1224 |
|
1417 | 1225 |
if not (hwRound(Gear^.Y) < cWaterLine) then |
1133 | 1226 |
begin |
1227 |
DeleteGear(Gear); |
|
1228 |
exit |
|
1229 |
end |
|
1230 |
end else begin |
|
1231 |
if Gear^.Timer > 0 then dec(Gear^.Timer) |
|
1232 |
else begin |
|
1586 | 1233 |
Gear^.Radius:= 9; |
1234 |
AmmoShove(Gear, 4, 100); |
|
1297 | 1235 |
Gear^.Radius:= 1; |
1236 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 4, EXPLNoDamage); |
|
1133 | 1237 |
dec(Gear^.Health); |
1586 | 1238 |
Gear^.Timer:= 450 - Gear^.Tag * 8 |
1133 | 1239 |
end |
1240 |
end; |
|
79 | 1241 |
|
1295 | 1242 |
//if (((GameTicks div 8) mod 64) = Gear^.Tag) then |
1243 |
// AmmoFlameWork(Gear); |
|
79 | 1244 |
|
351 | 1245 |
if Gear^.Health = 0 then |
1133 | 1246 |
DeleteGear(Gear) |
79 | 1247 |
end; |
82 | 1248 |
|
1249 |
//////////////////////////////////////////////////////////////////////////////// |
|
1250 |
procedure doStepFirePunchWork(Gear: PGear); |
|
1251 |
var HHGear: PGear; |
|
1252 |
begin |
|
1253 |
AllInactive:= false; |
|
351 | 1254 |
if ((Gear^.Message and gm_Destroy) <> 0) then |
1133 | 1255 |
begin |
1256 |
DeleteGear(Gear); |
|
1257 |
AfterAttack; |
|
1258 |
exit |
|
1259 |
end; |
|
82 | 1260 |
|
351 | 1261 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
1262 |
if hwRound(HHGear^.Y) <= Gear^.Tag - 2 then |
|
1133 | 1263 |
begin |
1264 |
Gear^.Tag:= hwRound(HHGear^.Y); |
|
1265 |
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y - _1, _0_5, _0, cHHRadius * 4, 2); |
|
1266 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
1267 |
Gear^.Y:= HHGear^.Y; |
|
1268 |
AmmoShove(Gear, 30, 40); |
|
1269 |
HHGear^.State:= HHGear^.State and not gstNoDamage |
|
1270 |
end; |
|
351 | 1271 |
|
1272 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
1273 |
if not (HHGear^.dY.isNegative) then |
|
1133 | 1274 |
begin |
1275 |
HHGear^.State:= HHGear^.State or gstMoving; |
|
1276 |
DeleteGear(Gear); |
|
1277 |
AfterAttack; |
|
1278 |
exit |
|
1279 |
end; |
|
351 | 1280 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY |
82 | 1281 |
end; |
1282 |
||
1283 |
procedure doStepFirePunch(Gear: PGear); |
|
1284 |
var HHGear: PGear; |
|
1285 |
begin |
|
1286 |
AllInactive:= false; |
|
351 | 1287 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
514 | 1288 |
DeleteCI(HHGear); |
498 | 1289 |
HHGear^.X:= int2hwFloat(hwRound(HHGear^.X)) - _0_5; |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
992
diff
changeset
|
1290 |
HHGear^.dX:= SignAs(cLittle, Gear^.dX); |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
992
diff
changeset
|
1291 |
|
351 | 1292 |
HHGear^.dY:= - _0_3; |
82 | 1293 |
|
351 | 1294 |
Gear^.X:= HHGear^.X; |
979
edb8f208c1d9
Fix firepunch direction when attacking from high jump
unc0rr
parents:
974
diff
changeset
|
1295 |
Gear^.dX:= SignAs(_0_45, Gear^.dX); |
351 | 1296 |
Gear^.dY:= - _0_9; |
1297 |
Gear^.doStep:= @doStepFirePunchWork; |
|
498 | 1298 |
DrawTunnel(HHGear^.X - int2hwFloat(cHHRadius), HHGear^.Y + _1, _0_5, _0, cHHRadius * 4, 5); |
1279 | 1299 |
|
1669 | 1300 |
PlaySound(TSound(ord(sndFirePunch1) + GetRandom(6)), false, PHedgehog(HHGear^.Hedgehog)^.Team^.voicepack) |
82 | 1301 |
end; |
1302 |
||
263 | 1303 |
//////////////////////////////////////////////////////////////////////////////// |
1304 |
||
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1305 |
procedure doStepParachuteWork(Gear: PGear); |
211 | 1306 |
var HHGear: PGear; |
1307 |
begin |
|
351 | 1308 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
82 | 1309 |
|
516 | 1310 |
inc(Gear^.Timer); |
1311 |
||
212 | 1312 |
if TestCollisionYwithGear(HHGear, 1) |
1133 | 1313 |
or ((HHGear^.State and gstHHDriven) = 0) |
1314 |
or CheckGearDrowning(HHGear) |
|
1315 |
or ((Gear^.Message and gm_Attack) <> 0) then |
|
1316 |
begin |
|
1317 |
with HHGear^ do |
|
1318 |
begin |
|
1319 |
Message:= 0; |
|
1320 |
SetLittle(dX); |
|
1321 |
dY:= _0; |
|
1322 |
State:= State or gstMoving; |
|
1323 |
end; |
|
1324 |
DeleteGear(Gear); |
|
1325 |
exit |
|
1326 |
end; |
|
211 | 1327 |
|
351 | 1328 |
if not TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then |
1133 | 1329 |
HHGear^.X:= HHGear^.X + cWindSpeed * 200; |
211 | 1330 |
|
351 | 1331 |
if (Gear^.Message and gm_Left) <> 0 then HHGear^.X:= HHGear^.X - cMaxWindSpeed * 40 |
1332 |
else if (Gear^.Message and gm_Right) <> 0 then HHGear^.X:= HHGear^.X + cMaxWindSpeed * 40; |
|
1333 |
if (Gear^.Message and gm_Up) <> 0 then HHGear^.Y:= HHGear^.Y - cGravity * 40 |
|
1334 |
else if (Gear^.Message and gm_Down) <> 0 then HHGear^.Y:= HHGear^.Y + cGravity * 40; |
|
211 | 1335 |
|
351 | 1336 |
HHGear^.Y:= HHGear^.Y + cGravity * 100; |
568 | 1337 |
Gear^.X:= HHGear^.X; |
1338 |
Gear^.Y:= HHGear^.Y |
|
263 | 1339 |
end; |
211 | 1340 |
|
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1341 |
procedure doStepParachute(Gear: PGear); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1342 |
var HHGear: PGear; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1343 |
begin |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1344 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1345 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1346 |
DeleteCI(HHGear); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1347 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1348 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1349 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^); |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1350 |
|
931 | 1351 |
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
|
1352 |
HHGear^.Message:= HHGear^.Message and not gm_Attack; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1353 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1354 |
Gear^.doStep:= @doStepParachuteWork; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1355 |
|
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1356 |
Gear^.Message:= HHGear^.Message; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1357 |
doStepParachuteWork(Gear) |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1358 |
end; |
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
928
diff
changeset
|
1359 |
|
263 | 1360 |
//////////////////////////////////////////////////////////////////////////////// |
1361 |
procedure doStepAirAttackWork(Gear: PGear); |
|
1507 | 1362 |
var i: Longint; |
263 | 1363 |
begin |
1364 |
AllInactive:= false; |
|
498 | 1365 |
Gear^.X:= Gear^.X + cAirPlaneSpeed * Gear^.Tag; |
1124 | 1366 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1367 |
if (Gear^.Health > 0)and(not (Gear^.X < Gear^.dX))and(Gear^.X < Gear^.dX + cAirPlaneSpeed) then |
1124 | 1368 |
begin |
1369 |
dec(Gear^.Health); |
|
1370 |
case Gear^.State of |
|
1371 |
0: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAirBomb, 0, cBombsSpeed * Gear^.Tag, _0, 0); |
|
1372 |
1: FollowGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtMine, 0, cBombsSpeed * Gear^.Tag, _0, 0); |
|
1586 | 1373 |
2: for i:= -19 to 19 do |
1374 |
FollowGear:= AddGear(hwRound(Gear^.X) + i div 3, hwRound(Gear^.Y), gtFlame, 0, _0_001 * i, _0, 0); |
|
1124 | 1375 |
end; |
1376 |
Gear^.dX:= Gear^.dX + int2hwFloat(30 * Gear^.Tag) |
|
1377 |
end; |
|
1378 |
||
1379 |
if (GameTicks and $3F) = 0 then |
|
1380 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0); |
|
1381 |
||
1753 | 1382 |
if (hwRound(Gear^.X) > (LAND_WIDTH+1024)) or (hwRound(Gear^.X) < -1024) then DeleteGear(Gear) |
263 | 1383 |
end; |
1384 |
||
1385 |
procedure doStepAirAttack(Gear: PGear); |
|
1386 |
begin |
|
1387 |
AllInactive:= false; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1388 |
|
1507 | 1389 |
if Gear^.X.QWordValue = 0 then |
1771 | 1390 |
begin |
1391 |
Gear^.Tag:= 1; |
|
1392 |
Gear^.X:= -_1024; |
|
1393 |
end |
|
1507 | 1394 |
else |
1771 | 1395 |
begin |
1507 | 1396 |
Gear^.Tag:= -1; |
1771 | 1397 |
Gear^.X:= int2hwFloat(LAND_WIDTH + 1024); |
1398 |
end; |
|
1507 | 1399 |
|
1784 | 1400 |
Gear^.Y:= int2hwFloat(topY-300); |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1401 |
Gear^.dX:= int2hwFloat(TargetPoint.X - 5 * Gear^.Tag * 15); |
357 | 1402 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
1403 |
if int2hwFloat(TargetPoint.Y) - Gear^.Y > _0 then |
1133 | 1404 |
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
|
1405 |
|
351 | 1406 |
Gear^.Health:= 6; |
801 | 1407 |
Gear^.doStep:= @doStepAirAttackWork; |
1669 | 1408 |
PlaySound(sndIncoming, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack) |
263 | 1409 |
end; |
1410 |
||
1411 |
//////////////////////////////////////////////////////////////////////////////// |
|
1412 |
||
1413 |
procedure doStepAirBomb(Gear: PGear); |
|
1414 |
begin |
|
1415 |
AllInactive:= false; |
|
1416 |
doStepFallingGear(Gear); |
|
351 | 1417 |
if (Gear^.State and gstCollision) <> 0 then |
1133 | 1418 |
begin |
1419 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
1420 |
DeleteGear(Gear); |
|
1421 |
exit |
|
1422 |
end; |
|
263 | 1423 |
if (GameTicks and $3F) = 0 then |
1133 | 1424 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0) |
211 | 1425 |
end; |
409 | 1426 |
|
1427 |
//////////////////////////////////////////////////////////////////////////////// |
|
1428 |
||
1429 |
procedure doStepGirder(Gear: PGear); |
|
415 | 1430 |
var HHGear: PGear; |
1915 | 1431 |
x, y, tx, ty: hwFloat; |
409 | 1432 |
begin |
1433 |
AllInactive:= false; |
|
415 | 1434 |
|
1435 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1915 | 1436 |
tx:= int2hwFloat(TargetPoint.X); |
1437 |
ty:= int2hwFloat(TargetPoint.Y); |
|
1438 |
x:= HHGear^.X; |
|
1439 |
y:= HHGear^.Y; |
|
1909 | 1440 |
|
1915 | 1441 |
if (Distance(tx - x, ty - y) > _256) or |
1442 |
not TryPlaceOnLand(TargetPoint.X - SpritesData[sprAmGirder].Width div 2, |
|
1443 |
TargetPoint.Y - SpritesData[sprAmGirder].Height div 2, |
|
520 | 1444 |
sprAmGirder, Gear^.State, true) then |
1133 | 1445 |
begin |
1914 | 1446 |
PlaySound(sndDenied, false, nil); |
1447 |
HHGear^.Message:= HHGear^.Message and not gm_Attack; |
|
1448 |
HHGear^.State:= HHGear^.State and not gstAttacking; |
|
1133 | 1449 |
HHGear^.State:= HHGear^.State or gstHHChooseTarget; |
1914 | 1450 |
isCursorVisible:= true; |
1451 |
DeleteGear(Gear) |
|
1133 | 1452 |
end |
1453 |
else begin |
|
1914 | 1454 |
PlaySound(sndPlaced, false, nil); |
1133 | 1455 |
DeleteGear(Gear); |
1909 | 1456 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
1914 | 1457 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^) |
1458 |
end; |
|
1459 |
||
1909 | 1460 |
HHGear^.State:= HHGear^.State and not (gstAttacking or gstAttacked); |
1461 |
HHGear^.Message:= HHGear^.Message and not gm_Attack; |
|
415 | 1462 |
TargetPoint.X:= NoPointX |
409 | 1463 |
end; |
520 | 1464 |
|
1465 |
//////////////////////////////////////////////////////////////////////////////// |
|
525 | 1466 |
procedure doStepTeleportAfter(Gear: PGear); |
912 | 1467 |
var HHGear: PGear; |
1468 |
begin |
|
1469 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1470 |
HHGear^.Y:= HHGear^.Y + HHGear^.dY; // hedgehog falling to collect cases |
|
1471 |
HHGear^.dY:= HHGear^.dY + cGravity; |
|
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
940
diff
changeset
|
1472 |
if TestCollisionYwithGear(HHGear, 1) |
1133 | 1473 |
or CheckGearDrowning(HHGear) then |
1474 |
begin |
|
1475 |
DeleteGear(Gear); |
|
1476 |
AfterAttack |
|
1477 |
end |
|
912 | 1478 |
end; |
1479 |
||
1480 |
procedure doStepTeleportAnim(Gear: PGear); |
|
525 | 1481 |
begin |
853 | 1482 |
inc(Gear^.Timer); |
1483 |
if Gear^.Timer = 65 then |
|
1484 |
begin |
|
1485 |
Gear^.Timer:= 0; |
|
1486 |
inc(Gear^.Pos); |
|
1487 |
if Gear^.Pos = 11 then |
|
912 | 1488 |
Gear^.doStep:= @doStepTeleportAfter |
853 | 1489 |
end |
525 | 1490 |
end; |
520 | 1491 |
|
1492 |
procedure doStepTeleport(Gear: PGear); |
|
1493 |
var HHGear: PGear; |
|
1494 |
begin |
|
1495 |
AllInactive:= false; |
|
1496 |
||
1497 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1498 |
if not TryPlaceOnLand(TargetPoint.X - SpritesData[sprHHTelepMask].Width div 2, |
|
1499 |
TargetPoint.Y - SpritesData[sprHHTelepMask].Height div 2, |
|
1500 |
sprHHTelepMask, 0, false) then |
|
853 | 1501 |
begin |
1502 |
HHGear^.Message:= HHGear^.Message and not gm_Attack; |
|
1503 |
HHGear^.State:= HHGear^.State and not gstAttacking; |
|
1504 |
HHGear^.State:= HHGear^.State or gstHHChooseTarget; |
|
1505 |
DeleteGear(Gear); |
|
1506 |
isCursorVisible:= true |
|
1507 |
end |
|
1508 |
else begin |
|
1509 |
DeleteCI(HHGear); |
|
1510 |
SetAllHHToActive; |
|
912 | 1511 |
Gear^.doStep:= @doStepTeleportAnim; |
853 | 1512 |
Gear^.X:= HHGear^.X; |
1513 |
Gear^.Y:= HHGear^.Y; |
|
1514 |
HHGear^.X:= int2hwFloat(TargetPoint.X); |
|
1515 |
HHGear^.Y:= int2hwFloat(TargetPoint.Y); |
|
1516 |
HHGear^.State:= HHGear^.State or gstMoving |
|
1517 |
end; |
|
520 | 1518 |
TargetPoint.X:= NoPointX |
1519 |
end; |
|
534 | 1520 |
|
1521 |
//////////////////////////////////////////////////////////////////////////////// |
|
1522 |
procedure doStepSwitcherWork(Gear: PGear); |
|
1523 |
var HHGear: PGear; |
|
1524 |
Msg, State: Longword; |
|
1525 |
begin |
|
1526 |
AllInactive:= false; |
|
1527 |
||
540 | 1528 |
if ((Gear^.Message and not gm_Switch) <> 0) or (TurnTimeLeft = 0) then |
1133 | 1529 |
begin |
1530 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1531 |
Msg:= Gear^.Message and not gm_Switch; |
|
1532 |
DeleteGear(Gear); |
|
1533 |
OnUsedAmmo(PHedgehog(HHGear^.Hedgehog)^); |
|
1534 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^); |
|
534 | 1535 |
|
1133 | 1536 |
HHGear:= CurrentHedgehog^.Gear; |
1537 |
ApplyAmmoChanges(PHedgehog(HHGear^.Hedgehog)^); |
|
1538 |
HHGear^.Message:= Msg; |
|
1539 |
exit |
|
1540 |
end; |
|
534 | 1541 |
|
1542 |
if (Gear^.Message and gm_Switch) <> 0 then |
|
1133 | 1543 |
begin |
1544 |
HHGear:= CurrentHedgehog^.Gear; |
|
1545 |
HHGear^.Message:= HHGear^.Message and not gm_Switch; |
|
1546 |
Gear^.Message:= Gear^.Message and not gm_Switch; |
|
1547 |
State:= HHGear^.State; |
|
1548 |
HHGear^.State:= 0; |
|
1549 |
HHGear^.Active:= false; |
|
1550 |
HHGear^.Z:= cHHZ; |
|
1551 |
RemoveGearFromList(HHGear); |
|
1552 |
InsertGearToList(HHGear); |
|
534 | 1553 |
|
1133 | 1554 |
repeat |
1555 |
CurrentTeam^.CurrHedgehog:= Succ(CurrentTeam^.CurrHedgehog) mod (CurrentTeam^.HedgehogsNumber); |
|
1556 |
until (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear <> nil); |
|
652 | 1557 |
|
1133 | 1558 |
CurrentHedgehog:= @CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog]; |
534 | 1559 |
|
1133 | 1560 |
HHGear:= CurrentHedgehog^.Gear; |
1561 |
HHGear^.State:= State; |
|
1562 |
HHGear^.Active:= true; |
|
1563 |
FollowGear:= HHGear; |
|
1564 |
HHGear^.Z:= cCurrHHZ; |
|
1565 |
RemoveGearFromList(HHGear); |
|
1566 |
InsertGearToList(HHGear); |
|
1567 |
Gear^.X:= HHGear^.X; |
|
1568 |
Gear^.Y:= HHGear^.Y |
|
1569 |
end; |
|
534 | 1570 |
end; |
1571 |
||
1572 |
procedure doStepSwitcher(Gear: PGear); |
|
1573 |
var HHGear: PGear; |
|
1574 |
begin |
|
1575 |
Gear^.doStep:= @doStepSwitcherWork; |
|
1576 |
||
1577 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1578 |
with HHGear^ do |
|
1133 | 1579 |
begin |
1580 |
State:= State and not gstAttacking; |
|
1581 |
Message:= Message and not gm_Attack |
|
1582 |
end |
|
534 | 1583 |
end; |
924 | 1584 |
|
1585 |
//////////////////////////////////////////////////////////////////////////////// |
|
1586 |
procedure doStepMortar(Gear: PGear); |
|
1587 |
var dX, dY: hwFloat; |
|
1588 |
i: LongInt; |
|
963 | 1589 |
dxn, dyn: boolean; |
924 | 1590 |
begin |
1591 |
AllInactive:= false; |
|
963 | 1592 |
dxn:= Gear^.dX.isNegative; |
1593 |
dyn:= Gear^.dY.isNegative; |
|
1594 |
||
924 | 1595 |
doStepFallingGear(Gear); |
1596 |
if (Gear^.State and gstCollision) <> 0 then |
|
1597 |
begin |
|
1598 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 20, EXPLAutoSound); |
|
963 | 1599 |
|
1600 |
Gear^.dX.isNegative:= not dxn; |
|
1601 |
Gear^.dY.isNegative:= not dyn; |
|
924 | 1602 |
for i:= 0 to 4 do |
1603 |
begin |
|
963 | 1604 |
dX:= Gear^.dX + (GetRandom - _0_5) * _0_03; |
1605 |
dY:= Gear^.dY + (GetRandom - _0_5) * _0_03; |
|
1273 | 1606 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtCluster, 0, dX, dY, 25); |
924 | 1607 |
end; |
1608 |
||
1609 |
DeleteGear(Gear); |
|
1610 |
exit |
|
1611 |
end; |
|
963 | 1612 |
|
924 | 1613 |
if (GameTicks and $3F) = 0 then |
1614 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0) |
|
1615 |
end; |
|
984 | 1616 |
|
1617 |
//////////////////////////////////////////////////////////////////////////////// |
|
1618 |
procedure doStepKamikazeWork(Gear: PGear); |
|
1619 |
const upd: Longword = 0; |
|
987 | 1620 |
var i: LongWord; |
984 | 1621 |
HHGear: PGear; |
1622 |
begin |
|
1623 |
AllInactive:= false; |
|
1624 |
||
1625 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1626 |
HHGear^.State:= HHGear^.State or gstNoDamage; |
|
1627 |
DeleteCI(HHGear); |
|
1628 |
||
1629 |
i:= 2; |
|
1630 |
repeat |
|
1631 |
Gear^.X:= Gear^.X + HHGear^.dX; |
|
1632 |
Gear^.Y:= Gear^.Y + HHGear^.dY; |
|
1633 |
HHGear^.X:= Gear^.X; |
|
1634 |
HHGear^.Y:= Gear^.Y; |
|
1635 |
||
1636 |
inc(Gear^.Damage, 2); |
|
1637 |
||
1200 | 1638 |
// if TestCollisionXwithGear(HHGear, hwSign(Gear^.dX)) |
1639 |
// or TestCollisionYwithGear(HHGear, hwSign(Gear^.dY)) then inc(Gear^.Damage, 3); |
|
984 | 1640 |
|
1641 |
dec(i) |
|
1642 |
until (i = 0) or (Gear^.Damage > Gear^.Health); |
|
1643 |
||
1644 |
inc(upd); |
|
1645 |
if upd > 3 then |
|
1646 |
begin |
|
987 | 1647 |
if Gear^.Health < 1500 then Gear^.Pos:= 2; |
1648 |
||
984 | 1649 |
AmmoShove(Gear, 30, 40); |
1650 |
||
1651 |
DrawTunnel(HHGear^.X - HHGear^.dX * 10, |
|
1200 | 1652 |
HHGear^.Y - _2 - HHGear^.dY * 10 + hwAbs(HHGear^.dY) * 2, |
984 | 1653 |
HHGear^.dX, |
1654 |
HHGear^.dY, |
|
1655 |
20 + cHHRadius * 2, |
|
1200 | 1656 |
cHHRadius * 2 + 6); |
984 | 1657 |
|
1658 |
upd:= 0 |
|
1659 |
end; |
|
1660 |
||
1661 |
if Gear^.Health < Gear^.Damage then |
|
1662 |
begin |
|
1663 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
1664 |
AfterAttack; |
|
1665 |
DeleteGear(Gear); |
|
1666 |
DeleteGear(HHGear); |
|
1667 |
end else |
|
1668 |
begin |
|
1669 |
dec(Gear^.Health, Gear^.Damage); |
|
1670 |
Gear^.Damage:= 0 |
|
1671 |
end |
|
1672 |
end; |
|
1673 |
||
987 | 1674 |
procedure doStepKamikazeIdle(Gear: PGear); |
1675 |
begin |
|
1676 |
AllInactive:= false; |
|
1677 |
dec(Gear^.Timer); |
|
1678 |
if Gear^.Timer = 0 then |
|
1679 |
begin |
|
1680 |
Gear^.Pos:= 1; |
|
1669 | 1681 |
PlaySound(sndKamikaze, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
987 | 1682 |
Gear^.doStep:= @doStepKamikazeWork |
1683 |
end |
|
1684 |
end; |
|
1685 |
||
984 | 1686 |
procedure doStepKamikaze(Gear: PGear); |
1687 |
var HHGear: PGear; |
|
1688 |
begin |
|
1689 |
AllInactive:= false; |
|
1690 |
||
1691 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1692 |
||
1693 |
HHGear^.dX:= Gear^.dX; |
|
1694 |
HHGear^.dY:= Gear^.dY; |
|
1695 |
||
1696 |
Gear^.dX:= SignAs(_0_45, Gear^.dX); |
|
1697 |
Gear^.dY:= - _0_9; |
|
1698 |
||
987 | 1699 |
Gear^.Timer:= 550; |
1700 |
||
1701 |
Gear^.doStep:= @doStepKamikazeIdle |
|
984 | 1702 |
end; |
1703 |
||
1103 | 1704 |
//////////////////////////////////////////////////////////////////////////////// |
1705 |
const cakeh = 27; |
|
1110 | 1706 |
cakeDmg = 75; |
1103 | 1707 |
var CakePoints: array[0..Pred(cakeh)] of record x, y: hwFloat; end; |
1708 |
CakeI: Longword; |
|
1709 |
||
1110 | 1710 |
procedure doStepCakeExpl(Gear: PGear); |
1711 |
begin |
|
1712 |
inc(Gear^.Tag); |
|
1713 |
if Gear^.Tag < 2250 then exit; |
|
1714 |
||
1715 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cakeDmg, EXPLAutoSound); |
|
1716 |
AfterAttack; |
|
1717 |
DeleteGear(Gear) |
|
1718 |
end; |
|
1719 |
||
1109 | 1720 |
procedure doStepCakeDown(Gear: PGear); |
1133 | 1721 |
var gi: PGear; |
1722 |
dmg: LongInt; |
|
1109 | 1723 |
begin |
1724 |
AllInactive:= false; |
|
1725 |
||
1726 |
inc(Gear^.Tag); |
|
1727 |
if Gear^.Tag < 100 then exit; |
|
1728 |
Gear^.Tag:= 0; |
|
1729 |
||
1730 |
if Gear^.Pos = 0 then |
|
1731 |
begin |
|
1110 | 1732 |
gi:= GearsList; |
1733 |
while gi <> nil do |
|
1734 |
begin |
|
1735 |
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
|
1736 |
if (dmg > 1) and (gi^.Kind = gtHedgehog) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
1737 |
if (CurrentHedgehog^.Gear = gi) and (not gi^.Invulnerable) then |
1867 | 1738 |
gi^.State:= gi^.State or gstLoser |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
1739 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
1740 |
gi^.State:= gi^.State or gstWinner; |
1110 | 1741 |
gi:= gi^.NextGear |
1742 |
end; |
|
1743 |
Gear^.doStep:= @doStepCakeExpl; |
|
1669 | 1744 |
PlaySound(sndCake, false, nil) |
1109 | 1745 |
end else dec(Gear^.Pos) |
1746 |
end; |
|
1747 |
||
1748 |
||
1089 | 1749 |
procedure doStepCakeWork(Gear: PGear); |
1750 |
const dirs: array[0..3] of TPoint = ((x: 0; y: -1), (x: 1; y: 0),(x: 0; y: 1),(x: -1; y: 0)); |
|
1751 |
var xx, yy, xxn, yyn: LongInt; |
|
1752 |
da: LongInt; |
|
1103 | 1753 |
tdx, tdy: hwFloat; |
1089 | 1754 |
|
1755 |
procedure PrevAngle; |
|
1756 |
begin |
|
1133 | 1757 |
Gear^.Angle:= (LongInt(Gear^.Angle) + 4 - dA) mod 4 |
1089 | 1758 |
end; |
1759 |
||
1760 |
procedure NextAngle; |
|
1761 |
begin |
|
1133 | 1762 |
Gear^.Angle:= (LongInt(Gear^.Angle) + 4 + dA) mod 4 |
1089 | 1763 |
end; |
1764 |
||
1088 | 1765 |
begin |
1089 | 1766 |
inc(Gear^.Tag); |
1108 | 1767 |
if Gear^.Tag < 7 then exit; |
1089 | 1768 |
|
1769 |
dA:= hwSign(Gear^.dX); |
|
1770 |
xx:= dirs[Gear^.Angle].x; |
|
1771 |
yy:= dirs[Gear^.Angle].y; |
|
1133 | 1772 |
xxn:= dirs[(LongInt(Gear^.Angle) + 4 + dA) mod 4].x; |
1773 |
yyn:= dirs[(LongInt(Gear^.Angle) + 4 + dA) mod 4].y; |
|
1089 | 1774 |
|
1775 |
if (xx = 0) then |
|
1776 |
if TestCollisionYwithGear(Gear, yy) then |
|
1777 |
PrevAngle |
|
1778 |
else begin |
|
1779 |
Gear^.Tag:= 0; |
|
1780 |
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
|
1781 |
if not TestCollisionXwithGear(Gear, xxn) then |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1782 |
begin |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1783 |
Gear^.X:= Gear^.X + int2hwFloat(xxn); |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1784 |
NextAngle |
cc5976f292f9
Cake makes a step after turn. This fixes cake stucking in air
unc0rr
parents:
1634
diff
changeset
|
1785 |
end; |
1089 | 1786 |
end; |
1787 |
||
1788 |
if (yy = 0) then |
|
1789 |
if TestCollisionXwithGear(Gear, xx) then |
|
1790 |
PrevAngle |
|
1791 |
else begin |
|
1792 |
Gear^.Tag:= 0; |
|
1793 |
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
|
1794 |
if not TestCollisionYwithGear(Gear, yyn) 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^.Y:= Gear^.Y + int2hwFloat(yyn); |
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 |
||
1103 | 1801 |
if Gear^.Tag = 0 then |
1802 |
begin |
|
1803 |
CakeI:= (CakeI + 1) mod cakeh; |
|
1804 |
tdx:= CakePoints[CakeI].x - Gear^.X; |
|
1805 |
tdy:= - CakePoints[CakeI].y + Gear^.Y; |
|
1806 |
CakePoints[CakeI].x:= Gear^.X; |
|
1807 |
CakePoints[CakeI].y:= Gear^.Y; |
|
1808 |
Gear^.DirAngle:= DxDy2Angle(tdx, tdy); |
|
1809 |
end; |
|
1810 |
||
1089 | 1811 |
dec(Gear^.Health); |
1090 | 1812 |
if (Gear^.Health = 0) or ((Gear^.Message and gm_Attack) <> 0) then |
1089 | 1813 |
begin |
1109 | 1814 |
FollowGear:= Gear; |
1815 |
Gear^.doStep:= @doStepCakeDown |
|
1089 | 1816 |
end |
1088 | 1817 |
end; |
1089 | 1818 |
|
1103 | 1819 |
procedure doStepCakeUp(Gear: PGear); |
1820 |
var i: Longword; |
|
1821 |
begin |
|
1822 |
AllInactive:= false; |
|
1823 |
||
1108 | 1824 |
inc(Gear^.Tag); |
1109 | 1825 |
if Gear^.Tag < 100 then exit; |
1108 | 1826 |
Gear^.Tag:= 0; |
1827 |
||
1109 | 1828 |
if Gear^.Pos = 6 then |
1103 | 1829 |
begin |
1830 |
for i:= 0 to Pred(cakeh) do |
|
1831 |
begin |
|
1832 |
CakePoints[i].x:= Gear^.X; |
|
1833 |
CakePoints[i].y:= Gear^.Y |
|
1834 |
end; |
|
1835 |
CakeI:= 0; |
|
1836 |
Gear^.doStep:= @doStepCakeWork |
|
1109 | 1837 |
end else inc(Gear^.Pos) |
1103 | 1838 |
end; |
1839 |
||
1089 | 1840 |
procedure doStepCakeFall(Gear: PGear); |
1841 |
begin |
|
1842 |
AllInactive:= false; |
|
1843 |
||
1844 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1845 |
if TestCollisionYwithGear(Gear, 1) then |
|
1103 | 1846 |
Gear^.doStep:= @doStepCakeUp |
1089 | 1847 |
else |
1848 |
begin |
|
1849 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1850 |
if CheckGearDrowning(Gear) then AfterAttack |
|
1851 |
end |
|
1852 |
end; |
|
1853 |
||
1854 |
procedure doStepCake(Gear: PGear); |
|
1855 |
var HHGear: PGear; |
|
1856 |
begin |
|
1857 |
AllInactive:= false; |
|
1858 |
||
1859 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
1103 | 1860 |
HHGear^.Message:= HHGear^.Message and (not gm_Attack); |
1089 | 1861 |
DeleteCI(HHGear); |
1862 |
||
1106 | 1863 |
FollowGear:= Gear; |
1864 |
||
1089 | 1865 |
Gear^.doStep:= @doStepCakeFall |
1866 |
end; |
|
1867 |
||
1259 | 1868 |
//////////////////////////////////////////////////////////////////////////////// |
1284 | 1869 |
procedure doStepSeductionWork(Gear: PGear); |
1870 |
var x, y: LongInt; |
|
1259 | 1871 |
begin |
1872 |
AllInactive:= false; |
|
1284 | 1873 |
|
1874 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1875 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1876 |
x:= hwRound(Gear^.X); |
|
1877 |
y:= hwRound(Gear^.Y); |
|
1259 | 1878 |
|
1753 | 1879 |
if ((y and LAND_HEIGHT_MASK) = 0) and ((x and LAND_WIDTH_MASK) = 0) then |
1284 | 1880 |
if (Land[y, x] <> 0) then |
1881 |
begin |
|
1882 |
Gear^.dX.isNegative:= not Gear^.dX.isNegative; |
|
1883 |
Gear^.dY.isNegative:= not Gear^.dY.isNegative; |
|
1286 | 1884 |
Gear^.dX:= Gear^.dX * _1_5; |
1885 |
Gear^.dY:= Gear^.dY * _1_5 - _0_3; |
|
1284 | 1886 |
AmmoShove(Gear, 0, 40); |
1286 | 1887 |
AfterAttack; |
1284 | 1888 |
DeleteGear(Gear) |
1889 |
end |
|
1890 |
else |
|
1891 |
else |
|
1286 | 1892 |
begin |
1893 |
AfterAttack; |
|
1284 | 1894 |
DeleteGear(Gear) |
1286 | 1895 |
end |
1896 |
end; |
|
1897 |
||
1898 |
procedure doStepSeductionWear(Gear: PGear); |
|
1899 |
begin |
|
1900 |
AllInactive:= false; |
|
1901 |
inc(Gear^.Timer); |
|
1902 |
if Gear^.Timer > 250 then |
|
1903 |
begin |
|
1904 |
Gear^.Timer:= 0; |
|
1388 | 1905 |
inc(Gear^.Pos); |
1906 |
if Gear^.Pos = 5 then |
|
1669 | 1907 |
PlaySound(sndYoohoo, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack) |
1286 | 1908 |
end; |
1367 | 1909 |
|
1910 |
if Gear^.Pos = 14 then |
|
1286 | 1911 |
Gear^.doStep:= @doStepSeductionWork |
1259 | 1912 |
end; |
1284 | 1913 |
|
1914 |
procedure doStepSeduction(Gear: PGear); |
|
1915 |
begin |
|
1916 |
AllInactive:= false; |
|
1917 |
DeleteCI(PHedgehog(Gear^.Hedgehog)^.Gear); |
|
1286 | 1918 |
Gear^.doStep:= @doStepSeductionWear |
1284 | 1919 |
end; |
1298 | 1920 |
|
1921 |
//////////////////////////////////////////////////////////////////////////////// |
|
1922 |
procedure doStepWaterUp(Gear: PGear); |
|
1923 |
var i: LongWord; |
|
1924 |
begin |
|
1925 |
AllInactive:= false; |
|
1926 |
||
1927 |
inc(Gear^.Timer); |
|
1928 |
if Gear^.Timer = 17 then |
|
1929 |
Gear^.Timer:= 0 |
|
1930 |
else |
|
1931 |
exit; |
|
1932 |
||
1933 |
if cWaterLine > 0 then |
|
1934 |
begin |
|
1935 |
dec(cWaterLine); |
|
1760 | 1936 |
for i:= 0 to LAND_WIDTH - 1 do |
1298 | 1937 |
Land[cWaterLine, i]:= 0; |
1938 |
SetAllToActive |
|
1939 |
end; |
|
1940 |
||
1941 |
inc(Gear^.Tag); |
|
1343 | 1942 |
if (Gear^.Tag = 47) or (cWaterLine = 0) then |
1298 | 1943 |
DeleteGear(Gear) |
1944 |
end; |
|
1573 | 1945 |
|
1946 |
//////////////////////////////////////////////////////////////////////////////// |
|
1590 | 1947 |
procedure doStepDrillDrilling(Gear: PGear); |
1633 | 1948 |
var t: PGearArray; |
1949 |
ox, oy: hwFloat; |
|
1573 | 1950 |
begin |
1590 | 1951 |
AllInactive:= false; |
1952 |
||
1633 | 1953 |
if (Gear^.Timer > 0) and ((Gear^.Timer mod 10) = 0) then |
1590 | 1954 |
begin |
1573 | 1955 |
ox:= Gear^.X; |
1956 |
oy:= Gear^.Y; |
|
1957 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1958 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
1959 |
DrawTunnel(oX, oY, Gear^.dX, Gear^.dY, 2, 6); |
|
1960 |
CheckGearDrowning(Gear); |
|
1590 | 1961 |
end; |
1962 |
||
1633 | 1963 |
t:= CheckGearsCollision(Gear); //fixes drill not exploding when touching HH bug |
1590 | 1964 |
if (Gear^.Timer = 0) |
1633 | 1965 |
or (t^.Count <> 0) |
1590 | 1966 |
or (not TestCollisionYWithGear(Gear, hwSign(Gear^.dY)) |
1784 | 1967 |
and not TestCollisionXWithGear(Gear, hwSign(Gear^.dX))) |
1968 |
or (Land[hwRound(Gear^.Y), hwRound(Gear^.X)] = COLOR_INDESTRUCTIBLE) then |
|
1590 | 1969 |
begin //out of time or exited ground |
1970 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
1971 |
DeleteGear(Gear); |
|
1972 |
exit |
|
1973 |
end; |
|
1974 |
||
1975 |
dec(Gear^.Timer); |
|
1573 | 1976 |
end; |
1977 |
||
1978 |
procedure doStepDrill(Gear: PGear); |
|
1590 | 1979 |
var t: PGearArray; |
1633 | 1980 |
oldDx, oldDy: hwFloat; |
1981 |
t2: hwFloat; |
|
1573 | 1982 |
begin |
1590 | 1983 |
AllInactive:= false; |
1573 | 1984 |
|
1590 | 1985 |
Gear^.dX:= Gear^.dX + cWindSpeed; |
1986 |
oldDx:= Gear^.dX; |
|
1987 |
oldDy:= Gear^.dY; |
|
1988 |
||
1989 |
doStepFallingGear(Gear); |
|
1990 |
||
1991 |
if (GameTicks and $3F) = 0 then |
|
1992 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0); |
|
1573 | 1993 |
|
1633 | 1994 |
if ((Gear^.State and gstCollision) <> 0) then begin //hit |
1590 | 1995 |
Gear^.dX:= oldDx; |
1996 |
Gear^.dY:= oldDy; |
|
1633 | 1997 |
|
1590 | 1998 |
t:= CheckGearsCollision(Gear); |
1633 | 1999 |
if (t^.Count = 0) then begin //hit the ground not the HH |
2000 |
t2 := _0_5 / Distance(Gear^.dX, Gear^.dY); |
|
2001 |
Gear^.dX:= Gear^.dX * t2; |
|
2002 |
Gear^.dY:= Gear^.dY * t2; |
|
2003 |
end else begin //explode right on contact with HH |
|
2004 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 50, EXPLAutoSound); |
|
2005 |
DeleteGear(Gear); |
|
2006 |
exit; |
|
2007 |
end; |
|
2008 |
||
1590 | 2009 |
Gear^.doStep:= @doStepDrillDrilling; |
1633 | 2010 |
dec(Gear^.Timer) |
1590 | 2011 |
end |
2012 |
end; |
|
1601 | 2013 |
|
1633 | 2014 |
//////////////////////////////////////////////////////////////////////////////// |
1601 | 2015 |
procedure doStepBallgunWork(Gear: PGear); |
2016 |
var HHGear: PGear; |
|
1630 | 2017 |
rx, ry: hwFloat; |
1601 | 2018 |
begin |
2019 |
AllInactive:= false; |
|
2020 |
dec(Gear^.Timer); |
|
2021 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2022 |
HedgehogChAngle(HHGear); |
|
2023 |
if (Gear^.Timer mod 100) = 0 then |
|
2024 |
begin |
|
1630 | 2025 |
rx:= rndSign(getRandom * _0_1); |
2026 |
ry:= rndSign(getRandom * _0_1); |
|
1631
6e313b3818ef
Remove debug stuff, ballgun 64but incompatibility fixed in previous revision
unc0rr
parents:
1630
diff
changeset
|
2027 |
|
1630 | 2028 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtBall, 0, |
2029 |
SignAs(AngleSin(HHGear^.Angle) * _0_8, HHGear^.dX) + rx, |
|
2030 |
AngleCos(HHGear^.Angle) * ( - _0_8) + ry, |
|
2031 |
0); |
|
1601 | 2032 |
|
1669 | 2033 |
PlaySound(sndGun, false, nil); |
1601 | 2034 |
end; |
2035 |
||
1643 | 2036 |
if (Gear^.Timer = 0) or (HHGear^.Damage <> 0) then |
1601 | 2037 |
begin |
2038 |
DeleteGear(Gear); |
|
1643 | 2039 |
AfterAttack |
2040 |
end |
|
1601 | 2041 |
end; |
2042 |
||
2043 |
procedure doStepBallgun(Gear: PGear); |
|
2044 |
var HHGear: PGear; |
|
2045 |
begin |
|
2046 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2047 |
HHGear^.Message:= HHGear^.Message and not (gm_Up or gm_Down); |
|
2048 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
|
2049 |
Gear^.doStep:= @doStepBallgunWork |
|
1633 | 2050 |
end; |
1689 | 2051 |
|
1696 | 2052 |
//////////////////////////////////////////////////////////////////////////////// |
1689 | 2053 |
procedure doStepRCPlaneWork(Gear: PGear); |
2054 |
const cAngleSpeed = 3; |
|
2055 |
var HHGear: PGear; |
|
2056 |
i: LongInt; |
|
2057 |
dX, dY: hwFloat; |
|
2058 |
fChanged: boolean; |
|
2059 |
trueAngle: Longword; |
|
2060 |
t: PGear; |
|
2061 |
begin |
|
2062 |
AllInactive:= false; |
|
2063 |
||
1696 | 2064 |
if Gear^.Timer > 0 then dec(Gear^.Timer); |
1689 | 2065 |
|
2066 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2067 |
FollowGear:= Gear; |
|
2068 |
||
2069 |
fChanged:= false; |
|
1696 | 2070 |
if ((HHGear^.State and gstHHDriven) = 0) or (Gear^.Timer = 0) then |
1689 | 2071 |
begin |
2072 |
fChanged:= true; |
|
1696 | 2073 |
if Gear^.Angle > 2048 then dec(Gear^.Angle) else |
2074 |
if Gear^.Angle < 2048 then inc(Gear^.Angle) else fChanged:= false |
|
2075 |
end |
|
2076 |
else |
|
2077 |
begin |
|
2078 |
if ((Gear^.Message and gm_Left) <> 0) then |
|
2079 |
begin |
|
2080 |
fChanged:= true; |
|
2081 |
Gear^.Angle:= (Gear^.Angle + (4096 - cAngleSpeed)) mod 4096 |
|
2082 |
end; |
|
1689 | 2083 |
|
1696 | 2084 |
if ((Gear^.Message and gm_Right) <> 0) then |
2085 |
begin |
|
2086 |
fChanged:= true; |
|
2087 |
Gear^.Angle:= (Gear^.Angle + cAngleSpeed) mod 4096 |
|
2088 |
end |
|
1689 | 2089 |
end; |
2090 |
||
2091 |
if fChanged then |
|
2092 |
begin |
|
2093 |
Gear^.dX.isNegative:= (Gear^.Angle > 2048); |
|
2094 |
if Gear^.dX.isNegative then |
|
2095 |
trueAngle:= 4096 - Gear^.Angle |
|
2096 |
else |
|
2097 |
trueAngle:= Gear^.Angle; |
|
2098 |
||
2099 |
Gear^.dX:= SignAs(AngleSin(trueAngle), Gear^.dX) * _0_25; |
|
2100 |
Gear^.dY:= AngleCos(trueAngle) * -_0_25; |
|
2101 |
end; |
|
2102 |
||
2103 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
2104 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
2105 |
||
2106 |
if (GameTicks and $FF) = 0 then |
|
1698 | 2107 |
if Gear^.Timer < 3500 then |
1696 | 2108 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtEvilTrace, 0, _0, _0, 0) |
2109 |
else |
|
2110 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtSmokeTrace, 0, _0, _0, 0); |
|
1689 | 2111 |
|
1696 | 2112 |
if ((HHGear^.Message and gm_Attack) <> 0) and (Gear^.Health <> 0) then |
1689 | 2113 |
begin |
2114 |
HHGear^.Message := HHGear^.Message and not gm_Attack; |
|
1708 | 2115 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAirBomb, 0, Gear^.dX * _0_5, Gear^.dY * _0_5, 0); |
1689 | 2116 |
dec(Gear^.Health) |
1712 | 2117 |
end; |
2118 |
||
2119 |
if ((HHGear^.Message and gm_LJump) <> 0) |
|
2120 |
and ((Gear^.State and gsttmpFlag) = 0) then |
|
2121 |
begin |
|
2122 |
Gear^.State:= Gear^.State or gsttmpFlag; |
|
2123 |
PauseMusic; |
|
2124 |
playSound(sndRideOfTheValkyries, false, nil); |
|
2125 |
end; |
|
1689 | 2126 |
|
2127 |
// pickup bonuses |
|
2128 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
2129 |
if t <> nil then |
|
2130 |
PickUp(HHGear, t); |
|
2131 |
||
2132 |
CheckCollision(Gear); |
|
2133 |
||
1712 | 2134 |
if ((Gear^.State and gstCollision) <> 0) |
2135 |
or CheckGearDrowning(Gear) then |
|
1689 | 2136 |
begin |
1712 | 2137 |
StopSound(sndRCPlane); |
2138 |
StopSound(sndRideOfTheValkyries); |
|
2139 |
ResumeMusic; |
|
2140 |
||
2141 |
if ((Gear^.State and gstCollision) <> 0) then |
|
1689 | 2142 |
begin |
1712 | 2143 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, EXPLAutoSound); |
1714 | 2144 |
for i:= 0 to 32 do |
1712 | 2145 |
begin |
1714 | 2146 |
dX:= AngleCos(i * 64) * _0_5 * (GetRandom + _1); |
2147 |
dY:= AngleSin(i * 64) * _0_5 * (GetRandom + _1); |
|
1712 | 2148 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, dY, 0); |
2149 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtFlame, 0, dX, -dY, 0); |
|
2150 |
end; |
|
2151 |
DeleteGear(Gear) |
|
1689 | 2152 |
end; |
1713 | 2153 |
|
1689 | 2154 |
AfterAttack; |
1713 | 2155 |
CurAmmoGear:= nil; |
1697 | 2156 |
TurnTimeLeft:= 14 * 125; |
1712 | 2157 |
HHGear^.Message:= 0; |
1697 | 2158 |
ParseCommand('/taunt '#1, true) |
2159 |
end |
|
1689 | 2160 |
end; |
2161 |
||
2162 |
procedure doStepRCPlane(Gear: PGear); |
|
2163 |
var HHGear: PGear; |
|
2164 |
begin |
|
2165 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2166 |
HHGear^.Message:= 0; |
|
2167 |
HHGear^.State:= HHGear^.State or gstNotKickable; |
|
2168 |
Gear^.Angle:= HHGear^.Angle; |
|
1696 | 2169 |
Gear^.Tag:= hwSign(HHGear^.dX); |
1689 | 2170 |
if HHGear^.dX.isNegative then Gear^.Angle:= 4096 - Gear^.Angle; |
2171 |
Gear^.doStep:= @doStepRCPlaneWork |
|
1712 | 2172 |
end; |