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