author | nemo |
Sun, 28 Feb 2010 17:52:29 +0000 | |
changeset 2889 | eacccd2476ba |
parent 2882 | b9aceb3fe3d6 |
child 2908 | bd1909984a09 |
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); |
1849 | 195 |
amLowGravity: cGravity:= cMaxWindSpeed / 2; |
196 |
amExtraDamage: cDamageModifier:= _1_5; |
|
197 |
amInvulnerable: Invulnerable:= true; |
|
198 |
amExtraTime: TurnTimeLeft:= TurnTimeLeft + 30000; |
|
1854 | 199 |
amLaserSight: cLaserSighting:= true; |
2017 | 200 |
amVampiric: cVampiric:= true; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
201 |
end; |
829 | 202 |
|
203 |
uStats.AmmoUsed(Ammo^[CurSlot, CurAmmo].AmmoType); |
|
204 |
||
2017 | 205 |
if not (SpeechText = '') then |
206 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2041
diff
changeset
|
207 |
tmpGear:= AddVisualGear(0, 0, vgtSpeechBubble); |
2115 | 208 |
if tmpGear <> nil then |
209 |
begin |
|
210 |
tmpGear^.Text:= SpeechText; |
|
211 |
tmpGear^.Hedgehog:= Gear^.Hedgehog; |
|
212 |
tmpGear^.FrameTicks:= SpeechType; |
|
213 |
end; |
|
2017 | 214 |
SpeechText:= '' |
215 |
end; |
|
216 |
||
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
217 |
Power:= 0; |
930 | 218 |
if (CurAmmoGear <> nil) |
219 |
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
|
220 |
begin |
930 | 221 |
CurAmmoGear^.Ammo:= @(Ammo^[CurSlot, CurAmmo]); |
82 | 222 |
Message:= Message or gm_Attack; |
351 | 223 |
CurAmmoGear^.Message:= Message |
82 | 224 |
end else begin |
351 | 225 |
if not CurrentTeam^.ExtDriven and |
226 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a'); |
|
1849 | 227 |
AfterAttack; |
82 | 228 |
end |
1849 | 229 |
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
|
230 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
231 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
232 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
233 |
procedure AfterAttack; |
2502 | 234 |
var s: shortstring; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
235 |
begin |
602 | 236 |
with CurrentHedgehog^.Gear^, |
1286 | 237 |
CurrentHedgehog^ do |
238 |
begin |
|
1849 | 239 |
State:= State and not gstAttacking; |
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
240 |
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
|
241 |
begin |
2608 | 242 |
Inc(MultiShootAttacks); |
2502 | 243 |
|
2608 | 244 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= MultiShootAttacks) then |
2502 | 245 |
begin |
2608 | 246 |
s:= inttostr(Ammo^[CurSlot, CurAmmo].NumPerTurn + 1 - MultiShootAttacks); |
2619 | 247 |
AddCaption(format(trmsg[sidRemaining], s), cWhiteColor, capgrpAmmostate); |
2502 | 248 |
end; |
2608 | 249 |
|
250 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= MultiShootAttacks) or |
|
251 |
((GameFlags and gfMultiWeapon) <> 0) then |
|
2502 | 252 |
begin |
253 |
isInMultiShoot:= true |
|
254 |
end |
|
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
255 |
else |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
256 |
begin |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
257 |
TurnTimeLeft:= Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType].TimeAfterTurn; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
258 |
State:= State or gstAttacked; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
259 |
OnUsedAmmo(CurrentHedgehog^); |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
260 |
end; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
261 |
end |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
262 |
else |
2608 | 263 |
begin |
264 |
OnUsedAmmo(CurrentHedgehog^); |
|
265 |
ApplyAmmoChanges(CurrentHedgehog^); |
|
266 |
end; |
|
1286 | 267 |
AttackBar:= 0; |
268 |
end |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
269 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
270 |
|
42 | 271 |
//////////////////////////////////////////////////////////////////////////////// |
863 | 272 |
procedure doStepHedgehogDead(Gear: PGear); |
868 | 273 |
const frametime = 200; |
274 |
timertime = frametime * 6; |
|
863 | 275 |
begin |
2769
82bfcc006afb
Some handling of interaction between king mode and place hogs mode.
nemo
parents:
2762
diff
changeset
|
276 |
if PHedgehog(Gear^.Hedgehog)^.Unplaced then exit; |
863 | 277 |
if Gear^.Timer > 1 then |
278 |
begin |
|
279 |
AllInactive:= false; |
|
868 | 280 |
dec(Gear^.Timer); |
281 |
if (Gear^.Timer mod frametime) = 0 then inc(Gear^.Pos) |
|
863 | 282 |
end else |
283 |
if Gear^.Timer = 1 then |
|
284 |
begin |
|
285 |
Gear^.State:= Gear^.State or gstNoDamage; |
|
286 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
287 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
288 |
DeleteGear(Gear); |
|
289 |
SetAllToActive |
|
290 |
end else // Gear^.Timer = 0 |
|
291 |
begin |
|
292 |
AllInactive:= false; |
|
868 | 293 |
Gear^.Z:= cCurrHHZ; |
294 |
RemoveGearFromList(Gear); |
|
295 |
InsertGearToList(Gear); |
|
2745 | 296 |
PlaySound(sndByeBye, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
868 | 297 |
Gear^.Pos:= 0; |
298 |
Gear^.Timer:= timertime |
|
863 | 299 |
end |
300 |
end; |
|
301 |
||
302 |
//////////////////////////////////////////////////////////////////////////////// |
|
42 | 303 |
procedure PickUp(HH, Gear: PGear); |
295 | 304 |
var s: shortstring; |
305 |
a: TAmmoType; |
|
2428 | 306 |
i: Integer; |
42 | 307 |
begin |
351 | 308 |
Gear^.Message:= gm_Destroy; |
2745 | 309 |
PlaySound(sndShotgunReload); |
351 | 310 |
case Gear^.Pos of |
1964 | 311 |
posCaseUtility, |
295 | 312 |
posCaseAmmo: begin |
351 | 313 |
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
|
314 |
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
|
315 |
// 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
|
316 |
// 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
|
317 |
if (not (PHedgehog(HH^.Hedgehog)^.Team^.ExtDriven |
1072 | 318 |
or (PHedgehog(HH^.Hedgehog)^.BotLevel > 0))) |
2854 | 319 |
or (PHedgehog(HH^.Hedgehog)^.Team^.Clan^.ClanIndex = LocalClan) |
1072 | 320 |
or (GameType = gmtDemo) then |
836 | 321 |
begin |
322 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
|
323 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
324 |
end |
|
295 | 325 |
end; |
42 | 326 |
posCaseHealth: begin |
351 | 327 |
inc(HH^.Health, Gear^.Health); |
328 |
str(Gear^.Health, s); |
|
295 | 329 |
s:= '+' + s; |
549 | 330 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
351 | 331 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
2428 | 332 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team); |
333 |
||
334 |
i:= 0; |
|
335 |
while i < Gear^.Health do |
|
336 |
begin |
|
337 |
AddVisualGear(hwRound(HH^.X), hwRound(HH^.Y), vgtHealth); |
|
338 |
inc(i, 5); |
|
339 |
end; |
|
42 | 340 |
end; |
435 | 341 |
end |
42 | 342 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
343 |
|
4 | 344 |
const StepTicks: LongWord = 0; |
345 |
||
302 | 346 |
procedure HedgehogStep(Gear: PGear); |
371 | 347 |
var PrevdX: LongInt; |
302 | 348 |
begin |
542 | 349 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
4 | 350 |
begin |
408 | 351 |
if isCursorVisible then |
352 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
353 |
with Ammo^[CurSlot, CurAmmo] do |
|
354 |
begin |
|
542 | 355 |
if (Gear^.Message and gm_Left ) <> 0 then |
408 | 356 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
357 |
else |
|
542 | 358 |
if (Gear^.Message and gm_Right ) <> 0 then |
408 | 359 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
360 |
else exit; |
|
423 | 361 |
StepTicks:= 200; |
408 | 362 |
exit |
363 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
364 |
|
1033 | 365 |
if ((Gear^.Message and gm_Animate) <> 0) then |
366 |
begin |
|
367 |
Gear^.Message:= 0; |
|
368 |
Gear^.State:= Gear^.State or gstAnimation; |
|
369 |
Gear^.Tag:= Gear^.MsgParam; |
|
370 |
Gear^.Timer:= 0; |
|
371 |
Gear^.Pos:= 0 |
|
372 |
end; |
|
373 |
||
351 | 374 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 375 |
begin |
542 | 376 |
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
|
377 |
DeleteCI(Gear); |
68 | 378 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 379 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
380 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 381 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 382 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 383 |
begin |
351 | 384 |
Gear^.dY:= -_0_15; |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
385 |
if not cArtillery then Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 386 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
2745 | 387 |
PlaySound(sndJump1, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
4 | 388 |
exit |
389 |
end; |
|
390 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
391 |
|
351 | 392 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 393 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
394 |
DeleteCI(Gear); |
542 | 395 |
Gear^.Message:= Gear^.Message and not gm_HJump; |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
396 |
|
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
397 |
Gear^.dY:= -_0_2; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
398 |
SetLittle(Gear^.dX); |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
399 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
2745 | 400 |
PlaySound(sndJump3, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
401 |
exit |
4 | 402 |
end; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
403 |
|
351 | 404 |
PrevdX:= hwSign(Gear^.dX); |
2603 | 405 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
406 |
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
|
407 |
|
74 | 408 |
StepTicks:= cHHStepTicks; |
610 | 409 |
if PrevdX <> hwSign(Gear^.dX) then |
410 |
begin |
|
411 |
FollowGear:= Gear; |
|
412 |
exit |
|
413 |
end; |
|
414 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
838 | 415 |
|
351 | 416 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
417 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 418 |
begin |
498 | 419 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
420 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
421 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
422 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
423 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
424 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
425 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
426 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
427 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
428 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
429 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
430 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 431 |
end; |
1528 | 432 |
|
2585
0899ce8ad77f
Smaxx: only allow change direction when shift key is pressed
unc0rr
parents:
2502
diff
changeset
|
433 |
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
|
434 |
Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
0899ce8ad77f
Smaxx: only allow change direction when shift key is pressed
unc0rr
parents:
2502
diff
changeset
|
435 |
|
62 | 436 |
SetAllHHToActive; |
37 | 437 |
|
68 | 438 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 439 |
begin |
498 | 440 |
Gear^.Y:= Gear^.Y + _1; |
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 - _6; |
459 |
Gear^.dY:= _0; |
|
542 | 460 |
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
|
461 |
exit |
4 | 462 |
end; |
463 |
end |
|
464 |
end |
|
465 |
end |
|
466 |
end |
|
467 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
468 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
469 |
AddGearCI(Gear) |
4 | 470 |
end |
471 |
end; |
|
472 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
473 |
procedure HedgehogChAngle(Gear: PGear); |
958 | 474 |
var da: LongWord; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
475 |
begin |
958 | 476 |
with PHedgehog(Gear^.Hedgehog)^ do |
477 |
if (Ammo^[CurSlot, CurAmmo].AmmoType = amRope) |
|
478 |
and ((Gear^.State and (gstMoving or gstHHJumping)) = gstMoving) then da:= 2 else da:= 1; |
|
479 |
||
1639 | 480 |
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
|
481 |
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Angle >= CurMinAngle + da) then dec(Gear^.Angle, da) |
1639 | 482 |
else |
1689 | 483 |
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
|
484 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
485 |
|
302 | 486 |
procedure doStepHedgehog(Gear: PGear); forward; |
487 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 488 |
procedure doStepHedgehogMoving(Gear: PGear); |
545 | 489 |
var isFalling: boolean; |
538 | 490 |
begin |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
491 |
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
|
492 |
begin |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
493 |
Gear^.dY:= _0; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
494 |
Gear^.dX:= _0; |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
495 |
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
|
496 |
exit |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2745
diff
changeset
|
497 |
end; |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
498 |
isFalling:= (Gear^.dY.isNegative) or not TestCollisionYKick(Gear, 1); |
542 | 499 |
if isFalling then |
538 | 500 |
begin |
501 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
542 | 502 |
Gear^.State:= Gear^.State or gstMoving; |
538 | 503 |
Gear^.dY:= Gear^.dY + cGravity |
504 |
end else |
|
505 |
begin |
|
506 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
507 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
508 |
||
540 | 509 |
if not Gear^.dY.isNegative then |
510 |
begin |
|
511 |
CheckHHDamage(Gear); |
|
790
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
512 |
|
2137 | 513 |
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
|
514 |
(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
|
515 |
|
542 | 516 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
540 | 517 |
Gear^.dY:= _0; |
518 |
end else Gear^.dY:= Gear^.dY + cGravity; |
|
538 | 519 |
|
520 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
|
521 |
end; |
|
522 |
||
523 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
|
783 | 524 |
|
538 | 525 |
if (Gear^.State and gstMoving) <> 0 then |
526 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
542 | 527 |
if not isFalling then |
538 | 528 |
if hwAbs(Gear^.dX) > _0_01 then |
529 |
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 |
|
530 |
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 |
|
531 |
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 |
|
532 |
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 |
|
533 |
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 |
|
534 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
535 |
else begin |
|
536 |
Gear^.State:= Gear^.State and not gstMoving; |
|
537 |
SetLittle(Gear^.dX) |
|
538 |
end |
|
539 |
else begin |
|
540 |
Gear^.State:= Gear^.State and not gstMoving; |
|
541 |
SetLittle(Gear^.dX) |
|
542 |
end |
|
1518 | 543 |
else if (hwAbs(Gear^.dX) > cLittle) |
544 |
and ((Gear^.State and gstHHJumping) = 0) |
|
545 |
then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
546 |
else SetLittle(Gear^.dX); |
|
538 | 547 |
|
542 | 548 |
if (not isFalling) and |
538 | 549 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
550 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
551 |
Gear^.State:= Gear^.State and not gstWinner; |
538 | 552 |
Gear^.State:= Gear^.State and not gstMoving; |
553 |
SetLittle(Gear^.dX); |
|
554 |
Gear^.dY:= _0 |
|
555 |
end else Gear^.State:= Gear^.State or gstMoving; |
|
556 |
||
557 |
if (Gear^.State and gstMoving) <> 0 then |
|
558 |
begin |
|
559 |
Gear^.State:= Gear^.State and not gstAnimation; |
|
2017 | 560 |
// ARTILLERY but not being moved by explosions |
538 | 561 |
Gear^.X:= Gear^.X + Gear^.dX; |
562 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
563 |
if (not Gear^.dY.isNegative) and |
|
564 |
(not TestCollisionYKick(Gear, 1)) and |
|
565 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
566 |
begin |
|
567 |
CheckHHDamage(Gear); |
|
568 |
Gear^.dY:= _0; |
|
569 |
Gear^.Y:= Gear^.Y + _1 |
|
570 |
end; |
|
1658
208a3258afdf
Fix a bug with visible cursor when hedgehog is dead
unc0rr
parents:
1645
diff
changeset
|
571 |
CheckGearDrowning(Gear); |
208a3258afdf
Fix a bug with visible cursor when hedgehog is dead
unc0rr
parents:
1645
diff
changeset
|
572 |
if (Gear^.State and gstDrowning) <> 0 then isCursorVisible:= false |
2428 | 573 |
end; |
574 |
||
575 |
if (hwAbs(Gear^.dY) > _0) and (Gear^.FlightTime > 0) then |
|
576 |
begin |
|
577 |
inc(Gear^.FlightTime, 1); |
|
578 |
if Gear^.FlightTime = 2000 then |
|
579 |
begin |
|
2619 | 580 |
AddCaption(GetEventString(eidHomerun), cWhiteColor, capgrpMessage); |
2745 | 581 |
PlaySound(sndHomerun) |
2428 | 582 |
end; |
583 |
end |
|
584 |
else |
|
585 |
begin |
|
586 |
Gear^.FlightTime:= 0; |
|
587 |
end; |
|
588 |
||
538 | 589 |
end; |
590 |
||
302 | 591 |
procedure doStepHedgehogDriven(Gear: PGear); |
592 |
var t: PGear; |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
593 |
wasJumping: boolean; |
302 | 594 |
begin |
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
595 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
596 |
AllInactive:= false |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
597 |
else |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
598 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
599 |
|
1035 | 600 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
1645 | 601 |
begin |
602 |
TurnTimeLeft:= 0; |
|
603 |
isCursorVisible:= false; |
|
1749
7170f626e9d6
Fix crash when attackbar wasn't deleted, but hedgehog gear was
unc0rr
parents:
1712
diff
changeset
|
604 |
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
|
605 |
AttackBar:= 0; |
1645 | 606 |
if Gear^.Damage > 0 then |
607 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
|
608 |
exit |
|
609 |
end; |
|
1035 | 610 |
|
1033 | 611 |
if (Gear^.State and gstAnimation) <> 0 then |
612 |
begin |
|
613 |
Gear^.Message:= 0; |
|
2745 | 614 |
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 | 615 |
inc(Gear^.Timer); |
2056
ed8c83f1e4b0
Two new wavez - Juggle requires a different frame rate. using 38 instead of 125
nemo
parents:
2045
diff
changeset
|
616 |
if Gear^.Timer = Wavez[TWave(Gear^.Tag)].Interval then |
1033 | 617 |
begin |
618 |
Gear^.Timer:= 0; |
|
619 |
inc(Gear^.Pos); |
|
1034 | 620 |
if Gear^.Pos = Wavez[TWave(Gear^.Tag)].FramesCount then |
1033 | 621 |
Gear^.State:= Gear^.State and not gstAnimation |
622 |
end; |
|
623 |
exit |
|
624 |
end; |
|
625 |
||
836 | 626 |
if ((Gear^.State and gstMoving) <> 0) |
627 |
or (StepTicks = cHHStepTicks) |
|
2221 | 628 |
or (CurAmmoGear <> nil) then // we are moving |
836 | 629 |
begin |
839 | 630 |
with PHedgehog(Gear^.Hedgehog)^ do |
631 |
if (CurAmmoGear = nil) |
|
632 |
and (Gear^.dY > _0_39) |
|
633 |
and (Ammo^[CurSlot, CurAmmo].AmmoType = amParachute) then Gear^.Message:= Gear^.Message or gm_Attack; |
|
836 | 634 |
// check for case with ammo |
635 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
636 |
if t <> nil then |
|
637 |
PickUp(Gear, t) |
|
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
638 |
end; |
302 | 639 |
|
930 | 640 |
if (CurAmmoGear = nil) then |
641 |
if (((Gear^.Message and gm_Attack) <> 0) |
|
642 |
or ((Gear^.State and gstAttacking) <> 0)) then |
|
643 |
Attack(Gear) // should be before others to avoid desync with '/put' msg and changing weapon msgs |
|
644 |
else |
|
645 |
else with PHedgehog(Gear^.Hedgehog)^ do |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
646 |
if ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) |
930 | 647 |
and ((Gear^.Message and gm_LJump) <> 0) |
931 | 648 |
and (((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_AltUse) <> 0) then |
649 |
begin |
|
650 |
Gear^.Message:= Gear^.Message and not gm_LJump; |
|
651 |
Attack(Gear) |
|
652 |
end; |
|
930 | 653 |
|
654 |
if (CurAmmoGear = nil) |
|
655 |
or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) then |
|
656 |
begin |
|
1710
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
657 |
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
|
658 |
begin |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
659 |
ChangeAmmo(Gear); |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
660 |
ApplyAmmoChanges(PHedgehog(Gear^.Hedgehog)^) |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
661 |
end; |
930 | 662 |
|
663 |
if ((Gear^.Message and gm_Weapon) <> 0) then HHSetWeapon(Gear); |
|
664 |
||
665 |
if ((Gear^.Message and gm_Timer) <> 0) then HHSetTimer(Gear); |
|
666 |
end; |
|
667 |
||
302 | 668 |
if CurAmmoGear <> nil then |
669 |
begin |
|
351 | 670 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 671 |
exit |
672 |
end; |
|
673 |
||
952 | 674 |
if not isInMultiShoot then |
675 |
HedgehogChAngle(Gear); |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
676 |
|
542 | 677 |
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
|
678 |
begin |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
679 |
wasJumping:= ((Gear^.State and gstHHJumping) <> 0); |
2376 | 680 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
681 |
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
|
682 |
wasJumping and |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
683 |
((Gear^.State and gstHHHJump) = 0) then |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
684 |
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
|
685 |
begin |
2137 | 686 |
Gear^.State:= Gear^.State or gstHHHJump; |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
687 |
Gear^.dY:= -_0_25; |
2137 | 688 |
if not cArtillery then Gear^.dX:= -SignAs(_0_02, Gear^.dX); |
2745 | 689 |
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
|
690 |
end; |
2376 | 691 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
692 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
538 | 693 |
|
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
694 |
if (not cArtillery) and wasJumping and |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
695 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
538 | 696 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
697 |
doStepHedgehogMoving(Gear); |
542 | 698 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
699 |
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
|
700 |
begin |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
701 |
AddGearCI(Gear); |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
702 |
if wasJumping then |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
703 |
StepTicks:= 410 |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
704 |
else |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
705 |
StepTicks:= 95 |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
706 |
end; |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
707 |
exit |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
708 |
end; |
302 | 709 |
|
1033 | 710 |
if not isInMultiShoot then |
711 |
begin |
|
712 |
if StepTicks > 0 then dec(StepTicks); |
|
713 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
714 |
end |
|
302 | 715 |
end; |
716 |
||
4 | 717 |
//////////////////////////////////////////////////////////////////////////////// |
718 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 719 |
var prevState: Longword; |
4 | 720 |
begin |
511 | 721 |
prevState:= Gear^.State; |
4 | 722 |
|
538 | 723 |
doStepHedgehogMoving(Gear); |
4 | 724 |
|
1002 | 725 |
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then |
865 | 726 |
begin |
1012 | 727 |
if Gear^.Damage > 0 then CalcRotationDirAngle(Gear); |
865 | 728 |
AllInactive:= false; |
729 |
exit |
|
730 |
end; |
|
4 | 731 |
|
863 | 732 |
if (Gear^.Health = 0) then |
733 |
begin |
|
868 | 734 |
if PrvInactive then |
864 | 735 |
begin |
736 |
Gear^.Timer:= 0; |
|
868 | 737 |
Gear^.State:= Gear^.State or gstHHDeath; |
738 |
Gear^.doStep:= @doStepHedgehogDead; |
|
1347 | 739 |
FollowGear:= Gear; |
868 | 740 |
PrvInactive:= false; |
2140 | 741 |
AllInactive:= false; |
742 |
||
743 |
// Death message |
|
2619 | 744 |
AddCaption(Format(GetEventString(eidDied), PHedgehog(Gear^.Hedgehog)^.Name), cWhiteColor, capgrpMessage); |
864 | 745 |
end; |
863 | 746 |
exit |
747 |
end; |
|
4 | 748 |
|
1033 | 749 |
if ((Gear^.State and gstWait) = 0) and |
863 | 750 |
(prevState <> Gear^.State) then |
751 |
begin |
|
1033 | 752 |
Gear^.State:= gstWait; |
863 | 753 |
Gear^.Timer:= 150 |
754 |
end else |
|
755 |
begin |
|
756 |
if Gear^.Timer = 0 then |
|
757 |
begin |
|
758 |
Gear^.State:= 0; |
|
759 |
Gear^.Active:= false; |
|
760 |
AddGearCI(Gear); |
|
761 |
exit |
|
762 |
end else dec(Gear^.Timer) |
|
763 |
end; |
|
764 |
||
765 |
AllInactive:= false |
|
4 | 766 |
end; |
767 |
||
768 |
//////////////////////////////////////////////////////////////////////////////// |
|
769 |
procedure doStepHedgehog(Gear: PGear); |
|
770 |
begin |
|
351 | 771 |
if (Gear^.Message and gm_Destroy) <> 0 then |
1505 | 772 |
begin |
773 |
DeleteGear(Gear); |
|
774 |
exit |
|
775 |
end; |
|
776 |
||
2040 | 777 |
if (Gear^.State and gstHHDriven) = 0 then |
778 |
doStepHedgehogFree(Gear) |
|
779 |
else |
|
780 |
begin |
|
2041 | 781 |
with PHedgehog(Gear^.Hedgehog)^ do |
782 |
if Team^.hasGone then TeamGoneEffect(Team^); |
|
2040 | 783 |
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
|
784 |
end; |
2585
0899ce8ad77f
Smaxx: only allow change direction when shift key is pressed
unc0rr
parents:
2502
diff
changeset
|
785 |
end; |