author | nemo |
Thu, 15 Oct 2009 19:16:50 +0000 | |
changeset 2463 | 34a484b2ddd6 |
parent 2457 | ecf0c7e7995b |
child 2464 | 851b4e47ed2b |
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); |
|
2457
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2434
diff
changeset
|
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; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
237 |
begin |
602 | 238 |
with CurrentHedgehog^.Gear^, |
1286 | 239 |
CurrentHedgehog^ do |
240 |
begin |
|
1849 | 241 |
State:= State and not gstAttacking; |
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
242 |
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
|
243 |
begin |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
244 |
Inc(AttacksNum); |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
245 |
if (Ammo^[CurSlot, CurAmmo].NumPerTurn >= AttacksNum) or |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
246 |
((GameFlags and gfMultiWeapon) <> 0) then |
2202 | 247 |
begin |
248 |
AddCaption(inttostr(Ammo^[CurSlot, CurAmmo].NumPerTurn+1-AttacksNum)+' '+trmsg[sidRemaining], $FFFFFF, capgrpAmmostate); |
|
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
249 |
isInMultiShoot:= true |
2202 | 250 |
end |
1883
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
251 |
else |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
252 |
begin |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
253 |
TurnTimeLeft:= Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType].TimeAfterTurn; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
254 |
State:= State or gstAttacked; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
255 |
OnUsedAmmo(CurrentHedgehog^); |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
256 |
end; |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
257 |
end |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
258 |
else |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
259 |
begin |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
260 |
OnUsedAmmo(CurrentHedgehog^); |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
261 |
ApplyAmmoChanges(CurrentHedgehog^); |
7c7476f56114
- Clear gm_Slot flag even if you can't switch ammo:
unc0rr
parents:
1865
diff
changeset
|
262 |
end; |
1286 | 263 |
AttackBar:= 0; |
264 |
end |
|
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
265 |
end; |
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
266 |
|
42 | 267 |
//////////////////////////////////////////////////////////////////////////////// |
863 | 268 |
procedure doStepHedgehogDead(Gear: PGear); |
868 | 269 |
const frametime = 200; |
270 |
timertime = frametime * 6; |
|
863 | 271 |
begin |
272 |
if Gear^.Timer > 1 then |
|
273 |
begin |
|
274 |
AllInactive:= false; |
|
868 | 275 |
dec(Gear^.Timer); |
276 |
if (Gear^.Timer mod frametime) = 0 then inc(Gear^.Pos) |
|
863 | 277 |
end else |
278 |
if Gear^.Timer = 1 then |
|
279 |
begin |
|
280 |
Gear^.State:= Gear^.State or gstNoDamage; |
|
281 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 30, EXPLAutoSound); |
|
282 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
283 |
DeleteGear(Gear); |
|
284 |
SetAllToActive |
|
285 |
end else // Gear^.Timer = 0 |
|
286 |
begin |
|
287 |
AllInactive:= false; |
|
868 | 288 |
Gear^.Z:= cCurrHHZ; |
289 |
RemoveGearFromList(Gear); |
|
290 |
InsertGearToList(Gear); |
|
1669 | 291 |
PlaySound(sndByeBye, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
868 | 292 |
Gear^.Pos:= 0; |
293 |
Gear^.Timer:= timertime |
|
863 | 294 |
end |
295 |
end; |
|
296 |
||
297 |
//////////////////////////////////////////////////////////////////////////////// |
|
42 | 298 |
procedure PickUp(HH, Gear: PGear); |
295 | 299 |
var s: shortstring; |
300 |
a: TAmmoType; |
|
2428 | 301 |
i: Integer; |
42 | 302 |
begin |
351 | 303 |
Gear^.Message:= gm_Destroy; |
2463
34a484b2ddd6
Play shotgun for weapon crates. Suggestion by Smaxx. Using "placed" for health/utility - could use a prettier sound for health now that there are health animation
nemo
parents:
2457
diff
changeset
|
304 |
if Gear^.Pos = posCaseAmmo then PlaySound(sndShotgunFire, false, nil) |
34a484b2ddd6
Play shotgun for weapon crates. Suggestion by Smaxx. Using "placed" for health/utility - could use a prettier sound for health now that there are health animation
nemo
parents:
2457
diff
changeset
|
305 |
else PlaySound(sndPlaced, false, nil); |
351 | 306 |
case Gear^.Pos of |
1964 | 307 |
posCaseUtility, |
295 | 308 |
posCaseAmmo: begin |
351 | 309 |
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
|
310 |
AddAmmo(PHedgehog(HH^.Hedgehog)^, a); |
1072 | 311 |
if (not (PHedgehog(HH^.Hedgehog)^.Team^.ExtDriven |
312 |
or (PHedgehog(HH^.Hedgehog)^.BotLevel > 0))) |
|
313 |
or (GameType = gmtDemo) then |
|
836 | 314 |
begin |
315 |
s:= trammo[Ammoz[a].NameId] + '(+' + IntToStr(Ammoz[a].NumberInCase) + ')'; |
|
316 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
|
317 |
end |
|
295 | 318 |
end; |
42 | 319 |
posCaseHealth: begin |
351 | 320 |
inc(HH^.Health, Gear^.Health); |
321 |
str(Gear^.Health, s); |
|
295 | 322 |
s:= '+' + s; |
549 | 323 |
AddCaption(s, PHedgehog(HH^.Hedgehog)^.Team^.Clan^.Color, capgrpAmmoinfo); |
351 | 324 |
RenderHealth(PHedgehog(HH^.Hedgehog)^); |
2428 | 325 |
RecountTeamHealth(PHedgehog(HH^.Hedgehog)^.Team); |
326 |
||
327 |
i:= 0; |
|
328 |
while i < Gear^.Health do |
|
329 |
begin |
|
330 |
AddVisualGear(hwRound(HH^.X), hwRound(HH^.Y), vgtHealth); |
|
331 |
inc(i, 5); |
|
332 |
end; |
|
42 | 333 |
end; |
435 | 334 |
end |
42 | 335 |
end; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
16
diff
changeset
|
336 |
|
4 | 337 |
const StepTicks: LongWord = 0; |
338 |
||
302 | 339 |
procedure HedgehogStep(Gear: PGear); |
371 | 340 |
var PrevdX: LongInt; |
302 | 341 |
begin |
542 | 342 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
4 | 343 |
begin |
408 | 344 |
if isCursorVisible then |
345 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
346 |
with Ammo^[CurSlot, CurAmmo] do |
|
347 |
begin |
|
542 | 348 |
if (Gear^.Message and gm_Left ) <> 0 then |
408 | 349 |
Pos:= (Pos + Ammoz[AmmoType].PosCount - 1) mod Ammoz[AmmoType].PosCount |
350 |
else |
|
542 | 351 |
if (Gear^.Message and gm_Right ) <> 0 then |
408 | 352 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
353 |
else exit; |
|
423 | 354 |
StepTicks:= 200; |
408 | 355 |
exit |
356 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
357 |
|
1033 | 358 |
if ((Gear^.Message and gm_Animate) <> 0) then |
359 |
begin |
|
360 |
Gear^.Message:= 0; |
|
361 |
Gear^.State:= Gear^.State or gstAnimation; |
|
362 |
Gear^.Tag:= Gear^.MsgParam; |
|
363 |
Gear^.Timer:= 0; |
|
364 |
Gear^.Pos:= 0 |
|
365 |
end; |
|
366 |
||
351 | 367 |
if ((Gear^.Message and gm_LJump ) <> 0) then |
4 | 368 |
begin |
542 | 369 |
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
|
370 |
DeleteCI(Gear); |
68 | 371 |
if not TestCollisionYwithGear(Gear, -1) then |
498 | 372 |
if not TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _2 else |
373 |
if not TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) then Gear^.Y:= Gear^.Y - _1; |
|
351 | 374 |
if not (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) |
68 | 375 |
or TestCollisionYwithGear(Gear, -1)) then |
4 | 376 |
begin |
351 | 377 |
Gear^.dY:= -_0_15; |
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
378 |
if not cArtillery then Gear^.dX:= SignAs(_0_15, Gear^.dX); |
542 | 379 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
1669 | 380 |
PlaySound(sndJump1, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
4 | 381 |
exit |
382 |
end; |
|
383 |
end; |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
384 |
|
351 | 385 |
if ((Gear^.Message and gm_HJump ) <> 0) then |
4 | 386 |
begin |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
387 |
DeleteCI(Gear); |
542 | 388 |
Gear^.Message:= Gear^.Message and not gm_HJump; |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
389 |
|
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
390 |
Gear^.dY:= -_0_2; |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
391 |
SetLittle(Gear^.dX); |
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
392 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
1669 | 393 |
PlaySound(sndJump3, false, PHedgehog(Gear^.Hedgehog)^.Team^.voicepack); |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
394 |
exit |
4 | 395 |
end; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
396 |
|
351 | 397 |
PrevdX:= hwSign(Gear^.dX); |
398 |
if (Gear^.Message and gm_Left )<>0 then Gear^.dX:= -cLittle else |
|
399 |
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
|
400 |
|
74 | 401 |
StepTicks:= cHHStepTicks; |
610 | 402 |
if PrevdX <> hwSign(Gear^.dX) then |
403 |
begin |
|
404 |
FollowGear:= Gear; |
|
405 |
exit |
|
406 |
end; |
|
407 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
838 | 408 |
|
351 | 409 |
PHedgehog(Gear^.Hedgehog)^.visStepPos:= (PHedgehog(Gear^.Hedgehog)^.visStepPos + 1) and 7; |
410 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
|
4 | 411 |
begin |
498 | 412 |
if not (TestCollisionXwithXYShift(Gear, _0, -6, hwSign(Gear^.dX)) |
413 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
414 |
if not (TestCollisionXwithXYShift(Gear, _0, -5, hwSign(Gear^.dX)) |
|
415 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
416 |
if not (TestCollisionXwithXYShift(Gear, _0, -4, hwSign(Gear^.dX)) |
|
417 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
418 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
|
419 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
420 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
|
421 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
422 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
|
423 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
|
4 | 424 |
end; |
1528 | 425 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
426 |
if (not cArtillery) and (not TestCollisionXwithGear(Gear, hwSign(Gear^.dX))) then Gear^.X:= Gear^.X + SignAs(_1, Gear^.dX); |
62 | 427 |
SetAllHHToActive; |
37 | 428 |
|
68 | 429 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 430 |
begin |
498 | 431 |
Gear^.Y:= Gear^.Y + _1; |
68 | 432 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 433 |
begin |
498 | 434 |
Gear^.Y:= Gear^.Y + _1; |
68 | 435 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 436 |
begin |
498 | 437 |
Gear^.Y:= Gear^.Y + _1; |
68 | 438 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 439 |
begin |
498 | 440 |
Gear^.Y:= Gear^.Y + _1; |
68 | 441 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 442 |
begin |
498 | 443 |
Gear^.Y:= Gear^.Y + _1; |
68 | 444 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 445 |
begin |
498 | 446 |
Gear^.Y:= Gear^.Y + _1; |
68 | 447 |
if not TestCollisionYwithGear(Gear, 1) then |
4 | 448 |
begin |
498 | 449 |
Gear^.Y:= Gear^.Y - _6; |
450 |
Gear^.dY:= _0; |
|
542 | 451 |
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
|
452 |
exit |
4 | 453 |
end; |
454 |
end |
|
455 |
end |
|
456 |
end |
|
457 |
end |
|
458 |
end |
|
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
459 |
end; |
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
460 |
AddGearCI(Gear) |
4 | 461 |
end |
462 |
end; |
|
463 |
||
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
464 |
procedure HedgehogChAngle(Gear: PGear); |
958 | 465 |
var da: LongWord; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
466 |
begin |
958 | 467 |
with PHedgehog(Gear^.Hedgehog)^ do |
468 |
if (Ammo^[CurSlot, CurAmmo].AmmoType = amRope) |
|
469 |
and ((Gear^.State and (gstMoving or gstHHJumping)) = gstMoving) then da:= 2 else da:= 1; |
|
470 |
||
1639 | 471 |
if (((Gear^.Message and gm_Precise) = 0) or ((GameTicks mod 5) = 1)) then |
472 |
if ((Gear^.Message and gm_Up) <> 0) and (Gear^.Angle - da >= CurMinAngle) then dec(Gear^.Angle, da) |
|
473 |
else |
|
1689 | 474 |
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
|
475 |
end; |
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
476 |
|
302 | 477 |
procedure doStepHedgehog(Gear: PGear); forward; |
478 |
//////////////////////////////////////////////////////////////////////////////// |
|
538 | 479 |
procedure doStepHedgehogMoving(Gear: PGear); |
545 | 480 |
var isFalling: boolean; |
538 | 481 |
begin |
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
482 |
isFalling:= (Gear^.dY.isNegative) or not TestCollisionYKick(Gear, 1); |
542 | 483 |
if isFalling then |
538 | 484 |
begin |
485 |
if (Gear^.dY.isNegative) and TestCollisionYKick(Gear, -1) then Gear^.dY:= _0; |
|
542 | 486 |
Gear^.State:= Gear^.State or gstMoving; |
538 | 487 |
Gear^.dY:= Gear^.dY + cGravity |
488 |
end else |
|
489 |
begin |
|
490 |
if ((hwAbs(Gear^.dX) + hwAbs(Gear^.dY)) < _0_55) |
|
491 |
and ((Gear^.State and gstHHJumping) <> 0) then SetLittle(Gear^.dX); |
|
492 |
||
540 | 493 |
if not Gear^.dY.isNegative then |
494 |
begin |
|
495 |
CheckHHDamage(Gear); |
|
790
a6f442173822
Make high jump behaviour like in worms (back somersault)
unc0rr
parents:
783
diff
changeset
|
496 |
|
2137 | 497 |
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
|
498 |
(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
|
499 |
|
542 | 500 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
540 | 501 |
Gear^.dY:= _0; |
502 |
end else Gear^.dY:= Gear^.dY + cGravity; |
|
538 | 503 |
|
504 |
if ((Gear^.State and gstMoving) <> 0) then Gear^.dX:= Gear^.dX * Gear^.Friction |
|
505 |
end; |
|
506 |
||
507 |
if (Gear^.State <> 0) then DeleteCI(Gear); |
|
783 | 508 |
|
538 | 509 |
if (Gear^.State and gstMoving) <> 0 then |
510 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) then |
|
542 | 511 |
if not isFalling then |
538 | 512 |
if hwAbs(Gear^.dX) > _0_01 then |
513 |
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 |
|
514 |
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 |
|
515 |
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 |
|
516 |
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 |
|
517 |
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 |
|
518 |
if hwAbs(Gear^.dX) > _0_02 then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
519 |
else begin |
|
520 |
Gear^.State:= Gear^.State and not gstMoving; |
|
521 |
SetLittle(Gear^.dX) |
|
522 |
end |
|
523 |
else begin |
|
524 |
Gear^.State:= Gear^.State and not gstMoving; |
|
525 |
SetLittle(Gear^.dX) |
|
526 |
end |
|
1518 | 527 |
else if (hwAbs(Gear^.dX) > cLittle) |
528 |
and ((Gear^.State and gstHHJumping) = 0) |
|
529 |
then Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
530 |
else SetLittle(Gear^.dX); |
|
538 | 531 |
|
542 | 532 |
if (not isFalling) and |
538 | 533 |
(hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
534 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1861
diff
changeset
|
535 |
Gear^.State:= Gear^.State and not gstWinner; |
538 | 536 |
Gear^.State:= Gear^.State and not gstMoving; |
537 |
SetLittle(Gear^.dX); |
|
538 |
Gear^.dY:= _0 |
|
539 |
end else Gear^.State:= Gear^.State or gstMoving; |
|
540 |
||
541 |
if (Gear^.State and gstMoving) <> 0 then |
|
542 |
begin |
|
543 |
Gear^.State:= Gear^.State and not gstAnimation; |
|
2017 | 544 |
// ARTILLERY but not being moved by explosions |
538 | 545 |
Gear^.X:= Gear^.X + Gear^.dX; |
546 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
547 |
if (not Gear^.dY.isNegative) and |
|
548 |
(not TestCollisionYKick(Gear, 1)) and |
|
549 |
TestCollisionYwithXYShift(Gear, 0, 1, 1) then |
|
550 |
begin |
|
551 |
CheckHHDamage(Gear); |
|
552 |
Gear^.dY:= _0; |
|
553 |
Gear^.Y:= Gear^.Y + _1 |
|
554 |
end; |
|
1658
208a3258afdf
Fix a bug with visible cursor when hedgehog is dead
unc0rr
parents:
1645
diff
changeset
|
555 |
CheckGearDrowning(Gear); |
208a3258afdf
Fix a bug with visible cursor when hedgehog is dead
unc0rr
parents:
1645
diff
changeset
|
556 |
if (Gear^.State and gstDrowning) <> 0 then isCursorVisible:= false |
2428 | 557 |
end; |
558 |
||
559 |
if (hwAbs(Gear^.dY) > _0) and (Gear^.FlightTime > 0) then |
|
560 |
begin |
|
561 |
inc(Gear^.FlightTime, 1); |
|
562 |
if Gear^.FlightTime = 2000 then |
|
563 |
begin |
|
564 |
AddCaption(GetEventString(eidHomerun), $FFFFFF, capgrpMessage); |
|
565 |
PlaySound(sndHomerun, false, nil) |
|
566 |
end; |
|
567 |
end |
|
568 |
else |
|
569 |
begin |
|
570 |
Gear^.FlightTime:= 0; |
|
571 |
end; |
|
572 |
||
538 | 573 |
end; |
574 |
||
302 | 575 |
procedure doStepHedgehogDriven(Gear: PGear); |
576 |
var t: PGear; |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
577 |
wasJumping: boolean; |
302 | 578 |
begin |
558
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
579 |
if not isInMultiShoot then |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
580 |
AllInactive:= false |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
581 |
else |
b2b840eeb10a
Fix bug when hedgehog moves not right after it is kicked
unc0rr
parents:
553
diff
changeset
|
582 |
Gear^.Message:= 0; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
498
diff
changeset
|
583 |
|
1035 | 584 |
if (TurnTimeLeft = 0) or (Gear^.Damage > 0) then |
1645 | 585 |
begin |
586 |
TurnTimeLeft:= 0; |
|
587 |
isCursorVisible:= false; |
|
1749
7170f626e9d6
Fix crash when attackbar wasn't deleted, but hedgehog gear was
unc0rr
parents:
1712
diff
changeset
|
588 |
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
|
589 |
AttackBar:= 0; |
1645 | 590 |
if Gear^.Damage > 0 then |
591 |
Gear^.State:= Gear^.State and not (gstHHJumping or gstHHHJump); |
|
592 |
exit |
|
593 |
end; |
|
1035 | 594 |
|
1033 | 595 |
if (Gear^.State and gstAnimation) <> 0 then |
596 |
begin |
|
597 |
Gear^.Message:= 0; |
|
598 |
inc(Gear^.Timer); |
|
2056
ed8c83f1e4b0
Two new wavez - Juggle requires a different frame rate. using 38 instead of 125
nemo
parents:
2045
diff
changeset
|
599 |
if Gear^.Timer = Wavez[TWave(Gear^.Tag)].Interval then |
1033 | 600 |
begin |
601 |
Gear^.Timer:= 0; |
|
602 |
inc(Gear^.Pos); |
|
1034 | 603 |
if Gear^.Pos = Wavez[TWave(Gear^.Tag)].FramesCount then |
1033 | 604 |
Gear^.State:= Gear^.State and not gstAnimation |
605 |
end; |
|
606 |
exit |
|
607 |
end; |
|
608 |
||
836 | 609 |
if ((Gear^.State and gstMoving) <> 0) |
610 |
or (StepTicks = cHHStepTicks) |
|
2221 | 611 |
or (CurAmmoGear <> nil) then // we are moving |
836 | 612 |
begin |
839 | 613 |
with PHedgehog(Gear^.Hedgehog)^ do |
614 |
if (CurAmmoGear = nil) |
|
615 |
and (Gear^.dY > _0_39) |
|
616 |
and (Ammo^[CurSlot, CurAmmo].AmmoType = amParachute) then Gear^.Message:= Gear^.Message or gm_Attack; |
|
836 | 617 |
// check for case with ammo |
618 |
t:= CheckGearNear(Gear, gtCase, 36, 36); |
|
619 |
if t <> nil then |
|
620 |
PickUp(Gear, t) |
|
855
8842c71d16bf
- Fix too long delay between shotgun and deagle shots
unc0rr
parents:
854
diff
changeset
|
621 |
end; |
302 | 622 |
|
930 | 623 |
if (CurAmmoGear = nil) then |
624 |
if (((Gear^.Message and gm_Attack) <> 0) |
|
625 |
or ((Gear^.State and gstAttacking) <> 0)) then |
|
626 |
Attack(Gear) // should be before others to avoid desync with '/put' msg and changing weapon msgs |
|
627 |
else |
|
628 |
else with PHedgehog(Gear^.Hedgehog)^ do |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
629 |
if ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) |
930 | 630 |
and ((Gear^.Message and gm_LJump) <> 0) |
931 | 631 |
and (((Ammo^[CurSlot, CurAmmo].Propz) and ammoprop_AltUse) <> 0) then |
632 |
begin |
|
633 |
Gear^.Message:= Gear^.Message and not gm_LJump; |
|
634 |
Attack(Gear) |
|
635 |
end; |
|
930 | 636 |
|
637 |
if (CurAmmoGear = nil) |
|
638 |
or ((CurAmmoGear^.Ammo^.Propz and ammoprop_AltAttack) <> 0) then |
|
639 |
begin |
|
1710
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
640 |
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
|
641 |
begin |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
642 |
ChangeAmmo(Gear); |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
643 |
ApplyAmmoChanges(PHedgehog(Gear^.Hedgehog)^) |
cecb3cc93251
Fix angle restriction applying to rc plane when choosing via ammomenu
unc0rr
parents:
1689
diff
changeset
|
644 |
end; |
930 | 645 |
|
646 |
if ((Gear^.Message and gm_Weapon) <> 0) then HHSetWeapon(Gear); |
|
647 |
||
648 |
if ((Gear^.Message and gm_Timer) <> 0) then HHSetTimer(Gear); |
|
649 |
end; |
|
650 |
||
302 | 651 |
if CurAmmoGear <> nil then |
652 |
begin |
|
351 | 653 |
CurAmmoGear^.Message:= Gear^.Message; |
302 | 654 |
exit |
655 |
end; |
|
656 |
||
952 | 657 |
if not isInMultiShoot then |
658 |
HedgehogChAngle(Gear); |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
925
diff
changeset
|
659 |
|
542 | 660 |
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
|
661 |
begin |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
662 |
wasJumping:= ((Gear^.State and gstHHJumping) <> 0); |
2376 | 663 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
664 |
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
|
665 |
wasJumping and |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
666 |
((Gear^.State and gstHHHJump) = 0) then |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
667 |
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
|
668 |
begin |
2137 | 669 |
Gear^.State:= Gear^.State or gstHHHJump; |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
670 |
Gear^.dY:= -_0_25; |
2137 | 671 |
if not cArtillery then Gear^.dX:= -SignAs(_0_02, Gear^.dX); |
1669 | 672 |
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
|
673 |
end; |
2376 | 674 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
675 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
538 | 676 |
|
2024
2985f3bd18b7
Disable long jump in artillery mode, make snipre rifle single shot
nemo
parents:
2023
diff
changeset
|
677 |
if (not cArtillery) and wasJumping and |
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
678 |
TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then SetLittle(Gear^.dX); |
538 | 679 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
680 |
doStepHedgehogMoving(Gear); |
542 | 681 |
|
1519
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
682 |
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
|
683 |
begin |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
684 |
AddGearCI(Gear); |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
685 |
if wasJumping then |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
686 |
StepTicks:= 410 |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
687 |
else |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
688 |
StepTicks:= 95 |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
689 |
end; |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
690 |
exit |
7b6adbe5266a
More delay after jump, less delay after small fall for hedgehog
unc0rr
parents:
1518
diff
changeset
|
691 |
end; |
302 | 692 |
|
1033 | 693 |
if not isInMultiShoot then |
694 |
begin |
|
695 |
if StepTicks > 0 then dec(StepTicks); |
|
696 |
if (StepTicks = 0) then HedgehogStep(Gear) |
|
697 |
end |
|
302 | 698 |
end; |
699 |
||
4 | 700 |
//////////////////////////////////////////////////////////////////////////////// |
701 |
procedure doStepHedgehogFree(Gear: PGear); |
|
511 | 702 |
var prevState: Longword; |
4 | 703 |
begin |
511 | 704 |
prevState:= Gear^.State; |
4 | 705 |
|
538 | 706 |
doStepHedgehogMoving(Gear); |
4 | 707 |
|
1002 | 708 |
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then |
865 | 709 |
begin |
1012 | 710 |
if Gear^.Damage > 0 then CalcRotationDirAngle(Gear); |
865 | 711 |
AllInactive:= false; |
712 |
exit |
|
713 |
end; |
|
4 | 714 |
|
863 | 715 |
if (Gear^.Health = 0) then |
716 |
begin |
|
868 | 717 |
if PrvInactive then |
864 | 718 |
begin |
719 |
Gear^.Timer:= 0; |
|
868 | 720 |
Gear^.State:= Gear^.State or gstHHDeath; |
721 |
Gear^.doStep:= @doStepHedgehogDead; |
|
1347 | 722 |
FollowGear:= Gear; |
868 | 723 |
PrvInactive:= false; |
2140 | 724 |
AllInactive:= false; |
725 |
||
726 |
// Death message |
|
2142 | 727 |
AddCaption(Format(GetEventString(eidDied), PHedgehog(Gear^.Hedgehog)^.Name), $FFFFFF, capgrpMessage); |
864 | 728 |
end; |
863 | 729 |
exit |
730 |
end; |
|
4 | 731 |
|
1033 | 732 |
if ((Gear^.State and gstWait) = 0) and |
863 | 733 |
(prevState <> Gear^.State) then |
734 |
begin |
|
1033 | 735 |
Gear^.State:= gstWait; |
863 | 736 |
Gear^.Timer:= 150 |
737 |
end else |
|
738 |
begin |
|
739 |
if Gear^.Timer = 0 then |
|
740 |
begin |
|
741 |
Gear^.State:= 0; |
|
742 |
Gear^.Active:= false; |
|
743 |
AddGearCI(Gear); |
|
744 |
exit |
|
745 |
end else dec(Gear^.Timer) |
|
746 |
end; |
|
747 |
||
748 |
AllInactive:= false |
|
4 | 749 |
end; |
750 |
||
751 |
//////////////////////////////////////////////////////////////////////////////// |
|
752 |
procedure doStepHedgehog(Gear: PGear); |
|
753 |
begin |
|
351 | 754 |
if (Gear^.Message and gm_Destroy) <> 0 then |
1505 | 755 |
begin |
756 |
DeleteGear(Gear); |
|
757 |
exit |
|
758 |
end; |
|
759 |
||
2040 | 760 |
if (Gear^.State and gstHHDriven) = 0 then |
761 |
doStepHedgehogFree(Gear) |
|
762 |
else |
|
763 |
begin |
|
2041 | 764 |
with PHedgehog(Gear^.Hedgehog)^ do |
765 |
if Team^.hasGone then TeamGoneEffect(Team^); |
|
2040 | 766 |
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
|
767 |
end; |
4 | 768 |
end; |