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