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