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