author | unc0rr |
Fri, 25 Jul 2008 10:56:05 +0000 | |
changeset 1088 | 9702e17146e6 |
parent 1072 | 6bc4389344c7 |
child 1089 | 24e9e1ca0394 |
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); |
498 | 149 |
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
|
150 |
amFirePunch: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtFirePunch, 0, xx, _0, 0); |
925 | 151 |
amWhip: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtWhip, 0, SignAs(_1, dX), - _0_8, 0); |
854 | 152 |
amBaseballBat: CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 10, hwRound(Y), gtShover, 0, xx * _0_5, yy * _0_5, 0); |
498 | 153 |
amParachute: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtParachute, 0, _0, _0, 0); |
154 |
amAirAttack: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
155 |
amMineStrike: AddGear(Ammo^[CurSlot, CurAmmo].Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
156 |
amBlowTorch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
157 |
amGirder: CurAmmoGear:= AddGear(0, 0, gtGirder, Ammo^[CurSlot, CurAmmo].Pos, _0, _0, 0); |
|
520 | 158 |
amTeleport: CurAmmoGear:= AddGear(0, 0, gtTeleport, 0, _0, _0, 0); |
534 | 159 |
amSwitch: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtSwitcher, 0, _0, _0, 0); |
924 | 160 |
amMortar: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtMortar, 0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0); |
984 | 161 |
amKamikaze: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtKamikaze, 0, xx * _0_5, yy * _0_5, 0); |
1088 | 162 |
amSpider: CurAmmoGear:= AddGear(hwRound(X), hwRound(Y), gtSpider, 0, xx, _0, 0); |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
163 |
end; |
829 | 164 |
|
165 |
uStats.AmmoUsed(Ammo^[CurSlot, CurAmmo].AmmoType); |
|
166 |
||
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
167 |
Power:= 0; |
930 | 168 |
if (CurAmmoGear <> nil) |
169 |
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
|
170 |
begin |
930 | 171 |
CurAmmoGear^.Ammo:= @(Ammo^[CurSlot, CurAmmo]); |
82 | 172 |
Message:= Message or gm_Attack; |
351 | 173 |
CurAmmoGear^.Message:= Message |
82 | 174 |
end else begin |
351 | 175 |
if not CurrentTeam^.ExtDriven and |
176 |
((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Power) <> 0) then SendIPC('a'); |
|
82 | 177 |
AfterAttack |
178 |
end |
|
95 | 179 |
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
|
180 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
181 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
182 |
|
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
183 |
procedure AfterAttack; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
184 |
begin |
602 | 185 |
with CurrentHedgehog^.Gear^, |
186 |
CurrentHedgehog^ do |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
187 |
begin |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
188 |
Inc(AttacksNum); |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
189 |
State:= State and not gstAttacking; |
614 | 190 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= AttacksNum) or |
191 |
((GameFlags and gfMultiWeapon) <> 0) then isInMultiShoot:= true |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
192 |
else begin |
351 | 193 |
TurnTimeLeft:= Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType].TimeAfterTurn; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
194 |
State:= State or gstAttacked; |
602 | 195 |
OnUsedAmmo(CurrentHedgehog^) |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
196 |
end; |
95 | 197 |
AttackBar:= 0; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
198 |
end |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
199 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
200 |
|
42 | 201 |
//////////////////////////////////////////////////////////////////////////////// |
863 | 202 |
procedure doStepHedgehogDead(Gear: PGear); |
868 | 203 |
const frametime = 200; |
204 |
timertime = frametime * 6; |
|
863 | 205 |
begin |
206 |
if Gear^.Timer > 1 then |
|
207 |
begin |
|
208 |
AllInactive:= false; |
|
868 | 209 |
dec(Gear^.Timer); |
210 |
if (Gear^.Timer mod frametime) = 0 then inc(Gear^.Pos) |
|
863 | 211 |
end else |
212 |
if Gear^.Timer = 1 then |
|
213 |
begin |
|
214 |
Gear^.State:= Gear^.State or gstNoDamage; |
|
215 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
216 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
217 |
DeleteGear(Gear); |
|
218 |
SetAllToActive |
|
219 |
end else // Gear^.Timer = 0 |
|
220 |
begin |
|
221 |
AllInactive:= false; |
|
868 | 222 |
Gear^.Z:= cCurrHHZ; |
223 |
RemoveGearFromList(Gear); |
|
224 |
InsertGearToList(Gear); |
|
863 | 225 |
PlaySound(sndByeBye, false); |
868 | 226 |
Gear^.Pos:= 0; |
227 |
Gear^.Timer:= timertime |
|
863 | 228 |
end |
229 |
end; |
|
230 |
||
231 |
//////////////////////////////////////////////////////////////////////////////// |
|
42 | 232 |
procedure PickUp(HH, Gear: PGear); |
295 | 233 |
var s: shortstring; |
234 |
a: TAmmoType; |
|
42 | 235 |
begin |
351 | 236 |
Gear^.Message:= gm_Destroy; |
237 |
case Gear^.Pos of |
|
295 | 238 |
posCaseAmmo: begin |
351 | 239 |
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
|
240 |
AddAmmo(PHedgehog(HH^.Hedgehog)^, a); |
1072 | 241 |
if (not (PHedgehog(HH^.Hedgehog)^.Team^.ExtDriven |
242 |
or (PHedgehog(HH^.Hedgehog)^.BotLevel > 0))) |
|
243 |
or (GameType = gmtDemo) then |
|
836 | 244 |
begin |
245 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
|
246 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
247 |
end |
|
295 | 248 |
end; |
42 | 249 |
posCaseHealth: begin |
351 | 250 |
inc(HH^.Health, Gear^.Health); |
251 |
str(Gear^.Health, s); |
|
295 | 252 |
s:= '+' + s; |
549 | 253 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
351 | 254 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
255 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team) |
|
42 | 256 |
end; |
435 | 257 |
end |
42 | 258 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
259 |
|
4 | 260 |
const StepTicks: LongWord = 0; |
261 |
||
302 | 262 |
procedure HedgehogStep(Gear: PGear); |
371 | 263 |
var PrevdX: LongInt; |
302 | 264 |
begin |
542 | 265 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
4 | 266 |
begin |
408 | 267 |
if isCursorVisible then |
268 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
269 |
with Ammo^[CurSlot, CurAmmo] do |
|
270 |
begin |
|
542 | 271 |
if (Gear^.Message and gm_Left ) <> 0 then |
408 | 272 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
273 |
else |
|
542 | 274 |
if (Gear^.Message and gm_Right ) <> 0 then |
408 | 275 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
276 |
else exit; |
|
423 | 277 |
StepTicks:= 200; |
408 | 278 |
exit |
279 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
280 |
|
1033 | 281 |
if ((Gear^.Message and gm_Animate) <> 0) then |
282 |
begin |
|
283 |
Gear^.Message:= 0; |
|
284 |
Gear^.State:= Gear^.State or gstAnimation; |
|
285 |
Gear^.Tag:= Gear^.MsgParam; |
|
286 |
Gear^.Timer:= 0; |
|
287 |
Gear^.Pos:= 0 |
|
288 |
end; |
|
289 |
||
351 | 290 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 291 |
begin |
542 | 292 |
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
|
293 |
DeleteCI(Gear); |
68 | 294 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 295 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
296 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 297 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 298 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 299 |
begin |
351 | 300 |
Gear^.dY:= -_0_15; |
498 | 301 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 302 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
799 | 303 |
PlaySound(sndJump1, false); |
4 | 304 |
exit |
305 |
end; |
|
306 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
307 |
|
351 | 308 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 309 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
310 |
DeleteCI(Gear); |
542 | 311 |
Gear^.Message:= Gear^.Message and not gm_HJump; |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
312 |
|
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
313 |
Gear^.dY:= -_0_2; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
314 |
SetLittle(Gear^.dX); |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
315 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
316 |
PlaySound(sndJump3, false); |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
317 |
exit |
4 | 318 |
end; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
319 |
|
351 | 320 |
PrevdX:= hwSign(Gear^.dX); |
321 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
|
322 |
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
|
323 |
|
74 | 324 |
StepTicks:= cHHStepTicks; |
610 | 325 |
if PrevdX <> hwSign(Gear^.dX) then |
326 |
begin |
|
327 |
FollowGear:= Gear; |
|
328 |
exit |
|
329 |
end; |
|
330 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
838 | 331 |
|
351 | 332 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
333 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 334 |
begin |
498 | 335 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
336 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
337 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
338 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
339 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
340 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
341 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
342 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
343 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
344 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
345 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
346 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 347 |
end; |
498 | 348 |
if not TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
300 | 349 |
|
62 | 350 |
SetAllHHToActive; |
37 | 351 |
|
68 | 352 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 353 |
begin |
498 | 354 |
Gear^.Y:= Gear^.Y + _1; |
68 | 355 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 356 |
begin |
498 | 357 |
Gear^.Y:= Gear^.Y + _1; |
68 | 358 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 359 |
begin |
498 | 360 |
Gear^.Y:= Gear^.Y + _1; |
68 | 361 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 362 |
begin |
498 | 363 |
Gear^.Y:= Gear^.Y + _1; |
68 | 364 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 365 |
begin |
498 | 366 |
Gear^.Y:= Gear^.Y + _1; |
68 | 367 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 368 |
begin |
498 | 369 |
Gear^.Y:= Gear^.Y + _1; |
68 | 370 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 371 |
begin |
498 | 372 |
Gear^.Y:= Gear^.Y - _6; |
373 |
Gear^.dY:= _0; |
|
542 | 374 |
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
|
375 |
exit |
4 | 376 |
end; |
377 |
end |
|
378 |
end |
|
379 |
end |
|
380 |
end |
|
381 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
382 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
383 |
AddGearCI(Gear) |
4 | 384 |
end |
385 |
end; |
|
386 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
387 |
procedure HedgehogChAngle(Gear: PGear); |
958 | 388 |
var da: LongWord; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
389 |
begin |
958 | 390 |
with PHedgehog(Gear^.Hedgehog)^ do |
391 |
if (Ammo^[CurSlot, CurAmmo].AmmoType = amRope) |
|
392 |
and ((Gear^.State and (gstMoving or gstHHJumping)) = gstMoving) then da:= 2 else da:= 1; |
|
393 |
||
394 |
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Angle - da >= CurMinAngle) then dec(Gear^.Angle, da) |
|
952 | 395 |
else |
958 | 396 |
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
|
397 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
398 |
|
302 | 399 |
procedure doStepHedgehog(Gear: PGear); forward; |
400 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 401 |
procedure doStepHedgehogMoving(Gear: PGear); |
545 | 402 |
var isFalling: boolean; |
538 | 403 |
begin |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
404 |
isFalling:= (Gear^.dY.isNegative) or not TestCollisionYKick(Gear, 1); |
542 | 405 |
if isFalling then |
538 | 406 |
begin |
407 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
542 | 408 |
Gear^.State:= Gear^.State or gstMoving; |
538 | 409 |
Gear^.dY:= Gear^.dY + cGravity |
410 |
end else |
|
411 |
begin |
|
412 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
413 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
414 |
||
540 | 415 |
if not Gear^.dY.isNegative then |
416 |
begin |
|
417 |
CheckHHDamage(Gear); |
|
790
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
418 |
|
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
419 |
if ((Gear^.State and gstHHHJump) <> 0) and |
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
420 |
(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
|
421 |
|
542 | 422 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
540 | 423 |
Gear^.dY:= _0; |
424 |
end else Gear^.dY:= Gear^.dY + cGravity; |
|
538 | 425 |
|
426 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
|
427 |
end; |
|
428 |
||
429 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
|
783 | 430 |
|
538 | 431 |
if (Gear^.State and gstMoving) <> 0 then |
432 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
542 | 433 |
if not isFalling then |
538 | 434 |
if hwAbs(Gear^.dX) > _0_01 then |
435 |
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 |
|
436 |
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 |
|
437 |
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 |
|
438 |
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 |
|
439 |
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 |
|
440 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
441 |
else begin |
|
442 |
Gear^.State:= Gear^.State and not gstMoving; |
|
443 |
SetLittle(Gear^.dX) |
|
444 |
end |
|
445 |
else begin |
|
446 |
Gear^.State:= Gear^.State and not gstMoving; |
|
447 |
SetLittle(Gear^.dX) |
|
448 |
end |
|
449 |
else if hwAbs(Gear^.dX) > cLittle then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
450 |
else SetLittle(Gear^.dX); |
|
451 |
||
542 | 452 |
if (not isFalling) and |
538 | 453 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
454 |
begin |
|
455 |
Gear^.State:= Gear^.State and not gstMoving; |
|
456 |
SetLittle(Gear^.dX); |
|
457 |
Gear^.dY:= _0 |
|
458 |
end else Gear^.State:= Gear^.State or gstMoving; |
|
459 |
||
460 |
if (Gear^.State and gstMoving) <> 0 then |
|
461 |
begin |
|
462 |
Gear^.State:= Gear^.State and not gstAnimation; |
|
463 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
464 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
465 |
if (not Gear^.dY.isNegative) and |
|
466 |
(not TestCollisionYKick(Gear, 1)) and |
|
467 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
468 |
begin |
|
469 |
CheckHHDamage(Gear); |
|
470 |
Gear^.dY:= _0; |
|
471 |
Gear^.Y:= Gear^.Y + _1 |
|
472 |
end; |
|
473 |
CheckGearDrowning(Gear) |
|
474 |
end |
|
475 |
end; |
|
476 |
||
302 | 477 |
procedure doStepHedgehogDriven(Gear: PGear); |
478 |
var t: PGear; |
|
479 |
begin |
|
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
480 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
481 |
AllInactive:= false |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
482 |
else |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
483 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
484 |
|
1035 | 485 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
486 |
begin |
|
487 |
TurnTimeLeft:= 0; |
|
488 |
Gear^.State:= Gear^.State and not (gstHHDriven or gstAnimation); |
|
489 |
if Gear^.Damage > 0 then |
|
490 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
|
491 |
exit |
|
492 |
end; |
|
493 |
||
1033 | 494 |
if (Gear^.State and gstAnimation) <> 0 then |
495 |
begin |
|
496 |
Gear^.Message:= 0; |
|
497 |
inc(Gear^.Timer); |
|
498 |
if Gear^.Timer = 125 then |
|
499 |
begin |
|
500 |
Gear^.Timer:= 0; |
|
501 |
inc(Gear^.Pos); |
|
1034 | 502 |
if Gear^.Pos = Wavez[TWave(Gear^.Tag)].FramesCount then |
1033 | 503 |
Gear^.State:= Gear^.State and not gstAnimation |
504 |
end; |
|
505 |
exit |
|
506 |
end; |
|
507 |
||
836 | 508 |
if ((Gear^.State and gstMoving) <> 0) |
509 |
or (StepTicks = cHHStepTicks) |
|
835
6f567934cc44
Automatically use parachute when vertical speed is high enough
unc0rr
parents:
829
diff
changeset
|
510 |
or (CurAmmoGear <> nil) then // we're moving |
836 | 511 |
begin |
839 | 512 |
with PHedgehog(Gear^.Hedgehog)^ do |
513 |
if (CurAmmoGear = nil) |
|
514 |
and (Gear^.dY > _0_39) |
|
515 |
and (Ammo^[CurSlot, CurAmmo].AmmoType = amParachute) then Gear^.Message:= Gear^.Message or gm_Attack; |
|
836 | 516 |
// check for case with ammo |
517 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
518 |
if t <> nil then |
|
519 |
PickUp(Gear, t) |
|
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
520 |
end; |
302 | 521 |
|
930 | 522 |
if (CurAmmoGear = nil) then |
523 |
if (((Gear^.Message and gm_Attack) <> 0) |
|
524 |
or ((Gear^.State and gstAttacking) <> 0)) then |
|
525 |
Attack(Gear) // should be before others to avoid desync with '/put' msg and changing weapon msgs |
|
526 |
else |
|
527 |
else with PHedgehog(Gear^.Hedgehog)^ do |
|
931 | 528 |
if ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) |
930 | 529 |
and ((Gear^.Message and gm_LJump) <> 0) |
931 | 530 |
and (((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_AltUse) <> 0) then |
531 |
begin |
|
532 |
Gear^.Message:= Gear^.Message and not gm_LJump; |
|
533 |
Attack(Gear) |
|
534 |
end; |
|
930 | 535 |
|
536 |
if (CurAmmoGear = nil) |
|
537 |
or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) then |
|
538 |
begin |
|
539 |
if ((Gear^.Message and gm_Slot) <> 0) then ChangeAmmo(Gear); |
|
540 |
||
541 |
if ((Gear^.Message and gm_Weapon) <> 0) then HHSetWeapon(Gear); |
|
542 |
||
543 |
if ((Gear^.Message and gm_Timer) <> 0) then HHSetTimer(Gear); |
|
544 |
end; |
|
545 |
||
302 | 546 |
if CurAmmoGear <> nil then |
547 |
begin |
|
351 | 548 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 549 |
exit |
550 |
end; |
|
551 |
||
952 | 552 |
if not isInMultiShoot then |
553 |
HedgehogChAngle(Gear); |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
554 |
|
542 | 555 |
if (Gear^.State and gstMoving) <> 0 then |
302 | 556 |
begin |
424 | 557 |
if ((Gear^.Message and gm_HJump) <> 0) and |
558 |
((Gear^.State and gstHHJumping) <> 0) and |
|
559 |
((Gear^.State and gstHHHJump) = 0) then |
|
560 |
if (not (hwAbs(Gear^.dX) > cLittle)) and (Gear^.dY < -_0_02) then |
|
302 | 561 |
begin |
542 | 562 |
Gear^.State:= Gear^.State or gstHHHJump or gstMoving; |
351 | 563 |
Gear^.dY:= -_0_25; |
799 | 564 |
Gear^.dX:= -SignAs(_0_02, Gear^.dX); |
565 |
PlaySound(sndJump2, false) |
|
302 | 566 |
end; |
351 | 567 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
538 | 568 |
|
569 |
if ((Gear^.State and gstHHJumping) <> 0) and |
|
570 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
|
571 |
||
572 |
doStepHedgehogMoving(Gear); |
|
542 | 573 |
|
1002 | 574 |
if ((Gear^.State and (gstMoving or gstDrowning)) = 0) then |
302 | 575 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
576 |
AddGearCI(Gear); |
542 | 577 |
StepTicks:= 350 |
302 | 578 |
end; |
579 |
exit |
|
538 | 580 |
end; |
302 | 581 |
|
1033 | 582 |
if not isInMultiShoot then |
583 |
begin |
|
584 |
if StepTicks > 0 then dec(StepTicks); |
|
585 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
586 |
end |
|
302 | 587 |
end; |
588 |
||
4 | 589 |
//////////////////////////////////////////////////////////////////////////////// |
590 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 591 |
var prevState: Longword; |
4 | 592 |
begin |
511 | 593 |
prevState:= Gear^.State; |
4 | 594 |
|
538 | 595 |
doStepHedgehogMoving(Gear); |
4 | 596 |
|
1002 | 597 |
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then |
865 | 598 |
begin |
1012 | 599 |
if Gear^.Damage > 0 then CalcRotationDirAngle(Gear); |
865 | 600 |
AllInactive:= false; |
601 |
exit |
|
602 |
end; |
|
4 | 603 |
|
863 | 604 |
if (Gear^.Health = 0) then |
605 |
begin |
|
868 | 606 |
if PrvInactive then |
864 | 607 |
begin |
608 |
Gear^.Timer:= 0; |
|
868 | 609 |
Gear^.State:= Gear^.State or gstHHDeath; |
610 |
Gear^.doStep:= @doStepHedgehogDead; |
|
611 |
PrvInactive:= false; |
|
612 |
AllInactive:= false |
|
864 | 613 |
end; |
863 | 614 |
exit |
615 |
end; |
|
4 | 616 |
|
1033 | 617 |
if ((Gear^.State and gstWait) = 0) and |
863 | 618 |
(prevState <> Gear^.State) then |
619 |
begin |
|
1033 | 620 |
Gear^.State:= gstWait; |
863 | 621 |
Gear^.Timer:= 150 |
622 |
end else |
|
623 |
begin |
|
624 |
if Gear^.Timer = 0 then |
|
625 |
begin |
|
626 |
Gear^.State:= 0; |
|
627 |
Gear^.Active:= false; |
|
628 |
AddGearCI(Gear); |
|
629 |
exit |
|
630 |
end else dec(Gear^.Timer) |
|
631 |
end; |
|
632 |
||
633 |
AllInactive:= false |
|
4 | 634 |
end; |
635 |
||
636 |
//////////////////////////////////////////////////////////////////////////////// |
|
637 |
procedure doStepHedgehog(Gear: PGear); |
|
638 |
begin |
|
351 | 639 |
if (Gear^.Message and gm_Destroy) <> 0 then |
4 | 640 |
begin |
641 |
DeleteGear(Gear); |
|
642 |
exit |
|
643 |
end; |
|
351 | 644 |
if (Gear^.State and gstHHDriven) = 0 then doStepHedgehogFree(Gear) |
511 | 645 |
else doStepHedgehogDriven(Gear) |
4 | 646 |
end; |