author | nemo |
Wed, 03 Mar 2010 16:43:31 +0000 | |
changeset 2927 | 616378221e58 |
parent 2908 | bd1909984a09 |
child 2940 | c02119eee12a |
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 |
||
37 | 19 |
//////////////////////////////////////////////////////////////////////////////// |
783 | 20 |
procedure ChangeAmmo(Gear: PGear); |
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
21 |
var slot, i: Longword; |
783 | 22 |
begin |
23 |
slot:= Gear^.MsgParam; |
|
24 |
||
25 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
26 |
begin |
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
27 |
Gear^.Message:= Gear^.Message and not gm_Slot; |
2376 | 28 |
|
928
b9064b48b001
Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents:
927
diff
changeset
|
29 |
if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) |
2608 | 30 |
or (MultiShootAttacks > 0) |
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
31 |
or ((Gear^.State and gstHHDriven) = 0) then exit; |
783 | 32 |
|
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
33 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
783 | 34 |
|
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
35 |
if CurSlot = slot then |
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
36 |
begin |
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
37 |
i:= 0; |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
38 |
repeat |
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
39 |
inc(CurAmmo); |
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
40 |
if (CurAmmo > cMaxSlotAmmoIndex) then |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
41 |
begin |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
42 |
CurAmmo:= 0; |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
43 |
inc(i); |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
44 |
TryDo(i < 2, 'Engine bug: no ammo in current slot', true) |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
45 |
end; |
2434 | 46 |
until (Ammo^[slot, CurAmmo].Count > 0) and (Team^.Clan^.TurnNumber > Ammoz[Ammo^[slot, CurAmmo].AmmoType].SkipTurns) |
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
47 |
end else |
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
48 |
begin |
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
49 |
i:= 0; |
2221 | 50 |
// check whether there is ammo in slot |
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
51 |
while (i <= cMaxSlotAmmoIndex) |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
52 |
and ((Ammo^[slot, i].Count = 0) |
2434 | 53 |
or (Team^.Clan^.TurnNumber <= Ammoz[Ammo^[slot, i].AmmoType].SkipTurns)) do inc(i); |
2376 | 54 |
|
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
55 |
if i <= cMaxSlotAmmoIndex then |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
56 |
begin |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
57 |
CurSlot:= slot; |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
58 |
CurAmmo:= i |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
59 |
end |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
60 |
end |
1710
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
61 |
end |
783 | 62 |
end; |
63 |
||
64 |
procedure HHSetWeapon(Gear: PGear); |
|
65 |
var t: LongInt; |
|
66 |
weap: TAmmoType; |
|
67 |
begin |
|
68 |
weap:= TAmmoType(Gear^.MsgParam); |
|
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
69 |
|
2434 | 70 |
if PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.TurnNumber <= Ammoz[weap].SkipTurns then exit; // weapon is not activated yet |
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
71 |
|
783 | 72 |
Gear^.MsgParam:= Ammoz[weap].Slot; |
73 |
||
74 |
t:= cMaxSlotAmmoIndex; |
|
75 |
||
76 |
Gear^.Message:= Gear^.Message and not gm_Weapon; |
|
77 |
||
78 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
79 |
while (Ammo^[CurSlot, CurAmmo].AmmoType <> weap) and (t >= 0) do |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
80 |
begin |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
81 |
ChangeAmmo(Gear); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
82 |
dec(t) |
1710
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
83 |
end; |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
84 |
|
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
85 |
ApplyAmmoChanges(PHedgehog(Gear^.Hedgehog)^) |
783 | 86 |
end; |
87 |
||
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
88 |
procedure HHSetTimer(Gear: PGear); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
89 |
begin |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
90 |
Gear^.Message:= Gear^.Message and not gm_Timer; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
91 |
with PHedgehog(Gear^.Hedgehog)^ do |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
92 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Timerable) <> 0 then |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
93 |
begin |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
94 |
Ammo^[CurSlot, CurAmmo].Timer:= 1000 * Gear^.MsgParam; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
95 |
with CurrentTeam^ do |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
96 |
ApplyAmmoChanges(Hedgehogs[CurrHedgehog]); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
97 |
end; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
98 |
end; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
99 |
|
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
100 |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
101 |
procedure Attack(Gear: PGear); |
351 | 102 |
var xx, yy: hwFloat; |
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2041
diff
changeset
|
103 |
tmpGear: PVisualGear; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
104 |
begin |
2807 | 105 |
bShowFinger:= false; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
106 |
with Gear^, |
351 | 107 |
PHedgehog(Gear^.Hedgehog)^ do |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
108 |
begin |
95 | 109 |
if ((State and gstHHDriven) <> 0)and |
2223
e009fee03c96
allow attacks while moving on ammo with alt attack (parachute/rope/jetpack) - needs testing.
nemo
parents:
2221
diff
changeset
|
110 |
((State and (gstAttacked or gstHHChooseTarget)) = 0) and |
2376 | 111 |
(((State and gstMoving) = 0) or |
2223
e009fee03c96
allow attacks while moving on ammo with alt attack (parachute/rope/jetpack) - needs testing.
nemo
parents:
2221
diff
changeset
|
112 |
// Allow attacks while moving on ammo with AltAttack |
2376 | 113 |
((CurAmmoGear <> nil) and ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0)) or |
2238 | 114 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackInMove) <> 0)) and |
836 | 115 |
((TargetPoint.X <> NoPointX) or ((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_NeedTarget) = 0)) then |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
116 |
begin |
95 | 117 |
State:= State or gstAttacking; |
118 |
if Power = cMaxPower then Message:= Message and not gm_Attack |
|
351 | 119 |
else if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) = 0 then Message:= Message and not gm_Attack |
95 | 120 |
else begin |
121 |
if Power = 0 then |
|
122 |
begin |
|
351 | 123 |
AttackBar:= CurrentTeam^.AttackBar; |
2745 | 124 |
PlaySound(sndThrowPowerUp) |
95 | 125 |
end; |
126 |
inc(Power) |
|
127 |
end; |
|
128 |
if ((Message and gm_Attack) <> 0) then exit; |
|
351 | 129 |
|
130 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0 then |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
131 |
begin |
282 | 132 |
StopSound(sndThrowPowerUp); |
2745 | 133 |
PlaySound(sndThrowRelease); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
134 |
end; |
1922 | 135 |
|
519 | 136 |
xx:= SignAs(AngleSin(Angle), dX); |
900 | 137 |
yy:= -AngleCos(Angle); |
138 |
||
139 |
if ((Gear^.State and gstHHHJump) <> 0) then xx:= - xx; |
|
2647 | 140 |
if Ammo^[CurSlot, CurAmmo].AttackVoice <> sndNone then |
2745 | 141 |
PlaySound(Ammo^[CurSlot, CurAmmo].AttackVoice, CurrentTeam^.voicepack); |
351 | 142 |
case Ammo^[CurSlot, CurAmmo].AmmoType of |
143 |
amGrenade: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Bomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
2470 | 144 |
amMolotov: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtMolotov, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
351 | 145 |
amClusterBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtClusterBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
146 |
amBazooka: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Grenade, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
147 |
amUFO: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtUFO, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
148 |
amShotgun: begin |
2745 | 149 |
PlaySound(sndShotgunReload); |
351 | 150 |
CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtShotgunShot, 0, xx * _0_5, yy * _0_5, 0); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
151 |
end; |
498 | 152 |
amPickHammer: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
866 | 153 |
amSkip: ParseCommand('/skip', true); |
351 | 154 |
amRope: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtRope, 0, xx, yy, 0); |
2882 | 155 |
amMine: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtMine, gstWait, SignAs(_0_02, dX), _0, 3000); |
876 | 156 |
amDEagle: CurAmmoGear:= AddGear(hwRound(X + xx * cHHRadius), hwRound(Y + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
2827 | 157 |
amSniperRifle: begin |
158 |
PlaySound(sndSniperReload); |
|
159 |
CurAmmoGear:= AddGear(hwRound(X + xx * cHHRadius), hwRound(Y + yy * cHHRadius), gtSniperRifleShot, 0, xx * _0_5, yy * _0_5, 0); |
|
160 |
end; |
|
2647 | 161 |
amDynamite: AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000); |
979
edb8f208c1d9
Fix firepunch direction when attacking from high jump
unc0rr
parents:
958
diff
changeset
|
162 |
amFirePunch: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtFirePunch, 0, xx, _0, 0); |
1712 | 163 |
amWhip: begin |
164 |
CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtWhip, 0, SignAs(_1, dX), - _0_8, 0); |
|
2745 | 165 |
PlaySound(sndWhipCrack) |
1712 | 166 |
end; |
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
|
167 |
amBaseballBat: begin |
2428 | 168 |
CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtShover, gsttmpFlag, xx * _0_5, yy * _0_5, 0); |
2745 | 169 |
PlaySound(sndBaseballBat) |
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
|
170 |
end; |
498 | 171 |
amParachute: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtParachute, 0, _0, _0, 0); |
172 |
amAirAttack: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
173 |
amMineStrike: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
174 |
amBlowTorch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
175 |
amGirder: CurAmmoGear:= AddGear(0, 0, gtGirder, Ammo^[CurSlot, CurAmmo].Pos, _0, _0, 0); |
|
520 | 176 |
amTeleport: CurAmmoGear:= AddGear(0, 0, gtTeleport, 0, _0, _0, 0); |
534 | 177 |
amSwitch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtSwitcher, 0, _0, _0, 0); |
2262 | 178 |
amMortar: begin |
2745 | 179 |
playSound(sndMortar); |
2262 | 180 |
FollowGear:= AddGear(hwRound(X), hwRound(Y), gtMortar, 0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0); |
181 |
end; |
|
1712 | 182 |
amRCPlane: begin |
183 |
CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtRCPlane, 0, xx * cMaxPower / cPowerDivisor / 4, yy * cMaxPower / cPowerDivisor / 4, 0); |
|
2745 | 184 |
CurAmmoGear^.SoundChannel:= LoopSound(sndRCPlane, nil) |
1712 | 185 |
end; |
984 | 186 |
amKamikaze: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtKamikaze, 0, xx * _0_5, yy * _0_5, 0); |
2647 | 187 |
amCake: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 3, hwRound(Y), gtCake, 0, xx, _0, 0); |
1286 | 188 |
amSeduction: CurAmmoGear:= AddGear(hwRound(X + xx * cHHRadius * 2), hwRound(Y + yy * cHHRadius * 2), gtSeduction, 0, xx * _0_4, yy * _0_4, 0); |
1261 | 189 |
amWatermelon: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtWatermelon, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
2302 | 190 |
amHellishBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtHellishBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
1507 | 191 |
amNapalm: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 2, _0, _0, 0); |
1573 | 192 |
amDrill: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtDrill, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
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
|
193 |
amBallgun: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBallgun, 0, xx * _0_5, yy * _0_5, 0); |
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
|
194 |
amJetpack: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtJetpack, 0, _0, _0, 0); |
2908 | 195 |
amLowGravity: begin |
196 |
PlaySound(sndLowGravity); |
|
197 |
cGravity:= cMaxWindSpeed / 2 |
|
198 |
end; |
|
1849 | 199 |
amExtraDamage: cDamageModifier:= _1_5; |
200 |
amInvulnerable: Invulnerable:= true; |
|
201 |
amExtraTime: TurnTimeLeft:= TurnTimeLeft + 30000; |
|
1854 | 202 |
amLaserSight: cLaserSighting:= true; |
2017 | 203 |
amVampiric: cVampiric:= true; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
204 |
end; |
829 | 205 |
|
206 |
uStats.AmmoUsed(Ammo^[CurSlot, CurAmmo].AmmoType); |
|
207 |
||
2017 | 208 |
if not (SpeechText = '') then |
209 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2041
diff
changeset
|
210 |
tmpGear:= AddVisualGear(0, 0, vgtSpeechBubble); |
2115 | 211 |
if tmpGear <> nil then |
212 |
begin |
|
213 |
tmpGear^.Text:= SpeechText; |
|
214 |
tmpGear^.Hedgehog:= Gear^.Hedgehog; |
|
215 |
tmpGear^.FrameTicks:= SpeechType; |
|
216 |
end; |
|
2017 | 217 |
SpeechText:= '' |
218 |
end; |
|
219 |
||
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
220 |
Power:= 0; |
930 | 221 |
if (CurAmmoGear <> nil) |
222 |
and (((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_AltUse) = 0){check for dropping ammo from rope} then |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
223 |
begin |
930 | 224 |
CurAmmoGear^.Ammo:= @(Ammo^[CurSlot, CurAmmo]); |
82 | 225 |
Message:= Message or gm_Attack; |
351 | 226 |
CurAmmoGear^.Message:= Message |
82 | 227 |
end else begin |
351 | 228 |
if not CurrentTeam^.ExtDriven and |
229 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a'); |
|
1849 | 230 |
AfterAttack; |
82 | 231 |
end |
1849 | 232 |
end else Message:= Message and not gm_Attack; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
233 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
234 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
235 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
236 |
procedure AfterAttack; |
2502 | 237 |
var s: shortstring; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
238 |
begin |
602 | 239 |
with CurrentHedgehog^.Gear^, |
1286 | 240 |
CurrentHedgehog^ do |
241 |
begin |
|
1849 | 242 |
State:= State and not gstAttacking; |
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
243 |
if ((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_Utility) = 0 then |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
244 |
begin |
2608 | 245 |
Inc(MultiShootAttacks); |
2502 | 246 |
|
2608 | 247 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= MultiShootAttacks) then |
2502 | 248 |
begin |
2608 | 249 |
s:= inttostr(Ammo^[CurSlot, CurAmmo].NumPerTurn + 1 - MultiShootAttacks); |
2619 | 250 |
AddCaption(format(trmsg[sidRemaining], s), cWhiteColor, capgrpAmmostate); |
2502 | 251 |
end; |
2608 | 252 |
|
253 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= MultiShootAttacks) or |
|
254 |
((GameFlags and gfMultiWeapon) <> 0) then |
|
2502 | 255 |
begin |
256 |
isInMultiShoot:= true |
|
257 |
end |
|
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
258 |
else |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
259 |
begin |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
260 |
TurnTimeLeft:= Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType].TimeAfterTurn; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
261 |
State:= State or gstAttacked; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
262 |
OnUsedAmmo(CurrentHedgehog^); |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
263 |
end; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
264 |
end |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
265 |
else |
2608 | 266 |
begin |
267 |
OnUsedAmmo(CurrentHedgehog^); |
|
268 |
ApplyAmmoChanges(CurrentHedgehog^); |
|
269 |
end; |
|
1286 | 270 |
AttackBar:= 0; |
271 |
end |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
272 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
273 |
|
42 | 274 |
//////////////////////////////////////////////////////////////////////////////// |
863 | 275 |
procedure doStepHedgehogDead(Gear: PGear); |
868 | 276 |
const frametime = 200; |
277 |
timertime = frametime * 6; |
|
863 | 278 |
begin |
2769
82bfcc006afb
Some handling of interaction between king mode and place hogs mode.
nemo
parents:
2762
diff
changeset
|
279 |
if PHedgehog(Gear^.Hedgehog)^.Unplaced then exit; |
863 | 280 |
if Gear^.Timer > 1 then |
281 |
begin |
|
282 |
AllInactive:= false; |
|
868 | 283 |
dec(Gear^.Timer); |
284 |
if (Gear^.Timer mod frametime) = 0 then inc(Gear^.Pos) |
|
863 | 285 |
end else |
286 |
if Gear^.Timer = 1 then |
|
287 |
begin |
|
288 |
Gear^.State:= Gear^.State or gstNoDamage; |
|
289 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
290 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
291 |
DeleteGear(Gear); |
|
292 |
SetAllToActive |
|
293 |
end else // Gear^.Timer = 0 |
|
294 |
begin |
|
295 |
AllInactive:= false; |
|
868 | 296 |
Gear^.Z:= cCurrHHZ; |
297 |
RemoveGearFromList(Gear); |
|
298 |
InsertGearToList(Gear); |
|
2745 | 299 |
PlaySound(sndByeBye, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
868 | 300 |
Gear^.Pos:= 0; |
301 |
Gear^.Timer:= timertime |
|
863 | 302 |
end |
303 |
end; |
|
304 |
||
305 |
//////////////////////////////////////////////////////////////////////////////// |
|
42 | 306 |
procedure PickUp(HH, Gear: PGear); |
295 | 307 |
var s: shortstring; |
308 |
a: TAmmoType; |
|
2428 | 309 |
i: Integer; |
42 | 310 |
begin |
351 | 311 |
Gear^.Message:= gm_Destroy; |
2745 | 312 |
PlaySound(sndShotgunReload); |
351 | 313 |
case Gear^.Pos of |
1964 | 314 |
posCaseUtility, |
295 | 315 |
posCaseAmmo: begin |
351 | 316 |
a:= TAmmoType(Gear^.State); |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
549
diff
changeset
|
317 |
AddAmmo(PHedgehog(HH^.Hedgehog)^, a); |
2853
953a6d71396f
Restore shared clan ammo (still needs flag), add ammo info message if the person who picked up the ammo was a member of your clan
nemo
parents:
2827
diff
changeset
|
318 |
// Possibly needs to check shared clan ammo game flag once added. |
953a6d71396f
Restore shared clan ammo (still needs flag), add ammo info message if the person who picked up the ammo was a member of your clan
nemo
parents:
2827
diff
changeset
|
319 |
// On the other hand, no obvious reason that clan members shouldn't know what ammo another clan member picked up |
953a6d71396f
Restore shared clan ammo (still needs flag), add ammo info message if the person who picked up the ammo was a member of your clan
nemo
parents:
2827
diff
changeset
|
320 |
if (not (PHedgehog(HH^.Hedgehog)^.Team^.ExtDriven |
1072 | 321 |
or (PHedgehog(HH^.Hedgehog)^.BotLevel > 0))) |
2854 | 322 |
or (PHedgehog(HH^.Hedgehog)^.Team^.Clan^.ClanIndex = LocalClan) |
1072 | 323 |
or (GameType = gmtDemo) then |
836 | 324 |
begin |
325 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
|
326 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
327 |
end |
|
295 | 328 |
end; |
42 | 329 |
posCaseHealth: begin |
351 | 330 |
inc(HH^.Health, Gear^.Health); |
331 |
str(Gear^.Health, s); |
|
295 | 332 |
s:= '+' + s; |
549 | 333 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
351 | 334 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
2428 | 335 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team); |
336 |
||
337 |
i:= 0; |
|
338 |
while i < Gear^.Health do |
|
339 |
begin |
|
340 |
AddVisualGear(hwRound(HH^.X), hwRound(HH^.Y), vgtHealth); |
|
341 |
inc(i, 5); |
|
342 |
end; |
|
42 | 343 |
end; |
435 | 344 |
end |
42 | 345 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
346 |
|
4 | 347 |
const StepTicks: LongWord = 0; |
348 |
||
302 | 349 |
procedure HedgehogStep(Gear: PGear); |
371 | 350 |
var PrevdX: LongInt; |
302 | 351 |
begin |
542 | 352 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
4 | 353 |
begin |
408 | 354 |
if isCursorVisible then |
355 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
356 |
with Ammo^[CurSlot, CurAmmo] do |
|
357 |
begin |
|
542 | 358 |
if (Gear^.Message and gm_Left ) <> 0 then |
408 | 359 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
360 |
else |
|
542 | 361 |
if (Gear^.Message and gm_Right ) <> 0 then |
408 | 362 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
363 |
else exit; |
|
423 | 364 |
StepTicks:= 200; |
408 | 365 |
exit |
366 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
367 |
|
1033 | 368 |
if ((Gear^.Message and gm_Animate) <> 0) then |
369 |
begin |
|
370 |
Gear^.Message:= 0; |
|
371 |
Gear^.State:= Gear^.State or gstAnimation; |
|
372 |
Gear^.Tag:= Gear^.MsgParam; |
|
373 |
Gear^.Timer:= 0; |
|
374 |
Gear^.Pos:= 0 |
|
375 |
end; |
|
376 |
||
351 | 377 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 378 |
begin |
542 | 379 |
Gear^.Message:= Gear^.Message and not gm_LJump; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
380 |
DeleteCI(Gear); |
68 | 381 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 382 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
383 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 384 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 385 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 386 |
begin |
351 | 387 |
Gear^.dY:= -_0_15; |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
388 |
if not cArtillery then Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 389 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
2745 | 390 |
PlaySound(sndJump1, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
4 | 391 |
exit |
392 |
end; |
|
393 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
394 |
|
351 | 395 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 396 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
397 |
DeleteCI(Gear); |
542 | 398 |
Gear^.Message:= Gear^.Message and not gm_HJump; |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
399 |
|
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
400 |
Gear^.dY:= -_0_2; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
401 |
SetLittle(Gear^.dX); |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
402 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
2745 | 403 |
PlaySound(sndJump3, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
404 |
exit |
4 | 405 |
end; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
406 |
|
351 | 407 |
PrevdX:= hwSign(Gear^.dX); |
2603 | 408 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
409 |
if (Gear^.Message and gm_Right )<>0 then Gear^.dX:= cLittle else exit; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
410 |
|
74 | 411 |
StepTicks:= cHHStepTicks; |
610 | 412 |
if PrevdX <> hwSign(Gear^.dX) then |
413 |
begin |
|
414 |
FollowGear:= Gear; |
|
415 |
exit |
|
416 |
end; |
|
417 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
838 | 418 |
|
351 | 419 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
420 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 421 |
begin |
498 | 422 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
423 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
424 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
425 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
426 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
427 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
428 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
429 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
430 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
431 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
432 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
433 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 434 |
end; |
1528 | 435 |
|
2585
0899ce8ad77f
Smaxx: only allow change direction when shift key is pressed
unc0rr
parents:
2502
diff
changeset
|
436 |
if (not cArtillery) and ((Gear^.Message and gm_Precise) = 0) and (not TestCollisionXwithGear(Gear, hwSign(Gear^.dX))) then |
0899ce8ad77f
Smaxx: only allow change direction when shift key is pressed
unc0rr
parents:
2502
diff
changeset
|
437 |
Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
0899ce8ad77f
Smaxx: only allow change direction when shift key is pressed
unc0rr
parents:
2502
diff
changeset
|
438 |
|
62 | 439 |
SetAllHHToActive; |
37 | 440 |
|
68 | 441 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 442 |
begin |
498 | 443 |
Gear^.Y:= Gear^.Y + _1; |
68 | 444 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 445 |
begin |
498 | 446 |
Gear^.Y:= Gear^.Y + _1; |
68 | 447 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 448 |
begin |
498 | 449 |
Gear^.Y:= Gear^.Y + _1; |
68 | 450 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 451 |
begin |
498 | 452 |
Gear^.Y:= Gear^.Y + _1; |
68 | 453 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 454 |
begin |
498 | 455 |
Gear^.Y:= Gear^.Y + _1; |
68 | 456 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 457 |
begin |
498 | 458 |
Gear^.Y:= Gear^.Y + _1; |
68 | 459 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 460 |
begin |
498 | 461 |
Gear^.Y:= Gear^.Y - _6; |
462 |
Gear^.dY:= _0; |
|
542 | 463 |
Gear^.State:= Gear^.State or gstMoving; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
464 |
exit |
4 | 465 |
end; |
466 |
end |
|
467 |
end |
|
468 |
end |
|
469 |
end |
|
470 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
471 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
472 |
AddGearCI(Gear) |
4 | 473 |
end |
474 |
end; |
|
475 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
476 |
procedure HedgehogChAngle(Gear: PGear); |
958 | 477 |
var da: LongWord; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
478 |
begin |
958 | 479 |
with PHedgehog(Gear^.Hedgehog)^ do |
480 |
if (Ammo^[CurSlot, CurAmmo].AmmoType = amRope) |
|
481 |
and ((Gear^.State and (gstMoving or gstHHJumping)) = gstMoving) then da:= 2 else da:= 1; |
|
482 |
||
1639 | 483 |
if (((Gear^.Message and gm_Precise) = 0) or ((GameTicks mod 5) = 1)) then |
2660
04c03640a7b0
Fix a rare bug when crosshair stucks in up position
unc0rr
parents:
2647
diff
changeset
|
484 |
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Angle >= CurMinAngle + da) then dec(Gear^.Angle, da) |
1639 | 485 |
else |
1689 | 486 |
if ((Gear^.Message and gm_Down) <> 0) and (Gear^.Angle + da <= CurMaxAngle) then inc(Gear^.Angle, da) |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
487 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
488 |
|
302 | 489 |
procedure doStepHedgehog(Gear: PGear); forward; |
490 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 491 |
procedure doStepHedgehogMoving(Gear: PGear); |
545 | 492 |
var isFalling: boolean; |
538 | 493 |
begin |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
494 |
if PHedgehog(Gear^.Hedgehog)^.Unplaced then |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
495 |
begin |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
496 |
Gear^.dY:= _0; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
497 |
Gear^.dX:= _0; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
498 |
Gear^.State:= Gear^.State and not gstMoving; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
499 |
exit |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
500 |
end; |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
501 |
isFalling:= (Gear^.dY.isNegative) or not TestCollisionYKick(Gear, 1); |
542 | 502 |
if isFalling then |
538 | 503 |
begin |
504 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
542 | 505 |
Gear^.State:= Gear^.State or gstMoving; |
538 | 506 |
Gear^.dY:= Gear^.dY + cGravity |
507 |
end else |
|
508 |
begin |
|
509 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
510 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
511 |
||
540 | 512 |
if not Gear^.dY.isNegative then |
513 |
begin |
|
514 |
CheckHHDamage(Gear); |
|
790
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
515 |
|
2137 | 516 |
if ((Gear^.State and gstHHHJump) <> 0) and (not cArtillery) and |
790
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
517 |
(Gear^.dX.QWordValue < _0_02.QWordValue) then Gear^.dX.isNegative:= not Gear^.dX.isNegative; // landing after high jump |
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
518 |
|
542 | 519 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
540 | 520 |
Gear^.dY:= _0; |
521 |
end else Gear^.dY:= Gear^.dY + cGravity; |
|
538 | 522 |
|
523 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
|
524 |
end; |
|
525 |
||
526 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
|
783 | 527 |
|
538 | 528 |
if (Gear^.State and gstMoving) <> 0 then |
529 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
542 | 530 |
if not isFalling then |
538 | 531 |
if hwAbs(Gear^.dX) > _0_01 then |
532 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -1, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_96; Gear^.Y:= Gear^.Y - _1 end else |
|
533 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -2, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_93; Gear^.Y:= Gear^.Y - _2 end else |
|
534 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -3, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_9 ; Gear^.Y:= Gear^.Y - _3 end else |
|
535 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -4, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_87; Gear^.Y:= Gear^.Y - _4 end else |
|
536 |
if not TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -5, hwSign(Gear^.dX)) then begin Gear^.X:= Gear^.X + Gear^.dX; Gear^.dX:= Gear^.dX * _0_84; Gear^.Y:= Gear^.Y - _5 end else |
|
537 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
538 |
else begin |
|
539 |
Gear^.State:= Gear^.State and not gstMoving; |
|
540 |
SetLittle(Gear^.dX) |
|
541 |
end |
|
542 |
else begin |
|
543 |
Gear^.State:= Gear^.State and not gstMoving; |
|
544 |
SetLittle(Gear^.dX) |
|
545 |
end |
|
1518 | 546 |
else if (hwAbs(Gear^.dX) > cLittle) |
547 |
and ((Gear^.State and gstHHJumping) = 0) |
|
548 |
then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
549 |
else SetLittle(Gear^.dX); |
|
538 | 550 |
|
542 | 551 |
if (not isFalling) and |
538 | 552 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
553 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
554 |
Gear^.State:= Gear^.State and not gstWinner; |
538 | 555 |
Gear^.State:= Gear^.State and not gstMoving; |
556 |
SetLittle(Gear^.dX); |
|
557 |
Gear^.dY:= _0 |
|
558 |
end else Gear^.State:= Gear^.State or gstMoving; |
|
559 |
||
560 |
if (Gear^.State and gstMoving) <> 0 then |
|
561 |
begin |
|
562 |
Gear^.State:= Gear^.State and not gstAnimation; |
|
2017 | 563 |
// ARTILLERY but not being moved by explosions |
538 | 564 |
Gear^.X:= Gear^.X + Gear^.dX; |
565 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
566 |
if (not Gear^.dY.isNegative) and |
|
567 |
(not TestCollisionYKick(Gear, 1)) and |
|
568 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
569 |
begin |
|
570 |
CheckHHDamage(Gear); |
|
571 |
Gear^.dY:= _0; |
|
572 |
Gear^.Y:= Gear^.Y + _1 |
|
573 |
end; |
|
1658
208a3258afdf
Fix a bug with visible cursor when hedgehog is dead
unc0rr
parents:
1645
diff
changeset
|
574 |
CheckGearDrowning(Gear); |
208a3258afdf
Fix a bug with visible cursor when hedgehog is dead
unc0rr
parents:
1645
diff
changeset
|
575 |
if (Gear^.State and gstDrowning) <> 0 then isCursorVisible:= false |
2428 | 576 |
end; |
577 |
||
578 |
if (hwAbs(Gear^.dY) > _0) and (Gear^.FlightTime > 0) then |
|
579 |
begin |
|
580 |
inc(Gear^.FlightTime, 1); |
|
581 |
if Gear^.FlightTime = 2000 then |
|
582 |
begin |
|
2619 | 583 |
AddCaption(GetEventString(eidHomerun), cWhiteColor, capgrpMessage); |
2745 | 584 |
PlaySound(sndHomerun) |
2428 | 585 |
end; |
586 |
end |
|
587 |
else |
|
588 |
begin |
|
589 |
Gear^.FlightTime:= 0; |
|
590 |
end; |
|
591 |
||
538 | 592 |
end; |
593 |
||
302 | 594 |
procedure doStepHedgehogDriven(Gear: PGear); |
595 |
var t: PGear; |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
596 |
wasJumping: boolean; |
302 | 597 |
begin |
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
598 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
599 |
AllInactive:= false |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
600 |
else |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
601 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
602 |
|
1035 | 603 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
1645 | 604 |
begin |
605 |
TurnTimeLeft:= 0; |
|
606 |
isCursorVisible:= false; |
|
1749
7170f626e9d6
Fix crash when attackbar wasn't deleted, but hedgehog gear was
unc0rr
parents:
1712
diff
changeset
|
607 |
Gear^.State:= Gear^.State and not (gstHHDriven or gstAnimation or gstAttacking); |
7170f626e9d6
Fix crash when attackbar wasn't deleted, but hedgehog gear was
unc0rr
parents:
1712
diff
changeset
|
608 |
AttackBar:= 0; |
1645 | 609 |
if Gear^.Damage > 0 then |
610 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
|
611 |
exit |
|
612 |
end; |
|
1035 | 613 |
|
1033 | 614 |
if (Gear^.State and gstAnimation) <> 0 then |
615 |
begin |
|
616 |
Gear^.Message:= 0; |
|
2745 | 617 |
if (Gear^.Pos = Wavez[TWave(Gear^.Tag)].VoiceDelay) and (Gear^.Timer = 0) then PlaySound(Wavez[TWave(Gear^.Tag)].Voice, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
1033 | 618 |
inc(Gear^.Timer); |
2056
ed8c83f1e4b0
Two new wavez - Juggle requires a different frame rate. using 38 instead of 125
nemo
parents:
2045
diff
changeset
|
619 |
if Gear^.Timer = Wavez[TWave(Gear^.Tag)].Interval then |
1033 | 620 |
begin |
621 |
Gear^.Timer:= 0; |
|
622 |
inc(Gear^.Pos); |
|
1034 | 623 |
if Gear^.Pos = Wavez[TWave(Gear^.Tag)].FramesCount then |
1033 | 624 |
Gear^.State:= Gear^.State and not gstAnimation |
625 |
end; |
|
626 |
exit |
|
627 |
end; |
|
628 |
||
836 | 629 |
if ((Gear^.State and gstMoving) <> 0) |
630 |
or (StepTicks = cHHStepTicks) |
|
2221 | 631 |
or (CurAmmoGear <> nil) then // we are moving |
836 | 632 |
begin |
839 | 633 |
with PHedgehog(Gear^.Hedgehog)^ do |
634 |
if (CurAmmoGear = nil) |
|
635 |
and (Gear^.dY > _0_39) |
|
636 |
and (Ammo^[CurSlot, CurAmmo].AmmoType = amParachute) then Gear^.Message:= Gear^.Message or gm_Attack; |
|
836 | 637 |
// check for case with ammo |
638 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
639 |
if t <> nil then |
|
640 |
PickUp(Gear, t) |
|
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
641 |
end; |
302 | 642 |
|
930 | 643 |
if (CurAmmoGear = nil) then |
644 |
if (((Gear^.Message and gm_Attack) <> 0) |
|
645 |
or ((Gear^.State and gstAttacking) <> 0)) then |
|
646 |
Attack(Gear) // should be before others to avoid desync with '/put' msg and changing weapon msgs |
|
647 |
else |
|
648 |
else with PHedgehog(Gear^.Hedgehog)^ do |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
649 |
if ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) |
930 | 650 |
and ((Gear^.Message and gm_LJump) <> 0) |
931 | 651 |
and (((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_AltUse) <> 0) then |
652 |
begin |
|
653 |
Gear^.Message:= Gear^.Message and not gm_LJump; |
|
654 |
Attack(Gear) |
|
655 |
end; |
|
930 | 656 |
|
657 |
if (CurAmmoGear = nil) |
|
658 |
or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) then |
|
659 |
begin |
|
1710
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
660 |
if ((Gear^.Message and gm_Slot) <> 0) then |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
661 |
begin |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
662 |
ChangeAmmo(Gear); |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
663 |
ApplyAmmoChanges(PHedgehog(Gear^.Hedgehog)^) |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
664 |
end; |
930 | 665 |
|
666 |
if ((Gear^.Message and gm_Weapon) <> 0) then HHSetWeapon(Gear); |
|
667 |
||
668 |
if ((Gear^.Message and gm_Timer) <> 0) then HHSetTimer(Gear); |
|
669 |
end; |
|
670 |
||
302 | 671 |
if CurAmmoGear <> nil then |
672 |
begin |
|
351 | 673 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 674 |
exit |
675 |
end; |
|
676 |
||
952 | 677 |
if not isInMultiShoot then |
678 |
HedgehogChAngle(Gear); |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
679 |
|
542 | 680 |
if (Gear^.State and gstMoving) <> 0 then |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
681 |
begin |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
682 |
wasJumping:= ((Gear^.State and gstHHJumping) <> 0); |
2376 | 683 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
684 |
if ((Gear^.Message and gm_HJump) <> 0) and |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
685 |
wasJumping and |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
686 |
((Gear^.State and gstHHHJump) = 0) then |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
687 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
688 |
begin |
2137 | 689 |
Gear^.State:= Gear^.State or gstHHHJump; |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
690 |
Gear^.dY:= -_0_25; |
2137 | 691 |
if not cArtillery then Gear^.dX:= -SignAs(_0_02, Gear^.dX); |
2745 | 692 |
PlaySound(sndJump2, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack) |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
693 |
end; |
2376 | 694 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
695 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
538 | 696 |
|
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
697 |
if (not cArtillery) and wasJumping and |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
698 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
538 | 699 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
700 |
doStepHedgehogMoving(Gear); |
542 | 701 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
702 |
if ((Gear^.State and (gstMoving or gstDrowning)) = 0) then |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
703 |
begin |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
704 |
AddGearCI(Gear); |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
705 |
if wasJumping then |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
706 |
StepTicks:= 410 |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
707 |
else |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
708 |
StepTicks:= 95 |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
709 |
end; |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
710 |
exit |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
711 |
end; |
302 | 712 |
|
1033 | 713 |
if not isInMultiShoot then |
714 |
begin |
|
715 |
if StepTicks > 0 then dec(StepTicks); |
|
716 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
717 |
end |
|
302 | 718 |
end; |
719 |
||
4 | 720 |
//////////////////////////////////////////////////////////////////////////////// |
721 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 722 |
var prevState: Longword; |
4 | 723 |
begin |
511 | 724 |
prevState:= Gear^.State; |
4 | 725 |
|
538 | 726 |
doStepHedgehogMoving(Gear); |
4 | 727 |
|
1002 | 728 |
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then |
865 | 729 |
begin |
1012 | 730 |
if Gear^.Damage > 0 then CalcRotationDirAngle(Gear); |
865 | 731 |
AllInactive:= false; |
732 |
exit |
|
733 |
end; |
|
4 | 734 |
|
863 | 735 |
if (Gear^.Health = 0) then |
736 |
begin |
|
868 | 737 |
if PrvInactive then |
864 | 738 |
begin |
739 |
Gear^.Timer:= 0; |
|
868 | 740 |
Gear^.State:= Gear^.State or gstHHDeath; |
741 |
Gear^.doStep:= @doStepHedgehogDead; |
|
1347 | 742 |
FollowGear:= Gear; |
868 | 743 |
PrvInactive:= false; |
2140 | 744 |
AllInactive:= false; |
745 |
||
746 |
// Death message |
|
2619 | 747 |
AddCaption(Format(GetEventString(eidDied), PHedgehog(Gear^.Hedgehog)^.Name), cWhiteColor, capgrpMessage); |
864 | 748 |
end; |
863 | 749 |
exit |
750 |
end; |
|
4 | 751 |
|
1033 | 752 |
if ((Gear^.State and gstWait) = 0) and |
863 | 753 |
(prevState <> Gear^.State) then |
754 |
begin |
|
1033 | 755 |
Gear^.State:= gstWait; |
863 | 756 |
Gear^.Timer:= 150 |
757 |
end else |
|
758 |
begin |
|
759 |
if Gear^.Timer = 0 then |
|
760 |
begin |
|
761 |
Gear^.State:= 0; |
|
762 |
Gear^.Active:= false; |
|
763 |
AddGearCI(Gear); |
|
764 |
exit |
|
765 |
end else dec(Gear^.Timer) |
|
766 |
end; |
|
767 |
||
768 |
AllInactive:= false |
|
4 | 769 |
end; |
770 |
||
771 |
//////////////////////////////////////////////////////////////////////////////// |
|
772 |
procedure doStepHedgehog(Gear: PGear); |
|
773 |
begin |
|
351 | 774 |
if (Gear^.Message and gm_Destroy) <> 0 then |
1505 | 775 |
begin |
776 |
DeleteGear(Gear); |
|
777 |
exit |
|
778 |
end; |
|
779 |
||
2040 | 780 |
if (Gear^.State and gstHHDriven) = 0 then |
781 |
doStepHedgehogFree(Gear) |
|
782 |
else |
|
783 |
begin |
|
2041 | 784 |
with PHedgehog(Gear^.Hedgehog)^ do |
785 |
if Team^.hasGone then TeamGoneEffect(Team^); |
|
2040 | 786 |
doStepHedgehogDriven(Gear) |
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
|
787 |
end; |
2585
0899ce8ad77f
Smaxx: only allow change direction when shift key is pressed
unc0rr
parents:
2502
diff
changeset
|
788 |
end; |