author | unc0rr |
Mon, 13 Apr 2009 12:59:48 +0000 | |
changeset 1989 | 129e8c4fe554 |
parent 1966 | 31e449e1d9dd |
child 2017 | 7845c77c8d31 |
permissions | -rw-r--r-- |
393 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2006-2008 Andrey Korotaev <unC0Rr@gmail.com> |
393 | 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 |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
17 |
*) |
|
18 |
||
288 | 19 |
unit uAmmos; |
20 |
interface |
|
534 | 21 |
uses uConsts, uTeams; |
288 | 22 |
{$INCLUDE options.inc} |
23 |
||
24 |
procedure AddAmmoStore(s: shortstring); |
|
25 |
procedure AssignStores; |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
26 |
procedure AddAmmo(var Hedgehog: THedgehog; ammo: TAmmoType); |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
27 |
function HHHasAmmo(var Hedgehog: THedgehog; Ammo: TAmmoType): boolean; |
371 | 28 |
procedure PackAmmo(Ammo: PHHAmmo; Slot: LongInt); |
534 | 29 |
procedure OnUsedAmmo(var Hedgehog: THedgehog); |
1964 | 30 |
procedure ApplyAngleBounds(var Hedgehog: THedgehog; AmmoType: TAmmoType); |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
31 |
procedure ApplyAmmoChanges(var Hedgehog: THedgehog); |
1922 | 32 |
procedure SwitchNotHeldAmmo(var Hedgehog: THedgehog); |
783 | 33 |
procedure SetWeapon(weap: TAmmoType); |
1784 | 34 |
procedure DisableSomeWeapons; |
288 | 35 |
|
1966 | 36 |
var shoppa: Boolean = false; |
37 |
||
288 | 38 |
implementation |
783 | 39 |
uses uMisc, uGears, uWorld, uLocale, uConsole; |
295 | 40 |
type TAmmoCounts = array[TAmmoType] of Longword; |
288 | 41 |
var StoresList: array[0..Pred(cMaxHHs)] of PHHAmmo; |
42 |
StoreCnt: Longword = 0; |
|
43 |
||
295 | 44 |
procedure FillAmmoStore(Ammo: PHHAmmo; var cnts: TAmmoCounts); |
288 | 45 |
var mi: array[0..cMaxSlotIndex] of byte; |
46 |
a: TAmmoType; |
|
295 | 47 |
begin |
48 |
FillChar(mi, sizeof(mi), 0); |
|
49 |
FillChar(Ammo^, sizeof(Ammo^), 0); |
|
50 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
|
51 |
if cnts[a] > 0 then |
|
52 |
begin |
|
53 |
TryDo(mi[Ammoz[a].Slot] <= cMaxSlotAmmoIndex, 'Ammo slot overflow', true); |
|
351 | 54 |
Ammo^[Ammoz[a].Slot, mi[Ammoz[a].Slot]]:= Ammoz[a].Ammo; |
55 |
Ammo^[Ammoz[a].Slot, mi[Ammoz[a].Slot]].Count:= cnts[a]; |
|
295 | 56 |
inc(mi[Ammoz[a].Slot]) |
57 |
end |
|
58 |
end; |
|
59 |
||
60 |
procedure AddAmmoStore(s: shortstring); |
|
61 |
var cnt: Longword; |
|
62 |
a: TAmmoType; |
|
63 |
ammos: TAmmoCounts; |
|
288 | 64 |
begin |
65 |
TryDo(byte(s[0]) = byte(ord(High(TAmmoType)) + 1), 'Invalid ammo scheme (incompatible frontend)', true); |
|
66 |
||
1966 | 67 |
// TEMPORARY hardcoded check on shoppa pending creation of probability editor |
68 |
if (s = '000000990000009000000000000000000000') or (s = '000000990000000000000000000000000000') then |
|
69 |
shoppa:= true; |
|
288 | 70 |
inc(StoreCnt); |
71 |
TryDo(StoreCnt <= cMaxHHs, 'Ammo stores overflow', true); |
|
72 |
||
73 |
new(StoresList[Pred(StoreCnt)]); |
|
74 |
||
75 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
|
76 |
begin |
|
77 |
cnt:= byte(s[ord(a) + 1]) - byte('0'); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1850
diff
changeset
|
78 |
if cnt = 9 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1850
diff
changeset
|
79 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1850
diff
changeset
|
80 |
cnt:= AMMO_INFINITE; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1850
diff
changeset
|
81 |
Ammoz[a].Probability:= 0 |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1850
diff
changeset
|
82 |
end; |
1895 | 83 |
if ((a = amLowGravity) and ((GameFlags and gfLowGravity) <> 0)) or |
84 |
((a = amInvulnerable) and ((GameFlags and gfInvulnerable) <> 0)) or |
|
85 |
((a = amLaserSight) and ((GameFlags and gfLaserSight) <> 0)) then |
|
86 |
begin |
|
87 |
cnt:= 0; |
|
88 |
Ammoz[a].Probability:= 0 |
|
1966 | 89 |
end |
90 |
else if shoppa then // TEMPORARY REMOVE WHEN CRATE PROBABILITY IS ADDED |
|
91 |
if not cnt = AMMO_INFINITE then |
|
92 |
Ammoz[a].Probability:= 100; |
|
295 | 93 |
ammos[a]:= cnt |
288 | 94 |
end; |
295 | 95 |
|
96 |
FillAmmoStore(StoresList[Pred(StoreCnt)], ammos) |
|
288 | 97 |
end; |
98 |
||
99 |
function GetAmmoByNum(num: Longword): PHHAmmo; |
|
100 |
begin |
|
101 |
TryDo(num < StoreCnt, 'Invalid store number', true); |
|
351 | 102 |
exit(StoresList[num]) |
288 | 103 |
end; |
104 |
||
105 |
procedure AssignStores; |
|
547 | 106 |
var t: LongInt; |
288 | 107 |
i: Longword; |
108 |
begin |
|
547 | 109 |
for t:= 0 to Pred(TeamsCount) do |
110 |
with TeamsArray[t]^ do |
|
288 | 111 |
begin |
112 |
for i:= 0 to cMaxHHIndex do |
|
547 | 113 |
if Hedgehogs[i].Gear <> nil then |
114 |
Hedgehogs[i].Ammo:= GetAmmoByNum(Hedgehogs[i].AmmoStore); |
|
288 | 115 |
end |
116 |
end; |
|
117 |
||
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
118 |
procedure AddAmmo(var Hedgehog: THedgehog; ammo: TAmmoType); |
295 | 119 |
var ammos: TAmmoCounts; |
371 | 120 |
slot, ami: LongInt; |
295 | 121 |
hhammo: PHHAmmo; |
122 |
begin |
|
123 |
FillChar(ammos, sizeof(ammos), 0); |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
124 |
hhammo:= Hedgehog.Ammo; |
295 | 125 |
|
126 |
for slot:= 0 to cMaxSlotIndex do |
|
127 |
for ami:= 0 to cMaxSlotAmmoIndex do |
|
351 | 128 |
if hhammo^[slot, ami].Count > 0 then |
129 |
ammos[hhammo^[slot, ami].AmmoType]:= hhammo^[slot, ami].Count; |
|
295 | 130 |
|
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
131 |
if ammos[ammo] <> AMMO_INFINITE then |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
132 |
begin |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
133 |
inc(ammos[ammo], Ammoz[ammo].NumberInCase); |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
134 |
if ammos[ammo] > AMMO_INFINITE then ammos[ammo]:= AMMO_INFINITE |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
135 |
end; |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
136 |
|
295 | 137 |
FillAmmoStore(hhammo, ammos) |
138 |
end; |
|
139 |
||
371 | 140 |
procedure PackAmmo(Ammo: PHHAmmo; Slot: LongInt); |
141 |
var ami: LongInt; |
|
295 | 142 |
b: boolean; |
143 |
begin |
|
144 |
repeat |
|
145 |
b:= false; |
|
146 |
ami:= 0; |
|
147 |
while (not b) and (ami < cMaxSlotAmmoIndex) do |
|
351 | 148 |
if (Ammo^[Slot, ami].Count = 0) |
149 |
and (Ammo^[Slot, ami + 1].Count > 0) then b:= true |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
150 |
else inc(ami); |
295 | 151 |
if b then // there's a free item in ammo stack |
152 |
begin |
|
351 | 153 |
Ammo^[Slot, ami]:= Ammo^[Slot, ami + 1]; |
154 |
Ammo^[Slot, ami + 1].Count:= 0 |
|
295 | 155 |
end; |
156 |
until not b; |
|
157 |
end; |
|
158 |
||
534 | 159 |
procedure OnUsedAmmo(var Hedgehog: THedgehog); |
295 | 160 |
begin |
534 | 161 |
with Hedgehog do |
971
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
162 |
begin |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
163 |
with Ammo^[CurSlot, CurAmmo] do |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
164 |
if Count <> AMMO_INFINITE then |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
165 |
begin |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
166 |
dec(Count); |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
167 |
if Count = 0 then |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
168 |
begin |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
169 |
PackAmmo(Ammo, CurSlot); |
1922 | 170 |
SwitchNotHeldAmmo(Hedgehog) |
971
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
171 |
end |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
172 |
end |
d2c49b730771
Fix a bug with automatic weapon switching when attacking from rope
unc0rr
parents:
941
diff
changeset
|
173 |
end |
295 | 174 |
end; |
175 |
||
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
176 |
function HHHasAmmo(var Hedgehog: THedgehog; Ammo: TAmmoType): boolean; |
371 | 177 |
var slot, ami: LongInt; |
295 | 178 |
begin |
179 |
Slot:= Ammoz[Ammo].Slot; |
|
180 |
ami:= 0; |
|
351 | 181 |
while (ami <= cMaxSlotAmmoIndex) do |
295 | 182 |
begin |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
183 |
with Hedgehog.Ammo^[Slot, ami] do |
941
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
184 |
if (AmmoType = Ammo) then |
b5222ddafe1f
- Fix bug with picking up ammos from cases, when total ammo count may become more than AMMO_INFINITE
unc0rr
parents:
927
diff
changeset
|
185 |
exit((Count > 0) and (Hedgehog.Team^.Clan^.TurnNumber > Ammoz[AmmoType].SkipTurns)); |
295 | 186 |
inc(ami) |
351 | 187 |
end; |
188 |
HHHasAmmo:= false |
|
295 | 189 |
end; |
190 |
||
1964 | 191 |
procedure ApplyAngleBounds(var Hedgehog: THedgehog; AmmoType: TAmmoType); |
1922 | 192 |
begin |
193 |
with Hedgehog do |
|
1964 | 194 |
begin |
195 |
CurMinAngle:= Ammoz[AmmoType].minAngle; |
|
196 |
if Ammoz[AmmoType].maxAngle <> 0 then |
|
197 |
CurMaxAngle:= Ammoz[AmmoType].maxAngle |
|
198 |
else |
|
199 |
CurMaxAngle:= cMaxAngle; |
|
200 |
||
201 |
with Hedgehog.Gear^ do |
|
1922 | 202 |
begin |
1964 | 203 |
if Angle < CurMinAngle then Angle:= CurMinAngle; |
204 |
if Angle > CurMaxAngle then Angle:= CurMaxAngle; |
|
1922 | 205 |
end |
1964 | 206 |
end |
1922 | 207 |
end; |
208 |
||
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
209 |
procedure ApplyAmmoChanges(var Hedgehog: THedgehog); |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
210 |
var s: shortstring; |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
211 |
begin |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
212 |
TargetPoint.X:= NoPointX; |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
213 |
|
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
214 |
with Hedgehog do |
1922 | 215 |
begin |
216 |
if (Ammo^[CurSlot, CurAmmo].Count = 0) then |
|
217 |
begin |
|
218 |
CurAmmo:= 0; |
|
219 |
CurSlot:= 0; |
|
220 |
while (CurSlot <= cMaxSlotIndex) and (Ammo^[CurSlot, CurAmmo].Count = 0) do inc(CurSlot) |
|
221 |
end; |
|
222 |
||
1964 | 223 |
ApplyAngleBounds(Hedgehog, Ammo^[CurSlot, CurAmmo].AmmoType); |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
224 |
|
1922 | 225 |
with Ammo^[CurSlot, CurAmmo] do |
226 |
begin |
|
227 |
s:= trammo[Ammoz[AmmoType].NameId]; |
|
228 |
if Count <> AMMO_INFINITE then |
|
229 |
s:= s + ' (' + IntToStr(Count) + ')'; |
|
230 |
if (Propz and ammoprop_Timerable) <> 0 then |
|
231 |
s:= s + ', ' + inttostr(Timer div 1000) + ' ' + trammo[sidSeconds]; |
|
232 |
AddCaption(s, Team^.Clan^.Color, capgrpAmmoinfo); |
|
233 |
if (Propz and ammoprop_NeedTarget) <> 0 |
|
234 |
then begin |
|
235 |
Gear^.State:= Gear^.State or gstHHChooseTarget; |
|
236 |
isCursorVisible:= true |
|
237 |
end else begin |
|
238 |
Gear^.State:= Gear^.State and not gstHHChooseTarget; |
|
239 |
isCursorVisible:= false |
|
240 |
end; |
|
241 |
ShowCrosshair:= (Propz and ammoprop_NoCrosshair) = 0 |
|
242 |
end |
|
243 |
end |
|
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
244 |
end; |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
245 |
|
1922 | 246 |
procedure SwitchNotHeldAmmo(var Hedgehog: THedgehog); |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
247 |
begin |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
248 |
with Hedgehog do |
1909 | 249 |
if ((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_DontHold) <> 0) or |
1915 | 250 |
(Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType].SkipTurns - CurrentTeam^.Clan^.TurnNumber >= 0) then |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
251 |
begin |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
252 |
CurAmmo:= 0; |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
253 |
CurSlot:= 0; |
1909 | 254 |
while (CurSlot <= cMaxSlotIndex) and |
255 |
(Ammo^[CurSlot, CurAmmo].Count = 0) and |
|
1915 | 256 |
(Ammoz[Ammo^[CurSlot, CurAmmo].AmmoType].SkipTurns - CurrentTeam^.Clan^.TurnNumber >= 0) |
1909 | 257 |
do inc(CurSlot) |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
258 |
end |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
259 |
end; |
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
547
diff
changeset
|
260 |
|
783 | 261 |
procedure SetWeapon(weap: TAmmoType); |
262 |
begin |
|
1850 | 263 |
ParseCommand('/setweap ' + char(weap), true) |
783 | 264 |
end; |
265 |
||
1784 | 266 |
procedure DisableSomeWeapons; |
267 |
var i, slot, a: Longword; |
|
268 |
t: TAmmoType; |
|
269 |
begin |
|
270 |
for i:= 0 to Pred(StoreCnt) do |
|
271 |
for slot:= 0 to cMaxSlotIndex do |
|
272 |
begin |
|
273 |
for a:= 0 to cMaxSlotAmmoIndex do |
|
274 |
with StoresList[i]^[slot, a] do |
|
275 |
if (Propz and ammoprop_NotBorder) <> 0 then Count:= 0; |
|
276 |
||
277 |
PackAmmo(StoresList[i], slot) |
|
278 |
end; |
|
279 |
||
280 |
for t:= Low(TAmmoType) to High(TAmmoType) do |
|
281 |
if (Ammoz[t].Ammo.Propz and ammoprop_NotBorder) <> 0 then Ammoz[t].Probability:= 0 |
|
282 |
end; |
|
283 |
||
288 | 284 |
end. |