author | displacer |
Sun, 03 Jun 2007 22:19:47 +0000 | |
changeset 535 | a14eaf35cf4b |
parent 534 | 92fb2b0d5117 |
child 545 | f527450337c1 |
permissions | -rw-r--r-- |
393 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2006, 2007 Andrey Korotaev <unC0Rr@gmail.com> |
|
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; |
|
295 | 26 |
procedure AddAmmo(Hedgehog: pointer; ammo: TAmmoType); |
27 |
function HHHasAmmo(Hedgehog: pointer; Ammo: TAmmoType): boolean; |
|
371 | 28 |
procedure PackAmmo(Ammo: PHHAmmo; Slot: LongInt); |
534 | 29 |
procedure OnUsedAmmo(var Hedgehog: THedgehog); |
288 | 30 |
|
31 |
implementation |
|
534 | 32 |
uses uMisc, uGears; |
295 | 33 |
type TAmmoCounts = array[TAmmoType] of Longword; |
288 | 34 |
var StoresList: array[0..Pred(cMaxHHs)] of PHHAmmo; |
35 |
StoreCnt: Longword = 0; |
|
36 |
||
295 | 37 |
procedure FillAmmoStore(Ammo: PHHAmmo; var cnts: TAmmoCounts); |
288 | 38 |
var mi: array[0..cMaxSlotIndex] of byte; |
39 |
a: TAmmoType; |
|
295 | 40 |
begin |
41 |
FillChar(mi, sizeof(mi), 0); |
|
42 |
FillChar(Ammo^, sizeof(Ammo^), 0); |
|
43 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
|
44 |
if cnts[a] > 0 then |
|
45 |
begin |
|
46 |
TryDo(mi[Ammoz[a].Slot] <= cMaxSlotAmmoIndex, 'Ammo slot overflow', true); |
|
351 | 47 |
Ammo^[Ammoz[a].Slot, mi[Ammoz[a].Slot]]:= Ammoz[a].Ammo; |
48 |
Ammo^[Ammoz[a].Slot, mi[Ammoz[a].Slot]].Count:= cnts[a]; |
|
295 | 49 |
inc(mi[Ammoz[a].Slot]) |
50 |
end |
|
51 |
end; |
|
52 |
||
53 |
procedure AddAmmoStore(s: shortstring); |
|
54 |
var cnt: Longword; |
|
55 |
a: TAmmoType; |
|
56 |
ammos: TAmmoCounts; |
|
288 | 57 |
begin |
58 |
TryDo(byte(s[0]) = byte(ord(High(TAmmoType)) + 1), 'Invalid ammo scheme (incompatible frontend)', true); |
|
59 |
||
60 |
inc(StoreCnt); |
|
61 |
TryDo(StoreCnt <= cMaxHHs, 'Ammo stores overflow', true); |
|
62 |
||
63 |
new(StoresList[Pred(StoreCnt)]); |
|
64 |
||
65 |
for a:= Low(TAmmoType) to High(TAmmoType) do |
|
66 |
begin |
|
67 |
cnt:= byte(s[ord(a) + 1]) - byte('0'); |
|
295 | 68 |
if cnt = 9 then cnt:= AMMO_INFINITE; |
69 |
ammos[a]:= cnt |
|
288 | 70 |
end; |
295 | 71 |
|
72 |
FillAmmoStore(StoresList[Pred(StoreCnt)], ammos) |
|
288 | 73 |
end; |
74 |
||
75 |
function GetAmmoByNum(num: Longword): PHHAmmo; |
|
76 |
begin |
|
77 |
TryDo(num < StoreCnt, 'Invalid store number', true); |
|
351 | 78 |
exit(StoresList[num]) |
288 | 79 |
end; |
80 |
||
81 |
procedure AssignStores; |
|
82 |
var tteam: PTeam; |
|
83 |
i: Longword; |
|
84 |
begin |
|
85 |
tteam:= TeamsList; |
|
86 |
while tteam <> nil do |
|
87 |
begin |
|
88 |
for i:= 0 to cMaxHHIndex do |
|
351 | 89 |
if tteam^.Hedgehogs[i].Gear <> nil then |
90 |
tteam^.Hedgehogs[i].Ammo:= GetAmmoByNum(tteam^.Hedgehogs[i].AmmoStore); |
|
91 |
tteam:= tteam^.Next |
|
288 | 92 |
end |
93 |
end; |
|
94 |
||
295 | 95 |
procedure AddAmmo(Hedgehog: pointer; ammo: TAmmoType); |
96 |
var ammos: TAmmoCounts; |
|
371 | 97 |
slot, ami: LongInt; |
295 | 98 |
hhammo: PHHAmmo; |
99 |
begin |
|
100 |
FillChar(ammos, sizeof(ammos), 0); |
|
351 | 101 |
hhammo:= PHedgehog(Hedgehog)^.Ammo; |
295 | 102 |
|
103 |
for slot:= 0 to cMaxSlotIndex do |
|
104 |
for ami:= 0 to cMaxSlotAmmoIndex do |
|
351 | 105 |
if hhammo^[slot, ami].Count > 0 then |
106 |
ammos[hhammo^[slot, ami].AmmoType]:= hhammo^[slot, ami].Count; |
|
295 | 107 |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
108 |
if ammos[ammo] <> AMMO_INFINITE then inc(ammos[ammo], Ammoz[ammo].NumberInCase); |
295 | 109 |
FillAmmoStore(hhammo, ammos) |
110 |
end; |
|
111 |
||
371 | 112 |
procedure PackAmmo(Ammo: PHHAmmo; Slot: LongInt); |
113 |
var ami: LongInt; |
|
295 | 114 |
b: boolean; |
115 |
begin |
|
116 |
repeat |
|
117 |
b:= false; |
|
118 |
ami:= 0; |
|
119 |
while (not b) and (ami < cMaxSlotAmmoIndex) do |
|
351 | 120 |
if (Ammo^[Slot, ami].Count = 0) |
121 |
and (Ammo^[Slot, ami + 1].Count > 0) then b:= true |
|
295 | 122 |
else inc(ami); |
123 |
if b then // there's a free item in ammo stack |
|
124 |
begin |
|
351 | 125 |
Ammo^[Slot, ami]:= Ammo^[Slot, ami + 1]; |
126 |
Ammo^[Slot, ami + 1].Count:= 0 |
|
295 | 127 |
end; |
128 |
until not b; |
|
129 |
end; |
|
130 |
||
534 | 131 |
procedure OnUsedAmmo(var Hedgehog: THedgehog); |
295 | 132 |
var s, a: Longword; |
534 | 133 |
Ammo: PHHAmmo; |
295 | 134 |
begin |
534 | 135 |
Ammo:= Hedgehog.Ammo; |
136 |
with Hedgehog do |
|
295 | 137 |
begin |
138 |
if CurAmmoGear = nil then begin s:= CurSlot; a:= CurAmmo end |
|
139 |
else begin s:= AltSlot; a:= AltAmmo end; |
|
351 | 140 |
with Ammo^[s, a] do |
295 | 141 |
if Count <> AMMO_INFINITE then |
142 |
begin |
|
143 |
dec(Count); |
|
144 |
if Count = 0 then PackAmmo(Ammo, CurSlot) |
|
145 |
end |
|
146 |
end |
|
147 |
end; |
|
148 |
||
149 |
function HHHasAmmo(Hedgehog: pointer; Ammo: TAmmoType): boolean; |
|
371 | 150 |
var slot, ami: LongInt; |
295 | 151 |
begin |
152 |
Slot:= Ammoz[Ammo].Slot; |
|
153 |
ami:= 0; |
|
351 | 154 |
while (ami <= cMaxSlotAmmoIndex) do |
295 | 155 |
begin |
351 | 156 |
with PHedgehog(Hedgehog)^.Ammo^[Slot, ami] do |
157 |
if (AmmoType = Ammo) and (Count > 0) then exit(true); |
|
295 | 158 |
inc(ami) |
351 | 159 |
end; |
160 |
HHHasAmmo:= false |
|
295 | 161 |
end; |
162 |
||
288 | 163 |
end. |