author | Wuzzy <almikes@aol.com> |
Thu, 20 Apr 2017 02:38:45 +0200 | |
changeset 12298 | 6383323fdd2c |
parent 12291 | b4dde7035fe2 |
child 12302 | 071a05275798 |
permissions | -rw-r--r-- |
6581 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
6581 | 4 |
* |
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 |
|
8 |
* |
|
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. |
|
13 |
* |
|
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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10105
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
6581 | 17 |
*) |
18 |
||
19 |
{$INCLUDE "options.inc"} |
|
20 |
||
21 |
unit uGearsHedgehog; |
|
22 |
interface |
|
10015 | 23 |
uses uTypes, uGearsHandlersMess; |
6581 | 24 |
|
25 |
procedure doStepHedgehog(Gear: PGear); |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
26 |
procedure AfterAttack; |
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
27 |
procedure HedgehogStep(Gear: PGear); |
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
28 |
procedure doStepHedgehogMoving(Gear: PGear); |
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
29 |
procedure HedgehogChAngle(HHGear: PGear); |
6581 | 30 |
procedure PickUp(HH, Gear: PGear); |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
31 |
procedure AddPickup(HH: THedgehog; ammo: TAmmoType; cnt, X, Y: LongWord); |
8574 | 32 |
procedure CheckIce(Gear: PGear); inline; |
6581 | 33 |
|
34 |
implementation |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
35 |
uses uConsts, uVariables, uFloat, uAmmos, uSound, uCaptions, |
9285 | 36 |
uCommands, uLocale, uUtils, uStats, uIO, uScript, |
37 |
uGearsList, uCollisions, uRandom, uStore, uTeams, |
|
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
38 |
uGearsUtils, uVisualGearsList, uChat; |
6581 | 39 |
|
7028 | 40 |
var GHStepTicks: LongWord = 0; |
41 |
||
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
42 |
procedure AFKSkip; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
43 |
var |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
44 |
t: byte; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
45 |
begin |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
46 |
t:= 0; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
47 |
while (TeamsArray[t] <> CurrentTeam) do inc(t); |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
48 |
|
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
49 |
SendHogSpeech(#1 + char(t) + 'AFK'); |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
50 |
|
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
51 |
ParseCommand('/skip', true) |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
52 |
end; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
53 |
|
6581 | 54 |
// Shouldn't more of this ammo switching stuff be moved to uAmmos ? |
55 |
function ChangeAmmo(HHGear: PGear): boolean; |
|
56 |
var slot, i: Longword; |
|
57 |
ammoidx: LongInt; |
|
7754 | 58 |
prevAmmo: TAmmoType; |
6581 | 59 |
begin |
60 |
ChangeAmmo:= false; |
|
61 |
slot:= HHGear^.MsgParam; |
|
62 |
||
63 |
with HHGear^.Hedgehog^ do |
|
64 |
begin |
|
65 |
HHGear^.Message:= HHGear^.Message and (not gmSlot); |
|
7754 | 66 |
prevAmmo:= CurAmmoType; |
6581 | 67 |
ammoidx:= 0; |
9732
a13afa6c5d21
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents:
9731
diff
changeset
|
68 |
if (((HHGear^.State and (gstAttacking or gstAttacked)) <> 0) and (GameFlags and gfInfAttack = 0)) |
6581 | 69 |
or ((HHGear^.State and gstHHDriven) = 0) then |
70 |
exit; |
|
71 |
ChangeAmmo:= true; |
|
72 |
||
73 |
while (ammoidx < cMaxSlotAmmoIndex) and (Ammo^[slot, ammoidx].AmmoType <> CurAmmoType) do |
|
74 |
inc(ammoidx); |
|
75 |
||
8553
a8e1cff496d8
Allow switching away from any weapon when during multishoot.
nemo
parents:
8494
diff
changeset
|
76 |
if (MultiShootAttacks > 0) then |
a8e1cff496d8
Allow switching away from any weapon when during multishoot.
nemo
parents:
8494
diff
changeset
|
77 |
begin |
a8e1cff496d8
Allow switching away from any weapon when during multishoot.
nemo
parents:
8494
diff
changeset
|
78 |
if (CurAmmoType = amSniperRifle) and ((GameFlags and gfArtillery) = 0) then |
a8e1cff496d8
Allow switching away from any weapon when during multishoot.
nemo
parents:
8494
diff
changeset
|
79 |
cArtillery := false; |
8631
796ed875aa95
Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents:
8616
diff
changeset
|
80 |
if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) = 0 then |
796ed875aa95
Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents:
8616
diff
changeset
|
81 |
begin |
796ed875aa95
Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents:
8616
diff
changeset
|
82 |
MultiShootAttacks:= Ammoz[CurAmmoType].Ammo.NumPerTurn; |
796ed875aa95
Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents:
8616
diff
changeset
|
83 |
AfterAttack |
796ed875aa95
Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents:
8616
diff
changeset
|
84 |
end |
796ed875aa95
Call act as if attack ended on last shot if switching while in mid multi-shoot. Thanks to AI for discovering this.
nemo
parents:
8616
diff
changeset
|
85 |
else OnUsedAmmo(HHGear^.Hedgehog^) |
8553
a8e1cff496d8
Allow switching away from any weapon when during multishoot.
nemo
parents:
8494
diff
changeset
|
86 |
end; |
6581 | 87 |
|
88 |
MultiShootAttacks:= 0; |
|
89 |
HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump)); |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
90 |
|
6581 | 91 |
if Ammoz[CurAmmoType].Slot = slot then |
92 |
begin |
|
93 |
i:= 0; |
|
94 |
repeat |
|
95 |
inc(ammoidx); |
|
96 |
if (ammoidx > cMaxSlotAmmoIndex) then |
|
97 |
begin |
|
98 |
inc(i); |
|
99 |
CurAmmoType:= amNothing; |
|
100 |
ammoidx:= -1; |
|
101 |
//TryDo(i < 2, 'Engine bug: no ammo in current slot', true) |
|
102 |
end; |
|
103 |
until (i = 1) or ((Ammo^[slot, ammoidx].Count > 0) |
|
104 |
and (Team^.Clan^.TurnNumber > Ammoz[Ammo^[slot, ammoidx].AmmoType].SkipTurns)) |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
105 |
|
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
106 |
end |
6581 | 107 |
else |
108 |
begin |
|
109 |
i:= 0; |
|
110 |
// check whether there is ammo in slot |
|
111 |
while (i <= cMaxSlotAmmoIndex) and ((Ammo^[slot, i].Count = 0) |
|
112 |
or (Team^.Clan^.TurnNumber <= Ammoz[Ammo^[slot, i].AmmoType].SkipTurns)) |
|
113 |
do inc(i); |
|
114 |
||
115 |
if i <= cMaxSlotAmmoIndex then |
|
116 |
ammoidx:= i |
|
117 |
else ammoidx:= -1 |
|
118 |
end; |
|
119 |
if ammoidx >= 0 then |
|
120 |
CurAmmoType:= Ammo^[slot, ammoidx].AmmoType; |
|
8051
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
121 |
// Try again in the next slot |
10015 | 122 |
if (CurAmmoType = prevAmmo) and (slot < cMaxSlotIndex) then |
8051
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
123 |
begin |
9664
1e528c58e41d
ok. this should avoid calling switch inappropriately. also, add skip to trophyrace and add the per-team achievement reporting.
nemo
parents:
9579
diff
changeset
|
124 |
inc(slot); |
8051
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
125 |
HHGear^.MsgParam:= slot; |
f26422ef0333
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain
nemo
parents:
8030
diff
changeset
|
126 |
ChangeAmmo(HHGear) |
7754 | 127 |
end |
6581 | 128 |
end |
129 |
end; |
|
130 |
||
131 |
procedure HHSetWeapon(HHGear: PGear); |
|
132 |
var t: LongInt; |
|
133 |
weap: TAmmoType; |
|
134 |
Hedgehog: PHedgehog; |
|
135 |
s: boolean; |
|
9732
a13afa6c5d21
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents:
9731
diff
changeset
|
136 |
prevState, newState: LongWord; |
6581 | 137 |
begin |
138 |
s:= false; |
|
139 |
||
140 |
weap:= TAmmoType(HHGear^.MsgParam); |
|
141 |
Hedgehog:= HHGear^.Hedgehog; |
|
142 |
||
143 |
if Hedgehog^.Team^.Clan^.TurnNumber <= Ammoz[weap].SkipTurns then |
|
144 |
exit; // weapon is not activated yet |
|
145 |
||
146 |
HHGear^.MsgParam:= Ammoz[weap].Slot; |
|
147 |
||
148 |
t:= cMaxSlotAmmoIndex; |
|
149 |
||
150 |
HHGear^.Message:= HHGear^.Message and (not gmWeapon); |
|
151 |
||
9732
a13afa6c5d21
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents:
9731
diff
changeset
|
152 |
prevState:= HHGear^.State; |
a13afa6c5d21
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents:
9731
diff
changeset
|
153 |
newState:= prevState; |
6581 | 154 |
with Hedgehog^ do |
155 |
while (CurAmmoType <> weap) and (t >= 0) do |
|
156 |
begin |
|
157 |
s:= ChangeAmmo(HHGear); |
|
9732
a13afa6c5d21
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents:
9731
diff
changeset
|
158 |
if HHGear^.State <> prevState then // so we can keep gstAttacked out of consideration when looping |
a13afa6c5d21
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents:
9731
diff
changeset
|
159 |
newState:= HHGear^.State; |
a13afa6c5d21
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents:
9731
diff
changeset
|
160 |
HHGear^.State:= prevState; |
6581 | 161 |
dec(t) |
162 |
end; |
|
9732
a13afa6c5d21
don't abort changeammo on attacking/attacked in infattack mode, keep scrolling through slot after setweap even if a multishoot was aborted triggering gstattacked, to ensure proper ammo gets set for next turn
nemo
parents:
9731
diff
changeset
|
163 |
HHGear^.State:= newState; |
6581 | 164 |
|
165 |
if s then |
|
166 |
ApplyAmmoChanges(HHGear^.Hedgehog^) |
|
167 |
end; |
|
168 |
||
169 |
procedure HHSetTimer(Gear: PGear); |
|
170 |
var CurWeapon: PAmmo; |
|
171 |
color: LongWord; |
|
172 |
begin |
|
173 |
Gear^.Message:= Gear^.Message and (not gmTimer); |
|
6924 | 174 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 175 |
with Gear^.Hedgehog^ do |
176 |
if ((Gear^.Message and gmPrecise) <> 0) and ((CurWeapon^.Propz and ammoprop_SetBounce) <> 0) then |
|
177 |
begin |
|
178 |
color:= Gear^.Hedgehog^.Team^.Clan^.Color; |
|
179 |
case Gear^.MsgParam of |
|
180 |
1: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
181 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce1]), color, capgrpAmmostate); |
6581 | 182 |
CurWeapon^.Bounciness:= 350; |
183 |
end; |
|
184 |
2: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
185 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce2]), color, capgrpAmmostate); |
6581 | 186 |
CurWeapon^.Bounciness:= 700; |
187 |
end; |
|
188 |
3: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
189 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce3]), color, capgrpAmmostate); |
6581 | 190 |
CurWeapon^.Bounciness:= 1000; |
191 |
end; |
|
192 |
4: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
193 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce4]), color, capgrpAmmostate); |
6581 | 194 |
CurWeapon^.Bounciness:= 2000; |
195 |
end; |
|
196 |
5: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
197 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce5]), color, capgrpAmmostate); |
6581 | 198 |
CurWeapon^.Bounciness:= 4000; |
199 |
end |
|
200 |
end |
|
201 |
end |
|
202 |
else if (CurWeapon^.Propz and ammoprop_Timerable) <> 0 then |
|
203 |
begin |
|
204 |
CurWeapon^.Timer:= 1000 * Gear^.MsgParam; |
|
205 |
with CurrentTeam^ do |
|
206 |
ApplyAmmoChanges(Hedgehogs[CurrHedgehog]); |
|
207 |
end; |
|
208 |
end; |
|
209 |
||
210 |
||
211 |
procedure Attack(Gear: PGear); |
|
212 |
var xx, yy, newDx, newDy, lx, ly: hwFloat; |
|
213 |
speech: PVisualGear; |
|
214 |
newGear: PGear; |
|
215 |
CurWeapon: PAmmo; |
|
10970
7341e0c3f966
LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this
sheepluva
parents:
10942
diff
changeset
|
216 |
usedAmmoType: TAmmoType; |
6581 | 217 |
altUse: boolean; |
218 |
elastic: hwFloat; |
|
219 |
begin |
|
220 |
newGear:= nil; |
|
221 |
bShowFinger:= false; |
|
6924 | 222 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 223 |
with Gear^, |
224 |
Gear^.Hedgehog^ do |
|
225 |
begin |
|
10970
7341e0c3f966
LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this
sheepluva
parents:
10942
diff
changeset
|
226 |
usedAmmoType:= CurAmmoType; |
10818
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10789
diff
changeset
|
227 |
if ((State and gstHHDriven) <> 0) and ((State and (gstAttacked or gstChooseTarget)) = 0) and (((State and gstMoving) = 0) |
6581 | 228 |
or (Power > 0) |
229 |
or (CurAmmoType = amTeleport) |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
230 |
or |
6581 | 231 |
// Allow attacks while moving on ammo with AltAttack |
232 |
((CurAmmoGear <> nil) and ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0)) |
|
233 |
or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackInMove) <> 0)) |
|
234 |
and ((TargetPoint.X <> NoPointX) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) = 0)) then |
|
235 |
begin |
|
236 |
State:= State or gstAttacking; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
237 |
if (Power = cMaxPower) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) = 0) then |
6581 | 238 |
Message:= Message and (not gmAttack) |
239 |
else |
|
240 |
begin |
|
241 |
if Power = 0 then |
|
242 |
begin |
|
243 |
AttackBar:= CurrentTeam^.AttackBar; |
|
244 |
PlaySound(sndThrowPowerUp) |
|
245 |
end; |
|
246 |
inc(Power) |
|
247 |
end; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
248 |
if ((Message and gmAttack) <> 0) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
249 |
exit; |
6581 | 250 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
251 |
if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) <> 0 then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
252 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
253 |
StopSound(sndThrowPowerUp); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
254 |
PlaySound(sndThrowRelease); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
255 |
end; |
6581 | 256 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
257 |
xx:= SignAs(AngleSin(Angle), dX); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
258 |
yy:= -AngleCos(Angle); |
6581 | 259 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
260 |
lx:= X + int2hwfloat(round(GetLaunchX(CurAmmoType, hwSign(dX), Angle))); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
261 |
ly:= Y + int2hwfloat(round(GetLaunchY(CurAmmoType, Angle))); |
6581 | 262 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
263 |
if ((Gear^.State and gstHHHJump) <> 0) and (not cArtillery) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
264 |
xx:= - xx; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
265 |
if Ammoz[CurAmmoType].Ammo.AttackVoice <> sndNone then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
266 |
AddVoice(Ammoz[CurAmmoType].Ammo.AttackVoice, CurrentTeam^.voicepack); |
6581 | 267 |
|
268 |
// Initiating alt attack |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
269 |
if (CurAmmoGear <> nil) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
270 |
and ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
271 |
and ((Gear^.Message and gmLJump) <> 0) |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
272 |
and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
273 |
begin |
8987
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
274 |
if (CurAmmoGear^.AmmoType = amJetpack) and (Gear^.Message and gmPrecise <> 0) then |
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
275 |
begin |
8992
5b0be812dcdb
Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents:
8987
diff
changeset
|
276 |
newDx:= xx*cMaxPower/cPowerDivisor; |
5b0be812dcdb
Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents:
8987
diff
changeset
|
277 |
newDy:= yy*cMaxPower/cPowerDivisor |
8987
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
278 |
end |
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
279 |
else |
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
280 |
begin |
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
281 |
newDx:= dX; |
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
282 |
newDy:= dY |
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
283 |
end; |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
284 |
altUse:= true |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
285 |
end |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
286 |
else |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
287 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
288 |
newDx:= xx*Power/cPowerDivisor; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
289 |
newDy:= yy*Power/cPowerDivisor; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
290 |
altUse:= false |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
291 |
end; |
6581 | 292 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
293 |
case CurAmmoType of |
6581 | 294 |
amGrenade: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGrenade, 0, newDx, newDy, CurWeapon^.Timer); |
10789
acbf69e2e5cf
experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents:
10714
diff
changeset
|
295 |
amAirMine: newGear:= AddGear(hwRound(lx), hwRound(ly), gtAirMine, 0, newDx, newDy, 0); |
6581 | 296 |
amMolotov: newGear:= AddGear(hwRound(lx), hwRound(ly), gtMolotov, 0, newDx, newDy, 0); |
297 |
amClusterBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtClusterBomb, 0, newDx, newDy, CurWeapon^.Timer); |
|
298 |
amGasBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGasBomb, 0, newDx, newDy, CurWeapon^.Timer); |
|
299 |
amBazooka: newGear:= AddGear(hwRound(lx), hwRound(ly), gtShell, 0, newDx, newDy, 0); |
|
300 |
amSnowball: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSnowball, 0, newDx, newDy, 0); |
|
301 |
amBee: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBee, 0, newDx, newDy, 0); |
|
302 |
amShotgun: begin |
|
303 |
PlaySound(sndShotgunReload); |
|
304 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtShotgunShot, 0, xx * _0_5, yy * _0_5, 0); |
|
305 |
end; |
|
306 |
amPickHammer: newGear:= AddGear(hwRound(lx), hwRound(ly) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
|
307 |
amSkip: ParseCommand('/skip', true); |
|
308 |
amRope: newGear:= AddGear(hwRound(lx), hwRound(ly), gtRope, 0, xx, yy, 0); |
|
10942
5d7dd938dedc
This probably fixes bug #839 - mine time was hardcoded to 3000 in Attack, instead of using the "0 as undefined" input that other places were using. When re653e96b0ec3 started paying attention to the input parameter, this previously ignored value became a problem.
nemo
parents:
10895
diff
changeset
|
309 |
amMine: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtMine, gstWait, SignAs(_0_02, dX), _0, 0); |
6581 | 310 |
amSMine: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSMine, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
311 |
amKnife: begin |
7754 | 312 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtKnife, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 0); |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
313 |
newGear^.State:= newGear^.State or gstMoving; |
8494
53b91a602955
Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents:
8493
diff
changeset
|
314 |
newGear^.Radius:= 4 // temporarily shrink so it doesn't instantly embed in the ground |
7754 | 315 |
end; |
6581 | 316 |
amDEagle: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
317 |
amSineGun: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtSineGunShot, 0, xx * _0_5, yy * _0_5, 0); |
|
318 |
amPortalGun: begin |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
319 |
newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtPortal, 0, xx * _0_6, yy * _0_6, |
6581 | 320 |
// set selected color |
321 |
CurWeapon^.Pos); |
|
322 |
end; |
|
323 |
amSniperRifle: begin |
|
324 |
PlaySound(sndSniperReload); |
|
325 |
newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtSniperRifleShot, 0, xx * _0_5, yy * _0_5, 0); |
|
326 |
end; |
|
327 |
amDynamite: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtDynamite, 0, SignAs(_0_03, dX), _0, 5000); |
|
12198
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
328 |
amDuck: begin |
12209
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
329 |
// Does duck spawn inside water? |
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
330 |
if (LeftX > hwRound(Gear^.X) - Gear^.Karma) or (RightX < hwRound(Gear^.X) + Gear^.Karma) or (cWaterLine < hwRound(Gear^.Y) + Gear^.Karma) then |
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
331 |
PlaySound(sndDroplet2) |
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
332 |
else |
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
333 |
// Duck spawned in air, normal drop sound |
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
334 |
PlaySound(sndDuckDrop); |
12198
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
335 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtDuck, 0, _0, _0, 0); |
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
336 |
if not ((not dX.isNegative) xor ((State and gstHHHJump) <> 0)) then |
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
337 |
newGear^.Tag:= -1 |
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
338 |
else |
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
339 |
newGear^.Tag:= 1; |
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
340 |
end; |
6581 | 341 |
amFirePunch: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtFirePunch, 0, xx, _0, 0); |
342 |
amWhip: begin |
|
343 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtWhip, 0, SignAs(_1, dX), - _0_8, 0); |
|
344 |
PlaySound(sndWhipCrack) |
|
345 |
end; |
|
346 |
amHammer: begin |
|
347 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtHammer, 0, SignAs(_1, dX), - _0_8, 0); |
|
348 |
PlaySound(sndWhack) |
|
349 |
end; |
|
350 |
amBaseballBat: begin |
|
351 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtShover, gsttmpFlag, xx * _0_5, yy * _0_5, 0); |
|
352 |
PlaySound(sndBaseballBat) // TODO: Only play if something is hit? |
|
353 |
end; |
|
354 |
amParachute: begin |
|
355 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtParachute, 0, _0, _0, 0); |
|
356 |
PlaySound(sndParachute) |
|
357 |
end; |
|
358 |
// we save CurWeapon^.Pos (in this case: cursor direction) by using it as (otherwise irrelevant) X value of the new gear. |
|
359 |
amAirAttack: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
360 |
amMineStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
361 |
amDrillStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 3, _0, _0, CurWeapon^.Timer); |
|
362 |
amNapalm: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 2, _0, _0, 0); |
|
363 |
amBlowTorch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
364 |
amGirder: newGear:= AddGear(0, 0, gtGirder, CurWeapon^.Pos, _0, _0, 0); |
|
9768
08799c901a42
Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents:
9732
diff
changeset
|
365 |
amRubber: begin |
08799c901a42
Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents:
9732
diff
changeset
|
366 |
newGear:= AddGear(0, 0, gtGirder, CurWeapon^.Pos, _0, _0, 0); |
08799c901a42
Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents:
9732
diff
changeset
|
367 |
newGear^.AmmoType:= amRubber |
08799c901a42
Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents:
9732
diff
changeset
|
368 |
end; |
6581 | 369 |
amTeleport: newGear:= AddGear(CurWeapon^.Pos, 0, gtTeleport, 0, _0, _0, 0); |
370 |
amSwitch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSwitcher, 0, _0, _0, 0); |
|
371 |
amMortar: begin |
|
372 |
playSound(sndMortar); |
|
373 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtMortar, 0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0); |
|
374 |
end; |
|
375 |
amRCPlane: begin |
|
376 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtRCPlane, 0, xx * cMaxPower / cPowerDivisor / 4, yy * cMaxPower / cPowerDivisor / 4, 0); |
|
7053 | 377 |
newGear^.SoundChannel:= LoopSound(sndRCPlane) |
6581 | 378 |
end; |
379 |
amKamikaze: newGear:= AddGear(hwRound(lx), hwRound(ly), gtKamikaze, 0, xx * _0_5, yy * _0_5, 0); |
|
7832 | 380 |
amCake: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 3, hwRound(ly), gtCake, 0, SignAs(cLittle, xx), _0, 0); |
6581 | 381 |
amSeduction: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSeduction, 0, _0, _0, 0); |
382 |
amWatermelon: newGear:= AddGear(hwRound(lx), hwRound(ly), gtWatermelon, 0, newDx, newDy, CurWeapon^.Timer); |
|
383 |
amHellishBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtHellishBomb, 0, newDx, newDy, 0); |
|
384 |
amDrill: newGear:= AddGear(hwRound(lx), hwRound(ly), gtDrill, 0, newDx, newDy, 0); |
|
385 |
amBallgun: newGear:= AddGear(hwRound(X), hwRound(Y), gtBallgun, 0, xx * _0_5, yy * _0_5, 0); |
|
386 |
amJetpack: newGear:= AddGear(hwRound(lx), hwRound(ly), gtJetpack, 0, _0, _0, 0); |
|
387 |
amBirdy: begin |
|
388 |
PlaySound(sndWhistle); |
|
389 |
newGear:= AddGear(hwRound(lx), hwRound(ly) - 32, gtBirdy, 0, _0, _0, 0); |
|
390 |
end; |
|
391 |
amLowGravity: begin |
|
392 |
PlaySound(sndLowGravity); |
|
393 |
cGravity:= cMaxWindSpeed; |
|
11892
083c12795632
Show symbols at bottom right while extra damage / low grav. are active
Wuzzy <almikes@aol.com>
parents:
11853
diff
changeset
|
394 |
cGravityf:= 0.00025; |
083c12795632
Show symbols at bottom right while extra damage / low grav. are active
Wuzzy <almikes@aol.com>
parents:
11853
diff
changeset
|
395 |
cLowGravity := true |
6581 | 396 |
end; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
397 |
amExtraDamage: begin |
6581 | 398 |
PlaySound(sndHellishImpact4); |
399 |
cDamageModifier:= _1_5 |
|
400 |
end; |
|
11916
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
401 |
amInvulnerable: begin |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
402 |
PlaySound(sndInvulnerable); |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
403 |
Effects[heInvulnerable]:= 1 |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
404 |
end; |
6581 | 405 |
amExtraTime: begin |
11770
10860d4bca22
Add sound effects for: cleaver impact, air mine impact, using extra time
Wuzzy <almikes@aol.com>
parents:
11629
diff
changeset
|
406 |
PlaySound(sndExtraTime); |
6581 | 407 |
TurnTimeLeft:= TurnTimeLeft + 30000 |
408 |
end; |
|
11916
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
409 |
amLaserSight: begin |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
410 |
PlaySound(sndLaserSight); |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
411 |
cLaserSighting:= true |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
412 |
end; |
6581 | 413 |
amVampiric: begin |
7053 | 414 |
PlaySoundV(sndOw1, Team^.voicepack); |
6581 | 415 |
cVampiric:= true; |
416 |
end; |
|
417 |
amPiano: begin |
|
418 |
// Tuck the hedgehog away until the piano attack is completed |
|
419 |
Unplaced:= true; |
|
420 |
X:= _0; |
|
421 |
Y:= _0; |
|
8414
c1ac0b64315e
Start piano higher (piano on maps that matched land_height was really weird before). Experiment w/ trying to make birdy shrink into distance to avoid odd birdy vanishes if tracking it.
nemo
parents:
8161
diff
changeset
|
422 |
newGear:= AddGear(TargetPoint.X, -1024, gtPiano, 0, _0, _0, 0); |
6581 | 423 |
PauseMusic |
424 |
end; |
|
425 |
amFlamethrower: newGear:= AddGear(hwRound(X), hwRound(Y), gtFlamethrower, 0, xx * _0_5, yy * _0_5, 0); |
|
426 |
amLandGun: newGear:= AddGear(hwRound(X), hwRound(Y), gtLandGun, 0, xx * _0_5, yy * _0_5, 0); |
|
427 |
amResurrector: begin |
|
428 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtResurrector, 0, _0, _0, 0); |
|
429 |
newGear^.SoundChannel := LoopSound(sndResurrector); |
|
430 |
end; |
|
8161 | 431 |
//amStructure: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtStructure, gstWait, SignAs(_0_02, dX), _0, 3000); |
9675
295636ec930a
cleanup of timer accidentally exposed prob w/ timebox
nemo
parents:
9672
diff
changeset
|
432 |
amTardis: newGear:= AddGear(hwRound(X), hwRound(Y), gtTardis, 0, _0, _0, 0); |
8774
39754516eee6
Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents:
8753
diff
changeset
|
433 |
amIceGun: newGear:= AddGear(hwRound(X), hwRound(Y), gtIceGun, 0, _0, _0, 0); |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
434 |
end; |
10015 | 435 |
if altUse and (newGear <> nil) and |
8987
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
436 |
((CurAmmoGear = nil) or (CurAmmoGear^.AmmoType <> amJetpack) or (Gear^.Message and gmPrecise = 0)) then |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
437 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
438 |
newGear^.dX:= newDx / newGear^.Density; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
439 |
newGear^.dY:= newDY / newGear^.Density |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
440 |
end; |
8987
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
441 |
if (CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amJetpack) and |
10354 | 442 |
(Gear^.Message and gmPrecise <> 0) and CheckCoordInWater(hwRound(X), hwRound(Y)) then |
8992
5b0be812dcdb
Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents:
8987
diff
changeset
|
443 |
newGear^.State:= newGear^.State or gstSubmersible; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
444 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
445 |
case CurAmmoType of |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
446 |
amGrenade, amMolotov, |
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
447 |
amClusterBomb, amGasBomb, |
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
448 |
amBazooka, amSnowball, |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
449 |
amBee, amSMine, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
450 |
amMortar, amWatermelon, |
10789
acbf69e2e5cf
experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents:
10714
diff
changeset
|
451 |
amHellishBomb, amDrill, |
acbf69e2e5cf
experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents:
10714
diff
changeset
|
452 |
amAirMine: FollowGear:= newGear; |
6581 | 453 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
454 |
amShotgun, amPickHammer, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
455 |
amRope, amDEagle, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
456 |
amSineGun, amSniperRifle, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
457 |
amFirePunch, amWhip, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
458 |
amHammer, amBaseballBat, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
459 |
amParachute, amBlowTorch, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
460 |
amGirder, amTeleport, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
461 |
amSwitch, amRCPlane, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
462 |
amKamikaze, amCake, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
463 |
amSeduction, amBallgun, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
464 |
amJetpack, amBirdy, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
465 |
amFlamethrower, amLandGun, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
466 |
amResurrector, //amStructure, |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
467 |
amTardis, amPiano, |
9776 | 468 |
amIceGun, amRubber: CurAmmoGear:= newGear; |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
469 |
end; |
10789
acbf69e2e5cf
experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents:
10714
diff
changeset
|
470 |
if CurAmmoType = amCake then FollowGear:= newGear; |
acbf69e2e5cf
experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents:
10714
diff
changeset
|
471 |
if CurAmmoType = amAirMine then newGear^.Hedgehog:= nil; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
472 |
|
10789
acbf69e2e5cf
experiment with air mines. thought they could make shoppa... interesting. ToDo: Allow mines to give up, tweak distances, real graphics, toggle for whether they can acquire a new target while they haven't given up.
nemo
parents:
10714
diff
changeset
|
473 |
if ((CurAmmoType = amMine) or (CurAmmoType = amSMine) or (CurAmmoType = amAirMine)) and (GameFlags and gfInfAttack <> 0) then |
11201 | 474 |
newGear^.FlightTime:= GameTicks + min(TurnTimeLeft,1000) |
6581 | 475 |
else if CurAmmoType = amDrill then |
476 |
newGear^.FlightTime:= GameTicks + 250; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
477 |
if Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NeedTarget <> 0 then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
478 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
479 |
newGear^.Target.X:= TargetPoint.X; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
480 |
newGear^.Target.Y:= TargetPoint.Y |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
481 |
end; |
8744 | 482 |
if (newGear <> nil) and (newGear^.CollisionMask and lfCurrentHog <> 0) then newGear^.CollisionMask:= newGear^.CollisionMask and (not lfCurrentHog); |
6581 | 483 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
484 |
// Clear FollowGear if using on a rope/parachute/saucer etc so focus stays with the hog's movement |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
485 |
if altUse then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
486 |
FollowGear:= nil; |
6581 | 487 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
488 |
if (newGear <> nil) and ((Ammoz[newGear^.AmmoType].Ammo.Propz and ammoprop_SetBounce) <> 0) then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
489 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
490 |
elastic:= int2hwfloat(CurWeapon^.Bounciness) / _1000; |
6581 | 491 |
|
492 |
if elastic < _1 then |
|
493 |
newGear^.Elasticity:= newGear^.Elasticity * elastic |
|
494 |
else if elastic > _1 then |
|
495 |
newGear^.Elasticity:= _1 - ((_1-newGear^.Elasticity) / elastic); |
|
8330 | 496 |
(* Experimented with friction modifier. Didn't seem helpful |
6581 | 497 |
fric:= int2hwfloat(CurWeapon^.Bounciness) / _250; |
498 |
if fric < _1 then newGear^.Friction:= newGear^.Friction * fric |
|
499 |
else if fric > _1 then newGear^.Friction:= _1 - ((_1-newGear^.Friction) / fric)*) |
|
500 |
end; |
|
501 |
||
502 |
||
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
503 |
uStats.AmmoUsed(CurAmmoType); |
6581 | 504 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
505 |
if not (SpeechText = '') then |
6581 | 506 |
begin |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
507 |
speech:= AddVisualGear(0, 0, vgtSpeechBubble); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
508 |
if speech <> nil then |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
509 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
510 |
speech^.Text:= SpeechText; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
511 |
speech^.Hedgehog:= Gear^.Hedgehog; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
512 |
speech^.FrameTicks:= SpeechType; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
513 |
end; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
514 |
SpeechText:= '' |
6581 | 515 |
end; |
516 |
||
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
517 |
Power:= 0; |
8833 | 518 |
if (CurAmmoGear <> nil) and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) = 0){check for dropping ammo from rope} then |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
519 |
begin |
8833 | 520 |
if CurAmmoType in [amRope,amResurrector] then |
521 |
Message:= Message or gmAttack; |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
522 |
CurAmmoGear^.Message:= Message |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
523 |
end |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
524 |
else |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
525 |
begin |
8833 | 526 |
if (not CurrentTeam^.ExtDriven) and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) <> 0) then |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
527 |
SendIPC(_S'a'); |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
528 |
AfterAttack; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
529 |
end |
6581 | 530 |
end |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
531 |
else |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
532 |
Message:= Message and (not gmAttack); |
10669
4c78eafe76ac
Issue 755: Lua API: Add ammo type parameter for onHogAttack
sheepluva
parents:
10579
diff
changeset
|
533 |
|
10970
7341e0c3f966
LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this
sheepluva
parents:
10942
diff
changeset
|
534 |
ScriptCall('onHogAttack', ord(usedAmmoType)); |
10669
4c78eafe76ac
Issue 755: Lua API: Add ammo type parameter for onHogAttack
sheepluva
parents:
10579
diff
changeset
|
535 |
end; // of with Gear^, Gear^.Hedgehog^ do |
4c78eafe76ac
Issue 755: Lua API: Add ammo type parameter for onHogAttack
sheepluva
parents:
10579
diff
changeset
|
536 |
|
6581 | 537 |
TargetPoint.X := NoPointX; |
538 |
end; |
|
539 |
||
540 |
procedure AfterAttack; |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
541 |
var s: ansistring; |
6581 | 542 |
a: TAmmoType; |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
543 |
HHGear: PGear; |
6581 | 544 |
begin |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
545 |
with CurrentHedgehog^ do |
6581 | 546 |
begin |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
547 |
HHGear:= Gear; |
6581 | 548 |
a:= CurAmmoType; |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
549 |
if HHGear <> nil then HHGear^.State:= HHGear^.State and (not gstAttacking); |
6581 | 550 |
if (Ammoz[a].Ammo.Propz and ammoprop_Effect) = 0 then |
551 |
begin |
|
552 |
Inc(MultiShootAttacks); |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
553 |
|
6581 | 554 |
if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks) then |
555 |
begin |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
556 |
s:= ansistring(inttostr(Ammoz[a].Ammo.NumPerTurn - MultiShootAttacks + 1)); |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
557 |
AddCaption(formatA(trmsg[sidRemaining], s), cWhiteColor, capgrpAmmostate); |
6581 | 558 |
end; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
559 |
|
6581 | 560 |
if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks) |
561 |
or ((GameFlags and gfMultiWeapon) <> 0) then |
|
562 |
begin |
|
563 |
isInMultiShoot:= true |
|
564 |
end |
|
565 |
else |
|
566 |
begin |
|
567 |
OnUsedAmmo(CurrentHedgehog^); |
|
568 |
if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (((GameFlags and gfInfAttack) = 0) or PlacingHogs) then |
|
569 |
begin |
|
570 |
if TagTurnTimeLeft = 0 then |
|
571 |
TagTurnTimeLeft:= TurnTimeLeft; |
|
10354 | 572 |
if (CurAmmoGear <> nil) and (CurAmmoGear^.State and gstSubmersible <> 0) and CheckCoordInWater(hwRound(CurAmmoGear^.X), hwRound(CurAmmoGear^.Y)) then |
8992
5b0be812dcdb
Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents:
8987
diff
changeset
|
573 |
TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 25 |
5b0be812dcdb
Rename submersible state, increase getaway time for attack underwater, slow down gear dx/dy underwater to simulate water resistance
nemo
parents:
8987
diff
changeset
|
574 |
else TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 100; |
11918
232b57a70aca
Make the timer red when it is the get-away time
Wuzzy <almikes@aol.com>
parents:
11916
diff
changeset
|
575 |
IsGetAwayTime := true; |
6581 | 576 |
end; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
577 |
if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (HHGear <> nil) then |
7462 | 578 |
HHGear^.State:= HHGear^.State or gstAttacked; |
6581 | 579 |
if (Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) <> 0 then |
580 |
ApplyAmmoChanges(CurrentHedgehog^) |
|
581 |
end; |
|
582 |
end |
|
583 |
else |
|
584 |
begin |
|
585 |
OnUsedAmmo(CurrentHedgehog^); |
|
586 |
ApplyAmmoChanges(CurrentHedgehog^); |
|
587 |
end; |
|
588 |
AttackBar:= 0 |
|
589 |
end |
|
590 |
end; |
|
591 |
||
592 |
//////////////////////////////////////////////////////////////////////////////// |
|
593 |
procedure doStepHedgehogDead(Gear: PGear); |
|
594 |
const frametime = 200; |
|
595 |
timertime = frametime * 6; |
|
11206 | 596 |
var grave: PGear; |
6581 | 597 |
begin |
598 |
if Gear^.Hedgehog^.Unplaced then |
|
599 |
exit; |
|
600 |
if Gear^.Timer > 1 then |
|
601 |
begin |
|
602 |
AllInactive:= false; |
|
603 |
dec(Gear^.Timer); |
|
604 |
if (Gear^.Timer mod frametime) = 0 then |
|
605 |
inc(Gear^.Pos) |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
606 |
end |
6581 | 607 |
else if Gear^.Timer = 1 then |
608 |
begin |
|
9064 | 609 |
Gear^.Hedgehog^.Effects[heFrozen]:= 0; |
6581 | 610 |
Gear^.State:= Gear^.State or gstNoDamage; |
11473
2f6f8baa2a97
Make weapon damage in most cases be a structure value and also expose it to lua. Needs testing/review due to conditions at time of doing this (w/ one arm, dizzy/tingling due to sodium citrate), and just number of places changed..
nemo
parents:
11272
diff
changeset
|
611 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Boom, CurrentHedgehog, EXPLAutoSound); |
11206 | 612 |
grave:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0); |
613 |
grave^.Hedgehog:= Gear^.Hedgehog; |
|
614 |
grave^.Pos:= Gear^.uid; |
|
615 |
||
6581 | 616 |
DeleteGear(Gear); |
617 |
SetAllToActive |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
618 |
end |
6581 | 619 |
else // Gear^.Timer = 0 |
620 |
begin |
|
621 |
AllInactive:= false; |
|
622 |
Gear^.Z:= cCurrHHZ; |
|
623 |
RemoveGearFromList(Gear); |
|
624 |
InsertGearToList(Gear); |
|
7053 | 625 |
PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 626 |
Gear^.Pos:= 0; |
627 |
Gear^.Timer:= timertime |
|
628 |
end |
|
629 |
end; |
|
630 |
||
631 |
//////////////////////////////////////////////////////////////////////////////// |
|
632 |
procedure doStepHedgehogGone(Gear: PGear); |
|
633 |
const frametime = 65; |
|
634 |
timertime = frametime * 11; |
|
10178
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
635 |
var i: LongInt; |
6581 | 636 |
begin |
637 |
if Gear^.Hedgehog^.Unplaced then |
|
638 |
exit; |
|
639 |
if Gear^.Timer > 1 then |
|
640 |
begin |
|
641 |
AllInactive:= false; |
|
642 |
dec(Gear^.Timer); |
|
643 |
if (Gear^.Timer mod frametime) = 0 then |
|
644 |
inc(Gear^.Pos) |
|
645 |
end |
|
646 |
else |
|
647 |
if Gear^.Timer = 1 then |
|
648 |
begin |
|
649 |
DeleteGear(Gear); |
|
650 |
SetAllToActive |
|
651 |
end |
|
652 |
else // Gear^.Timer = 0 |
|
653 |
begin |
|
654 |
AllInactive:= false; |
|
655 |
Gear^.Z:= cCurrHHZ; |
|
656 |
RemoveGearFromList(Gear); |
|
657 |
InsertGearToList(Gear); |
|
10178
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
658 |
// only play sound for one alive hedgehog |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
659 |
with Gear^.Hedgehog^.Team^ do |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
660 |
for i:= 0 to cMaxHHIndex do |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
661 |
begin |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
662 |
if (Hedgehogs[i].Gear <> nil) then |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
663 |
begin |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
664 |
if (Hedgehogs[i].Gear = Gear) then |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
665 |
begin |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
666 |
PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack); |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
667 |
PlaySound(sndWarp); |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
668 |
end; |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
669 |
break; |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
670 |
end; |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
671 |
end; |
6581 | 672 |
Gear^.Pos:= 0; |
673 |
Gear^.Timer:= timertime |
|
674 |
end |
|
675 |
end; |
|
676 |
||
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
677 |
procedure AddPickup(HH: THedgehog; ammo: TAmmoType; cnt, X, Y: LongWord); |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
678 |
var s: ansistring; |
11944
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
679 |
name: ansistring; |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
680 |
vga: PVisualGear; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
681 |
begin |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
682 |
if cnt <> 0 then AddAmmo(HH, ammo, cnt) |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
683 |
else AddAmmo(HH, ammo); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
684 |
|
11853
6a0d6b00dac8
Highlander: give visual and acustic feedback when weapons are collected from a kill, similar to collecting a crate
sheepluva
parents:
11852
diff
changeset
|
685 |
if IsHogLocal(@HH) then |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
686 |
begin |
11944
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
687 |
if length(trluaammo[Ammoz[ammo].NameId]) > 0 then |
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
688 |
name:= trluaammo[Ammoz[ammo].NameId] |
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
689 |
else |
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
690 |
name:= trammo[Ammoz[ammo].NameId]; |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
691 |
if cnt <> 0 then |
11944
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
692 |
s:= name + ansistring(' (+' + IntToStr(cnt) + ')') |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
693 |
else |
11944
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
694 |
s:= name + ansistring(' (+' + IntToStr(Ammoz[ammo].NumberInCase) + ')'); |
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
695 |
AddCaption(s, HH.Team^.Clan^.Color, capgrpAmmoinfo); |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
696 |
|
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
697 |
// show ammo icon |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
698 |
vga:= AddVisualGear(X, Y, vgtAmmo); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
699 |
if vga <> nil then |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
700 |
vga^.Frame:= Longword(ammo); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
701 |
end; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
702 |
end; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
703 |
|
6581 | 704 |
//////////////////////////////////////////////////////////////////////////////// |
705 |
procedure PickUp(HH, Gear: PGear); |
|
12298
6383323fdd2c
Make health gain message translatable
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
706 |
var s: ansistring; |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
707 |
i: LongInt; |
6581 | 708 |
vga: PVisualGear; |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
709 |
ag, gi: PGear; |
6581 | 710 |
begin |
11629 | 711 |
if Gear^.State and gstFrozen <> 0 then exit; |
712 |
||
6581 | 713 |
Gear^.Message:= gmDestroy; |
714 |
if (Gear^.Pos and posCaseExplode) <> 0 then |
|
715 |
if (Gear^.Pos and posCasePoison) <> 0 then |
|
716 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned) |
|
717 |
else |
|
718 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound) |
|
719 |
else if (Gear^.Pos and posCasePoison) <> 0 then |
|
720 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned + EXPLNoDamage) |
|
721 |
else |
|
722 |
case Gear^.Pos of |
|
723 |
posCaseUtility, |
|
724 |
posCaseAmmo: begin |
|
7597
1ef520fea21c
make cheating a bit easier (mikade insisted). Also, try flipping dust for a bit more variety.
nemo
parents:
7462
diff
changeset
|
725 |
PlaySound(sndShotgunReload); |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
726 |
if Gear^.AmmoType <> amNothing then |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
727 |
begin |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
728 |
AddPickup(HH^.Hedgehog^, Gear^.AmmoType, Gear^.Power, hwRound(Gear^.X), hwRound(Gear^.Y)); |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
729 |
end |
6581 | 730 |
else |
731 |
begin |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
732 |
// Add spawning here... |
7409 | 733 |
AddRandomness(GameTicks); |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
734 |
|
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
735 |
gi := GearsList; |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
736 |
while gi <> nil do |
7391
588eabb4b384
Apparently order of multiple getrandom in params is undefined. Also remove broken and pointless getrandom call.
nemo
parents:
7389
diff
changeset
|
737 |
begin |
8030
165aeaaaf445
Call fallers less often. Should hopefully still be about as effective at the intended purpose. Should help loads quite a bit.
nemo
parents:
8003
diff
changeset
|
738 |
if (gi^.Kind = gtGenericFaller) and (gi^.State and gstInvisible <> 0) then |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
739 |
begin |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
740 |
gi^.Active:= true; |
8030
165aeaaaf445
Call fallers less often. Should hopefully still be about as effective at the intended purpose. Should help loads quite a bit.
nemo
parents:
8003
diff
changeset
|
741 |
gi^.State:= gi^.State or gstTmpFlag; |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
742 |
gi^.X:= int2hwFloat(GetRandom(rightX-leftX)+leftX); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
743 |
gi^.Y:= int2hwFloat(GetRandom(LAND_HEIGHT-topY)+topY); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
744 |
gi^.dX:= _90-(GetRandomf*_360); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
745 |
gi^.dY:= _90-(GetRandomf*_360) |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
746 |
end; |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
747 |
gi := gi^.NextGear |
7391
588eabb4b384
Apparently order of multiple getrandom in params is undefined. Also remove broken and pointless getrandom call.
nemo
parents:
7389
diff
changeset
|
748 |
end; |
7598 | 749 |
ag:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtAddAmmo, gstInvisible, _0, _0, GetRandom(125)+25); |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
750 |
ag^.Pos:= Gear^.Pos; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
751 |
ag^.Power:= Gear^.Power |
6581 | 752 |
end; |
753 |
end; |
|
754 |
posCaseHealth: begin |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
755 |
PlaySound(sndShotgunReload); |
6581 | 756 |
inc(HH^.Health, Gear^.Health); |
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6992
diff
changeset
|
757 |
HH^.Hedgehog^.Effects[hePoisoned] := 0; |
12298
6383323fdd2c
Make health gain message translatable
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
758 |
s:= IntToStr(Gear^.Health); |
6383323fdd2c
Make health gain message translatable
Wuzzy <almikes@aol.com>
parents:
12291
diff
changeset
|
759 |
AddCaption(FormatA(trmsg[sidHealthGain], s), HH^.Hedgehog^.Team^.Clan^.Color, capgrpAmmoinfo); |
6581 | 760 |
RenderHealth(HH^.Hedgehog^); |
761 |
RecountTeamHealth(HH^.Hedgehog^.Team); |
|
762 |
||
763 |
i:= 0; |
|
12053
475a1289f940
Fix game extremely slowing down if hog collects crate with huge health, or vampire gets huge health.
Wuzzy <almikes@aol.com>
parents:
11944
diff
changeset
|
764 |
while (i < Gear^.Health) and (i <= 1000) do |
6581 | 765 |
begin |
766 |
vga:= AddVisualGear(hwRound(HH^.X), hwRound(HH^.Y), vgtStraightShot); |
|
767 |
if vga <> nil then |
|
768 |
with vga^ do |
|
769 |
begin |
|
770 |
Tint:= $00FF00FF; |
|
771 |
State:= ord(sprHealth) |
|
772 |
end; |
|
773 |
inc(i, 5); |
|
774 |
end; |
|
775 |
end; |
|
776 |
end |
|
777 |
end; |
|
778 |
||
779 |
procedure HedgehogStep(Gear: PGear); |
|
780 |
var PrevdX: LongInt; |
|
781 |
CurWeapon: PAmmo; |
|
10435
4c8fc3aa9432
allow hogs to repeatedly enter portals placed on the ground
nemo
parents:
10354
diff
changeset
|
782 |
portals: PGearArrayS; |
6581 | 783 |
begin |
6924 | 784 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 785 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
786 |
begin |
|
787 |
if isCursorVisible then |
|
788 |
with Gear^.Hedgehog^ do |
|
789 |
with CurWeapon^ do |
|
790 |
begin |
|
791 |
if (Gear^.Message and gmLeft ) <> 0 then |
|
792 |
Pos:= (Pos - 1 + Ammoz[AmmoType].PosCount) mod Ammoz[AmmoType].PosCount |
|
793 |
else |
|
794 |
if (Gear^.Message and gmRight ) <> 0 then |
|
795 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
|
796 |
else |
|
797 |
exit; |
|
7028 | 798 |
GHStepTicks:= 200; |
6581 | 799 |
exit |
800 |
end; |
|
801 |
||
802 |
if ((Gear^.Message and gmAnimate) <> 0) then |
|
803 |
begin |
|
804 |
Gear^.Message:= 0; |
|
805 |
Gear^.State:= Gear^.State or gstAnimation; |
|
806 |
Gear^.Tag:= Gear^.MsgParam; |
|
807 |
Gear^.Timer:= 0; |
|
808 |
Gear^.Pos:= 0 |
|
809 |
end; |
|
810 |
||
811 |
if ((Gear^.Message and gmLJump ) <> 0) then |
|
812 |
begin |
|
813 |
Gear^.Message:= Gear^.Message and (not gmLJump); |
|
814 |
DeleteCI(Gear); |
|
815 |
if TestCollisionYwithGear(Gear, -1) = 0 then |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
816 |
if TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) = 0 then |
6581 | 817 |
Gear^.Y:= Gear^.Y - _2 |
818 |
else |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
819 |
if TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) = 0 then |
6581 | 820 |
Gear^.Y:= Gear^.Y - _1; |
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
821 |
if (TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) = 0) and |
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
822 |
(TestCollisionYwithGear(Gear, -1) = 0) then |
6581 | 823 |
begin |
824 |
Gear^.dY:= -_0_15; |
|
825 |
if not cArtillery then |
|
826 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
|
827 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
|
7053 | 828 |
PlaySoundV(sndJump1, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 829 |
exit |
830 |
end; |
|
831 |
end; |
|
832 |
||
833 |
if ((Gear^.Message and gmHJump ) <> 0) then |
|
834 |
begin |
|
835 |
DeleteCI(Gear); |
|
836 |
Gear^.Message:= Gear^.Message and (not gmHJump); |
|
837 |
||
838 |
Gear^.dY:= -_0_2; |
|
839 |
SetLittle(Gear^.dX); |
|
840 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
|
7053 | 841 |
PlaySoundV(sndJump3, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 842 |
exit |
843 |
end; |
|
844 |
||
10435
4c8fc3aa9432
allow hogs to repeatedly enter portals placed on the ground
nemo
parents:
10354
diff
changeset
|
845 |
if (Gear^.Message and (gmLeft or gmRight) <> 0) and (Gear^.State and gstMoving = 0) then |
4c8fc3aa9432
allow hogs to repeatedly enter portals placed on the ground
nemo
parents:
10354
diff
changeset
|
846 |
begin |
4c8fc3aa9432
allow hogs to repeatedly enter portals placed on the ground
nemo
parents:
10354
diff
changeset
|
847 |
// slightly inefficient since it doesn't halt after one portal, maybe could add a param to GearsNear for number desired. |
4c8fc3aa9432
allow hogs to repeatedly enter portals placed on the ground
nemo
parents:
10354
diff
changeset
|
848 |
portals:= GearsNear(Gear^.X, Gear^.Y, gtPortal, 26); |
4c8fc3aa9432
allow hogs to repeatedly enter portals placed on the ground
nemo
parents:
10354
diff
changeset
|
849 |
if portals.size = 0 then Gear^.PortalCounter:= 0 |
4c8fc3aa9432
allow hogs to repeatedly enter portals placed on the ground
nemo
parents:
10354
diff
changeset
|
850 |
end; |
6581 | 851 |
PrevdX:= hwSign(Gear^.dX); |
852 |
if (Gear^.Message and gmLeft )<>0 then |
|
853 |
Gear^.dX:= -cLittle else |
|
854 |
if (Gear^.Message and gmRight )<>0 then |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
855 |
Gear^.dX:= cLittle |
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
856 |
else exit; |
6581 | 857 |
|
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
858 |
StepSoundTimer:= cHHStepTicks; |
7719
eeae1cb6b6bf
Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents:
7671
diff
changeset
|
859 |
|
7028 | 860 |
GHStepTicks:= cHHStepTicks; |
6581 | 861 |
if PrevdX <> hwSign(Gear^.dX) then |
862 |
begin |
|
863 |
FollowGear:= Gear; |
|
864 |
exit |
|
865 |
end; |
|
866 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
867 |
||
868 |
Gear^.Hedgehog^.visStepPos:= (Gear^.Hedgehog^.visStepPos + 1) and 7; |
|
7164
fad64b97947e
Some brainfucking code which greatly reduces number of TestCollision* calls in hedgehog walk routine. Especially helpful to AI optimization. Also fixes some edge cases.
unc0rr
parents:
7069
diff
changeset
|
869 |
|
10714 | 870 |
if (not cArtillery or |
871 |
((CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtBlowTorch))) and |
|
872 |
((Gear^.Message and gmPrecise) = 0) then |
|
7719
eeae1cb6b6bf
Move hedgehog's step routine into separate function, use it in both hedgehog and ai code
unc0rr
parents:
7671
diff
changeset
|
873 |
MakeHedgehogsStep(Gear); |
6581 | 874 |
|
8576
286ebfcb3d97
workaround for frequent AllHH active call in hedgehog step
nemo
parents:
8574
diff
changeset
|
875 |
SetAllHHToActive(false); |
9291
15f7bb217b66
Make add/delete consistent (this has bugged me for so long)
nemo
parents:
9285
diff
changeset
|
876 |
AddCI(Gear) |
6581 | 877 |
end |
878 |
end; |
|
879 |
||
880 |
procedure HedgehogChAngle(HHGear: PGear); |
|
881 |
var da: LongWord; |
|
882 |
begin |
|
883 |
with HHGear^.Hedgehog^ do |
|
10015 | 884 |
if (((CurAmmoType = amRope) or ((CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amRope))) and |
9139
2ae44c4381cd
Restore CurAmmoType check as well, that was removed in r8f317ba10675 when trying to fix aiming during alt attack.
nemo
parents:
9080
diff
changeset
|
885 |
((HHGear^.State and (gstMoving or gstHHJumping)) = gstMoving)) |
6581 | 886 |
or ((CurAmmoType = amPortalGun) and ((HHGear^.State and gstMoving) <> 0)) then |
887 |
da:= 2 |
|
888 |
else da:= 1; |
|
889 |
||
8987
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8947
diff
changeset
|
890 |
if ((HHGear^.Message and gmPrecise = 0) or ((CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amJetpack))) or (GameTicks mod 5 = 1) then |
6581 | 891 |
if ((HHGear^.Message and gmUp) <> 0) and (HHGear^.Angle >= CurMinAngle + da) then |
892 |
dec(HHGear^.Angle, da) |
|
893 |
else |
|
894 |
if ((HHGear^.Message and gmDown) <> 0) and (HHGear^.Angle + da <= CurMaxAngle) then |
|
895 |
inc(HHGear^.Angle, da) |
|
896 |
end; |
|
897 |
||
898 |
||
899 |
//////////////////////////////////////////////////////////////////////////////// |
|
11517
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
900 |
procedure moveHedgehogOutOfWall(Gear: PGear); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
901 |
var |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
902 |
hx: hwFloat; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
903 |
colly, collxl, collxr: boolean; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
904 |
begin |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
905 |
colly:= (TestCollisionYwithGear(Gear, 1) <> 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
906 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
907 |
while colly do |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
908 |
begin |
11518
d44d2ab7ce4a
fix comment; revert unintentional commit of some testing png
sheepluva
parents:
11517
diff
changeset
|
909 |
// don't use TestCollisionXwithXYShift, because it checks for gears |
11517
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
910 |
// save real x-position |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
911 |
hx:= Gear^.X; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
912 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
913 |
Gear^.X:= hx + _1; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
914 |
collxl:= (TestCollisionX(Gear, -1) <> 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
915 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
916 |
Gear^.X:= hx - _1; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
917 |
collxr:= (TestCollisionX(Gear, 1) <> 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
918 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
919 |
// restore original value |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
920 |
Gear^.X:= hx; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
921 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
922 |
// do nothing if trapped between 2 walls |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
923 |
if collxl = collxr then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
924 |
break; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
925 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
926 |
// if we in a wall - fix that |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
927 |
if collxl then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
928 |
begin |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
929 |
// check for obstacle |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
930 |
if (TestCollisionX(Gear, 1) <> 0) then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
931 |
break; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
932 |
Gear^.X:= Gear^.X + _1; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
933 |
end |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
934 |
else |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
935 |
begin |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
936 |
// check for obstacle |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
937 |
if (TestCollisionX(Gear, -1) <> 0) then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
938 |
break; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
939 |
Gear^.X:= Gear^.X - _1; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
940 |
end; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
941 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
942 |
colly:= (TestCollisionYwithGear(Gear, 1) <> 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
943 |
end; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
944 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
945 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
946 |
end; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
947 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
948 |
//////////////////////////////////////////////////////////////////////////////// |
6581 | 949 |
procedure doStepHedgehogMoving(Gear: PGear); |
950 |
var isFalling, isUnderwater: boolean; |
|
951 |
land: Word; |
|
11489 | 952 |
cnt: LongWord; |
12189
50856782cdc4
Add support for hog name in home run message
Wuzzy <almikes@aol.com>
parents:
12174
diff
changeset
|
953 |
s: ansistring; |
6581 | 954 |
begin |
10577
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
955 |
if Gear^.Hedgehog^.Unplaced then |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
956 |
begin |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
957 |
Gear^.dY:= _0; |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
958 |
Gear^.dX:= _0; |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
959 |
Gear^.State:= Gear^.State and (not gstMoving); |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
960 |
exit |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
961 |
end; |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
962 |
|
6581 | 963 |
land:= 0; |
10354 | 964 |
isUnderwater:= CheckCoordInWater(hwRound(Gear^.X), hwRound(Gear^.Y) + Gear^.Radius); |
6581 | 965 |
if Gear^.dX.QWordValue > 8160437862 then |
966 |
Gear^.dX.QWordValue:= 8160437862; |
|
967 |
if Gear^.dY.QWordValue > 8160437862 then |
|
968 |
Gear^.dY.QWordValue:= 8160437862; |
|
969 |
||
11517
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
970 |
isFalling:= (Gear^.dY.isNegative); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
971 |
if (not isFalling) then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
972 |
begin |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
973 |
// make sure we're not just stuck in wall |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
974 |
moveHedgehogOutOfWall(Gear); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
975 |
// test for floor/obstacle below |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
976 |
isFalling:= (TestCollisionYKick(Gear, 1) = 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
977 |
end; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
978 |
|
6581 | 979 |
if isFalling then |
980 |
begin |
|
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
981 |
land:= TestCollisionYKick(Gear, -1); |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
982 |
if (Gear^.dY.isNegative) and (land <> 0) then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
983 |
begin |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
984 |
if land and lfBouncy <> 0 then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
985 |
begin |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
986 |
doStepFallingGear(Gear); |
10895
bce67defd804
Make bouncing a bit less wtf for various gears tested (hog, 'zooka, saucer hog, drill strike). Less hacky is another matter.
nemo
parents:
10818
diff
changeset
|
987 |
Gear^.AdvBounce:= 1; |
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
988 |
Gear^.dX:= Gear^.dX * _0_8 |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
989 |
end; |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
990 |
if (land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0) then |
9795
487e5675061f
clear gstCollision from doStepFallingGear once I'm done with it. hog "physics" doesn't use it, and was screwing up labels
nemo
parents:
9776
diff
changeset
|
991 |
Gear^.dY:= _0; |
9954 | 992 |
Gear^.State:= Gear^.State and (not gstCollision) |
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
993 |
end; |
6581 | 994 |
Gear^.State:= Gear^.State or gstMoving; |
9971 | 995 |
if (Gear^.State and gstHHDriven <> 0) and |
11272 | 996 |
(FollowGear <> nil) and |
9499 | 997 |
(not CurrentTeam^.ExtDriven) and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
6581 | 998 |
begin |
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
999 |
// TODO: why so aggressive at setting FollowGear when falling? |
9499 | 1000 |
// because hog was being yanked out of frame by other stuff when doing a complicated jump/chute/saucer/roping. |
1001 |
// added a couple more conditions to make it a bit less aggressive, at cost of possibly spectator failing to follow a maneuver |
|
6581 | 1002 |
FollowGear:= Gear; |
1003 |
end; |
|
1004 |
if isUnderwater then |
|
1005 |
Gear^.dY:= Gear^.dY + cGravity / _2 |
|
1006 |
else |
|
1007 |
begin |
|
1008 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1009 |
// this set of circumstances could be less complex if jumping was more clearly identified |
|
1010 |
if ((GameFlags and gfMoreWind) <> 0) and (((Gear^.Damage <> 0) |
|
1011 |
or ((CurAmmoGear <> nil) and ((CurAmmoGear^.AmmoType = amJetpack) or (CurAmmoGear^.AmmoType = amBirdy))) |
|
1012 |
or ((Gear^.dY.QWordValue + Gear^.dX.QWordValue) > _0_55.QWordValue))) then |
|
1013 |
Gear^.dX := Gear^.dX + cWindSpeed / Gear^.Density |
|
1014 |
end |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1015 |
end |
6581 | 1016 |
else |
1017 |
begin |
|
1018 |
land:= TestCollisionYwithGear(Gear, 1); |
|
10015 | 1019 |
if ((Gear^.dX.QWordValue + Gear^.dY.QWordValue) < _0_55.QWordValue) and ((land and lfIce) = 0) |
1020 |
and ((land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0)) |
|
11515 | 1021 |
and (Gear^.Damage = 0) |
6581 | 1022 |
and ((Gear^.State and gstHHJumping) <> 0) then |
1023 |
SetLittle(Gear^.dX); |
|
1024 |
||
1025 |
if not Gear^.dY.isNegative then |
|
1026 |
begin |
|
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1027 |
if land and lfBouncy <> 0 then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1028 |
begin |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1029 |
doStepFallingGear(Gear); |
10895
bce67defd804
Make bouncing a bit less wtf for various gears tested (hog, 'zooka, saucer hog, drill strike). Less hacky is another matter.
nemo
parents:
10818
diff
changeset
|
1030 |
Gear^.AdvBounce:= 1; |
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1031 |
// hogs for some reason have very low friction. slippery little buggers |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1032 |
Gear^.dX:= Gear^.dX * _0_8 |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1033 |
end; |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1034 |
|
6581 | 1035 |
CheckHHDamage(Gear); |
1036 |
||
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1037 |
if (land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0) then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1038 |
begin |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1039 |
if ((Gear^.State and gstHHHJump) <> 0) and (not cArtillery) |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1040 |
and (Gear^.dX.QWordValue < _0_02.QWordValue) then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1041 |
begin |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1042 |
if land and lfBouncy <> 0 then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1043 |
Gear^.dY:= _0; |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1044 |
Gear^.dX.isNegative:= not Gear^.dX.isNegative // landing after high jump |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1045 |
end; |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1046 |
Gear^.State:= Gear^.State and (not (gstHHJumping or gstHHHJump)); |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1047 |
if (land and lfBouncy = 0) or (Gear^.dX.QWordValue < _0_02.QWordValue) then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1048 |
Gear^.dY:= _0 |
9795
487e5675061f
clear gstCollision from doStepFallingGear once I'm done with it. hog "physics" doesn't use it, and was screwing up labels
nemo
parents:
9776
diff
changeset
|
1049 |
end; |
9954 | 1050 |
Gear^.State:= Gear^.State and (not gstCollision) |
6581 | 1051 |
end |
1052 |
else |
|
1053 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1054 |
||
1055 |
if ((Gear^.State and gstMoving) <> 0) then |
|
1056 |
begin |
|
1057 |
if land and lfIce <> 0 then |
|
1058 |
begin |
|
1059 |
Gear^.dX:= Gear^.dX * (_1 - (_1 - Gear^.Friction) / _2) |
|
1060 |
end |
|
1061 |
else |
|
1062 |
Gear^.dX:= Gear^.dX * Gear^.Friction; |
|
1063 |
end |
|
1064 |
end; |
|
1065 |
||
10146
1fb6d8cc4626
Should never use State like this, since some states aren't synced (thinking state for example)
unc0rr
parents:
10124
diff
changeset
|
1066 |
if (Gear^.State and (gstMoving or gstHHJumping or gstHHHJump)) <> 0 then |
6581 | 1067 |
DeleteCI(Gear); |
1068 |
||
1069 |
if isUnderwater then |
|
1070 |
begin |
|
1071 |
Gear^.dY:= Gear^.dY * _0_999; |
|
1072 |
Gear^.dX:= Gear^.dX * _0_999; |
|
1073 |
end; |
|
1074 |
||
1075 |
if (Gear^.State and gstMoving) <> 0 then |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1076 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) <> 0 then |
6581 | 1077 |
if not isFalling then |
1078 |
if hwAbs(Gear^.dX) > _0_01 then |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1079 |
if (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -1, hwSign(Gear^.dX)) = 0) and |
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1080 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1081 |
begin |
1082 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1083 |
Gear^.dX:= Gear^.dX * _0_96; |
|
1084 |
Gear^.Y:= Gear^.Y - _1 |
|
1085 |
end |
|
1086 |
else |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1087 |
if (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -2, hwSign(Gear^.dX)) = 0) and |
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1088 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1089 |
begin |
1090 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1091 |
Gear^.dX:= Gear^.dX * _0_93; |
|
1092 |
Gear^.Y:= Gear^.Y - _2 |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1093 |
end |
6581 | 1094 |
else |
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1095 |
if (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -3, hwSign(Gear^.dX)) = 0) and |
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1096 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1097 |
begin |
1098 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1099 |
Gear^.dX:= Gear^.dX * _0_9 ; |
|
1100 |
Gear^.Y:= Gear^.Y - _3 |
|
1101 |
end |
|
1102 |
else |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1103 |
if (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -4, hwSign(Gear^.dX)) = 0) and |
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1104 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1105 |
begin |
1106 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1107 |
Gear^.dX:= Gear^.dX * _0_87; |
|
1108 |
Gear^.Y:= Gear^.Y - _4 |
|
1109 |
end |
|
1110 |
else |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1111 |
if (TestCollisionXwithXYShift(Gear, int2hwFloat(hwSign(Gear^.dX)) - Gear^.dX, -5, hwSign(Gear^.dX)) = 0) and |
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1112 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1113 |
begin |
1114 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1115 |
Gear^.dX:= Gear^.dX * _0_84; |
|
1116 |
Gear^.Y:= Gear^.Y - _5 |
|
1117 |
end |
|
1118 |
else |
|
1119 |
if hwAbs(Gear^.dX) > _0_02 then |
|
1120 |
Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
1121 |
else |
|
1122 |
begin |
|
1123 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
11489 | 1124 |
cnt:= 0; |
1125 |
while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do |
|
1126 |
begin |
|
1127 |
Gear^.Y:= Gear^.Y + _1; |
|
1128 |
inc(cnt) |
|
1129 |
end; |
|
1130 |
||
6581 | 1131 |
SetLittle(Gear^.dX) |
1132 |
end |
|
1133 |
else |
|
1134 |
begin |
|
1135 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
11489 | 1136 |
cnt:= 0; |
1137 |
while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do |
|
1138 |
begin |
|
1139 |
Gear^.Y:= Gear^.Y + _1; |
|
1140 |
inc(cnt) |
|
1141 |
end; |
|
6581 | 1142 |
SetLittle(Gear^.dX) |
1143 |
end |
|
1144 |
else if (hwAbs(Gear^.dX) > cLittle) |
|
1145 |
and ((Gear^.State and gstHHJumping) = 0) then |
|
1146 |
Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
1147 |
else |
|
1148 |
SetLittle(Gear^.dX); |
|
1149 |
||
1150 |
if (not isFalling) |
|
7362
53bcfc714cb3
Fix rare condition when hog's gear stucks in an infinite loop which adds 1 to its Y coordinate not checking for drowning
unc0rr
parents:
7339
diff
changeset
|
1151 |
and (hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
6581 | 1152 |
begin |
1153 |
Gear^.State:= Gear^.State and (not gstWinner); |
|
1154 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
11489 | 1155 |
cnt:= 0; |
1156 |
while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do |
|
1157 |
begin |
|
8947
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1158 |
Gear^.Y:= Gear^.Y + _1; |
11489 | 1159 |
inc(cnt) |
1160 |
end; |
|
8947
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1161 |
|
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1162 |
// could become nil in CheckGearDrowning if ai's hog fails to respawn in ai survival |
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1163 |
if Gear = nil then exit; |
6581 | 1164 |
SetLittle(Gear^.dX); |
1165 |
Gear^.dY:= _0 |
|
1166 |
end |
|
1167 |
else |
|
1168 |
Gear^.State:= Gear^.State or gstMoving; |
|
1169 |
||
1170 |
if (Gear^.State and gstMoving) <> 0 then |
|
1171 |
begin |
|
1172 |
Gear^.State:= Gear^.State and (not gstAnimation); |
|
1173 |
// ARTILLERY but not being moved by explosions |
|
1174 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1175 |
Gear^.Y:= Gear^.Y + Gear^.dY; |
|
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1176 |
if (not Gear^.dY.isNegative) and (TestCollisionYKick(Gear, 1) = 0) then |
6581 | 1177 |
begin |
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1178 |
land:= TestCollisionYwithXYShift(Gear, 0, 1, 1); |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1179 |
if land and lfBouncy <> 0 then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1180 |
doStepFallingGear(Gear); |
10895
bce67defd804
Make bouncing a bit less wtf for various gears tested (hog, 'zooka, saucer hog, drill strike). Less hacky is another matter.
nemo
parents:
10818
diff
changeset
|
1181 |
Gear^.AdvBounce:= 1; |
9731
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1182 |
|
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1183 |
if (land <> 0) and ((land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0)) then |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1184 |
begin |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1185 |
CheckHHDamage(Gear); |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1186 |
Gear^.dY:= _0; |
953197ac43d8
Make sticky mine respect lfBouncy, make hogs do same, kinda... make uCollisions return land w/ mask, restrict bouncy to advbounce gears only, which means piano doesn't bounce anymore
nemo
parents:
9706
diff
changeset
|
1187 |
Gear^.Y:= Gear^.Y + _1 |
9795
487e5675061f
clear gstCollision from doStepFallingGear once I'm done with it. hog "physics" doesn't use it, and was screwing up labels
nemo
parents:
9776
diff
changeset
|
1188 |
end; |
9954 | 1189 |
Gear^.State:= Gear^.State and (not gstCollision) |
6581 | 1190 |
end; |
8947
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1191 |
|
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1192 |
// could become nil if ai's hog fails to respawn in ai survival |
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1193 |
if Gear = nil then exit; |
6581 | 1194 |
// hide target cursor if current hog is drowning |
1195 |
if (Gear^.State and gstDrowning) <> 0 then |
|
1196 |
if (CurrentHedgehog^.Gear = Gear) then |
|
1197 |
isCursorVisible:= false |
|
1198 |
end; |
|
7623
addc5b262617
isZero appears to be never used. Use it in a few obvious cases and add web variant.
nemo
parents:
7615
diff
changeset
|
1199 |
if (not isZero(Gear^.dY)) and (Gear^.FlightTime > 0) and ((GameFlags and gfLowGravity) = 0) then |
6581 | 1200 |
begin |
1201 |
inc(Gear^.FlightTime); |
|
8003 | 1202 |
if (Gear^.FlightTime > 1500) and ((hwRound(Gear^.X) < LongInt(leftX)-250) or (hwRound(Gear^.X) > LongInt(rightX)+250)) then |
6581 | 1203 |
begin |
7763 | 1204 |
Gear^.FlightTime:= 0; |
12189
50856782cdc4
Add support for hog name in home run message
Wuzzy <almikes@aol.com>
parents:
12174
diff
changeset
|
1205 |
s:= ansistring(CurrentHedgehog^.Name); |
50856782cdc4
Add support for hog name in home run message
Wuzzy <almikes@aol.com>
parents:
12174
diff
changeset
|
1206 |
AddCaption(FormatA(GetEventString(eidHomerun), s), cWhiteColor, capgrpMessage); |
6581 | 1207 |
PlaySound(sndHomerun) |
1208 |
end; |
|
1209 |
end |
|
1210 |
else |
|
1211 |
begin |
|
1212 |
uStats.hedgehogFlight(Gear, Gear^.FlightTime); |
|
1213 |
Gear^.FlightTime:= 0; |
|
1214 |
end; |
|
1215 |
||
1216 |
end; |
|
1217 |
||
1218 |
procedure doStepHedgehogDriven(HHGear: PGear); |
|
1219 |
var t: PGear; |
|
1220 |
wasJumping: boolean; |
|
1221 |
Hedgehog: PHedgehog; |
|
12174
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1222 |
s: ansistring; |
6581 | 1223 |
begin |
1224 |
Hedgehog:= HHGear^.Hedgehog; |
|
8658 | 1225 |
if not isInMultiShoot then |
1226 |
AllInactive:= false |
|
1227 |
else if Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle] then |
|
1228 |
HHGear^.Message:= 0; |
|
6581 | 1229 |
|
8330 | 1230 |
if ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Utility) <> 0) and isInMultiShoot then |
6581 | 1231 |
AllInactive:= true |
7786
23a075cf4837
*sigh* revert the multishoot thingy. worked fine in my tests w/ smine and cleaver, screwed up deagle. need to find out why, but sleepy. for later
nemo
parents:
7783
diff
changeset
|
1232 |
else if not isInMultiShoot then |
6581 | 1233 |
AllInactive:= false; |
1234 |
||
12291
b4dde7035fe2
New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents:
12209
diff
changeset
|
1235 |
if (TurnTimeLeft = 0) or (HHGear^.Damage > 0) or (LuaEndTurnRequested = true) then |
6581 | 1236 |
begin |
8494
53b91a602955
Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents:
8493
diff
changeset
|
1237 |
if (Hedgehog^.CurAmmoType = amKnife) then |
53b91a602955
Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents:
8493
diff
changeset
|
1238 |
LoadHedgehogHat(Hedgehog^, Hedgehog^.Hat); |
6581 | 1239 |
if TagTurnTimeLeft = 0 then |
1240 |
TagTurnTimeLeft:= TurnTimeLeft; |
|
1241 |
TurnTimeLeft:= 0; |
|
12291
b4dde7035fe2
New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents:
12209
diff
changeset
|
1242 |
if ((HHGear^.State and gstAttacked) = 0) and (HHGear^.Damage = 0) and (LuaNoEndTurnTaunts = false) then |
12174
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1243 |
begin |
11927
d0296b8e60c0
Add “boring” voice to voice queue to avoid voice overlapping
Wuzzy <almikes@aol.com>
parents:
11919
diff
changeset
|
1244 |
AddVoice(sndBoring, Hedgehog^.Team^.voicepack); |
12174
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1245 |
if (GameFlags and gfInfAttack = 0) then |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1246 |
begin |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1247 |
s:= Hedgehog^.Name; |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1248 |
AddCaption(FormatA(GetEventString(eidTimeout), s), cWhiteColor, capgrpMessage); |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1249 |
end; |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1250 |
end; |
6581 | 1251 |
isCursorVisible:= false; |
1252 |
HHGear^.State:= HHGear^.State and (not (gstHHDriven or gstAnimation or gstAttacking)); |
|
1253 |
AttackBar:= 0; |
|
12291
b4dde7035fe2
New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents:
12209
diff
changeset
|
1254 |
LuaEndTurnRequested:= false; |
b4dde7035fe2
New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents:
12209
diff
changeset
|
1255 |
LuaNoEndTurnTaunts:= false; |
6581 | 1256 |
if HHGear^.Damage > 0 then |
1257 |
HHGear^.State:= HHGear^.State and (not (gstHHJumping or gstHHHJump)); |
|
1258 |
exit |
|
1259 |
end; |
|
1260 |
||
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1261 |
if isAFK and (not CurrentTeam^.ExtDriven) and (CurrentHedgehog^.BotLevel = 0) then |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1262 |
begin |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1263 |
AFKSkip; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1264 |
exit |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1265 |
end; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1266 |
|
6581 | 1267 |
if (HHGear^.State and gstAnimation) <> 0 then |
1268 |
begin |
|
1269 |
HHGear^.Message:= 0; |
|
1270 |
if (HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].VoiceDelay) and (HHGear^.Timer = 0) then |
|
7053 | 1271 |
PlaySoundV(Wavez[TWave(HHGear^.Tag)].Voice, Hedgehog^.Team^.voicepack); |
6581 | 1272 |
inc(HHGear^.Timer); |
1273 |
if HHGear^.Timer = Wavez[TWave(HHGear^.Tag)].Interval then |
|
1274 |
begin |
|
1275 |
HHGear^.Timer:= 0; |
|
1276 |
inc(HHGear^.Pos); |
|
1277 |
if HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].FramesCount then |
|
1278 |
HHGear^.State:= HHGear^.State and (not gstAnimation) |
|
1279 |
end; |
|
1280 |
exit |
|
1281 |
end; |
|
1282 |
||
1283 |
if ((HHGear^.State and gstMoving) <> 0) |
|
7028 | 1284 |
or (GHStepTicks = cHHStepTicks) |
6581 | 1285 |
or (CurAmmoGear <> nil) then // we are moving |
1286 |
begin |
|
1287 |
with Hedgehog^ do |
|
1288 |
if (CurAmmoGear = nil) |
|
1289 |
and (HHGear^.dY > _0_39) |
|
1290 |
and (CurAmmoType = amParachute) then |
|
1291 |
HHGear^.Message:= HHGear^.Message or gmAttack; |
|
1292 |
// check for case with ammo |
|
1293 |
t:= CheckGearNear(HHGear, gtCase, 36, 36); |
|
11629 | 1294 |
if (t <> nil) then |
6581 | 1295 |
PickUp(HHGear, t) |
1296 |
end; |
|
1297 |
||
1298 |
if (CurAmmoGear = nil) then |
|
1299 |
if (((HHGear^.Message and gmAttack) <> 0) |
|
1300 |
or ((HHGear^.State and gstAttacking) <> 0)) then |
|
1301 |
Attack(HHGear) // should be before others to avoid desync with '/put' msg and changing weapon msgs |
|
1302 |
else |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1303 |
else |
6581 | 1304 |
with Hedgehog^ do |
1305 |
if ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) |
|
1306 |
and ((HHGear^.Message and gmLJump) <> 0) |
|
1307 |
and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) then |
|
1308 |
begin |
|
1309 |
Attack(HHGear); |
|
1310 |
HHGear^.Message:= HHGear^.Message and (not gmLJump) |
|
1311 |
end; |
|
1312 |
||
1313 |
if (CurAmmoGear = nil) |
|
7956
61da79e83330
Causes AI fail. Needs testing 'cause at some point, I thought this was needed for portal, I don't remember *why*
nemo
parents:
7832
diff
changeset
|
1314 |
or ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) then |
6581 | 1315 |
begin |
1316 |
if ((HHGear^.Message and gmSlot) <> 0) then |
|
1317 |
if ChangeAmmo(HHGear) then ApplyAmmoChanges(Hedgehog^); |
|
1318 |
||
1319 |
if ((HHGear^.Message and gmWeapon) <> 0) then |
|
1320 |
HHSetWeapon(HHGear); |
|
1321 |
||
1322 |
if ((HHGear^.Message and gmTimer) <> 0) then |
|
1323 |
HHSetTimer(HHGear); |
|
1324 |
end; |
|
1325 |
||
1326 |
if CurAmmoGear <> nil then |
|
1327 |
begin |
|
1328 |
CurAmmoGear^.Message:= HHGear^.Message; |
|
1329 |
exit |
|
1330 |
end; |
|
1331 |
||
1332 |
HedgehogChAngle(HHGear); |
|
1333 |
||
1334 |
if (HHGear^.State and gstMoving) <> 0 then |
|
1335 |
begin |
|
1336 |
wasJumping:= ((HHGear^.State and gstHHJumping) <> 0); |
|
1337 |
||
1338 |
if ((HHGear^.Message and gmHJump) <> 0) and wasJumping and ((HHGear^.State and gstHHHJump) = 0) then |
|
1339 |
if (not (hwAbs(HHGear^.dX) > cLittle)) and (HHGear^.dY < -_0_02) then |
|
1340 |
begin |
|
1341 |
HHGear^.State:= HHGear^.State or gstHHHJump; |
|
1342 |
HHGear^.dY:= -_0_25; |
|
1343 |
if not cArtillery then |
|
1344 |
HHGear^.dX:= -SignAs(_0_02, HHGear^.dX); |
|
7053 | 1345 |
PlaySoundV(sndJump2, Hedgehog^.Team^.voicepack) |
6581 | 1346 |
end; |
1347 |
||
1348 |
HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump)); |
|
1349 |
||
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1350 |
if (not cArtillery) and wasJumping and (TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) <> 0) then |
6581 | 1351 |
SetLittle(HHGear^.dX); |
1352 |
||
1353 |
if Hedgehog^.Gear <> nil then |
|
1354 |
doStepHedgehogMoving(HHGear); |
|
1355 |
||
1356 |
if ((HHGear^.State and (gstMoving or gstDrowning)) = 0) then |
|
1357 |
begin |
|
9291
15f7bb217b66
Make add/delete consistent (this has bugged me for so long)
nemo
parents:
9285
diff
changeset
|
1358 |
AddCI(HHGear); |
6581 | 1359 |
if wasJumping then |
7028 | 1360 |
GHStepTicks:= 410 |
6581 | 1361 |
else |
7028 | 1362 |
GHStepTicks:= 95 |
6581 | 1363 |
end; |
1364 |
exit |
|
1365 |
end; |
|
1366 |
||
8562
d9d1cb650ff8
Restore freezing hedgehog for shotgun, sniper rifle and deagle to make unc0rr happy. You'll still be able to get away after throwing cleaver and sticky bomb tho.
nemo
parents:
8553
diff
changeset
|
1367 |
if not(isInMultiShoot and (Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle])) and (Hedgehog^.Gear <> nil) then |
6581 | 1368 |
begin |
7028 | 1369 |
if GHStepTicks > 0 then |
1370 |
dec(GHStepTicks); |
|
1371 |
if (GHStepTicks = 0) then |
|
6581 | 1372 |
HedgehogStep(HHGear) |
1373 |
end |
|
1374 |
end; |
|
1375 |
||
1376 |
//////////////////////////////////////////////////////////////////////////////// |
|
1377 |
procedure doStepHedgehogFree(Gear: PGear); |
|
1378 |
var prevState: Longword; |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
1379 |
s: ansistring; |
6581 | 1380 |
begin |
1381 |
prevState:= Gear^.State; |
|
1382 |
||
1383 |
doStepHedgehogMoving(Gear); |
|
1384 |
||
1385 |
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then |
|
1386 |
begin |
|
1387 |
if Gear^.Damage > 0 then |
|
1388 |
CalcRotationDirAngle(Gear); |
|
1389 |
AllInactive:= false; |
|
1390 |
exit |
|
1391 |
end; |
|
1392 |
||
1393 |
if (Gear^.Health = 0) then |
|
1394 |
begin |
|
1395 |
if PrvInactive or ((GameFlags and gfInfAttack) <> 0) then |
|
1396 |
begin |
|
1397 |
Gear^.Timer:= 0; |
|
1398 |
FollowGear:= Gear; |
|
1399 |
PrvInactive:= false; |
|
1400 |
AllInactive:= false; |
|
1401 |
||
1402 |
if (Gear^.State and gstHHGone) = 0 then |
|
1403 |
begin |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6992
diff
changeset
|
1404 |
Gear^.Hedgehog^.Effects[hePoisoned] := 0; |
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
6992
diff
changeset
|
1405 |
if Gear^.Hedgehog^.Effects[heResurrectable] <> 0 then |
6581 | 1406 |
begin |
1407 |
ResurrectHedgehog(Gear); |
|
1408 |
end |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1409 |
else |
6581 | 1410 |
begin |
1411 |
Gear^.State:= (Gear^.State or gstHHDeath) and (not gstAnimation); |
|
1412 |
Gear^.doStep:= @doStepHedgehogDead; |
|
1413 |
// Death message |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
1414 |
s:= ansistring(Gear^.Hedgehog^.Name); |
12174
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1415 |
if Gear^.Hedgehog^.King then |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1416 |
AddCaption(FormatA(GetEventString(eidKingDied), s), cWhiteColor, capgrpMessage) |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1417 |
else |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1418 |
AddCaption(FormatA(GetEventString(eidDied), s), cWhiteColor, capgrpMessage); |
6581 | 1419 |
end; |
1420 |
end |
|
1421 |
else |
|
1422 |
begin |
|
1423 |
Gear^.State:= Gear^.State and (not gstAnimation); |
|
1424 |
Gear^.doStep:= @doStepHedgehogGone; |
|
1425 |
||
1426 |
// Gone message |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
1427 |
s:= ansistring(Gear^.Hedgehog^.Name); |
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
1428 |
AddCaption(FormatA(GetEventString(eidGone), s), cWhiteColor, capgrpMessage); |
6581 | 1429 |
end |
1430 |
end; |
|
1431 |
exit |
|
1432 |
end; |
|
1433 |
||
1434 |
if ((Gear^.State and gstWait) = 0) and |
|
1435 |
(prevState <> Gear^.State) then |
|
1436 |
begin |
|
1437 |
Gear^.State:= Gear^.State or gstWait; |
|
1438 |
Gear^.Timer:= 150 |
|
1439 |
end |
|
1440 |
else |
|
1441 |
begin |
|
1442 |
if Gear^.Timer = 0 then |
|
1443 |
begin |
|
10818
f642a28cab0c
Add placement of airmines in engine outside of hog proximity. Has a bug, only protecting 1st team. Also fix a spelling error and rename gstHHChooseTarget to gstChooseTarget
nemo
parents:
10789
diff
changeset
|
1444 |
Gear^.State:= Gear^.State and (not (gstWait or gstLoser or gstWinner or gstAttacked or gstNotKickable or gstChooseTarget)); |
8563
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1445 |
if Gear^.Hedgehog^.Effects[heFrozen] = 0 then Gear^.Active:= false; |
9291
15f7bb217b66
Make add/delete consistent (this has bugged me for so long)
nemo
parents:
9285
diff
changeset
|
1446 |
AddCI(Gear); |
6581 | 1447 |
exit |
1448 |
end |
|
1449 |
else dec(Gear^.Timer) |
|
1450 |
end; |
|
1451 |
||
1452 |
AllInactive:= false |
|
1453 |
end; |
|
1454 |
||
8574 | 1455 |
procedure CheckIce(Gear: PGear); inline; |
6581 | 1456 |
(* |
1457 |
var x,y,tx,ty: LongInt; |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1458 |
tdX, tdY, slope: hwFloat; |
6581 | 1459 |
land: Word; *) |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1460 |
var slope: hwFloat; |
6581 | 1461 |
begin |
8574 | 1462 |
if (Gear^.Message and (gmAllStoppable or gmLJump or gmHJump) = 0) |
1463 |
and (Gear^.State and (gstHHJumping or gstHHHJump or gstAttacking) = 0) |
|
8633 | 1464 |
and ((Gear^.Hedgehog = nil) or ((Gear^.Hedgehog^.Effects[heFrozen] = 0) or (Gear^.Hedgehog^.Effects[heFrozen] > 255))) |
9672
8663d299ba62
this should prevent sliding when game clock isn't running. sorry unc0rr, not going to bother encapsulating. maybe later. short on time right now/lazy
nemo
parents:
9670
diff
changeset
|
1465 |
and (not Gear^.dY.isNegative) and TurnClockActive and (TestCollisionYwithGear(Gear, 1) and lfIce <> 0) then |
8574 | 1466 |
begin |
1467 |
slope:= CalcSlopeBelowGear(Gear); |
|
1468 |
if slope.QWordValue > 730144440 then // ignore mild slopes |
|
1469 |
begin |
|
1470 |
Gear^.dX:=Gear^.dX+slope*cGravity*_256; |
|
1471 |
Gear^.State:= Gear^.State or gstMoving |
|
1472 |
end |
|
1473 |
end; |
|
1474 |
(* |
|
1475 |
x:= hwRound(Gear^.X); |
|
1476 |
y:= hwRound(Gear^.Y); |
|
1477 |
AddVisualGear(x, y, vgtSmokeTrace); |
|
1478 |
AddVisualGear(x - hwRound(_5*slope), y + hwRound(_5*slope), vgtSmokeTrace); |
|
1479 |
AddVisualGear(x + hwRound(_5*slope), y - hwRound(_5*slope), vgtSmokeTrace); |
|
1480 |
AddVisualGear(x - hwRound(_20 * slope), y + hwRound(_20 * slope), vgtSmokeTrace); |
|
1481 |
AddVisualGear(x + hwRound(_20 * slope), y - hwRound(_20 * slope), vgtSmokeTrace); |
|
1482 |
AddVisualGear(x - hwRound(_30 * slope), y + hwRound(_30 * slope), vgtSmokeTrace); |
|
1483 |
AddVisualGear(x + hwRound(_30 * slope), y - hwRound(_30 * slope), vgtSmokeTrace); |
|
1484 |
AddVisualGear(x - hwRound(_40 * slope), y + hwRound(_40 * slope), vgtSmokeTrace); |
|
1485 |
AddVisualGear(x + hwRound(_40 * slope), y - hwRound(_40 * slope), vgtSmokeTrace); |
|
1486 |
AddVisualGear(x - hwRound(_50 * slope), y + hwRound(_50 * slope), vgtSmokeTrace); |
|
1487 |
AddVisualGear(x + hwRound(_50 * slope), y - hwRound(_50 * slope), vgtSmokeTrace); *) |
|
1488 |
end; |
|
1489 |
||
1490 |
//////////////////////////////////////////////////////////////////////////////// |
|
1491 |
procedure doStepHedgehog(Gear: PGear); |
|
9526 | 1492 |
var tX: hwFloat; |
8574 | 1493 |
begin |
10577
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1494 |
// it might make sense to skip more than just drowning check here |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1495 |
if (not Gear^.Hedgehog^.Unplaced) then |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1496 |
CheckGearDrowning(Gear); |
9917 | 1497 |
if Gear = nil then exit; |
9526 | 1498 |
tX:= Gear^.X; |
1499 |
if WorldWrap(Gear) then |
|
1500 |
begin |
|
10015 | 1501 |
if (WorldEdge <> weBounce) and (Gear = CurrentHedgehog^.Gear) and |
9539 | 1502 |
(CurAmmoGear <> nil) and (CurAmmoGear^.Kind =gtRope) and (CurAmmoGear^.Elasticity <> _0) then |
9526 | 1503 |
CurAmmoGear^.PortalCounter:= 1; |
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1504 |
if (WorldEdge = weWrap) and ((TestCollisionXwithGear(Gear, 1) <> 0) or (TestCollisionXwithGear(Gear, -1) <> 0)) then |
9526 | 1505 |
begin |
1506 |
Gear^.X:= tX; |
|
9809 | 1507 |
Gear^.dX.isNegative:= (hwRound(tX) > LongInt(leftX) + Gear^.Radius * 2) |
9526 | 1508 |
end |
1509 |
end; |
|
9507 | 1510 |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7375
diff
changeset
|
1511 |
CheckSum:= CheckSum xor Gear^.Hedgehog^.BotLevel; |
6581 | 1512 |
if (Gear^.Message and gmDestroy) <> 0 then |
1513 |
begin |
|
1514 |
DeleteGear(Gear); |
|
1515 |
exit |
|
1516 |
end; |
|
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1517 |
if GameTicks mod 128 = 0 then CheckIce(Gear); |
8655
9fa380a18a65
At multiple requests, change ice to be turn based. This is a more modest adjustment of existing code, that can be fairly easily flagged or reverted if desired. It also allows scripts to extend freezing, and preserves fire melting.
nemo
parents:
8633
diff
changeset
|
1518 |
(* |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1519 |
if Gear^.Hedgehog^.Effects[heFrozen] > 0 then |
8563
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1520 |
begin |
8632
b5ed76d2a1f9
Make hogs thaw only on enemy turns, make timebox counter decrement only on your turn, adjust knock for frozen hogs, increase damage on frozen hogs, make freezer fuel only reduce when not adjusting angle.
nemo
parents:
8631
diff
changeset
|
1521 |
if (Gear^.Hedgehog^.Effects[heFrozen] > 256) and (CurrentHedgehog^.Team^.Clan <> Gear^.Hedgehog^.Team^.Clan) then |
8563
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1522 |
dec(Gear^.Hedgehog^.Effects[heFrozen]) |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1523 |
else if GameTicks mod 10 = 0 then |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1524 |
dec(Gear^.Hedgehog^.Effects[heFrozen]) |
4d9d8287e601
Trying to improve rendering, sliding and thawing. Messing around w/ making fire thaw faster.
nemo
parents:
8560
diff
changeset
|
1525 |
end; |
8655
9fa380a18a65
At multiple requests, change ice to be turn based. This is a more modest adjustment of existing code, that can be fairly easily flagged or reverted if desired. It also allows scripts to extend freezing, and preserves fire melting.
nemo
parents:
8633
diff
changeset
|
1526 |
*) |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1527 |
if (GameTicks mod 10 = 0) and (Gear^.Hedgehog^.Effects[heFrozen] > 0) and (Gear^.Hedgehog^.Effects[heFrozen] < 256) then |
8655
9fa380a18a65
At multiple requests, change ice to be turn based. This is a more modest adjustment of existing code, that can be fairly easily flagged or reverted if desired. It also allows scripts to extend freezing, and preserves fire melting.
nemo
parents:
8633
diff
changeset
|
1528 |
dec(Gear^.Hedgehog^.Effects[heFrozen]); |
6581 | 1529 |
if (Gear^.State and gstHHDriven) = 0 then |
1530 |
doStepHedgehogFree(Gear) |
|
1531 |
else |
|
1532 |
begin |
|
1533 |
with Gear^.Hedgehog^ do |
|
1534 |
if Team^.hasGone then |
|
1535 |
TeamGoneEffect(Team^) |
|
1536 |
else |
|
1537 |
doStepHedgehogDriven(Gear) |
|
1538 |
end; |
|
1539 |
end; |
|
1540 |
||
1541 |
end. |