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