author | unc0rr |
Thu, 27 Nov 2008 22:45:41 +0000 | |
changeset 1518 | 4e5796fe3aac |
parent 1507 | d18c67b7ad4c |
child 1519 | 7b6adbe5266a |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2004-2008 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 |
928
b9064b48b001
Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents:
927
diff
changeset
|
27 |
if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) |
b9064b48b001
Some preparation work for attacking from rope, parachute and etc.
unc0rr
parents:
927
diff
changeset
|
28 |
or (AttacksNum > 0) |
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
29 |
or ((Gear^.State and gstHHDriven) = 0) then exit; |
783 | 30 |
|
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
31 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump or gm_Slot); |
783 | 32 |
|
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
33 |
if CurSlot = slot then |
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
34 |
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
|
35 |
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
|
36 |
repeat |
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
37 |
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
|
38 |
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
|
39 |
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
|
40 |
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
|
41 |
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
|
42 |
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
|
43 |
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
|
44 |
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
|
45 |
end else |
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
46 |
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
|
47 |
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
|
48 |
// check whether there's ammo in 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
|
49 |
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
|
50 |
and ((Ammo^[slot, i].Count = 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
|
51 |
or (Team^.Clan^.TurnNumber <= Ammoz[Ammo^[slot, i].AmmoType].SkipTurns)) do 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
|
52 |
|
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
53 |
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
|
54 |
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
|
55 |
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
|
56 |
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
|
57 |
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
|
58 |
end |
927
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
59 |
end; |
2c1675344a6f
Remove AltSlot and AltAmmo fields of Hedgehog record, as they are not actually needed
unc0rr
parents:
926
diff
changeset
|
60 |
|
783 | 61 |
ApplyAmmoChanges(PHedgehog(Gear^.Hedgehog)^) |
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 |
|
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
931
diff
changeset
|
70 |
if PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.TurnNumber <= Ammoz[weap].SkipTurns then exit; // weapon isn't activated yet |
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) |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
83 |
end |
783 | 84 |
end; |
85 |
||
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
86 |
procedure HHSetTimer(Gear: PGear); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
87 |
begin |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
88 |
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
|
89 |
with PHedgehog(Gear^.Hedgehog)^ do |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
90 |
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
|
91 |
begin |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
92 |
Ammo^[CurSlot, CurAmmo].Timer:= 1000 * Gear^.MsgParam; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
93 |
with CurrentTeam^ do |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
94 |
ApplyAmmoChanges(Hedgehogs[CurrHedgehog]); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
95 |
end; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
96 |
end; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
97 |
|
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
98 |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
99 |
procedure Attack(Gear: PGear); |
351 | 100 |
var xx, yy: hwFloat; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
101 |
begin |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
102 |
with Gear^, |
351 | 103 |
PHedgehog(Gear^.Hedgehog)^ do |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
104 |
begin |
95 | 105 |
if ((State and gstHHDriven) <> 0)and |
542 | 106 |
((State and (gstAttacked or gstHHChooseTarget)) = 0)and |
836 | 107 |
(((State and gstMoving) = 0) or ((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackInMove) <> 0))and |
108 |
((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
|
109 |
begin |
95 | 110 |
State:= State or gstAttacking; |
111 |
if Power = cMaxPower then Message:= Message and not gm_Attack |
|
351 | 112 |
else if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) = 0 then Message:= Message and not gm_Attack |
95 | 113 |
else begin |
114 |
if Power = 0 then |
|
115 |
begin |
|
351 | 116 |
AttackBar:= CurrentTeam^.AttackBar; |
117 |
PlaySound(sndThrowPowerUp, false) |
|
95 | 118 |
end; |
119 |
inc(Power) |
|
120 |
end; |
|
121 |
if ((Message and gm_Attack) <> 0) then exit; |
|
351 | 122 |
|
123 |
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
|
124 |
begin |
282 | 125 |
StopSound(sndThrowPowerUp); |
351 | 126 |
PlaySound(sndThrowRelease, false); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
127 |
end; |
519 | 128 |
xx:= SignAs(AngleSin(Angle), dX); |
900 | 129 |
yy:= -AngleCos(Angle); |
130 |
||
131 |
if ((Gear^.State and gstHHHJump) <> 0) then xx:= - xx; |
|
351 | 132 |
case Ammo^[CurSlot, CurAmmo].AmmoType of |
133 |
amGrenade: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Bomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
134 |
amClusterBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtClusterBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
|
135 |
amBazooka: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtAmmo_Grenade, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
|
136 |
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
|
137 |
amShotgun: begin |
351 | 138 |
PlaySound(sndShotgunReload, false); |
139 |
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
|
140 |
end; |
498 | 141 |
amPickHammer: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
866 | 142 |
amSkip: ParseCommand('/skip', true); |
351 | 143 |
amRope: CurAmmoGear:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtRope, 0, xx, yy, 0); |
800 | 144 |
amMine: begin |
145 |
AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtMine, 0, SignAs(_0_02, dX), _0, 3000); |
|
146 |
PlaySound(sndLaugh, false) |
|
147 |
end; |
|
876 | 148 |
amDEagle: CurAmmoGear:= AddGear(hwRound(X + xx * cHHRadius), hwRound(Y + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
1112 | 149 |
amDynamite: begin |
150 |
AddGear(hwRound(X) + hwSign(dX) * 7, hwRound(Y), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000); |
|
151 |
PlaySound(sndLaugh, false) |
|
152 |
end; |
|
979
edb8f208c1d9
Fix firepunch direction when attacking from high jump
unc0rr
parents:
958
diff
changeset
|
153 |
amFirePunch: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtFirePunch, 0, xx, _0, 0); |
925 | 154 |
amWhip: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtWhip, 0, SignAs(_1, dX), - _0_8, 0); |
854 | 155 |
amBaseballBat: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtShover, 0, xx * _0_5, yy * _0_5, 0); |
498 | 156 |
amParachute: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtParachute, 0, _0, _0, 0); |
157 |
amAirAttack: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
158 |
amMineStrike: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
159 |
amBlowTorch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
160 |
amGirder: CurAmmoGear:= AddGear(0, 0, gtGirder, Ammo^[CurSlot, CurAmmo].Pos, _0, _0, 0); |
|
520 | 161 |
amTeleport: CurAmmoGear:= AddGear(0, 0, gtTeleport, 0, _0, _0, 0); |
534 | 162 |
amSwitch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtSwitcher, 0, _0, _0, 0); |
924 | 163 |
amMortar: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtMortar, 0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0); |
984 | 164 |
amKamikaze: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtKamikaze, 0, xx * _0_5, yy * _0_5, 0); |
1112 | 165 |
amCake: begin |
166 |
CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 3, hwRound(Y), gtCake, 0, xx, _0, 0); |
|
167 |
PlaySound(sndLaugh, false) |
|
168 |
end; |
|
1286 | 169 |
amSeduction: CurAmmoGear:= AddGear(hwRound(X + xx * cHHRadius * 2), hwRound(Y + yy * cHHRadius * 2), gtSeduction, 0, xx * _0_4, yy * _0_4, 0); |
1261 | 170 |
amWatermelon: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtWatermelon, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); |
1263 | 171 |
amHellishBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtHellishBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 5000); |
1507 | 172 |
amNapalm: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 2, _0, _0, 0); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
173 |
end; |
829 | 174 |
|
175 |
uStats.AmmoUsed(Ammo^[CurSlot, CurAmmo].AmmoType); |
|
176 |
||
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
177 |
Power:= 0; |
930 | 178 |
if (CurAmmoGear <> nil) |
179 |
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
|
180 |
begin |
930 | 181 |
CurAmmoGear^.Ammo:= @(Ammo^[CurSlot, CurAmmo]); |
82 | 182 |
Message:= Message or gm_Attack; |
351 | 183 |
CurAmmoGear^.Message:= Message |
82 | 184 |
end else begin |
351 | 185 |
if not CurrentTeam^.ExtDriven and |
186 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a'); |
|
82 | 187 |
AfterAttack |
188 |
end |
|
95 | 189 |
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
|
190 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
191 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
192 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
193 |
procedure AfterAttack; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
194 |
begin |
602 | 195 |
with CurrentHedgehog^.Gear^, |
1286 | 196 |
CurrentHedgehog^ do |
197 |
begin |
|
198 |
Inc(AttacksNum); |
|
199 |
State:= State and not gstAttacking; |
|
200 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= AttacksNum) or |
|
201 |
((GameFlags and gfMultiWeapon) <> 0) then isInMultiShoot:= true |
|
202 |
else begin |
|
203 |
TurnTimeLeft:= Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType].TimeAfterTurn; |
|
204 |
State:= State or gstAttacked; |
|
205 |
OnUsedAmmo(CurrentHedgehog^) |
|
206 |
end; |
|
207 |
AttackBar:= 0; |
|
208 |
end |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
209 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
210 |
|
42 | 211 |
//////////////////////////////////////////////////////////////////////////////// |
863 | 212 |
procedure doStepHedgehogDead(Gear: PGear); |
868 | 213 |
const frametime = 200; |
214 |
timertime = frametime * 6; |
|
863 | 215 |
begin |
216 |
if Gear^.Timer > 1 then |
|
217 |
begin |
|
218 |
AllInactive:= false; |
|
868 | 219 |
dec(Gear^.Timer); |
220 |
if (Gear^.Timer mod frametime) = 0 then inc(Gear^.Pos) |
|
863 | 221 |
end else |
222 |
if Gear^.Timer = 1 then |
|
223 |
begin |
|
224 |
Gear^.State:= Gear^.State or gstNoDamage; |
|
225 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
226 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
227 |
DeleteGear(Gear); |
|
228 |
SetAllToActive |
|
229 |
end else // Gear^.Timer = 0 |
|
230 |
begin |
|
231 |
AllInactive:= false; |
|
868 | 232 |
Gear^.Z:= cCurrHHZ; |
233 |
RemoveGearFromList(Gear); |
|
234 |
InsertGearToList(Gear); |
|
863 | 235 |
PlaySound(sndByeBye, false); |
868 | 236 |
Gear^.Pos:= 0; |
237 |
Gear^.Timer:= timertime |
|
863 | 238 |
end |
239 |
end; |
|
240 |
||
241 |
//////////////////////////////////////////////////////////////////////////////// |
|
42 | 242 |
procedure PickUp(HH, Gear: PGear); |
295 | 243 |
var s: shortstring; |
244 |
a: TAmmoType; |
|
42 | 245 |
begin |
351 | 246 |
Gear^.Message:= gm_Destroy; |
247 |
case Gear^.Pos of |
|
295 | 248 |
posCaseAmmo: begin |
351 | 249 |
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
|
250 |
AddAmmo(PHedgehog(HH^.Hedgehog)^, a); |
1072 | 251 |
if (not (PHedgehog(HH^.Hedgehog)^.Team^.ExtDriven |
252 |
or (PHedgehog(HH^.Hedgehog)^.BotLevel > 0))) |
|
253 |
or (GameType = gmtDemo) then |
|
836 | 254 |
begin |
255 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
|
256 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
257 |
end |
|
295 | 258 |
end; |
42 | 259 |
posCaseHealth: begin |
351 | 260 |
inc(HH^.Health, Gear^.Health); |
261 |
str(Gear^.Health, s); |
|
295 | 262 |
s:= '+' + s; |
549 | 263 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
351 | 264 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
265 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team) |
|
42 | 266 |
end; |
435 | 267 |
end |
42 | 268 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
269 |
|
4 | 270 |
const StepTicks: LongWord = 0; |
271 |
||
302 | 272 |
procedure HedgehogStep(Gear: PGear); |
371 | 273 |
var PrevdX: LongInt; |
302 | 274 |
begin |
542 | 275 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
4 | 276 |
begin |
408 | 277 |
if isCursorVisible then |
278 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
279 |
with Ammo^[CurSlot, CurAmmo] do |
|
280 |
begin |
|
542 | 281 |
if (Gear^.Message and gm_Left ) <> 0 then |
408 | 282 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
283 |
else |
|
542 | 284 |
if (Gear^.Message and gm_Right ) <> 0 then |
408 | 285 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
286 |
else exit; |
|
423 | 287 |
StepTicks:= 200; |
408 | 288 |
exit |
289 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
290 |
|
1033 | 291 |
if ((Gear^.Message and gm_Animate) <> 0) then |
292 |
begin |
|
293 |
Gear^.Message:= 0; |
|
294 |
Gear^.State:= Gear^.State or gstAnimation; |
|
295 |
Gear^.Tag:= Gear^.MsgParam; |
|
296 |
Gear^.Timer:= 0; |
|
297 |
Gear^.Pos:= 0 |
|
298 |
end; |
|
299 |
||
351 | 300 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 301 |
begin |
542 | 302 |
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
|
303 |
DeleteCI(Gear); |
68 | 304 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 305 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
306 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 307 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 308 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 309 |
begin |
351 | 310 |
Gear^.dY:= -_0_15; |
498 | 311 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 312 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
799 | 313 |
PlaySound(sndJump1, false); |
4 | 314 |
exit |
315 |
end; |
|
316 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
317 |
|
351 | 318 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 319 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
320 |
DeleteCI(Gear); |
542 | 321 |
Gear^.Message:= Gear^.Message and not gm_HJump; |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
322 |
|
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
323 |
Gear^.dY:= -_0_2; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
324 |
SetLittle(Gear^.dX); |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
325 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
326 |
PlaySound(sndJump3, false); |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
327 |
exit |
4 | 328 |
end; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
329 |
|
351 | 330 |
PrevdX:= hwSign(Gear^.dX); |
331 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
|
332 |
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
|
333 |
|
74 | 334 |
StepTicks:= cHHStepTicks; |
610 | 335 |
if PrevdX <> hwSign(Gear^.dX) then |
336 |
begin |
|
337 |
FollowGear:= Gear; |
|
338 |
exit |
|
339 |
end; |
|
340 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
838 | 341 |
|
351 | 342 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
343 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 344 |
begin |
498 | 345 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
346 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
347 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
348 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
349 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
350 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
351 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
352 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
353 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
354 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
355 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
356 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 357 |
end; |
498 | 358 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
300 | 359 |
|
62 | 360 |
SetAllHHToActive; |
37 | 361 |
|
68 | 362 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 363 |
begin |
498 | 364 |
Gear^.Y:= Gear^.Y + _1; |
68 | 365 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 366 |
begin |
498 | 367 |
Gear^.Y:= Gear^.Y + _1; |
68 | 368 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 369 |
begin |
498 | 370 |
Gear^.Y:= Gear^.Y + _1; |
68 | 371 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 372 |
begin |
498 | 373 |
Gear^.Y:= Gear^.Y + _1; |
68 | 374 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 375 |
begin |
498 | 376 |
Gear^.Y:= Gear^.Y + _1; |
68 | 377 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 378 |
begin |
498 | 379 |
Gear^.Y:= Gear^.Y + _1; |
68 | 380 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 381 |
begin |
498 | 382 |
Gear^.Y:= Gear^.Y - _6; |
383 |
Gear^.dY:= _0; |
|
542 | 384 |
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
|
385 |
exit |
4 | 386 |
end; |
387 |
end |
|
388 |
end |
|
389 |
end |
|
390 |
end |
|
391 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
392 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
393 |
AddGearCI(Gear) |
4 | 394 |
end |
395 |
end; |
|
396 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
397 |
procedure HedgehogChAngle(Gear: PGear); |
958 | 398 |
var da: LongWord; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
399 |
begin |
958 | 400 |
with PHedgehog(Gear^.Hedgehog)^ do |
401 |
if (Ammo^[CurSlot, CurAmmo].AmmoType = amRope) |
|
402 |
and ((Gear^.State and (gstMoving or gstHHJumping)) = gstMoving) then da:= 2 else da:= 1; |
|
403 |
||
404 |
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Angle - da >= CurMinAngle) then dec(Gear^.Angle, da) |
|
952 | 405 |
else |
958 | 406 |
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
|
407 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
408 |
|
302 | 409 |
procedure doStepHedgehog(Gear: PGear); forward; |
410 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 411 |
procedure doStepHedgehogMoving(Gear: PGear); |
545 | 412 |
var isFalling: boolean; |
538 | 413 |
begin |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
414 |
isFalling:= (Gear^.dY.isNegative) or not TestCollisionYKick(Gear, 1); |
542 | 415 |
if isFalling then |
538 | 416 |
begin |
417 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
542 | 418 |
Gear^.State:= Gear^.State or gstMoving; |
538 | 419 |
Gear^.dY:= Gear^.dY + cGravity |
420 |
end else |
|
421 |
begin |
|
422 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
423 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
424 |
||
540 | 425 |
if not Gear^.dY.isNegative then |
426 |
begin |
|
427 |
CheckHHDamage(Gear); |
|
790
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
428 |
|
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
429 |
if ((Gear^.State and gstHHHJump) <> 0) and |
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
430 |
(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
|
431 |
|
542 | 432 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
540 | 433 |
Gear^.dY:= _0; |
434 |
end else Gear^.dY:= Gear^.dY + cGravity; |
|
538 | 435 |
|
436 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
|
437 |
end; |
|
438 |
||
439 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
|
783 | 440 |
|
538 | 441 |
if (Gear^.State and gstMoving) <> 0 then |
442 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
542 | 443 |
if not isFalling then |
538 | 444 |
if hwAbs(Gear^.dX) > _0_01 then |
445 |
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 |
|
446 |
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 |
|
447 |
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 |
|
448 |
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 |
|
449 |
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 |
|
450 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
451 |
else begin |
|
452 |
Gear^.State:= Gear^.State and not gstMoving; |
|
453 |
SetLittle(Gear^.dX) |
|
454 |
end |
|
455 |
else begin |
|
456 |
Gear^.State:= Gear^.State and not gstMoving; |
|
457 |
SetLittle(Gear^.dX) |
|
458 |
end |
|
1518 | 459 |
else if (hwAbs(Gear^.dX) > cLittle) |
460 |
and ((Gear^.State and gstHHJumping) = 0) |
|
461 |
then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
462 |
else SetLittle(Gear^.dX); |
|
538 | 463 |
|
542 | 464 |
if (not isFalling) and |
538 | 465 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
466 |
begin |
|
467 |
Gear^.State:= Gear^.State and not gstMoving; |
|
468 |
SetLittle(Gear^.dX); |
|
469 |
Gear^.dY:= _0 |
|
470 |
end else Gear^.State:= Gear^.State or gstMoving; |
|
471 |
||
472 |
if (Gear^.State and gstMoving) <> 0 then |
|
473 |
begin |
|
474 |
Gear^.State:= Gear^.State and not gstAnimation; |
|
475 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
476 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
477 |
if (not Gear^.dY.isNegative) and |
|
478 |
(not TestCollisionYKick(Gear, 1)) and |
|
479 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
480 |
begin |
|
481 |
CheckHHDamage(Gear); |
|
482 |
Gear^.dY:= _0; |
|
483 |
Gear^.Y:= Gear^.Y + _1 |
|
484 |
end; |
|
485 |
CheckGearDrowning(Gear) |
|
486 |
end |
|
487 |
end; |
|
488 |
||
302 | 489 |
procedure doStepHedgehogDriven(Gear: PGear); |
490 |
var t: PGear; |
|
491 |
begin |
|
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
492 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
493 |
AllInactive:= false |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
494 |
else |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
495 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
496 |
|
1035 | 497 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
498 |
begin |
|
499 |
TurnTimeLeft:= 0; |
|
500 |
Gear^.State:= Gear^.State and not (gstHHDriven or gstAnimation); |
|
501 |
if Gear^.Damage > 0 then |
|
502 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
|
503 |
exit |
|
504 |
end; |
|
505 |
||
1033 | 506 |
if (Gear^.State and gstAnimation) <> 0 then |
507 |
begin |
|
508 |
Gear^.Message:= 0; |
|
509 |
inc(Gear^.Timer); |
|
510 |
if Gear^.Timer = 125 then |
|
511 |
begin |
|
512 |
Gear^.Timer:= 0; |
|
513 |
inc(Gear^.Pos); |
|
1034 | 514 |
if Gear^.Pos = Wavez[TWave(Gear^.Tag)].FramesCount then |
1033 | 515 |
Gear^.State:= Gear^.State and not gstAnimation |
516 |
end; |
|
517 |
exit |
|
518 |
end; |
|
519 |
||
836 | 520 |
if ((Gear^.State and gstMoving) <> 0) |
521 |
or (StepTicks = cHHStepTicks) |
|
835
6f567934cc44
Automatically use parachute when vertical speed is high enough
unc0rr
parents:
829
diff
changeset
|
522 |
or (CurAmmoGear <> nil) then // we're moving |
836 | 523 |
begin |
839 | 524 |
with PHedgehog(Gear^.Hedgehog)^ do |
525 |
if (CurAmmoGear = nil) |
|
526 |
and (Gear^.dY > _0_39) |
|
527 |
and (Ammo^[CurSlot, CurAmmo].AmmoType = amParachute) then Gear^.Message:= Gear^.Message or gm_Attack; |
|
836 | 528 |
// check for case with ammo |
529 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
530 |
if t <> nil then |
|
531 |
PickUp(Gear, t) |
|
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
532 |
end; |
302 | 533 |
|
930 | 534 |
if (CurAmmoGear = nil) then |
535 |
if (((Gear^.Message and gm_Attack) <> 0) |
|
536 |
or ((Gear^.State and gstAttacking) <> 0)) then |
|
537 |
Attack(Gear) // should be before others to avoid desync with '/put' msg and changing weapon msgs |
|
538 |
else |
|
539 |
else with PHedgehog(Gear^.Hedgehog)^ do |
|
931 | 540 |
if ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) |
930 | 541 |
and ((Gear^.Message and gm_LJump) <> 0) |
931 | 542 |
and (((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_AltUse) <> 0) then |
543 |
begin |
|
544 |
Gear^.Message:= Gear^.Message and not gm_LJump; |
|
545 |
Attack(Gear) |
|
546 |
end; |
|
930 | 547 |
|
548 |
if (CurAmmoGear = nil) |
|
549 |
or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) then |
|
550 |
begin |
|
551 |
if ((Gear^.Message and gm_Slot) <> 0) then ChangeAmmo(Gear); |
|
552 |
||
553 |
if ((Gear^.Message and gm_Weapon) <> 0) then HHSetWeapon(Gear); |
|
554 |
||
555 |
if ((Gear^.Message and gm_Timer) <> 0) then HHSetTimer(Gear); |
|
556 |
end; |
|
557 |
||
302 | 558 |
if CurAmmoGear <> nil then |
559 |
begin |
|
351 | 560 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 561 |
exit |
562 |
end; |
|
563 |
||
952 | 564 |
if not isInMultiShoot then |
565 |
HedgehogChAngle(Gear); |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
566 |
|
542 | 567 |
if (Gear^.State and gstMoving) <> 0 then |
302 | 568 |
begin |
424 | 569 |
if ((Gear^.Message and gm_HJump) <> 0) and |
570 |
((Gear^.State and gstHHJumping) <> 0) and |
|
571 |
((Gear^.State and gstHHHJump) = 0) then |
|
572 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
|
302 | 573 |
begin |
542 | 574 |
Gear^.State:= Gear^.State or gstHHHJump or gstMoving; |
351 | 575 |
Gear^.dY:= -_0_25; |
799 | 576 |
Gear^.dX:= -SignAs(_0_02, Gear^.dX); |
577 |
PlaySound(sndJump2, false) |
|
302 | 578 |
end; |
351 | 579 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
538 | 580 |
|
581 |
if ((Gear^.State and gstHHJumping) <> 0) and |
|
582 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
|
583 |
||
584 |
doStepHedgehogMoving(Gear); |
|
542 | 585 |
|
1002 | 586 |
if ((Gear^.State and (gstMoving or gstDrowning)) = 0) then |
302 | 587 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
588 |
AddGearCI(Gear); |
542 | 589 |
StepTicks:= 350 |
302 | 590 |
end; |
591 |
exit |
|
538 | 592 |
end; |
302 | 593 |
|
1033 | 594 |
if not isInMultiShoot then |
595 |
begin |
|
596 |
if StepTicks > 0 then dec(StepTicks); |
|
597 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
598 |
end |
|
302 | 599 |
end; |
600 |
||
4 | 601 |
//////////////////////////////////////////////////////////////////////////////// |
602 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 603 |
var prevState: Longword; |
4 | 604 |
begin |
511 | 605 |
prevState:= Gear^.State; |
4 | 606 |
|
538 | 607 |
doStepHedgehogMoving(Gear); |
4 | 608 |
|
1002 | 609 |
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then |
865 | 610 |
begin |
1012 | 611 |
if Gear^.Damage > 0 then CalcRotationDirAngle(Gear); |
865 | 612 |
AllInactive:= false; |
613 |
exit |
|
614 |
end; |
|
4 | 615 |
|
863 | 616 |
if (Gear^.Health = 0) then |
617 |
begin |
|
868 | 618 |
if PrvInactive then |
864 | 619 |
begin |
620 |
Gear^.Timer:= 0; |
|
868 | 621 |
Gear^.State:= Gear^.State or gstHHDeath; |
622 |
Gear^.doStep:= @doStepHedgehogDead; |
|
1347 | 623 |
FollowGear:= Gear; |
868 | 624 |
PrvInactive:= false; |
625 |
AllInactive:= false |
|
864 | 626 |
end; |
863 | 627 |
exit |
628 |
end; |
|
4 | 629 |
|
1033 | 630 |
if ((Gear^.State and gstWait) = 0) and |
863 | 631 |
(prevState <> Gear^.State) then |
632 |
begin |
|
1033 | 633 |
Gear^.State:= gstWait; |
863 | 634 |
Gear^.Timer:= 150 |
635 |
end else |
|
636 |
begin |
|
637 |
if Gear^.Timer = 0 then |
|
638 |
begin |
|
639 |
Gear^.State:= 0; |
|
640 |
Gear^.Active:= false; |
|
641 |
AddGearCI(Gear); |
|
642 |
exit |
|
643 |
end else dec(Gear^.Timer) |
|
644 |
end; |
|
645 |
||
646 |
AllInactive:= false |
|
4 | 647 |
end; |
648 |
||
649 |
//////////////////////////////////////////////////////////////////////////////// |
|
650 |
procedure doStepHedgehog(Gear: PGear); |
|
651 |
begin |
|
351 | 652 |
if (Gear^.Message and gm_Destroy) <> 0 then |
1505 | 653 |
begin |
654 |
DeleteGear(Gear); |
|
655 |
exit |
|
656 |
end; |
|
657 |
||
658 |
//if Gear^.uid = 7 then |
|
659 |
//with Gear^ do AddFileLog('State: (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ')'); |
|
660 |
||
351 | 661 |
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear) |
511 | 662 |
else doStepHedgehogDriven(Gear) |
4 | 663 |
end; |