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