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