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