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