author | Urbertar@gmail.com |
Tue, 26 Feb 2013 11:00:09 +0200 | |
branch | icegun |
changeset 8582 | 08679e8186a3 |
parent 8576 | 286ebfcb3d97 |
child 8589 | 3bb505fc707e |
permissions | -rw-r--r-- |
6581 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
6700 | 3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
6581 | 4 |
* |
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 |
|
8 |
* |
|
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. |
|
13 |
* |
|
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 |
|
17 |
*) |
|
18 |
||
19 |
{$INCLUDE "options.inc"} |
|
20 |
||
21 |
unit uGearsHedgehog; |
|
22 |
interface |
|
23 |
uses uTypes; |
|
24 |
||
25 |
procedure doStepHedgehog(Gear: PGear); |
|
26 |
procedure AfterAttack; |
|
27 |
procedure HedgehogStep(Gear: PGear); |
|
28 |
procedure doStepHedgehogMoving(Gear: PGear); |
|
29 |
procedure HedgehogChAngle(HHGear: PGear); |
|
30 |
procedure PickUp(HH, Gear: PGear); |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
31 |
procedure AddPickup(HH: THedgehog; ammo: TAmmoType; cnt, X, Y: LongWord); |
8574 | 32 |
procedure CheckIce(Gear: PGear); inline; |
6581 | 33 |
|
34 |
implementation |
|
6992 | 35 |
uses uConsts, uVariables, uFloat, uAmmos, uSound, uCaptions, |
6581 | 36 |
uCommands, uLocale, uUtils, uVisualGears, uStats, uIO, uScript, |
37 |
uGearsList, uGears, uCollisions, uRandom, uStore, uTeams, |
|
38 |
uGearsUtils; |
|
39 |
||
7028 | 40 |
var GHStepTicks: LongWord = 0; |
41 |
||
6581 | 42 |
// Shouldn't more of this ammo switching stuff be moved to uAmmos ? |
43 |
function ChangeAmmo(HHGear: PGear): boolean; |
|
44 |
var slot, i: Longword; |
|
45 |
ammoidx: LongInt; |
|
7754 | 46 |
prevAmmo: TAmmoType; |
6581 | 47 |
begin |
48 |
ChangeAmmo:= false; |
|
49 |
slot:= HHGear^.MsgParam; |
|
50 |
||
51 |
with HHGear^.Hedgehog^ do |
|
52 |
begin |
|
53 |
HHGear^.Message:= HHGear^.Message and (not gmSlot); |
|
7754 | 54 |
prevAmmo:= CurAmmoType; |
6581 | 55 |
ammoidx:= 0; |
56 |
if ((HHGear^.State and (gstAttacking or gstAttacked)) <> 0) |
|
57 |
or ((MultiShootAttacks > 0) and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) = 0)) |
|
58 |
or ((HHGear^.State and gstHHDriven) = 0) then |
|
59 |
exit; |
|
60 |
ChangeAmmo:= true; |
|
61 |
||
62 |
while (ammoidx < cMaxSlotAmmoIndex) and (Ammo^[slot, ammoidx].AmmoType <> CurAmmoType) do |
|
63 |
inc(ammoidx); |
|
64 |
||
65 |
if ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) <> 0) and (MultiShootAttacks > 0) then |
|
66 |
OnUsedAmmo(HHGear^.Hedgehog^); |
|
67 |
||
68 |
MultiShootAttacks:= 0; |
|
69 |
HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump)); |
|
70 |
||
71 |
if Ammoz[CurAmmoType].Slot = slot then |
|
72 |
begin |
|
73 |
i:= 0; |
|
74 |
repeat |
|
75 |
inc(ammoidx); |
|
76 |
if (ammoidx > cMaxSlotAmmoIndex) then |
|
77 |
begin |
|
78 |
inc(i); |
|
79 |
CurAmmoType:= amNothing; |
|
80 |
ammoidx:= -1; |
|
81 |
//TryDo(i < 2, 'Engine bug: no ammo in current slot', true) |
|
82 |
end; |
|
83 |
until (i = 1) or ((Ammo^[slot, ammoidx].Count > 0) |
|
84 |
and (Team^.Clan^.TurnNumber > Ammoz[Ammo^[slot, ammoidx].AmmoType].SkipTurns)) |
|
85 |
||
86 |
end |
|
87 |
else |
|
88 |
begin |
|
89 |
i:= 0; |
|
90 |
// check whether there is ammo in slot |
|
91 |
while (i <= cMaxSlotAmmoIndex) and ((Ammo^[slot, i].Count = 0) |
|
92 |
or (Team^.Clan^.TurnNumber <= Ammoz[Ammo^[slot, i].AmmoType].SkipTurns)) |
|
93 |
do inc(i); |
|
94 |
||
95 |
if i <= cMaxSlotAmmoIndex then |
|
96 |
ammoidx:= i |
|
97 |
else ammoidx:= -1 |
|
98 |
end; |
|
99 |
if ammoidx >= 0 then |
|
100 |
CurAmmoType:= Ammo^[slot, ammoidx].AmmoType; |
|
7754 | 101 |
if (prevAmmo <> CurAmmoType) then |
102 |
begin |
|
103 |
if CurAmmoType = amKnife then |
|
104 |
LoadHedgehogHat(HHGear^.Hedgehog^, 'Reserved/chef') |
|
105 |
else if prevAmmo = amKnife then |
|
106 |
LoadHedgehogHat(HHGear^.Hedgehog^, Hat); |
|
8051
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
107 |
end; |
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
108 |
// Try again in the next slot |
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
109 |
if CurAmmoType = prevAmmo then |
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
110 |
begin |
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
111 |
if slot >= cMaxSlotIndex then slot:= 0 else inc(slot); |
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
112 |
HHGear^.MsgParam:= slot; |
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
113 |
ChangeAmmo(HHGear) |
7754 | 114 |
end |
6581 | 115 |
end |
116 |
end; |
|
117 |
||
118 |
procedure HHSetWeapon(HHGear: PGear); |
|
119 |
var t: LongInt; |
|
120 |
weap: TAmmoType; |
|
121 |
Hedgehog: PHedgehog; |
|
122 |
s: boolean; |
|
123 |
begin |
|
124 |
s:= false; |
|
125 |
||
126 |
weap:= TAmmoType(HHGear^.MsgParam); |
|
127 |
Hedgehog:= HHGear^.Hedgehog; |
|
128 |
||
129 |
if Hedgehog^.Team^.Clan^.TurnNumber <= Ammoz[weap].SkipTurns then |
|
130 |
exit; // weapon is not activated yet |
|
131 |
||
132 |
HHGear^.MsgParam:= Ammoz[weap].Slot; |
|
133 |
||
134 |
t:= cMaxSlotAmmoIndex; |
|
135 |
||
136 |
HHGear^.Message:= HHGear^.Message and (not gmWeapon); |
|
137 |
||
138 |
with Hedgehog^ do |
|
139 |
while (CurAmmoType <> weap) and (t >= 0) do |
|
140 |
begin |
|
141 |
s:= ChangeAmmo(HHGear); |
|
142 |
dec(t) |
|
143 |
end; |
|
144 |
||
145 |
if s then |
|
146 |
ApplyAmmoChanges(HHGear^.Hedgehog^) |
|
147 |
end; |
|
148 |
||
149 |
procedure HHSetTimer(Gear: PGear); |
|
150 |
var CurWeapon: PAmmo; |
|
151 |
color: LongWord; |
|
152 |
begin |
|
153 |
Gear^.Message:= Gear^.Message and (not gmTimer); |
|
6924 | 154 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 155 |
with Gear^.Hedgehog^ do |
156 |
if ((Gear^.Message and gmPrecise) <> 0) and ((CurWeapon^.Propz and ammoprop_SetBounce) <> 0) then |
|
157 |
begin |
|
158 |
color:= Gear^.Hedgehog^.Team^.Clan^.Color; |
|
159 |
case Gear^.MsgParam of |
|
160 |
1: begin |
|
7069 | 161 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce1]), color, capgrpAmmostate); |
6581 | 162 |
CurWeapon^.Bounciness:= 350; |
163 |
end; |
|
164 |
2: begin |
|
7069 | 165 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce2]), color, capgrpAmmostate); |
6581 | 166 |
CurWeapon^.Bounciness:= 700; |
167 |
end; |
|
168 |
3: begin |
|
7069 | 169 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce3]), color, capgrpAmmostate); |
6581 | 170 |
CurWeapon^.Bounciness:= 1000; |
171 |
end; |
|
172 |
4: begin |
|
7069 | 173 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce4]), color, capgrpAmmostate); |
6581 | 174 |
CurWeapon^.Bounciness:= 2000; |
175 |
end; |
|
176 |
5: begin |
|
7069 | 177 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce5]), color, capgrpAmmostate); |
6581 | 178 |
CurWeapon^.Bounciness:= 4000; |
179 |
end |
|
180 |
end |
|
181 |
end |
|
182 |
else if (CurWeapon^.Propz and ammoprop_Timerable) <> 0 then |
|
183 |
begin |
|
184 |
CurWeapon^.Timer:= 1000 * Gear^.MsgParam; |
|
185 |
with CurrentTeam^ do |
|
186 |
ApplyAmmoChanges(Hedgehogs[CurrHedgehog]); |
|
187 |
end; |
|
188 |
end; |
|
189 |
||
190 |
||
191 |
procedure Attack(Gear: PGear); |
|
192 |
var xx, yy, newDx, newDy, lx, ly: hwFloat; |
|
193 |
speech: PVisualGear; |
|
194 |
newGear: PGear; |
|
195 |
CurWeapon: PAmmo; |
|
196 |
altUse: boolean; |
|
197 |
elastic: hwFloat; |
|
198 |
begin |
|
199 |
newGear:= nil; |
|
200 |
bShowFinger:= false; |
|
6924 | 201 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 202 |
with Gear^, |
203 |
Gear^.Hedgehog^ do |
|
204 |
begin |
|
205 |
if ((State and gstHHDriven) <> 0) and ((State and (gstAttacked or gstHHChooseTarget)) = 0) and (((State and gstMoving) = 0) |
|
206 |
or (Power > 0) |
|
207 |
or (CurAmmoType = amTeleport) |
|
208 |
or |
|
209 |
// Allow attacks while moving on ammo with AltAttack |
|
210 |
((CurAmmoGear <> nil) and ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0)) |
|
211 |
or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackInMove) <> 0)) |
|
212 |
and ((TargetPoint.X <> NoPointX) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) = 0)) then |
|
213 |
begin |
|
214 |
State:= State or gstAttacking; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
215 |
if (Power = cMaxPower) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) = 0) then |
6581 | 216 |
Message:= Message and (not gmAttack) |
217 |
else |
|
218 |
begin |
|
219 |
if Power = 0 then |
|
220 |
begin |
|
221 |
AttackBar:= CurrentTeam^.AttackBar; |
|
222 |
PlaySound(sndThrowPowerUp) |
|
223 |
end; |
|
224 |
inc(Power) |
|
225 |
end; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
226 |
if ((Message and gmAttack) <> 0) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
227 |
exit; |
6581 | 228 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
229 |
if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) <> 0 then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
230 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
231 |
StopSound(sndThrowPowerUp); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
232 |
PlaySound(sndThrowRelease); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
233 |
end; |
6581 | 234 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
235 |
xx:= SignAs(AngleSin(Angle), dX); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
236 |
yy:= -AngleCos(Angle); |
6581 | 237 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
238 |
lx:= X + int2hwfloat(round(GetLaunchX(CurAmmoType, hwSign(dX), Angle))); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
239 |
ly:= Y + int2hwfloat(round(GetLaunchY(CurAmmoType, Angle))); |
6581 | 240 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
241 |
if ((Gear^.State and gstHHHJump) <> 0) and (not cArtillery) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
242 |
xx:= - xx; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
243 |
if Ammoz[CurAmmoType].Ammo.AttackVoice <> sndNone then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
244 |
AddVoice(Ammoz[CurAmmoType].Ammo.AttackVoice, CurrentTeam^.voicepack); |
6581 | 245 |
|
246 |
// Initiating alt attack |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
247 |
if (CurAmmoGear <> nil) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
248 |
and ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
249 |
and ((Gear^.Message and gmLJump) <> 0) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
250 |
and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
251 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
252 |
newDx:= dX; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
253 |
newDy:= dY; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
254 |
altUse:= true |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
255 |
end |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
256 |
else |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
257 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
258 |
newDx:= xx*Power/cPowerDivisor; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
259 |
newDy:= yy*Power/cPowerDivisor; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
260 |
altUse:= false |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
261 |
end; |
6581 | 262 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
263 |
case CurAmmoType of |
6581 | 264 |
amGrenade: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGrenade, 0, newDx, newDy, CurWeapon^.Timer); |
265 |
amMolotov: newGear:= AddGear(hwRound(lx), hwRound(ly), gtMolotov, 0, newDx, newDy, 0); |
|
266 |
amClusterBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtClusterBomb, 0, newDx, newDy, CurWeapon^.Timer); |
|
267 |
amGasBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGasBomb, 0, newDx, newDy, CurWeapon^.Timer); |
|
268 |
amBazooka: newGear:= AddGear(hwRound(lx), hwRound(ly), gtShell, 0, newDx, newDy, 0); |
|
269 |
amSnowball: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSnowball, 0, newDx, newDy, 0); |
|
270 |
amBee: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBee, 0, newDx, newDy, 0); |
|
271 |
amShotgun: begin |
|
272 |
PlaySound(sndShotgunReload); |
|
273 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtShotgunShot, 0, xx * _0_5, yy * _0_5, 0); |
|
274 |
end; |
|
275 |
amPickHammer: newGear:= AddGear(hwRound(lx), hwRound(ly) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
|
276 |
amSkip: ParseCommand('/skip', true); |
|
277 |
amRope: newGear:= AddGear(hwRound(lx), hwRound(ly), gtRope, 0, xx, yy, 0); |
|
7602
a620319d377e
Fix throwing things off rope, also make throwing things a bit more generic and gear density dependent (so you can throw mines further, and also throw dynamite a little).
nemo
parents:
7598
diff
changeset
|
278 |
amMine: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtMine, gstWait, SignAs(_0_02, dX), _0, 3000); |
6581 | 279 |
amSMine: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSMine, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
7754 | 280 |
amKnife: begin |
281 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtKnife, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
282 |
newGear^.State:= newGear^.State or gstMoving; |
|
8494
53b91a602955
Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents:
8493
diff
changeset
|
283 |
newGear^.Radius:= 4 // temporarily shrink so it doesn't instantly embed in the ground |
7754 | 284 |
end; |
6581 | 285 |
amDEagle: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
286 |
amSineGun: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtSineGunShot, 0, xx * _0_5, yy * _0_5, 0); |
|
287 |
amPortalGun: begin |
|
288 |
newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtPortal, 0, xx * _0_6, yy * _0_6, |
|
289 |
// set selected color |
|
290 |
CurWeapon^.Pos); |
|
291 |
end; |
|
292 |
amSniperRifle: begin |
|
293 |
PlaySound(sndSniperReload); |
|
294 |
newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtSniperRifleShot, 0, xx * _0_5, yy * _0_5, 0); |
|
295 |
end; |
|
296 |
amDynamite: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000); |
|
297 |
amFirePunch: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtFirePunch, 0, xx, _0, 0); |
|
298 |
amWhip: begin |
|
299 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtWhip, 0, SignAs(_1, dX), - _0_8, 0); |
|
300 |
PlaySound(sndWhipCrack) |
|
301 |
end; |
|
302 |
amHammer: begin |
|
303 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtHammer, 0, SignAs(_1, dX), - _0_8, 0); |
|
304 |
PlaySound(sndWhack) |
|
305 |
end; |
|
306 |
amBaseballBat: begin |
|
307 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtShover, gsttmpFlag, xx * _0_5, yy * _0_5, 0); |
|
308 |
PlaySound(sndBaseballBat) // TODO: Only play if something is hit? |
|
309 |
end; |
|
310 |
amParachute: begin |
|
311 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtParachute, 0, _0, _0, 0); |
|
312 |
PlaySound(sndParachute) |
|
313 |
end; |
|
314 |
// we save CurWeapon^.Pos (in this case: cursor direction) by using it as (otherwise irrelevant) X value of the new gear. |
|
315 |
amAirAttack: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
316 |
amMineStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
317 |
amDrillStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 3, _0, _0, CurWeapon^.Timer); |
|
318 |
amNapalm: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 2, _0, _0, 0); |
|
319 |
amBlowTorch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
320 |
amGirder: newGear:= AddGear(0, 0, gtGirder, CurWeapon^.Pos, _0, _0, 0); |
|
321 |
amTeleport: newGear:= AddGear(CurWeapon^.Pos, 0, gtTeleport, 0, _0, _0, 0); |
|
322 |
amSwitch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSwitcher, 0, _0, _0, 0); |
|
323 |
amMortar: begin |
|
324 |
playSound(sndMortar); |
|
325 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtMortar, 0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0); |
|
326 |
end; |
|
327 |
amRCPlane: begin |
|
328 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtRCPlane, 0, xx * cMaxPower / cPowerDivisor / 4, yy * cMaxPower / cPowerDivisor / 4, 0); |
|
7053 | 329 |
newGear^.SoundChannel:= LoopSound(sndRCPlane) |
6581 | 330 |
end; |
331 |
amKamikaze: newGear:= AddGear(hwRound(lx), hwRound(ly), gtKamikaze, 0, xx * _0_5, yy * _0_5, 0); |
|
7832 | 332 |
amCake: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 3, hwRound(ly), gtCake, 0, SignAs(cLittle, xx), _0, 0); |
6581 | 333 |
amSeduction: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSeduction, 0, _0, _0, 0); |
334 |
amWatermelon: newGear:= AddGear(hwRound(lx), hwRound(ly), gtWatermelon, 0, newDx, newDy, CurWeapon^.Timer); |
|
335 |
amHellishBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtHellishBomb, 0, newDx, newDy, 0); |
|
336 |
amDrill: newGear:= AddGear(hwRound(lx), hwRound(ly), gtDrill, 0, newDx, newDy, 0); |
|
337 |
amBallgun: newGear:= AddGear(hwRound(X), hwRound(Y), gtBallgun, 0, xx * _0_5, yy * _0_5, 0); |
|
338 |
amJetpack: newGear:= AddGear(hwRound(lx), hwRound(ly), gtJetpack, 0, _0, _0, 0); |
|
339 |
amBirdy: begin |
|
340 |
PlaySound(sndWhistle); |
|
341 |
newGear:= AddGear(hwRound(lx), hwRound(ly) - 32, gtBirdy, 0, _0, _0, 0); |
|
342 |
end; |
|
343 |
amLowGravity: begin |
|
344 |
PlaySound(sndLowGravity); |
|
345 |
cGravity:= cMaxWindSpeed; |
|
346 |
cGravityf:= 0.00025 |
|
347 |
end; |
|
348 |
amExtraDamage: begin |
|
349 |
PlaySound(sndHellishImpact4); |
|
350 |
cDamageModifier:= _1_5 |
|
351 |
end; |
|
352 |
amInvulnerable: Invulnerable:= true; |
|
353 |
amExtraTime: begin |
|
354 |
PlaySound(sndSwitchHog); |
|
355 |
TurnTimeLeft:= TurnTimeLeft + 30000 |
|
356 |
end; |
|
357 |
amLaserSight: cLaserSighting:= true; |
|
358 |
amVampiric: begin |
|
7053 | 359 |
PlaySoundV(sndOw1, Team^.voicepack); |
6581 | 360 |
cVampiric:= true; |
361 |
end; |
|
362 |
amPiano: begin |
|
363 |
// Tuck the hedgehog away until the piano attack is completed |
|
364 |
Unplaced:= true; |
|
365 |
X:= _0; |
|
366 |
Y:= _0; |
|
8414
c1ac0b64315e
Start piano higher (piano on maps that matched land_height was really weird before). Experiment w/ trying to make birdy shrink into distance to avoid odd birdy vanishes if tracking it.
nemo
parents:
8161
diff
changeset
|
367 |
newGear:= AddGear(TargetPoint.X, -1024, gtPiano, 0, _0, _0, 0); |
6581 | 368 |
PauseMusic |
369 |
end; |
|
370 |
amFlamethrower: newGear:= AddGear(hwRound(X), hwRound(Y), gtFlamethrower, 0, xx * _0_5, yy * _0_5, 0); |
|
371 |
amLandGun: newGear:= AddGear(hwRound(X), hwRound(Y), gtLandGun, 0, xx * _0_5, yy * _0_5, 0); |
|
372 |
amResurrector: begin |
|
373 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtResurrector, 0, _0, _0, 0); |
|
374 |
newGear^.SoundChannel := LoopSound(sndResurrector); |
|
375 |
end; |
|
8161 | 376 |
//amStructure: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtStructure, gstWait, SignAs(_0_02, dX), _0, 3000); |
6581 | 377 |
amTardis: newGear:= AddGear(hwRound(X), hwRound(Y), gtTardis, 0, _0, _0, 5000); |
8557 | 378 |
amIceGun: begin |
379 |
newGear:= AddGear(hwRound(X), hwRound(Y), gtIceGun, 0, _0, _0, 0); |
|
380 |
newGear^.radius := 8; |
|
381 |
end; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
382 |
end; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
383 |
if altUse and (newGear <> nil) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
384 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
385 |
newGear^.dX:= newDx / newGear^.Density; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
386 |
newGear^.dY:= newDY / newGear^.Density |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
387 |
end; |
6581 | 388 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
389 |
case CurAmmoType of |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
390 |
amGrenade, amMolotov, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
391 |
amClusterBomb, amGasBomb, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
392 |
amBazooka, amSnowball, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
393 |
amBee, amSMine, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
394 |
amMortar, amWatermelon, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
395 |
amHellishBomb, amDrill: FollowGear:= newGear; |
6581 | 396 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
397 |
amShotgun, amPickHammer, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
398 |
amRope, amDEagle, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
399 |
amSineGun, amSniperRifle, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
400 |
amFirePunch, amWhip, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
401 |
amHammer, amBaseballBat, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
402 |
amParachute, amBlowTorch, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
403 |
amGirder, amTeleport, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
404 |
amSwitch, amRCPlane, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
405 |
amKamikaze, amCake, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
406 |
amSeduction, amBallgun, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
407 |
amJetpack, amBirdy, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
408 |
amFlamethrower, amLandGun, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
409 |
amResurrector, //amStructure, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
410 |
amTardis, amPiano, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
411 |
amIceGun: CurAmmoGear:= newGear; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
412 |
end; |
6581 | 413 |
|
414 |
if ((CurAmmoType = amMine) or (CurAmmoType = amSMine)) and (GameFlags and gfInfAttack <> 0) then |
|
415 |
newGear^.FlightTime:= GameTicks + 1000 |
|
416 |
else if CurAmmoType = amDrill then |
|
417 |
newGear^.FlightTime:= GameTicks + 250; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
418 |
if Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NeedTarget <> 0 then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
419 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
420 |
newGear^.Target.X:= TargetPoint.X; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
421 |
newGear^.Target.Y:= TargetPoint.Y |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
422 |
end; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
423 |
if (newGear <> nil) and (newGear^.CollisionMask and $80 <> 0) then newGear^.CollisionMask:= newGear^.CollisionMask and (not $80); |
6581 | 424 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
425 |
// Clear FollowGear if using on a rope/parachute/saucer etc so focus stays with the hog's movement |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
426 |
if altUse then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
427 |
FollowGear:= nil; |
6581 | 428 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
429 |
if (newGear <> nil) and ((Ammoz[newGear^.AmmoType].Ammo.Propz and ammoprop_SetBounce) <> 0) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
430 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
431 |
elastic:= int2hwfloat(CurWeapon^.Bounciness) / _1000; |
6581 | 432 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
433 |
if elastic < _1 then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
434 |
newGear^.Elasticity:= newGear^.Elasticity * elastic |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
435 |
else if elastic > _1 then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
436 |
newGear^.Elasticity:= _1 - ((_1-newGear^.Elasticity) / elastic); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
437 |
(* Experimented with friction modifier. Didn't seem helpful |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
438 |
fric:= int2hwfloat(CurWeapon^.Bounciness) / _250; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
439 |
if fric < _1 then newGear^.Friction:= newGear^.Friction * fric |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
440 |
else if fric > _1 then newGear^.Friction:= _1 - ((_1-newGear^.Friction) / fric)*) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
441 |
end; |
6581 | 442 |
|
443 |
||
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
444 |
uStats.AmmoUsed(CurAmmoType); |
6581 | 445 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
446 |
if not (SpeechText = '') then |
6581 | 447 |
begin |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
448 |
speech:= AddVisualGear(0, 0, vgtSpeechBubble); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
449 |
if speech <> nil then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
450 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
451 |
speech^.Text:= SpeechText; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
452 |
speech^.Hedgehog:= Gear^.Hedgehog; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
453 |
speech^.FrameTicks:= SpeechType; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
454 |
end; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
455 |
SpeechText:= '' |
6581 | 456 |
end; |
457 |
||
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
458 |
Power:= 0; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
459 |
if (CurAmmoGear <> nil) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
460 |
and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) = 0){check for dropping ammo from rope} then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
461 |
begin |
8493
1a84f8b08ca7
oops. more specific ammo tests. maybe could use a few more properties
nemo
parents:
8492
diff
changeset
|
462 |
if CurAmmoType = amRope then Message:= Message or gmAttack; |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
463 |
CurAmmoGear^.Message:= Message |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
464 |
end |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
465 |
else |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
466 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
467 |
if not CurrentTeam^.ExtDriven |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
468 |
and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) <> 0) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
469 |
SendIPC(_S'a'); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
470 |
AfterAttack; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
471 |
end |
6581 | 472 |
end |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
473 |
else |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
474 |
Message:= Message and (not gmAttack); |
6581 | 475 |
end; |
476 |
TargetPoint.X := NoPointX; |
|
477 |
ScriptCall('onHogAttack'); |
|
478 |
end; |
|
479 |
||
480 |
procedure AfterAttack; |
|
481 |
var s: shortstring; |
|
482 |
a: TAmmoType; |
|
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
483 |
HHGear: PGear; |
6581 | 484 |
begin |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
485 |
with CurrentHedgehog^ do |
6581 | 486 |
begin |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
487 |
HHGear:= Gear; |
6581 | 488 |
a:= CurAmmoType; |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
489 |
if HHGear <> nil then HHGear^.State:= HHGear^.State and (not gstAttacking); |
6581 | 490 |
if (Ammoz[a].Ammo.Propz and ammoprop_Effect) = 0 then |
491 |
begin |
|
492 |
Inc(MultiShootAttacks); |
|
493 |
||
494 |
if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks) then |
|
495 |
begin |
|
496 |
s:= inttostr(Ammoz[a].Ammo.NumPerTurn - MultiShootAttacks + 1); |
|
497 |
AddCaption(format(trmsg[sidRemaining], s), cWhiteColor, capgrpAmmostate); |
|
498 |
end; |
|
499 |
||
500 |
if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks) |
|
501 |
or ((GameFlags and gfMultiWeapon) <> 0) then |
|
502 |
begin |
|
503 |
isInMultiShoot:= true |
|
504 |
end |
|
505 |
else |
|
506 |
begin |
|
507 |
OnUsedAmmo(CurrentHedgehog^); |
|
508 |
if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (((GameFlags and gfInfAttack) = 0) or PlacingHogs) then |
|
509 |
begin |
|
510 |
if TagTurnTimeLeft = 0 then |
|
511 |
TagTurnTimeLeft:= TurnTimeLeft; |
|
512 |
TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 100; |
|
513 |
end; |
|
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
514 |
if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (HHGear <> nil) then |
7462 | 515 |
HHGear^.State:= HHGear^.State or gstAttacked; |
6581 | 516 |
if (Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) <> 0 then |
517 |
ApplyAmmoChanges(CurrentHedgehog^) |
|
518 |
end; |
|
519 |
end |
|
520 |
else |
|
521 |
begin |
|
522 |
OnUsedAmmo(CurrentHedgehog^); |
|
523 |
ApplyAmmoChanges(CurrentHedgehog^); |
|
524 |
end; |
|
525 |
AttackBar:= 0 |
|
526 |
end |
|
527 |
end; |
|
528 |
||
529 |
//////////////////////////////////////////////////////////////////////////////// |
|
530 |
procedure doStepHedgehogDead(Gear: PGear); |
|
531 |
const frametime = 200; |
|
532 |
timertime = frametime * 6; |
|
533 |
begin |
|
534 |
if Gear^.Hedgehog^.Unplaced then |
|
535 |
exit; |
|
536 |
if Gear^.Timer > 1 then |
|
537 |
begin |
|
538 |
AllInactive:= false; |
|
539 |
dec(Gear^.Timer); |
|
540 |
if (Gear^.Timer mod frametime) = 0 then |
|
541 |
inc(Gear^.Pos) |
|
542 |
end |
|
543 |
else if Gear^.Timer = 1 then |
|
544 |
begin |
|
545 |
Gear^.State:= Gear^.State or gstNoDamage; |
|
546 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, CurrentHedgehog, EXPLAutoSound); |
|
547 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
548 |
DeleteGear(Gear); |
|
549 |
SetAllToActive |
|
550 |
end |
|
551 |
else // Gear^.Timer = 0 |
|
552 |
begin |
|
553 |
AllInactive:= false; |
|
554 |
Gear^.Z:= cCurrHHZ; |
|
555 |
RemoveGearFromList(Gear); |
|
556 |
InsertGearToList(Gear); |
|
7053 | 557 |
PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 558 |
Gear^.Pos:= 0; |
559 |
Gear^.Timer:= timertime |
|
560 |
end |
|
561 |
end; |
|
562 |
||
563 |
//////////////////////////////////////////////////////////////////////////////// |
|
564 |
procedure doStepHedgehogGone(Gear: PGear); |
|
565 |
const frametime = 65; |
|
566 |
timertime = frametime * 11; |
|
567 |
begin |
|
568 |
if Gear^.Hedgehog^.Unplaced then |
|
569 |
exit; |
|
570 |
if Gear^.Timer > 1 then |
|
571 |
begin |
|
572 |
AllInactive:= false; |
|
573 |
dec(Gear^.Timer); |
|
574 |
if (Gear^.Timer mod frametime) = 0 then |
|
575 |
inc(Gear^.Pos) |
|
576 |
end |
|
577 |
else |
|
578 |
if Gear^.Timer = 1 then |
|
579 |
begin |
|
580 |
DeleteGear(Gear); |
|
581 |
SetAllToActive |
|
582 |
end |
|
583 |
else // Gear^.Timer = 0 |
|
584 |
begin |
|
585 |
AllInactive:= false; |
|
586 |
Gear^.Z:= cCurrHHZ; |
|
587 |
RemoveGearFromList(Gear); |
|
588 |
InsertGearToList(Gear); |
|
7053 | 589 |
PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 590 |
PlaySound(sndWarp); |
591 |
Gear^.Pos:= 0; |
|
592 |
Gear^.Timer:= timertime |
|
593 |
end |
|
594 |
end; |
|
595 |
||
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
596 |
procedure AddPickup(HH: THedgehog; ammo: TAmmoType; cnt, X, Y: LongWord); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
597 |
var s: shortstring; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
598 |
vga: PVisualGear; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
599 |
begin |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
600 |
if cnt <> 0 then AddAmmo(HH, ammo, cnt) |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
601 |
else AddAmmo(HH, ammo); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
602 |
|
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
603 |
if (not (HH.Team^.ExtDriven |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
604 |
or (HH.BotLevel > 0))) |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
605 |
or (HH.Team^.Clan^.ClanIndex = LocalClan) |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
606 |
or (GameType = gmtDemo) then |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
607 |
begin |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
608 |
if cnt <> 0 then |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
609 |
s:= trammo[Ammoz[ammo].NameId] + ' (+' + IntToStr(cnt) + ')' |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
610 |
else |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
611 |
s:= trammo[Ammoz[ammo].NameId] + ' (+' + IntToStr(Ammoz[ammo].NumberInCase) + ')'; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
612 |
AddCaption(s, HH.Team^.Clan^.Color, capgrpAmmoinfo); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
613 |
|
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
614 |
// show ammo icon |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
615 |
vga:= AddVisualGear(X, Y, vgtAmmo); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
616 |
if vga <> nil then |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
617 |
vga^.Frame:= Longword(ammo); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
618 |
end; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
619 |
end; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
620 |
|
6581 | 621 |
//////////////////////////////////////////////////////////////////////////////// |
622 |
procedure PickUp(HH, Gear: PGear); |
|
623 |
var s: shortstring; |
|
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
624 |
i: LongInt; |
6581 | 625 |
vga: PVisualGear; |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
626 |
ag, gi: PGear; |
6581 | 627 |
begin |
628 |
Gear^.Message:= gmDestroy; |
|
629 |
if (Gear^.Pos and posCaseExplode) <> 0 then |
|
630 |
if (Gear^.Pos and posCasePoison) <> 0 then |
|
631 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned) |
|
632 |
else |
|
633 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound) |
|
634 |
else if (Gear^.Pos and posCasePoison) <> 0 then |
|
635 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned + EXPLNoDamage) |
|
636 |
else |
|
637 |
case Gear^.Pos of |
|
638 |
posCaseUtility, |
|
639 |
posCaseAmmo: begin |
|
7597
1ef520fea21c
make cheating a bit easier (mikade insisted). Also, try flipping dust for a bit more variety.
nemo
parents:
7462
diff
changeset
|
640 |
PlaySound(sndShotgunReload); |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
641 |
if Gear^.AmmoType <> amNothing then |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
642 |
begin |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
643 |
AddPickup(HH^.Hedgehog^, Gear^.AmmoType, Gear^.Power, hwRound(Gear^.X), hwRound(Gear^.Y)); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
644 |
end |
6581 | 645 |
else |
646 |
begin |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
647 |
// Add spawning here... |
7409 | 648 |
AddRandomness(GameTicks); |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
649 |
|
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
650 |
gi := GearsList; |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
651 |
while gi <> nil do |
7391
588eabb4b384
Apparently order of multiple getrandom in params is undefined. Also remove broken and pointless getrandom call.
nemo
parents:
7389
diff
changeset
|
652 |
begin |
8030
165aeaaaf445
Call fallers less often. Should hopefully still be about as effective at the intended purpose. Should help loads quite a bit.
nemo
parents:
8003
diff
changeset
|
653 |
if (gi^.Kind = gtGenericFaller) and (gi^.State and gstInvisible <> 0) then |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
654 |
begin |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
655 |
gi^.Active:= true; |
8030
165aeaaaf445
Call fallers less often. Should hopefully still be about as effective at the intended purpose. Should help loads quite a bit.
nemo
parents:
8003
diff
changeset
|
656 |
gi^.State:= gi^.State or gstTmpFlag; |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
657 |
gi^.X:= int2hwFloat(GetRandom(rightX-leftX)+leftX); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
658 |
gi^.Y:= int2hwFloat(GetRandom(LAND_HEIGHT-topY)+topY); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
659 |
gi^.dX:= _90-(GetRandomf*_360); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
660 |
gi^.dY:= _90-(GetRandomf*_360) |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
661 |
end; |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
662 |
gi := gi^.NextGear |
7391
588eabb4b384
Apparently order of multiple getrandom in params is undefined. Also remove broken and pointless getrandom call.
nemo
parents:
7389
diff
changeset
|
663 |
end; |
7598 | 664 |
ag:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAddAmmo, gstInvisible, _0, _0, GetRandom(125)+25); |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
665 |
ag^.Pos:= Gear^.Pos; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
666 |
ag^.Power:= Gear^.Power |
6581 | 667 |
end; |
668 |
end; |
|
669 |
posCaseHealth: begin |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
670 |
PlaySound(sndShotgunReload); |
6581 | 671 |
inc(HH^.Health, Gear^.Health); |
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6992
diff
changeset
|
672 |
HH^.Hedgehog^.Effects[hePoisoned] := 0; |
6581 | 673 |
str(Gear^.Health, s); |
674 |
s:= '+' + s; |
|
675 |
AddCaption(s, HH^.Hedgehog^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
676 |
RenderHealth(HH^.Hedgehog^); |
|
677 |
RecountTeamHealth(HH^.Hedgehog^.Team); |
|
678 |
||
679 |
i:= 0; |
|
680 |
while i < Gear^.Health do |
|
681 |
begin |
|
682 |
vga:= AddVisualGear(hwRound(HH^.X), hwRound(HH^.Y), vgtStraightShot); |
|
683 |
if vga <> nil then |
|
684 |
with vga^ do |
|
685 |
begin |
|
686 |
Tint:= $00FF00FF; |
|
687 |
State:= ord(sprHealth) |
|
688 |
end; |
|
689 |
inc(i, 5); |
|
690 |
end; |
|
691 |
end; |
|
692 |
end |
|
693 |
end; |
|
694 |
||
695 |
procedure HedgehogStep(Gear: PGear); |
|
696 |
var PrevdX: LongInt; |
|
697 |
CurWeapon: PAmmo; |
|
698 |
begin |
|
6924 | 699 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 700 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
701 |
begin |
|
702 |
if isCursorVisible then |
|
703 |
with Gear^.Hedgehog^ do |
|
704 |
with CurWeapon^ do |
|
705 |
begin |
|
706 |
if (Gear^.Message and gmLeft ) <> 0 then |
|
707 |
Pos:= (Pos - 1 + Ammoz[AmmoType].PosCount) mod Ammoz[AmmoType].PosCount |
|
708 |
else |
|
709 |
if (Gear^.Message and gmRight ) <> 0 then |
|
710 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
|
711 |
else |
|
712 |
exit; |
|
7028 | 713 |
GHStepTicks:= 200; |
6581 | 714 |
exit |
715 |
end; |
|
716 |
||
717 |
if ((Gear^.Message and gmAnimate) <> 0) then |
|
718 |
begin |
|
719 |
Gear^.Message:= 0; |
|
720 |
Gear^.State:= Gear^.State or gstAnimation; |
|
721 |
Gear^.Tag:= Gear^.MsgParam; |
|
722 |
Gear^.Timer:= 0; |
|
723 |
Gear^.Pos:= 0 |
|
724 |
end; |
|
725 |
||
726 |
if ((Gear^.Message and gmLJump ) <> 0) then |
|
727 |
begin |
|
728 |
Gear^.Message:= Gear^.Message and (not gmLJump); |
|
729 |
DeleteCI(Gear); |
|
730 |
if TestCollisionYwithGear(Gear, -1) = 0 then |
|
731 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then |
|
732 |
Gear^.Y:= Gear^.Y - _2 |
|
733 |
else |
|
734 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then |
|
735 |
Gear^.Y:= Gear^.Y - _1; |
|
736 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
|
737 |
or (TestCollisionYwithGear(Gear, -1) <> 0)) then |
|
738 |
begin |
|
739 |
Gear^.dY:= -_0_15; |
|
740 |
if not cArtillery then |
|
741 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
|
742 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
|
7053 | 743 |
PlaySoundV(sndJump1, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 744 |
exit |
745 |
end; |
|
746 |
end; |
|
747 |
||
748 |
if ((Gear^.Message and gmHJump ) <> 0) then |
|
749 |
begin |
|
750 |
DeleteCI(Gear); |
|
751 |
Gear^.Message:= Gear^.Message and (not gmHJump); |
|
752 |
||
753 |
Gear^.dY:= -_0_2; |
|
754 |
SetLittle(Gear^.dX); |
|
755 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
|
7053 | 756 |
PlaySoundV(sndJump3, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 757 |
exit |
758 |
end; |
|
759 |
||
760 |
PrevdX:= hwSign(Gear^.dX); |
|
761 |
if (Gear^.Message and gmLeft )<>0 then |
|
762 |
Gear^.dX:= -cLittle else |
|
763 |
if (Gear^.Message and gmRight )<>0 then |
|
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
764 |
Gear^.dX:= cLittle |
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
765 |
else exit; |
6581 | 766 |
|
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
767 |
StepSoundTimer:= cHHStepTicks; |
7719
eeae1cb6b6bf
Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents:
7671
diff
changeset
|
768 |
|
7028 | 769 |
GHStepTicks:= cHHStepTicks; |
6581 | 770 |
if PrevdX <> hwSign(Gear^.dX) then |
771 |
begin |
|
772 |
FollowGear:= Gear; |
|
773 |
exit |
|
774 |
end; |
|
775 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
776 |
||
777 |
Gear^.Hedgehog^.visStepPos:= (Gear^.Hedgehog^.visStepPos + 1) and 7; |
|
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7069
diff
changeset
|
778 |
|
7719
eeae1cb6b6bf
Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents:
7671
diff
changeset
|
779 |
if (not cArtillery) and ((Gear^.Message and gmPrecise) = 0) then |
eeae1cb6b6bf
Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents:
7671
diff
changeset
|
780 |
MakeHedgehogsStep(Gear); |
6581 | 781 |
|
8576
286ebfcb3d97
workaround for frequent AllHH active call in hedgehog step
nemo
parents:
8574
diff
changeset
|
782 |
SetAllHHToActive(false); |
6581 | 783 |
AddGearCI(Gear) |
784 |
end |
|
785 |
end; |
|
786 |
||
787 |
procedure HedgehogChAngle(HHGear: PGear); |
|
788 |
var da: LongWord; |
|
789 |
begin |
|
790 |
with HHGear^.Hedgehog^ do |
|
791 |
if ((CurAmmoType = amRope) and ((HHGear^.State and (gstMoving or gstHHJumping)) = gstMoving)) |
|
792 |
or ((CurAmmoType = amPortalGun) and ((HHGear^.State and gstMoving) <> 0)) then |
|
793 |
da:= 2 |
|
794 |
else da:= 1; |
|
795 |
||
796 |
if (((HHGear^.Message and gmPrecise) = 0) or ((GameTicks mod 5) = 1)) then |
|
797 |
if ((HHGear^.Message and gmUp) <> 0) and (HHGear^.Angle >= CurMinAngle + da) then |
|
798 |
dec(HHGear^.Angle, da) |
|
799 |
else |
|
800 |
if ((HHGear^.Message and gmDown) <> 0) and (HHGear^.Angle + da <= CurMaxAngle) then |
|
801 |
inc(HHGear^.Angle, da) |
|
802 |
end; |
|
803 |
||
804 |
||
805 |
//////////////////////////////////////////////////////////////////////////////// |
|
806 |
procedure doStepHedgehogMoving(Gear: PGear); |
|
807 |
var isFalling, isUnderwater: boolean; |
|
808 |
land: Word; |
|
809 |
begin |
|
810 |
land:= 0; |
|
811 |
isUnderwater:= cWaterLine < hwRound(Gear^.Y) + Gear^.Radius; |
|
812 |
if Gear^.dX.QWordValue > 8160437862 then |
|
813 |
Gear^.dX.QWordValue:= 8160437862; |
|
814 |
if Gear^.dY.QWordValue > 8160437862 then |
|
815 |
Gear^.dY.QWordValue:= 8160437862; |
|
816 |
||
817 |
if Gear^.Hedgehog^.Unplaced then |
|
818 |
begin |
|
819 |
Gear^.dY:= _0; |
|
820 |
Gear^.dX:= _0; |
|
821 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
822 |
exit |
|
823 |
end; |
|
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7409
diff
changeset
|
824 |
isFalling:= (Gear^.dY.isNegative) or (not TestCollisionYKick(Gear, 1)); |
6581 | 825 |
if isFalling then |
826 |
begin |
|
827 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then |
|
828 |
Gear^.dY:= _0; |
|
829 |
Gear^.State:= Gear^.State or gstMoving; |
|
830 |
if (CurrentHedgehog^.Gear = Gear) |
|
831 |
and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
|
832 |
begin |
|
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
833 |
// TODO: why so aggressive at setting FollowGear when falling? |
6581 | 834 |
FollowGear:= Gear; |
835 |
end; |
|
836 |
if isUnderwater then |
|
837 |
Gear^.dY:= Gear^.dY + cGravity / _2 |
|
838 |
else |
|
839 |
begin |
|
840 |
Gear^.dY:= Gear^.dY + cGravity; |
|
841 |
// this set of circumstances could be less complex if jumping was more clearly identified |
|
842 |
if ((GameFlags and gfMoreWind) <> 0) and (((Gear^.Damage <> 0) |
|
843 |
or ((CurAmmoGear <> nil) and ((CurAmmoGear^.AmmoType = amJetpack) or (CurAmmoGear^.AmmoType = amBirdy))) |
|
844 |
or ((Gear^.dY.QWordValue + Gear^.dX.QWordValue) > _0_55.QWordValue))) then |
|
845 |
Gear^.dX := Gear^.dX + cWindSpeed / Gear^.Density |
|
846 |
end |
|
847 |
end |
|
848 |
else |
|
849 |
begin |
|
850 |
land:= TestCollisionYwithGear(Gear, 1); |
|
851 |
if ((Gear^.dX.QWordValue + Gear^.dY.QWordValue) < _0_55.QWordValue) and ((land and lfIce) = 0) |
|
852 |
and ((Gear^.State and gstHHJumping) <> 0) then |
|
853 |
SetLittle(Gear^.dX); |
|
854 |
||
855 |
if not Gear^.dY.isNegative then |
|
856 |
begin |
|
857 |
CheckHHDamage(Gear); |
|
858 |
||
859 |
if ((Gear^.State and gstHHHJump) <> 0) and (not cArtillery) |
|
860 |
and (Gear^.dX.QWordValue < _0_02.QWordValue) then |
|
861 |
Gear^.dX.isNegative:= not Gear^.dX.isNegative; // landing after high jump |
|
862 |
Gear^.State:= Gear^.State and (not (gstHHJumping or gstHHHJump)); |
|
863 |
Gear^.dY:= _0; |
|
864 |
end |
|
865 |
else |
|
866 |
Gear^.dY:= Gear^.dY + cGravity; |
|
867 |
||
868 |
if ((Gear^.State and gstMoving) <> 0) then |
|
869 |
begin |
|
870 |
if land and lfIce <> 0 then |
|
871 |
begin |
|
872 |
Gear^.dX:= Gear^.dX * (_1 - (_1 - Gear^.Friction) / _2) |
|
873 |
end |
|
874 |
else |
|
875 |
Gear^.dX:= Gear^.dX * Gear^.Friction; |
|
876 |
end |
|
877 |
end; |
|
878 |
||
879 |
if (Gear^.State <> 0) then |
|
880 |
DeleteCI(Gear); |
|
881 |
||
882 |
if isUnderwater then |
|
883 |
begin |
|
884 |
Gear^.dY:= Gear^.dY * _0_999; |
|
885 |
Gear^.dX:= Gear^.dX * _0_999; |
|
886 |
end; |
|
887 |
||
888 |
if (Gear^.State and gstMoving) <> 0 then |
|
889 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
890 |
if not isFalling then |
|
891 |
if hwAbs(Gear^.dX) > _0_01 then |
|
892 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -1, hwSign(Gear^.dX)) then |
|
893 |
begin |
|
894 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
895 |
Gear^.dX:= Gear^.dX * _0_96; |
|
896 |
Gear^.Y:= Gear^.Y - _1 |
|
897 |
end |
|
898 |
else |
|
899 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -2, hwSign(Gear^.dX)) then |
|
900 |
begin |
|
901 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
902 |
Gear^.dX:= Gear^.dX * _0_93; |
|
903 |
Gear^.Y:= Gear^.Y - _2 |
|
904 |
end |
|
905 |
else |
|
906 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -3, hwSign(Gear^.dX)) then |
|
907 |
begin |
|
908 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
909 |
Gear^.dX:= Gear^.dX * _0_9 ; |
|
910 |
Gear^.Y:= Gear^.Y - _3 |
|
911 |
end |
|
912 |
else |
|
913 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -4, hwSign(Gear^.dX)) then |
|
914 |
begin |
|
915 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
916 |
Gear^.dX:= Gear^.dX * _0_87; |
|
917 |
Gear^.Y:= Gear^.Y - _4 |
|
918 |
end |
|
919 |
else |
|
920 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -5, hwSign(Gear^.dX)) then |
|
921 |
begin |
|
922 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
923 |
Gear^.dX:= Gear^.dX * _0_84; |
|
924 |
Gear^.Y:= Gear^.Y - _5 |
|
925 |
end |
|
926 |
else |
|
927 |
if hwAbs(Gear^.dX) > _0_02 then |
|
928 |
Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
929 |
else |
|
930 |
begin |
|
931 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
932 |
while TestCollisionYWithGear(Gear,1) = 0 do |
|
933 |
Gear^.Y:= Gear^.Y+_1; |
|
934 |
SetLittle(Gear^.dX) |
|
935 |
end |
|
936 |
else |
|
937 |
begin |
|
938 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
939 |
while TestCollisionYWithGear(Gear,1) = 0 do |
|
940 |
Gear^.Y:= Gear^.Y+_1; |
|
941 |
SetLittle(Gear^.dX) |
|
942 |
end |
|
943 |
else if (hwAbs(Gear^.dX) > cLittle) |
|
944 |
and ((Gear^.State and gstHHJumping) = 0) then |
|
945 |
Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
946 |
else |
|
947 |
SetLittle(Gear^.dX); |
|
948 |
||
949 |
if (not isFalling) |
|
7362
53bcfc714cb3
Fix rare condition when hog's gear stucks in an infinite loop which adds 1 to its Y coordinate not checking for drowning
unc0rr
parents:
7339
diff
changeset
|
950 |
and (hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
6581 | 951 |
begin |
952 |
Gear^.State:= Gear^.State and (not gstWinner); |
|
953 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
7426
55b49cc1f33a
Changes for the benefit of pas2c. Use downto in for loops to avoid repeated calls of Random/GetRandom. Wrap nots.
nemo
parents:
7409
diff
changeset
|
954 |
while (TestCollisionYWithGear(Gear,1) = 0) and (not CheckGearDrowning(Gear)) do |
6581 | 955 |
Gear^.Y:= Gear^.Y+_1; |
956 |
SetLittle(Gear^.dX); |
|
957 |
Gear^.dY:= _0 |
|
958 |
end |
|
959 |
else |
|
960 |
Gear^.State:= Gear^.State or gstMoving; |
|
961 |
||
962 |
if (Gear^.State and gstMoving) <> 0 then |
|
963 |
begin |
|
964 |
Gear^.State:= Gear^.State and (not gstAnimation); |
|
965 |
// ARTILLERY but not being moved by explosions |
|
966 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
967 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
968 |
if (not Gear^.dY.isNegative) and (not TestCollisionYKick(Gear, 1)) |
|
969 |
and TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
970 |
begin |
|
971 |
CheckHHDamage(Gear); |
|
972 |
Gear^.dY:= _0; |
|
973 |
Gear^.Y:= Gear^.Y + _1 |
|
974 |
end; |
|
975 |
CheckGearDrowning(Gear); |
|
976 |
// hide target cursor if current hog is drowning |
|
977 |
if (Gear^.State and gstDrowning) <> 0 then |
|
978 |
if (CurrentHedgehog^.Gear = Gear) then |
|
979 |
isCursorVisible:= false |
|
980 |
end; |
|
7623
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7615
diff
changeset
|
981 |
if (not isZero(Gear^.dY)) and (Gear^.FlightTime > 0) and ((GameFlags and gfLowGravity) = 0) then |
6581 | 982 |
begin |
983 |
inc(Gear^.FlightTime); |
|
8003 | 984 |
if (Gear^.FlightTime > 1500) and ((hwRound(Gear^.X) < LongInt(leftX)-250) or (hwRound(Gear^.X) > LongInt(rightX)+250)) then |
6581 | 985 |
begin |
7763 | 986 |
Gear^.FlightTime:= 0; |
6581 | 987 |
AddCaption(GetEventString(eidHomerun), cWhiteColor, capgrpMessage); |
988 |
PlaySound(sndHomerun) |
|
989 |
end; |
|
990 |
end |
|
991 |
else |
|
992 |
begin |
|
993 |
uStats.hedgehogFlight(Gear, Gear^.FlightTime); |
|
994 |
Gear^.FlightTime:= 0; |
|
995 |
end; |
|
996 |
||
997 |
end; |
|
998 |
||
999 |
procedure doStepHedgehogDriven(HHGear: PGear); |
|
1000 |
var t: PGear; |
|
1001 |
wasJumping: boolean; |
|
1002 |
Hedgehog: PHedgehog; |
|
1003 |
begin |
|
1004 |
Hedgehog:= HHGear^.Hedgehog; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1005 |
// Some weapons, deagle in particular, wouldn't play so nice in infinite attack mode if hogs were still moving. Most likely scenario |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1006 |
// is trying to shoot them twice while rolling. This is mostly about not wasting ammo, but shouldn't apply to gears not using AmmoShove (portal |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1007 |
// Should we rethink AmmoShove? Presumably we'd need a way of knowing if current gear had already attacked a gear |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1008 |
if isInMultiShoot and not AllInactive and (Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle]) then HHGear^.Message:= HHGear^.Message and not gmAttack; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1009 |
(* |
7786
23a075cf4837
*sigh* revert the multishoot thingy. worked fine in my tests w/ smine and cleaver, screwed up deagle. need to find out why, but sleepy. for later
nemo
parents:
7783
diff
changeset
|
1010 |
if isInMultiShoot then |
23a075cf4837
*sigh* revert the multishoot thingy. worked fine in my tests w/ smine and cleaver, screwed up deagle. need to find out why, but sleepy. for later
nemo
parents:
7783
diff
changeset
|
1011 |
HHGear^.Message:= 0; |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1012 |
*) |
6581 | 1013 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1014 |
(*if ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Utility) <> 0) and isInMultiShoot then |
6581 | 1015 |
AllInactive:= true |
7786
23a075cf4837
*sigh* revert the multishoot thingy. worked fine in my tests w/ smine and cleaver, screwed up deagle. need to find out why, but sleepy. for later
nemo
parents:
7783
diff
changeset
|
1016 |
else if not isInMultiShoot then |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1017 |
AllInactive:= false;*) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1018 |
AllInactive:= false; |
6581 | 1019 |
|
1020 |
if (TurnTimeLeft = 0) or (HHGear^.Damage > 0) then |
|
1021 |
begin |
|
8494
53b91a602955
Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents:
8493
diff
changeset
|
1022 |
if (Hedgehog^.CurAmmoType = amKnife) then |
53b91a602955
Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents:
8493
diff
changeset
|
1023 |
LoadHedgehogHat(Hedgehog^, Hedgehog^.Hat); |
6581 | 1024 |
if TagTurnTimeLeft = 0 then |
1025 |
TagTurnTimeLeft:= TurnTimeLeft; |
|
1026 |
TurnTimeLeft:= 0; |
|
1027 |
isCursorVisible:= false; |
|
1028 |
HHGear^.State:= HHGear^.State and (not (gstHHDriven or gstAnimation or gstAttacking)); |
|
1029 |
AttackBar:= 0; |
|
1030 |
if HHGear^.Damage > 0 then |
|
1031 |
HHGear^.State:= HHGear^.State and (not (gstHHJumping or gstHHHJump)); |
|
1032 |
exit |
|
1033 |
end; |
|
1034 |
||
1035 |
if (HHGear^.State and gstAnimation) <> 0 then |
|
1036 |
begin |
|
1037 |
HHGear^.Message:= 0; |
|
1038 |
if (HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].VoiceDelay) and (HHGear^.Timer = 0) then |
|
7053 | 1039 |
PlaySoundV(Wavez[TWave(HHGear^.Tag)].Voice, Hedgehog^.Team^.voicepack); |
6581 | 1040 |
inc(HHGear^.Timer); |
1041 |
if HHGear^.Timer = Wavez[TWave(HHGear^.Tag)].Interval then |
|
1042 |
begin |
|
1043 |
HHGear^.Timer:= 0; |
|
1044 |
inc(HHGear^.Pos); |
|
1045 |
if HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].FramesCount then |
|
1046 |
HHGear^.State:= HHGear^.State and (not gstAnimation) |
|
1047 |
end; |
|
1048 |
exit |
|
1049 |
end; |
|
1050 |
||
1051 |
if ((HHGear^.State and gstMoving) <> 0) |
|
7028 | 1052 |
or (GHStepTicks = cHHStepTicks) |
6581 | 1053 |
or (CurAmmoGear <> nil) then // we are moving |
1054 |
begin |
|
1055 |
with Hedgehog^ do |
|
1056 |
if (CurAmmoGear = nil) |
|
1057 |
and (HHGear^.dY > _0_39) |
|
1058 |
and (CurAmmoType = amParachute) then |
|
1059 |
HHGear^.Message:= HHGear^.Message or gmAttack; |
|
1060 |
// check for case with ammo |
|
1061 |
t:= CheckGearNear(HHGear, gtCase, 36, 36); |
|
1062 |
if t <> nil then |
|
1063 |
PickUp(HHGear, t) |
|
1064 |
end; |
|
1065 |
||
1066 |
if (CurAmmoGear = nil) then |
|
1067 |
if (((HHGear^.Message and gmAttack) <> 0) |
|
1068 |
or ((HHGear^.State and gstAttacking) <> 0)) then |
|
1069 |
Attack(HHGear) // should be before others to avoid desync with '/put' msg and changing weapon msgs |
|
1070 |
else |
|
1071 |
else |
|
1072 |
with Hedgehog^ do |
|
1073 |
if ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) |
|
1074 |
and ((HHGear^.Message and gmLJump) <> 0) |
|
1075 |
and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) then |
|
1076 |
begin |
|
1077 |
Attack(HHGear); |
|
1078 |
HHGear^.Message:= HHGear^.Message and (not gmLJump) |
|
1079 |
end; |
|
1080 |
||
1081 |
if (CurAmmoGear = nil) |
|
7956
61da79e83330
Causes AI fail. Needs testing 'cause at some point, I thought this was needed for portal, I don't remember *why*
nemo
parents:
7832
diff
changeset
|
1082 |
or ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) then |
6581 | 1083 |
begin |
1084 |
if ((HHGear^.Message and gmSlot) <> 0) then |
|
1085 |
if ChangeAmmo(HHGear) then ApplyAmmoChanges(Hedgehog^); |
|
1086 |
||
1087 |
if ((HHGear^.Message and gmWeapon) <> 0) then |
|
1088 |
HHSetWeapon(HHGear); |
|
1089 |
||
1090 |
if ((HHGear^.Message and gmTimer) <> 0) then |
|
1091 |
HHSetTimer(HHGear); |
|
1092 |
end; |
|
1093 |
||
1094 |
if CurAmmoGear <> nil then |
|
1095 |
begin |
|
1096 |
CurAmmoGear^.Message:= HHGear^.Message; |
|
1097 |
exit |
|
1098 |
end; |
|
1099 |
||
1100 |
HedgehogChAngle(HHGear); |
|
1101 |
||
1102 |
if (HHGear^.State and gstMoving) <> 0 then |
|
1103 |
begin |
|
1104 |
wasJumping:= ((HHGear^.State and gstHHJumping) <> 0); |
|
1105 |
||
1106 |
if ((HHGear^.Message and gmHJump) <> 0) and wasJumping and ((HHGear^.State and gstHHHJump) = 0) then |
|
1107 |
if (not (hwAbs(HHGear^.dX) > cLittle)) and (HHGear^.dY < -_0_02) then |
|
1108 |
begin |
|
1109 |
HHGear^.State:= HHGear^.State or gstHHHJump; |
|
1110 |
HHGear^.dY:= -_0_25; |
|
1111 |
if not cArtillery then |
|
1112 |
HHGear^.dX:= -SignAs(_0_02, HHGear^.dX); |
|
7053 | 1113 |
PlaySoundV(sndJump2, Hedgehog^.Team^.voicepack) |
6581 | 1114 |
end; |
1115 |
||
1116 |
HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump)); |
|
1117 |
||
1118 |
if (not cArtillery) and wasJumping and TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) then |
|
1119 |
SetLittle(HHGear^.dX); |
|
1120 |
||
1121 |
if Hedgehog^.Gear <> nil then |
|
1122 |
doStepHedgehogMoving(HHGear); |
|
1123 |
||
1124 |
if ((HHGear^.State and (gstMoving or gstDrowning)) = 0) then |
|
1125 |
begin |
|
1126 |
AddGearCI(HHGear); |
|
1127 |
if wasJumping then |
|
7028 | 1128 |
GHStepTicks:= 410 |
6581 | 1129 |
else |
7028 | 1130 |
GHStepTicks:= 95 |
6581 | 1131 |
end; |
1132 |
exit |
|
1133 |
end; |
|
1134 |
||
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
1135 |
if Hedgehog^.Gear <> nil then |
6581 | 1136 |
begin |
7028 | 1137 |
if GHStepTicks > 0 then |
1138 |
dec(GHStepTicks); |
|
1139 |
if (GHStepTicks = 0) then |
|
6581 | 1140 |
HedgehogStep(HHGear) |
1141 |
end |
|
1142 |
end; |
|
1143 |
||
1144 |
//////////////////////////////////////////////////////////////////////////////// |
|
1145 |
procedure doStepHedgehogFree(Gear: PGear); |
|
1146 |
var prevState: Longword; |
|
1147 |
begin |
|
1148 |
prevState:= Gear^.State; |
|
1149 |
||
1150 |
doStepHedgehogMoving(Gear); |
|
1151 |
||
1152 |
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then |
|
1153 |
begin |
|
1154 |
if Gear^.Damage > 0 then |
|
1155 |
CalcRotationDirAngle(Gear); |
|
1156 |
AllInactive:= false; |
|
1157 |
exit |
|
1158 |
end; |
|
1159 |
||
1160 |
if (Gear^.Health = 0) then |
|
1161 |
begin |
|
1162 |
if PrvInactive or ((GameFlags and gfInfAttack) <> 0) then |
|
1163 |
begin |
|
1164 |
Gear^.Timer:= 0; |
|
1165 |
FollowGear:= Gear; |
|
1166 |
PrvInactive:= false; |
|
1167 |
AllInactive:= false; |
|
1168 |
||
1169 |
if (Gear^.State and gstHHGone) = 0 then |
|
1170 |
begin |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6992
diff
changeset
|
1171 |
Gear^.Hedgehog^.Effects[hePoisoned] := 0; |
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6992
diff
changeset
|
1172 |
if Gear^.Hedgehog^.Effects[heResurrectable] <> 0 then |
6581 | 1173 |
begin |
1174 |
ResurrectHedgehog(Gear); |
|
1175 |
end |
|
1176 |
else |
|
1177 |
begin |
|
1178 |
Gear^.State:= (Gear^.State or gstHHDeath) and (not gstAnimation); |
|
1179 |
Gear^.doStep:= @doStepHedgehogDead; |
|
1180 |
// Death message |
|
1181 |
AddCaption(Format(GetEventString(eidDied), Gear^.Hedgehog^.Name), cWhiteColor, capgrpMessage); |
|
1182 |
end; |
|
1183 |
end |
|
1184 |
else |
|
1185 |
begin |
|
1186 |
Gear^.State:= Gear^.State and (not gstAnimation); |
|
1187 |
Gear^.doStep:= @doStepHedgehogGone; |
|
1188 |
||
1189 |
// Gone message |
|
1190 |
AddCaption(Format(GetEventString(eidGone), Gear^.Hedgehog^.Name), cWhiteColor, capgrpMessage); |
|
1191 |
end |
|
1192 |
end; |
|
1193 |
exit |
|
1194 |
end; |
|
1195 |
||
1196 |
if ((Gear^.State and gstWait) = 0) and |
|
1197 |
(prevState <> Gear^.State) then |
|
1198 |
begin |
|
1199 |
Gear^.State:= Gear^.State or gstWait; |
|
1200 |
Gear^.Timer:= 150 |
|
1201 |
end |
|
1202 |
else |
|
1203 |
begin |
|
1204 |
if Gear^.Timer = 0 then |
|
1205 |
begin |
|
1206 |
Gear^.State:= Gear^.State and (not (gstWait or gstLoser or gstWinner or gstAttacked or gstNotKickable or gstHHChooseTarget)); |
|
8563
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1207 |
if Gear^.Hedgehog^.Effects[heFrozen] = 0 then Gear^.Active:= false; |
6581 | 1208 |
AddGearCI(Gear); |
1209 |
exit |
|
1210 |
end |
|
1211 |
else dec(Gear^.Timer) |
|
1212 |
end; |
|
1213 |
||
1214 |
AllInactive:= false |
|
1215 |
end; |
|
1216 |
||
8574 | 1217 |
procedure CheckIce(Gear: PGear); inline; |
6581 | 1218 |
(* |
1219 |
var x,y,tx,ty: LongInt; |
|
1220 |
tdX, tdY, slope: hwFloat; |
|
1221 |
land: Word; *) |
|
1222 |
var slope: hwFloat; |
|
1223 |
begin |
|
8574 | 1224 |
if (Gear^.Message and (gmAllStoppable or gmLJump or gmHJump) = 0) |
1225 |
and (Gear^.State and (gstHHJumping or gstHHHJump or gstAttacking) = 0) |
|
1226 |
and (not Gear^.dY.isNegative) and (TestCollisionYwithGear(Gear, 1) and lfIce <> 0) then |
|
1227 |
begin |
|
1228 |
slope:= CalcSlopeBelowGear(Gear); |
|
1229 |
if slope.QWordValue > 730144440 then // ignore mild slopes |
|
1230 |
begin |
|
1231 |
Gear^.dX:=Gear^.dX+slope*cGravity*_256; |
|
1232 |
Gear^.State:= Gear^.State or gstMoving |
|
1233 |
end |
|
1234 |
end; |
|
1235 |
(* |
|
1236 |
x:= hwRound(Gear^.X); |
|
1237 |
y:= hwRound(Gear^.Y); |
|
1238 |
AddVisualGear(x, y, vgtSmokeTrace); |
|
1239 |
AddVisualGear(x - hwRound(_5*slope), y + hwRound(_5*slope), vgtSmokeTrace); |
|
1240 |
AddVisualGear(x + hwRound(_5*slope), y - hwRound(_5*slope), vgtSmokeTrace); |
|
1241 |
AddVisualGear(x - hwRound(_20 * slope), y + hwRound(_20 * slope), vgtSmokeTrace); |
|
1242 |
AddVisualGear(x + hwRound(_20 * slope), y - hwRound(_20 * slope), vgtSmokeTrace); |
|
1243 |
AddVisualGear(x - hwRound(_30 * slope), y + hwRound(_30 * slope), vgtSmokeTrace); |
|
1244 |
AddVisualGear(x + hwRound(_30 * slope), y - hwRound(_30 * slope), vgtSmokeTrace); |
|
1245 |
AddVisualGear(x - hwRound(_40 * slope), y + hwRound(_40 * slope), vgtSmokeTrace); |
|
1246 |
AddVisualGear(x + hwRound(_40 * slope), y - hwRound(_40 * slope), vgtSmokeTrace); |
|
1247 |
AddVisualGear(x - hwRound(_50 * slope), y + hwRound(_50 * slope), vgtSmokeTrace); |
|
1248 |
AddVisualGear(x + hwRound(_50 * slope), y - hwRound(_50 * slope), vgtSmokeTrace); *) |
|
1249 |
end; |
|
1250 |
||
1251 |
//////////////////////////////////////////////////////////////////////////////// |
|
1252 |
procedure doStepHedgehog(Gear: PGear); |
|
1253 |
begin |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
1254 |
CheckSum:= CheckSum xor Gear^.Hedgehog^.BotLevel; |
6581 | 1255 |
if (Gear^.Message and gmDestroy) <> 0 then |
1256 |
begin |
|
1257 |
DeleteGear(Gear); |
|
1258 |
exit |
|
1259 |
end; |
|
8576
286ebfcb3d97
workaround for frequent AllHH active call in hedgehog step
nemo
parents:
8574
diff
changeset
|
1260 |
if GameTicks mod 100 = 0 then CheckIce(Gear); |
8563
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1261 |
if Gear^.Hedgehog^.Effects[heFrozen] > 0 then |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1262 |
begin |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1263 |
if Gear^.Hedgehog^.Effects[heFrozen] > 256 then |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1264 |
dec(Gear^.Hedgehog^.Effects[heFrozen]) |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1265 |
else if GameTicks mod 10 = 0 then |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1266 |
dec(Gear^.Hedgehog^.Effects[heFrozen]) |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1267 |
end; |
6581 | 1268 |
if (Gear^.State and gstHHDriven) = 0 then |
1269 |
doStepHedgehogFree(Gear) |
|
1270 |
else |
|
1271 |
begin |
|
1272 |
with Gear^.Hedgehog^ do |
|
1273 |
if Team^.hasGone then |
|
1274 |
TeamGoneEffect(Team^) |
|
1275 |
else |
|
1276 |
doStepHedgehogDriven(Gear) |
|
1277 |
end; |
|
1278 |
end; |
|
1279 |
||
1280 |
end. |