author | Wuzzy <Wuzzy2@mail.ru> |
Sat, 29 Sep 2018 14:52:13 +0200 | |
changeset 13817 | 0beff00d223a |
parent 13798 | 4e5fcfc6f033 |
child 13837 | 10a3b80130b5 |
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; |
12820
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
33 |
procedure PlayTaunt(taunt: Longword); |
13538
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
34 |
function HHGetTimer(Gear: PGear): LongWord; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
35 |
function HHGetTimerMsg(Gear: PGear): LongWord; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
36 |
function HHGetBounciness(Gear: PGear): LongWord; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
37 |
function HHGetBouncinessMsg(Gear: PGear): LongWord; |
6581 | 38 |
|
39 |
implementation |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
40 |
uses uConsts, uVariables, uFloat, uAmmos, uSound, uCaptions, |
9285 | 41 |
uCommands, uLocale, uUtils, uStats, uIO, uScript, |
42 |
uGearsList, uCollisions, uRandom, uStore, uTeams, |
|
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
43 |
uGearsUtils, uVisualGearsList, uChat; |
6581 | 44 |
|
7028 | 45 |
var GHStepTicks: LongWord = 0; |
46 |
||
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
47 |
procedure AFKSkip; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
48 |
var |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
49 |
t: byte; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
50 |
begin |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
51 |
t:= 0; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
52 |
while (TeamsArray[t] <> CurrentTeam) do inc(t); |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
53 |
|
13161
26f0c3669b4e
Make a few more engine strings translatable
Wuzzy <Wuzzy2@mail.ru>
parents:
13101
diff
changeset
|
54 |
AddChatString(#2 + FormatA(trmsg[sidAutoSkip], CurrentTeam^.TeamName)); |
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
55 |
|
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
56 |
ParseCommand('/skip', true) |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
57 |
end; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
58 |
|
6581 | 59 |
// Shouldn't more of this ammo switching stuff be moved to uAmmos ? |
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
60 |
function ChangeAmmo(HHGear: PGear): boolean; |
6581 | 61 |
var slot, i: Longword; |
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
62 |
ammoidx: LongInt; |
7754 | 63 |
prevAmmo: TAmmoType; |
6581 | 64 |
begin |
65 |
ChangeAmmo:= false; |
|
66 |
slot:= HHGear^.MsgParam; |
|
67 |
||
68 |
with HHGear^.Hedgehog^ do |
|
69 |
begin |
|
70 |
HHGear^.Message:= HHGear^.Message and (not gmSlot); |
|
7754 | 71 |
prevAmmo:= CurAmmoType; |
6581 | 72 |
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
|
73 |
if (((HHGear^.State and (gstAttacking or gstAttacked)) <> 0) and (GameFlags and gfInfAttack = 0)) |
6581 | 74 |
or ((HHGear^.State and gstHHDriven) = 0) then |
75 |
exit; |
|
76 |
ChangeAmmo:= true; |
|
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
77 |
|
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
78 |
while (ammoidx < cMaxSlotAmmoIndex) and (Ammo^[slot, ammoidx].AmmoType <> CurAmmoType) do |
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
79 |
inc(ammoidx); |
6581 | 80 |
|
8553
a8e1cff496d8
Allow switching away from any weapon when during multishoot.
nemo
parents:
8494
diff
changeset
|
81 |
if (MultiShootAttacks > 0) then |
a8e1cff496d8
Allow switching away from any weapon when during multishoot.
nemo
parents:
8494
diff
changeset
|
82 |
begin |
13101
d78e65c66573
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
83 |
if (Effects[heArtillery] = 2) then |
d78e65c66573
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
84 |
Effects[heArtillery]:= 0; |
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
|
85 |
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
|
86 |
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
|
87 |
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
|
88 |
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
|
89 |
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
|
90 |
else OnUsedAmmo(HHGear^.Hedgehog^) |
8553
a8e1cff496d8
Allow switching away from any weapon when during multishoot.
nemo
parents:
8494
diff
changeset
|
91 |
end; |
6581 | 92 |
|
93 |
MultiShootAttacks:= 0; |
|
94 |
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
|
95 |
|
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
96 |
if Ammoz[CurAmmoType].Slot = slot then |
6581 | 97 |
begin |
98 |
i:= 0; |
|
99 |
repeat |
|
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
100 |
inc(ammoidx); |
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
101 |
if (ammoidx > cMaxSlotAmmoIndex) then |
6581 | 102 |
begin |
103 |
inc(i); |
|
104 |
CurAmmoType:= amNothing; |
|
105 |
ammoidx:= -1; |
|
106 |
//TryDo(i < 2, 'Engine bug: no ammo in current slot', true) |
|
107 |
end; |
|
108 |
until (i = 1) or ((Ammo^[slot, ammoidx].Count > 0) |
|
109 |
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
|
110 |
|
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
111 |
end |
6581 | 112 |
else |
113 |
begin |
|
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
114 |
i:= 0; |
6581 | 115 |
// check whether there is ammo in slot |
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
116 |
while (i <= cMaxSlotAmmoIndex) and ((Ammo^[slot, i].Count = 0) |
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
117 |
or (Team^.Clan^.TurnNumber <= Ammoz[Ammo^[slot, i].AmmoType].SkipTurns)) |
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
118 |
do inc(i); |
6581 | 119 |
|
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
120 |
if i <= cMaxSlotAmmoIndex then |
6581 | 121 |
ammoidx:= i |
122 |
else ammoidx:= -1 |
|
123 |
end; |
|
124 |
if ammoidx >= 0 then |
|
125 |
CurAmmoType:= Ammo^[slot, ammoidx].AmmoType; |
|
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
126 |
// Try again in the next slot |
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
127 |
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
|
128 |
begin |
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
129 |
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
|
130 |
HHGear^.MsgParam:= slot; |
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
131 |
ChangeAmmo(HHGear) |
7754 | 132 |
end |
6581 | 133 |
end |
134 |
end; |
|
135 |
||
136 |
procedure HHSetWeapon(HHGear: PGear); |
|
137 |
var t: LongInt; |
|
138 |
weap: TAmmoType; |
|
139 |
Hedgehog: PHedgehog; |
|
140 |
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
|
141 |
prevState, newState: LongWord; |
6581 | 142 |
begin |
143 |
s:= false; |
|
144 |
||
145 |
weap:= TAmmoType(HHGear^.MsgParam); |
|
146 |
Hedgehog:= HHGear^.Hedgehog; |
|
147 |
||
12917
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
148 |
HHGear^.Message:= HHGear^.Message and (not gmWeapon); |
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
149 |
|
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
150 |
// Special case: amNothing unselects weapon |
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
151 |
if weap = amNothing then |
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
152 |
begin |
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
153 |
HHGear^.Hedgehog^.CurAmmoType:= amNothing; |
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
154 |
ApplyAmmoChanges(HHGear^.Hedgehog^); |
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
155 |
exit |
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
156 |
end; |
a840fd55caa6
Calling SetWeapon with amNothing now unselects weapon
Wuzzy <Wuzzy2@mail.ru>
parents:
12903
diff
changeset
|
157 |
|
6581 | 158 |
if Hedgehog^.Team^.Clan^.TurnNumber <= Ammoz[weap].SkipTurns then |
159 |
exit; // weapon is not activated yet |
|
160 |
||
161 |
HHGear^.MsgParam:= Ammoz[weap].Slot; |
|
162 |
||
163 |
t:= cMaxSlotAmmoIndex; |
|
164 |
||
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
|
165 |
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
|
166 |
newState:= prevState; |
6581 | 167 |
with Hedgehog^ do |
168 |
while (CurAmmoType <> weap) and (t >= 0) do |
|
169 |
begin |
|
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
170 |
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
|
171 |
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
|
172 |
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
|
173 |
HHGear^.State:= prevState; |
6581 | 174 |
dec(t) |
175 |
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
|
176 |
HHGear^.State:= newState; |
6581 | 177 |
|
178 |
if s then |
|
179 |
ApplyAmmoChanges(HHGear^.Hedgehog^) |
|
180 |
end; |
|
181 |
||
182 |
procedure HHSetTimer(Gear: PGear); |
|
183 |
var CurWeapon: PAmmo; |
|
184 |
color: LongWord; |
|
185 |
begin |
|
186 |
Gear^.Message:= Gear^.Message and (not gmTimer); |
|
6924 | 187 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 188 |
with Gear^.Hedgehog^ do |
13797
5d46b4fae757
Ignore gmTimer after attack or hog is no longer controlled
Wuzzy <Wuzzy2@mail.ru>
parents:
13771
diff
changeset
|
189 |
if (((Gear^.State and gstAttacked) <> 0) and (GameFlags and gfInfAttack = 0)) |
5d46b4fae757
Ignore gmTimer after attack or hog is no longer controlled
Wuzzy <Wuzzy2@mail.ru>
parents:
13771
diff
changeset
|
190 |
or ((Gear^.State and gstHHDriven) = 0) then |
5d46b4fae757
Ignore gmTimer after attack or hog is no longer controlled
Wuzzy <Wuzzy2@mail.ru>
parents:
13771
diff
changeset
|
191 |
exit; |
6581 | 192 |
if ((Gear^.Message and gmPrecise) <> 0) and ((CurWeapon^.Propz and ammoprop_SetBounce) <> 0) then |
193 |
begin |
|
194 |
color:= Gear^.Hedgehog^.Team^.Clan^.Color; |
|
13537
ee77086fc5fa
Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents:
13468
diff
changeset
|
195 |
|
6581 | 196 |
case Gear^.MsgParam of |
197 |
1: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
198 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce1]), color, capgrpAmmostate); |
6581 | 199 |
end; |
200 |
2: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
201 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce2]), color, capgrpAmmostate); |
6581 | 202 |
end; |
203 |
3: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
204 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce3]), color, capgrpAmmostate); |
6581 | 205 |
end; |
206 |
4: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
207 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce4]), color, capgrpAmmostate); |
6581 | 208 |
end; |
209 |
5: begin |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
210 |
AddCaption(FormatA(trmsg[sidBounce], trmsg[sidBounce5]), color, capgrpAmmostate); |
6581 | 211 |
end |
13537
ee77086fc5fa
Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents:
13468
diff
changeset
|
212 |
end; |
ee77086fc5fa
Move hardcoded bounciness values to uConsts
Wuzzy <Wuzzy2@mail.ru>
parents:
13468
diff
changeset
|
213 |
CurWeapon^.Bounciness:= bouncinessLevels[Gear^.MsgParam - 1]; |
6581 | 214 |
end |
215 |
else if (CurWeapon^.Propz and ammoprop_Timerable) <> 0 then |
|
216 |
begin |
|
217 |
CurWeapon^.Timer:= 1000 * Gear^.MsgParam; |
|
218 |
with CurrentTeam^ do |
|
219 |
ApplyAmmoChanges(Hedgehogs[CurrHedgehog]); |
|
220 |
end; |
|
221 |
end; |
|
222 |
||
13538
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
223 |
// Return timer (in ticks) of hogs current ammo or MSGPARAM_INVALID |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
224 |
// if not timerable |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
225 |
function HHGetTimer(Gear: PGear): LongWord; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
226 |
var CurWeapon: PAmmo; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
227 |
begin |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
228 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
229 |
with Gear^.Hedgehog^ do |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
230 |
if ((CurWeapon^.Propz and ammoprop_Timerable) <> 0) then |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
231 |
HHGetTimer:= CurWeapon^.Timer |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
232 |
else |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
233 |
HHGetTimer:= MSGPARAM_INVALID; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
234 |
end; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
235 |
|
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
236 |
// Returns timer as a corresponding msgParam for /timer command |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
237 |
function HHGetTimerMsg(Gear: PGear): LongWord; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
238 |
var timer: LongInt; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
239 |
begin |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
240 |
timer:= HHGetTimer(Gear); |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
241 |
if timer > -1 then |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
242 |
HHGetTimerMsg:= timer div 1000 |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
243 |
else |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
244 |
HHGetTimerMsg:= MSGPARAM_INVALID |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
245 |
end; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
246 |
|
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
247 |
// Returns the selected bounciness value for the hog gear's current ammo |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
248 |
// or MSGPARAM_INVALID if current ammo has no settable bounciness |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
249 |
function HHGetBounciness(Gear: PGear): LongWord; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
250 |
var CurWeapon: PAmmo; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
251 |
begin |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
252 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
253 |
with Gear^.Hedgehog^ do |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
254 |
if ((CurWeapon^.Propz and ammoprop_SetBounce) <> 0) then |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
255 |
HHGetBounciness:= CurWeapon^.Bounciness |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
256 |
else |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
257 |
HHGetBounciness:= MSGPARAM_INVALID |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
258 |
end; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
259 |
|
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
260 |
// Returns bounciness as a corresponding msgParam for /timer command |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
261 |
function HHGetBouncinessMsg(Gear: PGear): LongWord; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
262 |
var bounciness, i: LongInt; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
263 |
begin |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
264 |
bounciness:= HHGetBounciness(Gear); |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
265 |
if bounciness > -1 then |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
266 |
for i:=0 to High(bouncinessLevels) do |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
267 |
if bounciness = bouncinessLevels[i] then |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
268 |
begin |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
269 |
HHGetBouncinessMsg:= i+1; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
270 |
exit |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
271 |
end; |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
272 |
HHGetBouncinessMsg:= MSGPARAM_INVALID |
0c8001e43fd3
Add control to cycle through timer/bounciness values
Wuzzy <Wuzzy2@mail.ru>
parents:
13537
diff
changeset
|
273 |
end; |
6581 | 274 |
|
275 |
procedure Attack(Gear: PGear); |
|
276 |
var xx, yy, newDx, newDy, lx, ly: hwFloat; |
|
277 |
speech: PVisualGear; |
|
278 |
newGear: PGear; |
|
279 |
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
|
280 |
usedAmmoType: TAmmoType; |
6581 | 281 |
altUse: boolean; |
282 |
elastic: hwFloat; |
|
283 |
begin |
|
284 |
newGear:= nil; |
|
285 |
bShowFinger:= false; |
|
6924 | 286 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 287 |
with Gear^, |
288 |
Gear^.Hedgehog^ do |
|
289 |
begin |
|
10970
7341e0c3f966
LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this
sheepluva
parents:
10942
diff
changeset
|
290 |
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
|
291 |
if ((State and gstHHDriven) <> 0) and ((State and (gstAttacked or gstChooseTarget)) = 0) and (((State and gstMoving) = 0) |
6581 | 292 |
or (Power > 0) |
293 |
or (CurAmmoType = amTeleport) |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
294 |
or |
6581 | 295 |
// Allow attacks while moving on ammo with AltAttack |
296 |
((CurAmmoGear <> nil) and ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0)) |
|
297 |
or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackInMove) <> 0)) |
|
298 |
and ((TargetPoint.X <> NoPointX) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NeedTarget) = 0)) then |
|
299 |
begin |
|
300 |
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
|
301 |
if (Power = cMaxPower) or ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_Power) = 0) then |
6581 | 302 |
Message:= Message and (not gmAttack) |
303 |
else |
|
304 |
begin |
|
305 |
if Power = 0 then |
|
306 |
begin |
|
307 |
AttackBar:= CurrentTeam^.AttackBar; |
|
308 |
PlaySound(sndThrowPowerUp) |
|
309 |
end; |
|
310 |
inc(Power) |
|
311 |
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
|
312 |
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
|
313 |
exit; |
6581 | 314 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
315 |
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
|
316 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
317 |
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
|
318 |
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
|
319 |
end; |
6581 | 320 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
321 |
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
|
322 |
yy:= -AngleCos(Angle); |
6581 | 323 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
324 |
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
|
325 |
ly:= Y + int2hwfloat(round(GetLaunchY(CurAmmoType, Angle))); |
6581 | 326 |
|
13101
d78e65c66573
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
327 |
if ((Gear^.State and gstHHHJump) <> 0) and (Effects[heArtillery] = 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
|
328 |
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
|
329 |
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
|
330 |
AddVoice(Ammoz[CurAmmoType].Ammo.AttackVoice, CurrentTeam^.voicepack); |
6581 | 331 |
|
332 |
// 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
|
333 |
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
|
334 |
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
|
335 |
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
|
336 |
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
|
337 |
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
|
338 |
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
|
339 |
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
|
340 |
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
|
341 |
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
|
342 |
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
|
343 |
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
|
344 |
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
|
345 |
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
|
346 |
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
|
347 |
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
|
348 |
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
|
349 |
end |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
350 |
else |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
351 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
352 |
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
|
353 |
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
|
354 |
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
|
355 |
end; |
6581 | 356 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
357 |
case CurAmmoType of |
6581 | 358 |
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
|
359 |
amAirMine: newGear:= AddGear(hwRound(lx), hwRound(ly), gtAirMine, 0, newDx, newDy, 0); |
6581 | 360 |
amMolotov: newGear:= AddGear(hwRound(lx), hwRound(ly), gtMolotov, 0, newDx, newDy, 0); |
361 |
amClusterBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtClusterBomb, 0, newDx, newDy, CurWeapon^.Timer); |
|
362 |
amGasBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtGasBomb, 0, newDx, newDy, CurWeapon^.Timer); |
|
363 |
amBazooka: newGear:= AddGear(hwRound(lx), hwRound(ly), gtShell, 0, newDx, newDy, 0); |
|
364 |
amSnowball: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSnowball, 0, newDx, newDy, 0); |
|
365 |
amBee: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBee, 0, newDx, newDy, 0); |
|
366 |
amShotgun: begin |
|
367 |
PlaySound(sndShotgunReload); |
|
368 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtShotgunShot, 0, xx * _0_5, yy * _0_5, 0); |
|
369 |
end; |
|
370 |
amPickHammer: newGear:= AddGear(hwRound(lx), hwRound(ly) + cHHRadius, gtPickHammer, 0, _0, _0, 0); |
|
371 |
amSkip: ParseCommand('/skip', true); |
|
372 |
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
|
373 |
amMine: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtMine, gstWait, SignAs(_0_02, dX), _0, 0); |
6581 | 374 |
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
|
375 |
amKnife: begin |
7754 | 376 |
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
|
377 |
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
|
378 |
newGear^.Radius:= 4 // temporarily shrink so it doesn't instantly embed in the ground |
7754 | 379 |
end; |
6581 | 380 |
amDEagle: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtDEagleShot, 0, xx * _0_5, yy * _0_5, 0); |
13166 | 381 |
amMinigun: begin |
382 |
PlaySound(sndMinigun); |
|
383 |
newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtMinigun, 0, xx * _0_5, yy * _0_5, 0); |
|
384 |
end; |
|
6581 | 385 |
amSineGun: newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtSineGunShot, 0, xx * _0_5, yy * _0_5, 0); |
386 |
amPortalGun: begin |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
387 |
newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtPortal, 0, xx * _0_6, yy * _0_6, |
6581 | 388 |
// set selected color |
389 |
CurWeapon^.Pos); |
|
390 |
end; |
|
391 |
amSniperRifle: begin |
|
392 |
PlaySound(sndSniperReload); |
|
393 |
newGear:= AddGear(hwRound(lx + xx * cHHRadius), hwRound(ly + yy * cHHRadius), gtSniperRifleShot, 0, xx * _0_5, yy * _0_5, 0); |
|
394 |
end; |
|
395 |
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
|
396 |
amDuck: begin |
12209
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
397 |
// 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
|
398 |
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
|
399 |
PlaySound(sndDroplet2) |
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
400 |
else |
0a7d7256d3d8
Don't play duck drop sound when duck spawns in water
Wuzzy <almikes@aol.com>
parents:
12199
diff
changeset
|
401 |
// 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
|
402 |
PlaySound(sndDuckDrop); |
12323 | 403 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 7, hwRound(ly), gtDuck, 0, SignAs(_0_03, dX), _0, 0); |
12198
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
404 |
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
|
405 |
newGear^.Tag:= -1 |
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
406 |
else |
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
407 |
newGear^.Tag:= 1; |
71c47122fbc0
Add ammotype amDuck for rubber duck
Wuzzy <almikes@aol.com>
parents:
12189
diff
changeset
|
408 |
end; |
6581 | 409 |
amFirePunch: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtFirePunch, 0, xx, _0, 0); |
410 |
amWhip: begin |
|
411 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtWhip, 0, SignAs(_1, dX), - _0_8, 0); |
|
412 |
PlaySound(sndWhipCrack) |
|
413 |
end; |
|
414 |
amHammer: begin |
|
415 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtHammer, 0, SignAs(_1, dX), - _0_8, 0); |
|
416 |
PlaySound(sndWhack) |
|
417 |
end; |
|
418 |
amBaseballBat: begin |
|
419 |
newGear:= AddGear(hwRound(lx) + hwSign(dX) * 10, hwRound(ly), gtShover, gsttmpFlag, xx * _0_5, yy * _0_5, 0); |
|
420 |
PlaySound(sndBaseballBat) // TODO: Only play if something is hit? |
|
421 |
end; |
|
422 |
amParachute: begin |
|
423 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtParachute, 0, _0, _0, 0); |
|
424 |
PlaySound(sndParachute) |
|
425 |
end; |
|
426 |
// we save CurWeapon^.Pos (in this case: cursor direction) by using it as (otherwise irrelevant) X value of the new gear. |
|
427 |
amAirAttack: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 0, _0, _0, 0); |
|
428 |
amMineStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 1, _0, _0, 0); |
|
429 |
amDrillStrike: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 3, _0, _0, CurWeapon^.Timer); |
|
430 |
amNapalm: newGear:= AddGear(CurWeapon^.Pos, 0, gtAirAttack, 2, _0, _0, 0); |
|
431 |
amBlowTorch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtBlowTorch, 0, SignAs(_0_5, dX), _0, 0); |
|
432 |
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
|
433 |
amRubber: begin |
08799c901a42
Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents:
9732
diff
changeset
|
434 |
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
|
435 |
newGear^.AmmoType:= amRubber |
08799c901a42
Add rubber utility. Graphics are still incomplete. Also flag snow/ice in theme config.
nemo
parents:
9732
diff
changeset
|
436 |
end; |
6581 | 437 |
amTeleport: newGear:= AddGear(CurWeapon^.Pos, 0, gtTeleport, 0, _0, _0, 0); |
438 |
amSwitch: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSwitcher, 0, _0, _0, 0); |
|
439 |
amMortar: begin |
|
440 |
playSound(sndMortar); |
|
441 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtMortar, 0, xx*cMaxPower/cPowerDivisor, yy*cMaxPower/cPowerDivisor, 0); |
|
442 |
end; |
|
443 |
amRCPlane: begin |
|
444 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtRCPlane, 0, xx * cMaxPower / cPowerDivisor / 4, yy * cMaxPower / cPowerDivisor / 4, 0); |
|
7053 | 445 |
newGear^.SoundChannel:= LoopSound(sndRCPlane) |
6581 | 446 |
end; |
447 |
amKamikaze: newGear:= AddGear(hwRound(lx), hwRound(ly), gtKamikaze, 0, xx * _0_5, yy * _0_5, 0); |
|
7832 | 448 |
amCake: newGear:= AddGear(hwRound(lx) + hwSign(dX) * 3, hwRound(ly), gtCake, 0, SignAs(cLittle, xx), _0, 0); |
6581 | 449 |
amSeduction: newGear:= AddGear(hwRound(lx), hwRound(ly), gtSeduction, 0, _0, _0, 0); |
450 |
amWatermelon: newGear:= AddGear(hwRound(lx), hwRound(ly), gtWatermelon, 0, newDx, newDy, CurWeapon^.Timer); |
|
451 |
amHellishBomb: newGear:= AddGear(hwRound(lx), hwRound(ly), gtHellishBomb, 0, newDx, newDy, 0); |
|
452 |
amDrill: newGear:= AddGear(hwRound(lx), hwRound(ly), gtDrill, 0, newDx, newDy, 0); |
|
453 |
amBallgun: newGear:= AddGear(hwRound(X), hwRound(Y), gtBallgun, 0, xx * _0_5, yy * _0_5, 0); |
|
454 |
amJetpack: newGear:= AddGear(hwRound(lx), hwRound(ly), gtJetpack, 0, _0, _0, 0); |
|
455 |
amBirdy: begin |
|
456 |
PlaySound(sndWhistle); |
|
457 |
newGear:= AddGear(hwRound(lx), hwRound(ly) - 32, gtBirdy, 0, _0, _0, 0); |
|
458 |
end; |
|
459 |
amLowGravity: begin |
|
460 |
PlaySound(sndLowGravity); |
|
461 |
cGravity:= cMaxWindSpeed; |
|
11892
083c12795632
Show symbols at bottom right while extra damage / low grav. are active
Wuzzy <almikes@aol.com>
parents:
11853
diff
changeset
|
462 |
cGravityf:= 0.00025; |
083c12795632
Show symbols at bottom right while extra damage / low grav. are active
Wuzzy <almikes@aol.com>
parents:
11853
diff
changeset
|
463 |
cLowGravity := true |
6581 | 464 |
end; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
465 |
amExtraDamage: begin |
6581 | 466 |
PlaySound(sndHellishImpact4); |
467 |
cDamageModifier:= _1_5 |
|
468 |
end; |
|
11916
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
469 |
amInvulnerable: begin |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
470 |
PlaySound(sndInvulnerable); |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
471 |
Effects[heInvulnerable]:= 1 |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
472 |
end; |
6581 | 473 |
amExtraTime: begin |
11770
10860d4bca22
Add sound effects for: cleaver impact, air mine impact, using extra time
Wuzzy <almikes@aol.com>
parents:
11629
diff
changeset
|
474 |
PlaySound(sndExtraTime); |
13668
91d48cbae927
Prevent wrapping of turn time when using extra time
Wuzzy <Wuzzy2@mail.ru>
parents:
13647
diff
changeset
|
475 |
if TurnTimeLeft <= (cMaxTurnTime - ExtraTime) then |
91d48cbae927
Prevent wrapping of turn time when using extra time
Wuzzy <Wuzzy2@mail.ru>
parents:
13647
diff
changeset
|
476 |
TurnTimeLeft:= TurnTimeLeft + ExtraTime |
91d48cbae927
Prevent wrapping of turn time when using extra time
Wuzzy <Wuzzy2@mail.ru>
parents:
13647
diff
changeset
|
477 |
else |
91d48cbae927
Prevent wrapping of turn time when using extra time
Wuzzy <Wuzzy2@mail.ru>
parents:
13647
diff
changeset
|
478 |
TurnTimeLeft:= cMaxTurnTime; |
6581 | 479 |
end; |
11916
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
480 |
amLaserSight: begin |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
481 |
PlaySound(sndLaserSight); |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
482 |
cLaserSighting:= true |
6145efcff302
Add sounds for blowtorch, invuln., f. saucer, lasersight, portal gun
Wuzzy <almikes@aol.com>
parents:
11892
diff
changeset
|
483 |
end; |
6581 | 484 |
amVampiric: begin |
7053 | 485 |
PlaySoundV(sndOw1, Team^.voicepack); |
6581 | 486 |
cVampiric:= true; |
487 |
end; |
|
488 |
amPiano: begin |
|
489 |
// Tuck the hedgehog away until the piano attack is completed |
|
490 |
Unplaced:= true; |
|
491 |
X:= _0; |
|
492 |
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
|
493 |
newGear:= AddGear(TargetPoint.X, -1024, gtPiano, 0, _0, _0, 0); |
6581 | 494 |
PauseMusic |
495 |
end; |
|
496 |
amFlamethrower: newGear:= AddGear(hwRound(X), hwRound(Y), gtFlamethrower, 0, xx * _0_5, yy * _0_5, 0); |
|
497 |
amLandGun: newGear:= AddGear(hwRound(X), hwRound(Y), gtLandGun, 0, xx * _0_5, yy * _0_5, 0); |
|
498 |
amResurrector: begin |
|
499 |
newGear:= AddGear(hwRound(lx), hwRound(ly), gtResurrector, 0, _0, _0, 0); |
|
500 |
newGear^.SoundChannel := LoopSound(sndResurrector); |
|
501 |
end; |
|
8161 | 502 |
//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
|
503 |
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
|
504 |
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
|
505 |
end; |
10015 | 506 |
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
|
507 |
((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
|
508 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
509 |
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
|
510 |
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
|
511 |
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
|
512 |
if (CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amJetpack) and |
10354 | 513 |
(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
|
514 |
newGear^.State:= newGear^.State or gstSubmersible; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
515 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
516 |
case CurAmmoType of |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
517 |
amGrenade, amMolotov, |
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
518 |
amClusterBomb, amGasBomb, |
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
519 |
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
|
520 |
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
|
521 |
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
|
522 |
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
|
523 |
amAirMine: FollowGear:= newGear; |
6581 | 524 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
525 |
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
|
526 |
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
|
527 |
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
|
528 |
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
|
529 |
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
|
530 |
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
|
531 |
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
|
532 |
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
|
533 |
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
|
534 |
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
|
535 |
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
|
536 |
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
|
537 |
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
|
538 |
amTardis, amPiano, |
12903 | 539 |
amIceGun, amRubber, |
540 |
amMinigun: 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
|
541 |
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
|
542 |
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
|
543 |
if CurAmmoType = amAirMine then newGear^.Hedgehog:= nil; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
544 |
|
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
|
545 |
if ((CurAmmoType = amMine) or (CurAmmoType = amSMine) or (CurAmmoType = amAirMine)) and (GameFlags and gfInfAttack <> 0) then |
11201 | 546 |
newGear^.FlightTime:= GameTicks + min(TurnTimeLeft,1000) |
6581 | 547 |
else if CurAmmoType = amDrill then |
548 |
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
|
549 |
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
|
550 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
551 |
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
|
552 |
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
|
553 |
end; |
13468
f1d349a52bc7
Refactor: lfCurrentHog→lfCurHogCrate, lfNotCurrentMask→lfNotCurHogCrate
Wuzzy <Wuzzy2@mail.ru>
parents:
13404
diff
changeset
|
554 |
if (newGear <> nil) and (newGear^.CollisionMask and lfCurHogCrate <> 0) then newGear^.CollisionMask:= newGear^.CollisionMask and (not lfCurHogCrate); |
6581 | 555 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
556 |
// 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
|
557 |
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
|
558 |
FollowGear:= nil; |
6581 | 559 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
560 |
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
|
561 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
562 |
elastic:= int2hwfloat(CurWeapon^.Bounciness) / _1000; |
6581 | 563 |
|
564 |
if elastic < _1 then |
|
565 |
newGear^.Elasticity:= newGear^.Elasticity * elastic |
|
566 |
else if elastic > _1 then |
|
567 |
newGear^.Elasticity:= _1 - ((_1-newGear^.Elasticity) / elastic); |
|
8330 | 568 |
(* Experimented with friction modifier. Didn't seem helpful |
6581 | 569 |
fric:= int2hwfloat(CurWeapon^.Bounciness) / _250; |
570 |
if fric < _1 then newGear^.Friction:= newGear^.Friction * fric |
|
571 |
else if fric > _1 then newGear^.Friction:= _1 - ((_1-newGear^.Friction) / fric)*) |
|
572 |
end; |
|
573 |
||
574 |
||
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
575 |
uStats.AmmoUsed(CurAmmoType); |
6581 | 576 |
|
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
577 |
if not (SpeechText = '') then |
6581 | 578 |
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
|
579 |
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
|
580 |
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
|
581 |
begin |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
582 |
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
|
583 |
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
|
584 |
speech^.FrameTicks:= SpeechType; |
13679
3f6fae745f84
Make engine chat syntax translatable
Wuzzy <Wuzzy2@mail.ru>
parents:
13668
diff
changeset
|
585 |
AddChatString(#9+FormatA(trmsg[sidChatHog], [Gear^.Hedgehog^.Name, SpeechText])); |
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
586 |
end; |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
587 |
SpeechText:= '' |
6581 | 588 |
end; |
589 |
||
8492
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
590 |
Power:= 0; |
8833 | 591 |
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
|
592 |
begin |
8833 | 593 |
if CurAmmoType in [amRope,amResurrector] then |
594 |
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
|
595 |
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
|
596 |
end |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
597 |
else |
67d2ad3b3ce9
Allow moving after firing cleaver. This changes multishoot behaviour quite a bit. Needs a lot of testing.
nemo
parents:
8414
diff
changeset
|
598 |
begin |
8833 | 599 |
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
|
600 |
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
|
601 |
AfterAttack; |
13741
2ac3658a2a13
Fix hog attack code always destroying TargetPoint, even if no attack occurred. Fixes bug 265
Wuzzy <Wuzzy2@mail.ru>
parents:
13679
diff
changeset
|
602 |
end; |
2ac3658a2a13
Fix hog attack code always destroying TargetPoint, even if no attack occurred. Fixes bug 265
Wuzzy <Wuzzy2@mail.ru>
parents:
13679
diff
changeset
|
603 |
TargetPoint.X := NoPointX; |
6581 | 604 |
end |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
605 |
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
|
606 |
Message:= Message and (not gmAttack); |
10669
4c78eafe76ac
Issue 755: Lua API: Add ammo type parameter for onHogAttack
sheepluva
parents:
10579
diff
changeset
|
607 |
|
10970
7341e0c3f966
LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this
sheepluva
parents:
10942
diff
changeset
|
608 |
ScriptCall('onHogAttack', ord(usedAmmoType)); |
10669
4c78eafe76ac
Issue 755: Lua API: Add ammo type parameter for onHogAttack
sheepluva
parents:
10579
diff
changeset
|
609 |
end; // of with Gear^, Gear^.Hedgehog^ do |
6581 | 610 |
end; |
611 |
||
612 |
procedure AfterAttack; |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
613 |
var s: ansistring; |
6581 | 614 |
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
|
615 |
HHGear: PGear; |
6581 | 616 |
begin |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
617 |
with CurrentHedgehog^ do |
6581 | 618 |
begin |
7459
8511a3f899d3
Allow AfterAttack to proceed even if the Hedgehog is dead. They could be resurrected after all.
nemo
parents:
7426
diff
changeset
|
619 |
HHGear:= Gear; |
6581 | 620 |
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
|
621 |
if HHGear <> nil then HHGear^.State:= HHGear^.State and (not gstAttacking); |
6581 | 622 |
if (Ammoz[a].Ammo.Propz and ammoprop_Effect) = 0 then |
623 |
begin |
|
624 |
Inc(MultiShootAttacks); |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
625 |
|
13624
525686876f98
Suppress "X remaining" caption in multishoot with gfMultiWeapon
Wuzzy <Wuzzy2@mail.ru>
parents:
13622
diff
changeset
|
626 |
if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks) and ((GameFlags and gfMultiWeapon) = 0) then |
6581 | 627 |
begin |
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
628 |
s:= ansistring(inttostr(Ammoz[a].Ammo.NumPerTurn - MultiShootAttacks + 1)); |
13647
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
13624
diff
changeset
|
629 |
AddCaption(formatA(trmsg[sidRemaining], s), capcolDefault, capgrpAmmostate); |
6581 | 630 |
end; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
631 |
|
6581 | 632 |
if (Ammoz[a].Ammo.NumPerTurn >= MultiShootAttacks) |
633 |
or ((GameFlags and gfMultiWeapon) <> 0) then |
|
634 |
begin |
|
635 |
isInMultiShoot:= true |
|
636 |
end |
|
637 |
else |
|
638 |
begin |
|
639 |
OnUsedAmmo(CurrentHedgehog^); |
|
640 |
if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (((GameFlags and gfInfAttack) = 0) or PlacingHogs) then |
|
641 |
begin |
|
642 |
if TagTurnTimeLeft = 0 then |
|
643 |
TagTurnTimeLeft:= TurnTimeLeft; |
|
13758
885404cdf07a
Add missing nil check in AfterAttack (oops!)
Wuzzy <Wuzzy2@mail.ru>
parents:
13752
diff
changeset
|
644 |
if (HHGear <> nil) and ((HHGear^.State and gstHHDriven) <> 0) then |
13752
52959f686082
Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents:
13741
diff
changeset
|
645 |
begin |
52959f686082
Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents:
13741
diff
changeset
|
646 |
if (CurAmmoGear <> nil) and (CurAmmoGear^.State and gstSubmersible <> 0) and CheckCoordInWater(hwRound(CurAmmoGear^.X), hwRound(CurAmmoGear^.Y)) then |
52959f686082
Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents:
13741
diff
changeset
|
647 |
TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 25 |
52959f686082
Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents:
13741
diff
changeset
|
648 |
else TurnTimeLeft:=(Ammoz[a].TimeAfterTurn * cGetAwayTime) div 100; |
52959f686082
Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents:
13741
diff
changeset
|
649 |
IsGetAwayTime := true; |
52959f686082
Don't start retreat time if hog has lost control in the meantime
Wuzzy <Wuzzy2@mail.ru>
parents:
13741
diff
changeset
|
650 |
end; |
6581 | 651 |
end; |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
652 |
if ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) = 0) and (HHGear <> nil) then |
7462 | 653 |
HHGear^.State:= HHGear^.State or gstAttacked; |
12654
2837dee472cc
Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents:
12605
diff
changeset
|
654 |
if (a = amNothing) or ((Ammoz[a].Ammo.Propz and ammoprop_NoRoundEnd) <> 0) or |
2837dee472cc
Show selected weapon again when using it in inf attack mode
Wuzzy <almikes@aol.com>
parents:
12605
diff
changeset
|
655 |
(((GameFlags and gfInfAttack) <> 0) and ((Ammoz[a].Ammo.Propz and ammoprop_ForceTurnEnd) = 0)) then |
6581 | 656 |
ApplyAmmoChanges(CurrentHedgehog^) |
657 |
end; |
|
658 |
end |
|
659 |
else |
|
660 |
begin |
|
661 |
OnUsedAmmo(CurrentHedgehog^); |
|
662 |
ApplyAmmoChanges(CurrentHedgehog^); |
|
663 |
end; |
|
664 |
AttackBar:= 0 |
|
665 |
end |
|
666 |
end; |
|
667 |
||
668 |
//////////////////////////////////////////////////////////////////////////////// |
|
669 |
procedure doStepHedgehogDead(Gear: PGear); |
|
670 |
const frametime = 200; |
|
671 |
timertime = frametime * 6; |
|
11206 | 672 |
var grave: PGear; |
6581 | 673 |
begin |
674 |
if Gear^.Hedgehog^.Unplaced then |
|
675 |
exit; |
|
676 |
if Gear^.Timer > 1 then |
|
677 |
begin |
|
678 |
AllInactive:= false; |
|
679 |
dec(Gear^.Timer); |
|
680 |
if (Gear^.Timer mod frametime) = 0 then |
|
681 |
inc(Gear^.Pos) |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
682 |
end |
6581 | 683 |
else if Gear^.Timer = 1 then |
684 |
begin |
|
9064 | 685 |
Gear^.Hedgehog^.Effects[heFrozen]:= 0; |
6581 | 686 |
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
|
687 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), Gear^.Boom, CurrentHedgehog, EXPLAutoSound); |
11206 | 688 |
grave:= AddGear(hwRound(Gear^.X), hwRound(Gear^.Y), gtGrave, 0, _0, _0, 0); |
689 |
grave^.Hedgehog:= Gear^.Hedgehog; |
|
690 |
grave^.Pos:= Gear^.uid; |
|
691 |
||
6581 | 692 |
DeleteGear(Gear); |
693 |
SetAllToActive |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
694 |
end |
6581 | 695 |
else // Gear^.Timer = 0 |
696 |
begin |
|
697 |
AllInactive:= false; |
|
698 |
Gear^.Z:= cCurrHHZ; |
|
699 |
RemoveGearFromList(Gear); |
|
700 |
InsertGearToList(Gear); |
|
7053 | 701 |
PlaySoundV(sndByeBye, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 702 |
Gear^.Pos:= 0; |
703 |
Gear^.Timer:= timertime |
|
704 |
end |
|
705 |
end; |
|
706 |
||
707 |
//////////////////////////////////////////////////////////////////////////////// |
|
708 |
procedure doStepHedgehogGone(Gear: PGear); |
|
709 |
const frametime = 65; |
|
710 |
timertime = frametime * 11; |
|
10178
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
711 |
var i: LongInt; |
6581 | 712 |
begin |
713 |
if Gear^.Hedgehog^.Unplaced then |
|
714 |
exit; |
|
715 |
if Gear^.Timer > 1 then |
|
716 |
begin |
|
717 |
AllInactive:= false; |
|
718 |
dec(Gear^.Timer); |
|
719 |
if (Gear^.Timer mod frametime) = 0 then |
|
720 |
inc(Gear^.Pos) |
|
721 |
end |
|
722 |
else |
|
723 |
if Gear^.Timer = 1 then |
|
724 |
begin |
|
725 |
DeleteGear(Gear); |
|
726 |
SetAllToActive |
|
727 |
end |
|
728 |
else // Gear^.Timer = 0 |
|
729 |
begin |
|
730 |
AllInactive:= false; |
|
731 |
Gear^.Z:= cCurrHHZ; |
|
732 |
RemoveGearFromList(Gear); |
|
733 |
InsertGearToList(Gear); |
|
10178
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
734 |
// 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
|
735 |
with Gear^.Hedgehog^.Team^ do |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
736 |
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
|
737 |
begin |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
738 |
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
|
739 |
begin |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
740 |
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
|
741 |
begin |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
742 |
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
|
743 |
PlaySound(sndWarp); |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
744 |
end; |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
745 |
break; |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
746 |
end; |
949b51ca18c6
don't stack bye/teleport sounds of hogs (when a team is gone)
sheepluva
parents:
10147
diff
changeset
|
747 |
end; |
6581 | 748 |
Gear^.Pos:= 0; |
749 |
Gear^.Timer:= timertime |
|
750 |
end |
|
751 |
end; |
|
752 |
||
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
|
753 |
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
|
754 |
var s: ansistring; |
11944
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
755 |
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
|
756 |
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
|
757 |
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
|
758 |
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
|
759 |
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
|
760 |
|
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
|
761 |
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
|
762 |
begin |
11944
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
763 |
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
|
764 |
name:= trluaammo[Ammoz[ammo].NameId] |
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
765 |
else |
c7ec309cd685
Add Lua API function SetAmmoTexts (see issue 82)
Wuzzy <almikes@aol.com>
parents:
11927
diff
changeset
|
766 |
name:= trammo[Ammoz[ammo].NameId]; |
12469
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
767 |
|
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
768 |
if cnt = 0 then |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
769 |
cnt:= Ammoz[ammo].NumberInCase; |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
770 |
|
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
771 |
if (ammo = amNothing) or (cnt = 0) then |
12605 | 772 |
s:= trmsg[sidEmptyCrate] |
12469
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
773 |
else if cnt >= AMMO_INFINITE then |
12468
3223ae85fba3
Show “Ammo Type (+∞)” when taking crate w/ infinite ammo
Wuzzy <almikes@aol.com>
parents:
12436
diff
changeset
|
774 |
s:= 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
|
775 |
else |
12469
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
776 |
s:= name + ansistring(' (+' + IntToStr(cnt) + ')'); |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
777 |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
778 |
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
|
779 |
|
12469
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
780 |
// show ammo icon (if not empty) |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
781 |
if (ammo <> amNothing) and (cnt <> 0) then |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
782 |
begin |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
783 |
vga:= AddVisualGear(X, Y, vgtAmmo); |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
784 |
if vga <> nil then |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
785 |
vga^.Frame:= Longword(ammo); |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
786 |
end |
39d780f9bf35
Show “Empty!” when collecting ammo crate with amNothing or 0 ammo
Wuzzy <almikes@aol.com>
parents:
12468
diff
changeset
|
787 |
|
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
|
788 |
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
|
789 |
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
|
790 |
|
6581 | 791 |
//////////////////////////////////////////////////////////////////////////////// |
792 |
procedure PickUp(HH, Gear: PGear); |
|
12942
a84a05719454
Refactor health gain effects and message into util fuction HHHeal
Wuzzy <Wuzzy2@mail.ru>
parents:
12917
diff
changeset
|
793 |
var ag, gi: PGear; |
13622
a6abc2c1fc1a
Show correct health increase when hog health cap is reached
Wuzzy <Wuzzy2@mail.ru>
parents:
13616
diff
changeset
|
794 |
healthBoost: LongInt; |
6581 | 795 |
begin |
11629 | 796 |
if Gear^.State and gstFrozen <> 0 then exit; |
797 |
||
6581 | 798 |
Gear^.Message:= gmDestroy; |
799 |
if (Gear^.Pos and posCaseExplode) <> 0 then |
|
800 |
if (Gear^.Pos and posCasePoison) <> 0 then |
|
801 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned) |
|
802 |
else |
|
803 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound) |
|
804 |
else if (Gear^.Pos and posCasePoison) <> 0 then |
|
805 |
doMakeExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), 25, HH^.Hedgehog, EXPLAutoSound + EXPLPoisoned + EXPLNoDamage) |
|
806 |
else |
|
807 |
case Gear^.Pos of |
|
808 |
posCaseUtility, |
|
809 |
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
|
810 |
PlaySound(sndShotgunReload); |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
811 |
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
|
812 |
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
|
813 |
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
|
814 |
end |
6581 | 815 |
else |
816 |
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
|
817 |
// Add spawning here... |
7409 | 818 |
AddRandomness(GameTicks); |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
819 |
|
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
820 |
gi := GearsList; |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
821 |
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
|
822 |
begin |
13219
9c81e34f1933
gtGenericFaller: Use Tag=1 to allow gtGenericFaller to be displaced randomly. Otherwise it is left alone
Wuzzy <Wuzzy2@mail.ru>
parents:
13166
diff
changeset
|
823 |
if (gi^.Kind = gtGenericFaller) and (gi^.Tag = 1) then |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
824 |
begin |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
825 |
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
|
826 |
gi^.State:= gi^.State or gstTmpFlag; |
7406
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
827 |
gi^.X:= int2hwFloat(GetRandom(rightX-leftX)+leftX); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
828 |
gi^.Y:= int2hwFloat(GetRandom(LAND_HEIGHT-topY)+topY); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
829 |
gi^.dX:= _90-(GetRandomf*_360); |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
830 |
gi^.dY:= _90-(GetRandomf*_360) |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
831 |
end; |
1fe2c821f9bf
Try avoiding spamming the log by retaining the gears. untested.
nemo
parents:
7391
diff
changeset
|
832 |
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
|
833 |
end; |
7598 | 834 |
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
|
835 |
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
|
836 |
ag^.Power:= Gear^.Power |
6581 | 837 |
end; |
838 |
end; |
|
839 |
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
|
840 |
PlaySound(sndShotgunReload); |
13622
a6abc2c1fc1a
Show correct health increase when hog health cap is reached
Wuzzy <Wuzzy2@mail.ru>
parents:
13616
diff
changeset
|
841 |
healthBoost:= IncHogHealth(HH^.Hedgehog, 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
|
842 |
HH^.Hedgehog^.Effects[hePoisoned] := 0; |
6581 | 843 |
RenderHealth(HH^.Hedgehog^); |
844 |
RecountTeamHealth(HH^.Hedgehog^.Team); |
|
13622
a6abc2c1fc1a
Show correct health increase when hog health cap is reached
Wuzzy <Wuzzy2@mail.ru>
parents:
13616
diff
changeset
|
845 |
HHHeal(HH^.Hedgehog, healthBoost, true); |
6581 | 846 |
end; |
847 |
end |
|
848 |
end; |
|
849 |
||
850 |
procedure HedgehogStep(Gear: PGear); |
|
851 |
var PrevdX: LongInt; |
|
852 |
CurWeapon: PAmmo; |
|
853 |
begin |
|
6924 | 854 |
CurWeapon:= GetCurAmmoEntry(Gear^.Hedgehog^); |
6581 | 855 |
if ((Gear^.State and (gstAttacking or gstMoving)) = 0) then |
856 |
begin |
|
857 |
if isCursorVisible then |
|
858 |
with Gear^.Hedgehog^ do |
|
859 |
with CurWeapon^ do |
|
860 |
begin |
|
861 |
if (Gear^.Message and gmLeft ) <> 0 then |
|
862 |
Pos:= (Pos - 1 + Ammoz[AmmoType].PosCount) mod Ammoz[AmmoType].PosCount |
|
863 |
else |
|
864 |
if (Gear^.Message and gmRight ) <> 0 then |
|
865 |
Pos:= (Pos + 1) mod Ammoz[AmmoType].PosCount |
|
866 |
else |
|
867 |
exit; |
|
7028 | 868 |
GHStepTicks:= 200; |
6581 | 869 |
exit |
870 |
end; |
|
871 |
||
13798
4e5fcfc6f033
Fix hedgehog being able to make walk/jump sounds before it was placed
Wuzzy <Wuzzy2@mail.ru>
parents:
13797
diff
changeset
|
872 |
if (Gear^.Hedgehog^.Unplaced) then |
4e5fcfc6f033
Fix hedgehog being able to make walk/jump sounds before it was placed
Wuzzy <Wuzzy2@mail.ru>
parents:
13797
diff
changeset
|
873 |
exit; |
4e5fcfc6f033
Fix hedgehog being able to make walk/jump sounds before it was placed
Wuzzy <Wuzzy2@mail.ru>
parents:
13797
diff
changeset
|
874 |
|
6581 | 875 |
if ((Gear^.Message and gmAnimate) <> 0) then |
876 |
begin |
|
877 |
Gear^.Message:= 0; |
|
878 |
Gear^.State:= Gear^.State or gstAnimation; |
|
879 |
Gear^.Tag:= Gear^.MsgParam; |
|
880 |
Gear^.Timer:= 0; |
|
881 |
Gear^.Pos:= 0 |
|
882 |
end; |
|
883 |
||
884 |
if ((Gear^.Message and gmLJump ) <> 0) then |
|
885 |
begin |
|
886 |
Gear^.Message:= Gear^.Message and (not gmLJump); |
|
887 |
DeleteCI(Gear); |
|
888 |
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
|
889 |
if TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) = 0 then |
6581 | 890 |
Gear^.Y:= Gear^.Y - _2 |
891 |
else |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
892 |
if TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) = 0 then |
6581 | 893 |
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
|
894 |
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
|
895 |
(TestCollisionYwithGear(Gear, -1) = 0) then |
6581 | 896 |
begin |
897 |
Gear^.dY:= -_0_15; |
|
13101
d78e65c66573
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
898 |
if Gear^.Hedgehog^.Effects[heArtillery] = 0 then |
6581 | 899 |
Gear^.dX:= SignAs(_0_15, Gear^.dX); |
900 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
|
7053 | 901 |
PlaySoundV(sndJump1, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 902 |
exit |
903 |
end; |
|
904 |
end; |
|
905 |
||
906 |
if ((Gear^.Message and gmHJump ) <> 0) then |
|
907 |
begin |
|
908 |
DeleteCI(Gear); |
|
909 |
Gear^.Message:= Gear^.Message and (not gmHJump); |
|
910 |
||
911 |
Gear^.dY:= -_0_2; |
|
912 |
SetLittle(Gear^.dX); |
|
913 |
Gear^.State:= Gear^.State or gstMoving or gstHHJumping; |
|
7053 | 914 |
PlaySoundV(sndJump3, Gear^.Hedgehog^.Team^.voicepack); |
6581 | 915 |
exit |
916 |
end; |
|
917 |
||
13404 | 918 |
if (Gear^.Message and (gmLeft or gmRight) <> 0) and (Gear^.State and gstMoving = 0) and |
13771
9fdb13633bcb
Fix hog teleporting back and forth when walking on portals on floor. Fixes bug 686
Wuzzy <Wuzzy2@mail.ru>
parents:
13758
diff
changeset
|
919 |
(CheckGearNear(Gear, gtPortal, 26, 26) = nil) then |
13404 | 920 |
Gear^.PortalCounter:= 0; |
6581 | 921 |
PrevdX:= hwSign(Gear^.dX); |
922 |
if (Gear^.Message and gmLeft )<>0 then |
|
923 |
Gear^.dX:= -cLittle else |
|
924 |
if (Gear^.Message and gmRight )<>0 then |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
925 |
Gear^.dX:= cLittle |
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
926 |
else exit; |
6581 | 927 |
|
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
928 |
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
|
929 |
|
7028 | 930 |
GHStepTicks:= cHHStepTicks; |
6581 | 931 |
if PrevdX <> hwSign(Gear^.dX) then |
932 |
begin |
|
933 |
FollowGear:= Gear; |
|
934 |
exit |
|
935 |
end; |
|
936 |
DeleteCI(Gear); // must be after exit!! (see previous line) |
|
937 |
||
938 |
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
|
939 |
|
13101
d78e65c66573
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
940 |
if ((Gear^.Hedgehog^.Effects[heArtillery] = 0) or |
10714 | 941 |
((CurAmmoGear <> nil) and (CurAmmoGear^.Kind = gtBlowTorch))) and |
942 |
((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
|
943 |
MakeHedgehogsStep(Gear); |
6581 | 944 |
|
8576
286ebfcb3d97
workaround for frequent AllHH active call in hedgehog step
nemo
parents:
8574
diff
changeset
|
945 |
SetAllHHToActive(false); |
9291
15f7bb217b66
Make add/delete consistent (this has bugged me for so long)
nemo
parents:
9285
diff
changeset
|
946 |
AddCI(Gear) |
6581 | 947 |
end |
948 |
end; |
|
949 |
||
950 |
procedure HedgehogChAngle(HHGear: PGear); |
|
951 |
var da: LongWord; |
|
952 |
begin |
|
953 |
with HHGear^.Hedgehog^ do |
|
10015 | 954 |
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
|
955 |
((HHGear^.State and (gstMoving or gstHHJumping)) = gstMoving)) |
6581 | 956 |
or ((CurAmmoType = amPortalGun) and ((HHGear^.State and gstMoving) <> 0)) then |
957 |
da:= 2 |
|
958 |
else da:= 1; |
|
959 |
||
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
|
960 |
if ((HHGear^.Message and gmPrecise = 0) or ((CurAmmoGear <> nil) and (CurAmmoGear^.AmmoType = amJetpack))) or (GameTicks mod 5 = 1) then |
6581 | 961 |
if ((HHGear^.Message and gmUp) <> 0) and (HHGear^.Angle >= CurMinAngle + da) then |
962 |
dec(HHGear^.Angle, da) |
|
963 |
else |
|
964 |
if ((HHGear^.Message and gmDown) <> 0) and (HHGear^.Angle + da <= CurMaxAngle) then |
|
965 |
inc(HHGear^.Angle, da) |
|
966 |
end; |
|
967 |
||
968 |
||
969 |
//////////////////////////////////////////////////////////////////////////////// |
|
11517
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
970 |
procedure moveHedgehogOutOfWall(Gear: PGear); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
971 |
var |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
972 |
hx: hwFloat; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
973 |
colly, collxl, collxr: boolean; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
974 |
begin |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
975 |
colly:= (TestCollisionYwithGear(Gear, 1) <> 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
976 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
977 |
while colly do |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
978 |
begin |
11518
d44d2ab7ce4a
fix comment; revert unintentional commit of some testing png
sheepluva
parents:
11517
diff
changeset
|
979 |
// don't use TestCollisionXwithXYShift, because it checks for gears |
11517
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
980 |
// save real x-position |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
981 |
hx:= Gear^.X; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
982 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
983 |
Gear^.X:= hx + _1; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
984 |
collxl:= (TestCollisionX(Gear, -1) <> 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
985 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
986 |
Gear^.X:= hx - _1; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
987 |
collxr:= (TestCollisionX(Gear, 1) <> 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
988 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
989 |
// restore original value |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
990 |
Gear^.X:= hx; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
991 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
992 |
// do nothing if trapped between 2 walls |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
993 |
if collxl = collxr then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
994 |
break; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
995 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
996 |
// if we in a wall - fix that |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
997 |
if collxl then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
998 |
begin |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
999 |
// check for obstacle |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1000 |
if (TestCollisionX(Gear, 1) <> 0) then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1001 |
break; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1002 |
Gear^.X:= Gear^.X + _1; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1003 |
end |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1004 |
else |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1005 |
begin |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1006 |
// check for obstacle |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1007 |
if (TestCollisionX(Gear, -1) <> 0) then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1008 |
break; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1009 |
Gear^.X:= Gear^.X - _1; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1010 |
end; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1011 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1012 |
colly:= (TestCollisionYwithGear(Gear, 1) <> 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1013 |
end; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1014 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1015 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1016 |
end; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1017 |
|
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1018 |
//////////////////////////////////////////////////////////////////////////////// |
6581 | 1019 |
procedure doStepHedgehogMoving(Gear: PGear); |
1020 |
var isFalling, isUnderwater: boolean; |
|
1021 |
land: Word; |
|
11489 | 1022 |
cnt: LongWord; |
12189
50856782cdc4
Add support for hog name in home run message
Wuzzy <almikes@aol.com>
parents:
12174
diff
changeset
|
1023 |
s: ansistring; |
6581 | 1024 |
begin |
10577
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1025 |
if Gear^.Hedgehog^.Unplaced then |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1026 |
begin |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1027 |
Gear^.dY:= _0; |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1028 |
Gear^.dX:= _0; |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1029 |
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
|
1030 |
exit |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1031 |
end; |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1032 |
|
6581 | 1033 |
land:= 0; |
10354 | 1034 |
isUnderwater:= CheckCoordInWater(hwRound(Gear^.X), hwRound(Gear^.Y) + Gear^.Radius); |
6581 | 1035 |
if Gear^.dX.QWordValue > 8160437862 then |
1036 |
Gear^.dX.QWordValue:= 8160437862; |
|
1037 |
if Gear^.dY.QWordValue > 8160437862 then |
|
1038 |
Gear^.dY.QWordValue:= 8160437862; |
|
1039 |
||
11517
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1040 |
isFalling:= (Gear^.dY.isNegative); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1041 |
if (not isFalling) then |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1042 |
begin |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1043 |
// make sure we're not just stuck in wall |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1044 |
moveHedgehogOutOfWall(Gear); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1045 |
// test for floor/obstacle below |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1046 |
isFalling:= (TestCollisionYKick(Gear, 1) = 0); |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1047 |
end; |
0e305b7153e6
serious anti wall sticking protection for hedgewars
sheepluva
parents:
11515
diff
changeset
|
1048 |
|
6581 | 1049 |
if isFalling then |
1050 |
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
|
1051 |
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
|
1052 |
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
|
1053 |
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
|
1054 |
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
|
1055 |
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
|
1056 |
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
|
1057 |
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
|
1058 |
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
|
1059 |
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
|
1060 |
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
|
1061 |
Gear^.dY:= _0; |
9954 | 1062 |
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
|
1063 |
end; |
6581 | 1064 |
Gear^.State:= Gear^.State or gstMoving; |
9971 | 1065 |
if (Gear^.State and gstHHDriven <> 0) and |
11272 | 1066 |
(FollowGear <> nil) and |
9499 | 1067 |
(not CurrentTeam^.ExtDriven) and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
6581 | 1068 |
begin |
7187
aff30d80bd7b
- Allow camera movement while current hedgehog is falling
unc0rr
parents:
7164
diff
changeset
|
1069 |
// TODO: why so aggressive at setting FollowGear when falling? |
9499 | 1070 |
// because hog was being yanked out of frame by other stuff when doing a complicated jump/chute/saucer/roping. |
1071 |
// added a couple more conditions to make it a bit less aggressive, at cost of possibly spectator failing to follow a maneuver |
|
6581 | 1072 |
FollowGear:= Gear; |
1073 |
end; |
|
1074 |
if isUnderwater then |
|
1075 |
Gear^.dY:= Gear^.dY + cGravity / _2 |
|
1076 |
else |
|
1077 |
begin |
|
1078 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1079 |
// this set of circumstances could be less complex if jumping was more clearly identified |
|
1080 |
if ((GameFlags and gfMoreWind) <> 0) and (((Gear^.Damage <> 0) |
|
1081 |
or ((CurAmmoGear <> nil) and ((CurAmmoGear^.AmmoType = amJetpack) or (CurAmmoGear^.AmmoType = amBirdy))) |
|
1082 |
or ((Gear^.dY.QWordValue + Gear^.dX.QWordValue) > _0_55.QWordValue))) then |
|
1083 |
Gear^.dX := Gear^.dX + cWindSpeed / Gear^.Density |
|
1084 |
end |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1085 |
end |
6581 | 1086 |
else |
1087 |
begin |
|
1088 |
land:= TestCollisionYwithGear(Gear, 1); |
|
10015 | 1089 |
if ((Gear^.dX.QWordValue + Gear^.dY.QWordValue) < _0_55.QWordValue) and ((land and lfIce) = 0) |
1090 |
and ((land and lfBouncy = 0) or (Gear^.State and gstCollision <> 0)) |
|
11515 | 1091 |
and (Gear^.Damage = 0) |
6581 | 1092 |
and ((Gear^.State and gstHHJumping) <> 0) then |
1093 |
SetLittle(Gear^.dX); |
|
1094 |
||
1095 |
if not Gear^.dY.isNegative then |
|
1096 |
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
|
1097 |
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
|
1098 |
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
|
1099 |
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
|
1100 |
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
|
1101 |
// 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
|
1102 |
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
|
1103 |
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
|
1104 |
|
6581 | 1105 |
CheckHHDamage(Gear); |
1106 |
||
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
|
1107 |
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
|
1108 |
begin |
13101
d78e65c66573
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
1109 |
if ((Gear^.State and gstHHHJump) <> 0) and (Gear^.Hedgehog^.Effects[heArtillery] = 0) |
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
|
1110 |
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
|
1111 |
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
|
1112 |
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
|
1113 |
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
|
1114 |
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
|
1115 |
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
|
1116 |
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
|
1117 |
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
|
1118 |
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
|
1119 |
end; |
9954 | 1120 |
Gear^.State:= Gear^.State and (not gstCollision) |
6581 | 1121 |
end |
1122 |
else |
|
1123 |
Gear^.dY:= Gear^.dY + cGravity; |
|
1124 |
||
1125 |
if ((Gear^.State and gstMoving) <> 0) then |
|
1126 |
begin |
|
1127 |
if land and lfIce <> 0 then |
|
1128 |
begin |
|
1129 |
Gear^.dX:= Gear^.dX * (_1 - (_1 - Gear^.Friction) / _2) |
|
1130 |
end |
|
1131 |
else |
|
1132 |
Gear^.dX:= Gear^.dX * Gear^.Friction; |
|
1133 |
end |
|
1134 |
end; |
|
1135 |
||
10146
1fb6d8cc4626
Should never use State like this, since some states aren't synced (thinking state for example)
unc0rr
parents:
10124
diff
changeset
|
1136 |
if (Gear^.State and (gstMoving or gstHHJumping or gstHHHJump)) <> 0 then |
6581 | 1137 |
DeleteCI(Gear); |
1138 |
||
1139 |
if isUnderwater then |
|
1140 |
begin |
|
1141 |
Gear^.dY:= Gear^.dY * _0_999; |
|
1142 |
Gear^.dX:= Gear^.dX * _0_999; |
|
1143 |
end; |
|
1144 |
||
1145 |
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
|
1146 |
if TestCollisionXKick(Gear, hwSign(Gear^.dX)) <> 0 then |
6581 | 1147 |
if not isFalling then |
1148 |
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
|
1149 |
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
|
1150 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1151 |
begin |
1152 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1153 |
Gear^.dX:= Gear^.dX * _0_96; |
|
1154 |
Gear^.Y:= Gear^.Y - _1 |
|
1155 |
end |
|
1156 |
else |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1157 |
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
|
1158 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1159 |
begin |
1160 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1161 |
Gear^.dX:= Gear^.dX * _0_93; |
|
1162 |
Gear^.Y:= Gear^.Y - _2 |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1163 |
end |
6581 | 1164 |
else |
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1165 |
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
|
1166 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1167 |
begin |
1168 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1169 |
Gear^.dX:= Gear^.dX * _0_9 ; |
|
1170 |
Gear^.Y:= Gear^.Y - _3 |
|
1171 |
end |
|
1172 |
else |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1173 |
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
|
1174 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1175 |
begin |
1176 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1177 |
Gear^.dX:= Gear^.dX * _0_87; |
|
1178 |
Gear^.Y:= Gear^.Y - _4 |
|
1179 |
end |
|
1180 |
else |
|
9706
5178d2263521
return land word from uCollisions to make decisions based on it. Should be handy for trampoline.
nemo
parents:
9685
diff
changeset
|
1181 |
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
|
1182 |
(TestCollisionYwithXYShift(Gear, hwSign(Gear^.dX) - hwRound(Gear^.dX), -1, -1) = 0) then |
6581 | 1183 |
begin |
1184 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1185 |
Gear^.dX:= Gear^.dX * _0_84; |
|
1186 |
Gear^.Y:= Gear^.Y - _5 |
|
1187 |
end |
|
1188 |
else |
|
1189 |
if hwAbs(Gear^.dX) > _0_02 then |
|
1190 |
Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
1191 |
else |
|
1192 |
begin |
|
1193 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
11489 | 1194 |
cnt:= 0; |
1195 |
while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do |
|
1196 |
begin |
|
1197 |
Gear^.Y:= Gear^.Y + _1; |
|
1198 |
inc(cnt) |
|
1199 |
end; |
|
1200 |
||
6581 | 1201 |
SetLittle(Gear^.dX) |
1202 |
end |
|
1203 |
else |
|
1204 |
begin |
|
1205 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
11489 | 1206 |
cnt:= 0; |
1207 |
while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do |
|
1208 |
begin |
|
1209 |
Gear^.Y:= Gear^.Y + _1; |
|
1210 |
inc(cnt) |
|
1211 |
end; |
|
6581 | 1212 |
SetLittle(Gear^.dX) |
1213 |
end |
|
1214 |
else if (hwAbs(Gear^.dX) > cLittle) |
|
1215 |
and ((Gear^.State and gstHHJumping) = 0) then |
|
1216 |
Gear^.dX:= -Gear^.Elasticity * Gear^.dX |
|
1217 |
else |
|
1218 |
SetLittle(Gear^.dX); |
|
1219 |
||
1220 |
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
|
1221 |
and (hwAbs(Gear^.dX) + hwAbs(Gear^.dY) < _0_03) then |
6581 | 1222 |
begin |
1223 |
Gear^.State:= Gear^.State and (not gstWinner); |
|
1224 |
Gear^.State:= Gear^.State and (not gstMoving); |
|
11489 | 1225 |
cnt:= 0; |
1226 |
while (cnt < 6) and (not CheckGearDrowning(Gear)) and (Gear <> nil) and (TestCollisionYWithGear(Gear,1) = 0) do |
|
1227 |
begin |
|
8947
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1228 |
Gear^.Y:= Gear^.Y + _1; |
11489 | 1229 |
inc(cnt) |
1230 |
end; |
|
8947
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1231 |
|
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1232 |
// 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
|
1233 |
if Gear = nil then exit; |
6581 | 1234 |
SetLittle(Gear^.dX); |
1235 |
Gear^.dY:= _0 |
|
1236 |
end |
|
1237 |
else |
|
1238 |
Gear^.State:= Gear^.State or gstMoving; |
|
1239 |
||
1240 |
if (Gear^.State and gstMoving) <> 0 then |
|
1241 |
begin |
|
1242 |
Gear^.State:= Gear^.State and (not gstAnimation); |
|
1243 |
// ARTILLERY but not being moved by explosions |
|
1244 |
Gear^.X:= Gear^.X + Gear^.dX; |
|
1245 |
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
|
1246 |
if (not Gear^.dY.isNegative) and (TestCollisionYKick(Gear, 1) = 0) then |
6581 | 1247 |
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
|
1248 |
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
|
1249 |
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
|
1250 |
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
|
1251 |
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
|
1252 |
|
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
|
1253 |
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
|
1254 |
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
|
1255 |
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
|
1256 |
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
|
1257 |
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
|
1258 |
end; |
9954 | 1259 |
Gear^.State:= Gear^.State and (not gstCollision) |
6581 | 1260 |
end; |
8947
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1261 |
|
e906ebd59612
CheckGearDrowning could delete hedgehogs gear! (CheckGearDrowning -> ResurrectHedgehog -> FindPlace). Fixes bug 620.
unc0rr
parents:
8818
diff
changeset
|
1262 |
// 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
|
1263 |
if Gear = nil then exit; |
6581 | 1264 |
// hide target cursor if current hog is drowning |
1265 |
if (Gear^.State and gstDrowning) <> 0 then |
|
1266 |
if (CurrentHedgehog^.Gear = Gear) then |
|
1267 |
isCursorVisible:= false |
|
1268 |
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
|
1269 |
if (not isZero(Gear^.dY)) and (Gear^.FlightTime > 0) and ((GameFlags and gfLowGravity) = 0) then |
6581 | 1270 |
begin |
1271 |
inc(Gear^.FlightTime); |
|
8003 | 1272 |
if (Gear^.FlightTime > 1500) and ((hwRound(Gear^.X) < LongInt(leftX)-250) or (hwRound(Gear^.X) > LongInt(rightX)+250)) then |
6581 | 1273 |
begin |
7763 | 1274 |
Gear^.FlightTime:= 0; |
12189
50856782cdc4
Add support for hog name in home run message
Wuzzy <almikes@aol.com>
parents:
12174
diff
changeset
|
1275 |
s:= ansistring(CurrentHedgehog^.Name); |
13647
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
13624
diff
changeset
|
1276 |
AddCaption(FormatA(GetEventString(eidHomerun), s), capcolDefault, capgrpMessage); |
6581 | 1277 |
PlaySound(sndHomerun) |
1278 |
end; |
|
1279 |
end |
|
1280 |
else |
|
1281 |
begin |
|
1282 |
uStats.hedgehogFlight(Gear, Gear^.FlightTime); |
|
1283 |
Gear^.FlightTime:= 0; |
|
1284 |
end; |
|
1285 |
||
1286 |
end; |
|
1287 |
||
1288 |
procedure doStepHedgehogDriven(HHGear: PGear); |
|
1289 |
var t: PGear; |
|
1290 |
wasJumping: boolean; |
|
1291 |
Hedgehog: PHedgehog; |
|
12174
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1292 |
s: ansistring; |
6581 | 1293 |
begin |
1294 |
Hedgehog:= HHGear^.Hedgehog; |
|
8658 | 1295 |
if not isInMultiShoot then |
1296 |
AllInactive:= false |
|
1297 |
else if Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle] then |
|
12436
031af5544333
bug #230 - Precise aiming is disabled after firing first Deagle shot (when held down)
nemo
parents:
12327
diff
changeset
|
1298 |
HHGear^.Message:= HHGear^.Message and gmPrecise; |
6581 | 1299 |
|
8330 | 1300 |
if ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_Utility) <> 0) and isInMultiShoot then |
6581 | 1301 |
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
|
1302 |
else if not isInMultiShoot then |
6581 | 1303 |
AllInactive:= false; |
1304 |
||
12291
b4dde7035fe2
New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents:
12209
diff
changeset
|
1305 |
if (TurnTimeLeft = 0) or (HHGear^.Damage > 0) or (LuaEndTurnRequested = true) then |
6581 | 1306 |
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
|
1307 |
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
|
1308 |
LoadHedgehogHat(Hedgehog^, Hedgehog^.Hat); |
6581 | 1309 |
if TagTurnTimeLeft = 0 then |
1310 |
TagTurnTimeLeft:= TurnTimeLeft; |
|
1311 |
TurnTimeLeft:= 0; |
|
12846
afd312fc270d
infinite attack resets flags so probably should skip this
nemo
parents:
12820
diff
changeset
|
1312 |
if (GameOver = false) and ((GameFlags and gfInfAttack) = 0) and ((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
|
1313 |
begin |
11927
d0296b8e60c0
Add “boring” voice to voice queue to avoid voice overlapping
Wuzzy <almikes@aol.com>
parents:
11919
diff
changeset
|
1314 |
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
|
1315 |
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
|
1316 |
begin |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1317 |
s:= Hedgehog^.Name; |
13647
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
13624
diff
changeset
|
1318 |
AddCaption(FormatA(GetEventString(eidTimeout), s), capcolDefault, capgrpMessage); |
12174
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1319 |
end; |
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1320 |
end; |
6581 | 1321 |
isCursorVisible:= false; |
1322 |
HHGear^.State:= HHGear^.State and (not (gstHHDriven or gstAnimation or gstAttacking)); |
|
1323 |
AttackBar:= 0; |
|
12497
47be9f3e61e9
Fix charging sound continuing to play on hog damage (#236)
Wuzzy <almikes@aol.com>
parents:
12469
diff
changeset
|
1324 |
StopSound(sndThrowPowerUp); |
12291
b4dde7035fe2
New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents:
12209
diff
changeset
|
1325 |
LuaEndTurnRequested:= false; |
b4dde7035fe2
New Lua call: EndTurn to end turn
Wuzzy <almikes@aol.com>
parents:
12209
diff
changeset
|
1326 |
LuaNoEndTurnTaunts:= false; |
6581 | 1327 |
if HHGear^.Damage > 0 then |
1328 |
HHGear^.State:= HHGear^.State and (not (gstHHJumping or gstHHHJump)); |
|
1329 |
exit |
|
1330 |
end; |
|
1331 |
||
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1332 |
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
|
1333 |
begin |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1334 |
AFKSkip; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1335 |
exit |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1336 |
end; |
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1337 |
|
6581 | 1338 |
if (HHGear^.State and gstAnimation) <> 0 then |
1339 |
begin |
|
1340 |
HHGear^.Message:= 0; |
|
1341 |
if (HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].VoiceDelay) and (HHGear^.Timer = 0) then |
|
7053 | 1342 |
PlaySoundV(Wavez[TWave(HHGear^.Tag)].Voice, Hedgehog^.Team^.voicepack); |
6581 | 1343 |
inc(HHGear^.Timer); |
1344 |
if HHGear^.Timer = Wavez[TWave(HHGear^.Tag)].Interval then |
|
1345 |
begin |
|
1346 |
HHGear^.Timer:= 0; |
|
1347 |
inc(HHGear^.Pos); |
|
1348 |
if HHGear^.Pos = Wavez[TWave(HHGear^.Tag)].FramesCount then |
|
1349 |
HHGear^.State:= HHGear^.State and (not gstAnimation) |
|
1350 |
end; |
|
1351 |
exit |
|
1352 |
end; |
|
1353 |
||
1354 |
if ((HHGear^.State and gstMoving) <> 0) |
|
7028 | 1355 |
or (GHStepTicks = cHHStepTicks) |
6581 | 1356 |
or (CurAmmoGear <> nil) then // we are moving |
1357 |
begin |
|
1358 |
with Hedgehog^ do |
|
1359 |
if (CurAmmoGear = nil) |
|
1360 |
and (HHGear^.dY > _0_39) |
|
1361 |
and (CurAmmoType = amParachute) then |
|
1362 |
HHGear^.Message:= HHGear^.Message or gmAttack; |
|
1363 |
// check for case with ammo |
|
1364 |
t:= CheckGearNear(HHGear, gtCase, 36, 36); |
|
11629 | 1365 |
if (t <> nil) then |
6581 | 1366 |
PickUp(HHGear, t) |
1367 |
end; |
|
1368 |
||
1369 |
if (CurAmmoGear = nil) then |
|
1370 |
if (((HHGear^.Message and gmAttack) <> 0) |
|
1371 |
or ((HHGear^.State and gstAttacking) <> 0)) then |
|
1372 |
Attack(HHGear) // should be before others to avoid desync with '/put' msg and changing weapon msgs |
|
1373 |
else |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1374 |
else |
6581 | 1375 |
with Hedgehog^ do |
1376 |
if ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) |
|
1377 |
and ((HHGear^.Message and gmLJump) <> 0) |
|
1378 |
and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AltUse) <> 0) then |
|
1379 |
begin |
|
1380 |
Attack(HHGear); |
|
1381 |
HHGear^.Message:= HHGear^.Message and (not gmLJump) |
|
1382 |
end; |
|
1383 |
||
1384 |
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
|
1385 |
or ((Ammoz[CurAmmoGear^.AmmoType].Ammo.Propz and ammoprop_AltAttack) <> 0) then |
6581 | 1386 |
begin |
1387 |
if ((HHGear^.Message and gmSlot) <> 0) then |
|
12309
95cd64676f73
Backed out changeset 071a05275798
Wuzzy <almikes@aol.com>
parents:
12308
diff
changeset
|
1388 |
if ChangeAmmo(HHGear) then ApplyAmmoChanges(Hedgehog^); |
6581 | 1389 |
|
1390 |
if ((HHGear^.Message and gmWeapon) <> 0) then |
|
1391 |
HHSetWeapon(HHGear); |
|
1392 |
||
1393 |
if ((HHGear^.Message and gmTimer) <> 0) then |
|
1394 |
HHSetTimer(HHGear); |
|
1395 |
end; |
|
1396 |
||
1397 |
if CurAmmoGear <> nil then |
|
1398 |
begin |
|
1399 |
CurAmmoGear^.Message:= HHGear^.Message; |
|
1400 |
exit |
|
1401 |
end; |
|
1402 |
||
1403 |
HedgehogChAngle(HHGear); |
|
1404 |
||
1405 |
if (HHGear^.State and gstMoving) <> 0 then |
|
1406 |
begin |
|
1407 |
wasJumping:= ((HHGear^.State and gstHHJumping) <> 0); |
|
1408 |
||
1409 |
if ((HHGear^.Message and gmHJump) <> 0) and wasJumping and ((HHGear^.State and gstHHHJump) = 0) then |
|
1410 |
if (not (hwAbs(HHGear^.dX) > cLittle)) and (HHGear^.dY < -_0_02) then |
|
1411 |
begin |
|
1412 |
HHGear^.State:= HHGear^.State or gstHHHJump; |
|
1413 |
HHGear^.dY:= -_0_25; |
|
13101
d78e65c66573
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
1414 |
if (Hedgehog^.Effects[heArtillery] = 0) then |
6581 | 1415 |
HHGear^.dX:= -SignAs(_0_02, HHGear^.dX); |
7053 | 1416 |
PlaySoundV(sndJump2, Hedgehog^.Team^.voicepack) |
6581 | 1417 |
end; |
1418 |
||
1419 |
HHGear^.Message:= HHGear^.Message and (not (gmLJump or gmHJump)); |
|
1420 |
||
13101
d78e65c66573
Add hedgehog effect heArtillery, allows to set per-hedgehog artillery mode
Wuzzy <Wuzzy2@mail.ru>
parents:
13001
diff
changeset
|
1421 |
if (Hedgehog^.Effects[heArtillery] = 0) and wasJumping and (TestCollisionXwithGear(HHGear, hwSign(HHGear^.dX)) <> 0) then |
6581 | 1422 |
SetLittle(HHGear^.dX); |
1423 |
||
1424 |
if Hedgehog^.Gear <> nil then |
|
1425 |
doStepHedgehogMoving(HHGear); |
|
1426 |
||
1427 |
if ((HHGear^.State and (gstMoving or gstDrowning)) = 0) then |
|
1428 |
begin |
|
9291
15f7bb217b66
Make add/delete consistent (this has bugged me for so long)
nemo
parents:
9285
diff
changeset
|
1429 |
AddCI(HHGear); |
6581 | 1430 |
if wasJumping then |
7028 | 1431 |
GHStepTicks:= 410 |
6581 | 1432 |
else |
7028 | 1433 |
GHStepTicks:= 95 |
6581 | 1434 |
end; |
1435 |
exit |
|
1436 |
end; |
|
1437 |
||
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
|
1438 |
if not(isInMultiShoot and (Hedgehog^.CurAmmoType in [amShotgun, amDEagle, amSniperRifle])) and (Hedgehog^.Gear <> nil) then |
6581 | 1439 |
begin |
7028 | 1440 |
if GHStepTicks > 0 then |
1441 |
dec(GHStepTicks); |
|
1442 |
if (GHStepTicks = 0) then |
|
6581 | 1443 |
HedgehogStep(HHGear) |
1444 |
end |
|
1445 |
end; |
|
1446 |
||
1447 |
//////////////////////////////////////////////////////////////////////////////// |
|
1448 |
procedure doStepHedgehogFree(Gear: PGear); |
|
1449 |
var prevState: Longword; |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
1450 |
s: ansistring; |
6581 | 1451 |
begin |
1452 |
prevState:= Gear^.State; |
|
1453 |
||
1454 |
doStepHedgehogMoving(Gear); |
|
1455 |
||
1456 |
if (Gear^.State and (gstMoving or gstDrowning)) <> 0 then |
|
1457 |
begin |
|
1458 |
if Gear^.Damage > 0 then |
|
1459 |
CalcRotationDirAngle(Gear); |
|
1460 |
AllInactive:= false; |
|
1461 |
exit |
|
1462 |
end; |
|
1463 |
||
1464 |
if (Gear^.Health = 0) then |
|
1465 |
begin |
|
1466 |
if PrvInactive or ((GameFlags and gfInfAttack) <> 0) then |
|
1467 |
begin |
|
1468 |
Gear^.Timer:= 0; |
|
1469 |
FollowGear:= Gear; |
|
1470 |
PrvInactive:= false; |
|
1471 |
AllInactive:= false; |
|
1472 |
||
1473 |
if (Gear^.State and gstHHGone) = 0 then |
|
1474 |
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
|
1475 |
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
|
1476 |
if Gear^.Hedgehog^.Effects[heResurrectable] <> 0 then |
6581 | 1477 |
begin |
1478 |
ResurrectHedgehog(Gear); |
|
1479 |
end |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1480 |
else |
6581 | 1481 |
begin |
1482 |
Gear^.State:= (Gear^.State or gstHHDeath) and (not gstAnimation); |
|
1483 |
Gear^.doStep:= @doStepHedgehogDead; |
|
1484 |
// Death message |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
1485 |
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
|
1486 |
if Gear^.Hedgehog^.King then |
13647
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
13624
diff
changeset
|
1487 |
AddCaption(FormatA(GetEventString(eidKingDied), s), capcolDefault, capgrpMessage) |
12174
869cf5f34700
More ticker messages: Sick, king died, resurrect, time box return, timeout, kamikaze
Wuzzy <almikes@aol.com>
parents:
12053
diff
changeset
|
1488 |
else |
13647
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
13624
diff
changeset
|
1489 |
AddCaption(FormatA(GetEventString(eidDied), s), capcolDefault, capgrpMessage); |
6581 | 1490 |
end; |
1491 |
end |
|
1492 |
else |
|
1493 |
begin |
|
1494 |
Gear^.State:= Gear^.State and (not gstAnimation); |
|
1495 |
Gear^.doStep:= @doStepHedgehogGone; |
|
1496 |
||
1497 |
// Gone message |
|
10124
aabd1b75d5a3
Even more explicit type conversions and other stuff to help pas2c use ansistrings
unc0rr
parents:
10123
diff
changeset
|
1498 |
s:= ansistring(Gear^.Hedgehog^.Name); |
13647
3d14950641a4
Refactor text color variable names, export 2 color values to Lua
Wuzzy <Wuzzy2@mail.ru>
parents:
13624
diff
changeset
|
1499 |
AddCaption(FormatA(GetEventString(eidGone), s), capcolDefault, capgrpMessage); |
6581 | 1500 |
end |
1501 |
end; |
|
1502 |
exit |
|
1503 |
end; |
|
1504 |
||
1505 |
if ((Gear^.State and gstWait) = 0) and |
|
1506 |
(prevState <> Gear^.State) then |
|
1507 |
begin |
|
1508 |
Gear^.State:= Gear^.State or gstWait; |
|
1509 |
Gear^.Timer:= 150 |
|
1510 |
end |
|
1511 |
else |
|
1512 |
begin |
|
1513 |
if Gear^.Timer = 0 then |
|
1514 |
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
|
1515 |
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
|
1516 |
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
|
1517 |
AddCI(Gear); |
6581 | 1518 |
exit |
1519 |
end |
|
1520 |
else dec(Gear^.Timer) |
|
1521 |
end; |
|
1522 |
||
1523 |
AllInactive:= false |
|
1524 |
end; |
|
1525 |
||
8574 | 1526 |
procedure CheckIce(Gear: PGear); inline; |
6581 | 1527 |
(* |
1528 |
var x,y,tx,ty: LongInt; |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1529 |
tdX, tdY, slope: hwFloat; |
6581 | 1530 |
land: Word; *) |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1531 |
var slope: hwFloat; |
6581 | 1532 |
begin |
8574 | 1533 |
if (Gear^.Message and (gmAllStoppable or gmLJump or gmHJump) = 0) |
13329 | 1534 |
and (Gear^.State and (gstHHJumping or gstHHHJump or gstAttacking or gstAnimation) = 0) |
8633 | 1535 |
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
|
1536 |
and (not Gear^.dY.isNegative) and TurnClockActive and (TestCollisionYwithGear(Gear, 1) and lfIce <> 0) then |
8574 | 1537 |
begin |
1538 |
slope:= CalcSlopeBelowGear(Gear); |
|
1539 |
if slope.QWordValue > 730144440 then // ignore mild slopes |
|
1540 |
begin |
|
1541 |
Gear^.dX:=Gear^.dX+slope*cGravity*_256; |
|
1542 |
Gear^.State:= Gear^.State or gstMoving |
|
1543 |
end |
|
1544 |
end; |
|
1545 |
(* |
|
1546 |
x:= hwRound(Gear^.X); |
|
1547 |
y:= hwRound(Gear^.Y); |
|
1548 |
AddVisualGear(x, y, vgtSmokeTrace); |
|
1549 |
AddVisualGear(x - hwRound(_5*slope), y + hwRound(_5*slope), vgtSmokeTrace); |
|
1550 |
AddVisualGear(x + hwRound(_5*slope), y - hwRound(_5*slope), vgtSmokeTrace); |
|
1551 |
AddVisualGear(x - hwRound(_20 * slope), y + hwRound(_20 * slope), vgtSmokeTrace); |
|
1552 |
AddVisualGear(x + hwRound(_20 * slope), y - hwRound(_20 * slope), vgtSmokeTrace); |
|
1553 |
AddVisualGear(x - hwRound(_30 * slope), y + hwRound(_30 * slope), vgtSmokeTrace); |
|
1554 |
AddVisualGear(x + hwRound(_30 * slope), y - hwRound(_30 * slope), vgtSmokeTrace); |
|
1555 |
AddVisualGear(x - hwRound(_40 * slope), y + hwRound(_40 * slope), vgtSmokeTrace); |
|
1556 |
AddVisualGear(x + hwRound(_40 * slope), y - hwRound(_40 * slope), vgtSmokeTrace); |
|
1557 |
AddVisualGear(x - hwRound(_50 * slope), y + hwRound(_50 * slope), vgtSmokeTrace); |
|
1558 |
AddVisualGear(x + hwRound(_50 * slope), y - hwRound(_50 * slope), vgtSmokeTrace); *) |
|
1559 |
end; |
|
1560 |
||
1561 |
//////////////////////////////////////////////////////////////////////////////// |
|
1562 |
procedure doStepHedgehog(Gear: PGear); |
|
9526 | 1563 |
var tX: hwFloat; |
8574 | 1564 |
begin |
10577
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1565 |
// 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
|
1566 |
if (not Gear^.Hedgehog^.Unplaced) then |
5e075da5e0a4
don't drown unplaced hedgehogs. thanks to zimmux and Wohlstand for reporting
sheepluva
parents:
10443
diff
changeset
|
1567 |
CheckGearDrowning(Gear); |
9917 | 1568 |
if Gear = nil then exit; |
9526 | 1569 |
tX:= Gear^.X; |
1570 |
if WorldWrap(Gear) then |
|
1571 |
begin |
|
10015 | 1572 |
if (WorldEdge <> weBounce) and (Gear = CurrentHedgehog^.Gear) and |
9539 | 1573 |
(CurAmmoGear <> nil) and (CurAmmoGear^.Kind =gtRope) and (CurAmmoGear^.Elasticity <> _0) then |
9526 | 1574 |
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
|
1575 |
if (WorldEdge = weWrap) and ((TestCollisionXwithGear(Gear, 1) <> 0) or (TestCollisionXwithGear(Gear, -1) <> 0)) then |
13615
f1b6070a6e14
Fix projectiles reacing incorrectly with land just behind the wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13602
diff
changeset
|
1576 |
// Stop hedgehog if it collides with land *just* behind other side of world wrap edge |
13616
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1577 |
if ((Gear^.State and gstNotKickable) = 0) then |
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1578 |
begin |
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1579 |
if (hwRound(tX) > LongInt(leftX) + Gear^.Radius * 2) then |
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1580 |
Gear^.X:= int2HwFloat(RightX) |
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1581 |
else |
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1582 |
Gear^.X:= int2HwFloat(LeftX); |
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1583 |
Gear^.dX.QWordValue:= 0; |
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1584 |
Gear^.State := Gear^.State or gstCollision; |
65a10215ba43
Fix hog turning around when blowtorching through wrap world edge
Wuzzy <Wuzzy2@mail.ru>
parents:
13615
diff
changeset
|
1585 |
end; |
9526 | 1586 |
end; |
9507 | 1587 |
|
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
|
1588 |
CheckSum:= CheckSum xor Gear^.Hedgehog^.BotLevel; |
6581 | 1589 |
if (Gear^.Message and gmDestroy) <> 0 then |
1590 |
begin |
|
1591 |
DeleteGear(Gear); |
|
1592 |
exit |
|
1593 |
end; |
|
9670
1954f692e8c6
Quick and simple implementation of afk mode (toggled by /pause)
unc0rr
parents:
9664
diff
changeset
|
1594 |
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
|
1595 |
(* |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1596 |
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
|
1597 |
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
|
1598 |
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
|
1599 |
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
|
1600 |
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
|
1601 |
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
|
1602 |
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
|
1603 |
*) |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
1604 |
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
|
1605 |
dec(Gear^.Hedgehog^.Effects[heFrozen]); |
6581 | 1606 |
if (Gear^.State and gstHHDriven) = 0 then |
1607 |
doStepHedgehogFree(Gear) |
|
1608 |
else |
|
1609 |
begin |
|
1610 |
with Gear^.Hedgehog^ do |
|
1611 |
if Team^.hasGone then |
|
1612 |
TeamGoneEffect(Team^) |
|
1613 |
else |
|
1614 |
doStepHedgehogDriven(Gear) |
|
1615 |
end; |
|
1616 |
end; |
|
1617 |
||
12820
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1618 |
procedure PlayTaunt(taunt: Longword); |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1619 |
begin |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1620 |
if CurrentHedgehog^.Gear <> nil then |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1621 |
with CurrentHedgehog^.Gear^ do |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1622 |
begin |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1623 |
Message:= Message or (gmAnimate and InputMask); |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1624 |
MsgParam:= taunt; |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1625 |
ScriptCall('onTaunt', MsgParam); |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1626 |
end |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1627 |
end; |
92218a06c9ff
Don't send taunt message for automatically happening taunt animation
unc0rr
parents:
12654
diff
changeset
|
1628 |
|
6581 | 1629 |
end. |