-
Notifications
You must be signed in to change notification settings - Fork 18
/
menugear.pp
400 lines (360 loc) · 12.7 KB
/
menugear.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
unit menugear;
{ This is the RPGMenus / Gear Tree utilities unit. }
{
GearHead: Arena, a roguelike mecha CRPG
Copyright (C) 2005 Joseph Hewitt
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.
The full text of the LGPL can be found in license.txt.
This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
}
interface
{$IFDEF SDLMODE}
uses gears,locale,sdlmenus;
{$ELSE}
uses gears,locale,conmenus;
{$ENDIF}
Procedure BuildGearMenu( RPM: RPGMenuPtr; Master: GearPtr; G: Integer );
Procedure BuildGearMenu( RPM: RPGMenuPtr; Master: GearPtr );
Procedure BuildEquipmentMenu( RPM: RPGMenuPtr; Master: GearPtr );
Procedure BuildInventoryMenu( RPM: RPGMenuPtr; Master: GearPtr );
Procedure BuildSlotMenu( RPM: RPGMenuPtr; Master,Item: GearPtr );
Procedure BuildSubMenu( RPM: RPGMenuPtr; Master,Item: GearPtr; DoMultiplicityCheck: Boolean );
Function LocateGearByNumber( Master: GearPtr; Num: Integer ): GearPtr;
Function FindNextWeapon( GB: GameBoardPtr; Master,Weapon: GearPtr; MinRange: Integer ): GearPtr;
Function FindGearIndex( Master , FindThis: GearPtr ): Integer;
Procedure AlphaKeyMenu( RPM: RPGMenuPtr );
implementation
uses damage,effects,gearutil,ghswag,ghweapon,texutil;
Procedure BuildGearMenu( RPM: RPGMenuPtr; Master: GearPtr; G: Integer );
{ Search through MASTER, adding to menu RPM any part which }
{ corresponds to descriptor G. Add each matching part to the }
{ menu, along with its locator number. }
var
N: Integer;
{ PROCEDURES BLOCK }
Procedure CheckAlongPath( Part: GearPtr; AddToMenu: Boolean );
{ CHeck along the path specified. }
begin
while Part <> Nil do begin
Inc(N);
if ( Part^.G = G ) and AddToMenu then AddRPGMenuItem( RPM , GearName( Part ) , N );
if Part^.G = GG_Cockpit then begin
{ Don't add parts beyond the cockpit barrier. }
CheckAlongPath( Part^.InvCom , False );
CheckAlongPath( Part^.SubCom , False );
end else begin
CheckAlongPath( Part^.InvCom , AddToMenu );
CheckAlongPath( Part^.SubCom , AddToMenu );
end;
Part := Part^.Next;
end;
end;
begin
N := 0;
if Master^.G = G then AddRPGMenuItem( RPM , GearName( Master ) , 0 );
CheckAlongPath( Master^.InvCom , True );
CheckAlongPath( Master^.SubCom , True );
end; { BuildGearMenu }
Procedure BuildGearMenu( RPM: RPGMenuPtr; Master: GearPtr );
{ Search through MASTER, adding to menu all parts. }
const
InvStr = '+';
SubStr = '>';
var
N: Integer;
{ PROCEDURES BLOCK }
Procedure CheckAlongPath( Part: GearPtr; TabPos,Prefix: String );
{ CHeck along the path specified. }
begin
while Part <> Nil do begin
Inc(N);
if Part^.G <> GG_AbsolutelyNothing then AddRPGMenuItem( RPM , TabPos + Prefix + GearName( Part ) , N );
CheckAlongPath( Part^.InvCom , TabPos + ' ' , InvStr );
CheckAlongPath( Part^.SubCom , TabPos + ' ' , SubStr );
Part := Part^.Next;
end;
end;{CheckAlongPath}
begin
N := 0;
AddRPGMenuItem( RPM , GearName( Master ) , 0 );
CheckAlongPath( Master^.InvCom , ' ' , '+' );
CheckAlongPath( Master^.SubCom , ' ' , '>' );
end; { BuildGearMenu }
Procedure BuildEquipmentMenu( RPM: RPGMenuPtr; Master: GearPtr );
{ Create a menu for this master's equipment. Equipment is defined as }
{ an InvCom of any part other than the master itself. }
var
N: Integer;
Procedure CheckAlongPath( Part: GearPtr; IsInv: Boolean );
{ CHeck along the path specified. }
var
msg: String;
begin
while Part <> Nil do begin
Inc(N);
if ( Part^.G <> GG_AbsolutelyNothing ) and IsInv then begin
{ Creating a message line for this equipment is made tricky by the }
{ fact that a pilot riding in a mecha has a separate inventory from }
{ the mecha itself. }
if IsMasterGear( Part^.Parent ) then begin
msg := '[' + GearName( Part^.Parent ) + '] ' + GearName( Part );
end else begin
msg := GearName( Part ) + ' [';
if FindMaster(Part)^.Parent <> Nil then msg := msg + GearName( FindMaster( Part ) ) + ':';
msg := msg + GearName( Part^.Parent ) + ']';
end;
AddRPGMenuItem( RPM , msg , N , SAttValue( Part^.SA , 'DESC' ) );
end;
CheckAlongPath( Part^.InvCom , True );
CheckAlongPath( Part^.SubCom , False );
Part := Part^.Next;
end;
end;{CheckAlongPath}
begin
N := 0;
CheckAlongPath( Master^.InvCom , False );
CheckAlongPath( Master^.SubCom , False );
end; {BuildEquipmentMenu}
Procedure BuildInventoryMenu( RPM: RPGMenuPtr; Master: GearPtr );
{ Create a menu for this master's inventory. Inventory is defined as }
{ any InvCom of the master. }
var
N: Integer;
Part: GearPtr;
Procedure CountTheKids( P: GearPtr );
{ This procedure ignores the sub/inv components of things }
{ in the general inventory, but they have to be counted so }
{ the locator numbers will work properly. }
begin
While P <> Nil do begin
Inc( N );
if P^.InvCom <> Nil then CountTheKids( P^.InvCom );
if P^.SubCom <> Nil then CountTheKids( P^.SubCom );
P := P^.Next;
end;
end;
Function IMString( P: GearPtr ): String;
{ Given part P, return a string to use in the menu. }
var
msg: String;
ShotsUsed: Integer;
begin
msg := FullGearName( P );
{ Add extra information, depending upon item type. }
if P^.G = GG_Weapon then begin
msg := msg + ' (DC:' + BStr( ScaleDC( P^.V , P^.Scale ) ) + ')';
end else if ( P^.G = GG_ExArmor ) or ( P^.G = GG_Shield ) then begin
msg := msg + ' [AC:' + BStr( GearMaxArmor( P ) ) + ']';
end else if P^.G = GG_Ammo then begin
ShotsUsed := NAttValue( P^.NA , NAG_WeaponModifier , NAS_AmmoSpent );
msg := msg + ' (' + BStr( P^.STat[ STAT_AmmoPresent ] - ShotsUSed ) + '/' + BStr( P^.Stat[ STAT_AmmoPresent ] ) + 'a)';
end else if P^.G = GG_Consumable then begin
msg := msg + ' (' + BStr( P^.STat[ STAT_FoodQuantity ] ) + ')';
end;
IMString := Msg;
end;
begin
N := 0;
Part := Master^.InvCom;
while Part <> Nil do begin
Inc( N );
AddRPGMenuItem( RPM , IMString( Part ) , N , SAttValue( Part^.SA , 'DESC' ) );
if Part^.InvCom <> Nil then CountTheKids( Part^.InvCom );
if Part^.SubCom <> Nil then CountTheKids( Part^.SubCom );
Part := Part^.Next;
end;
end;
Procedure BuildSlotMenu( RPM: RPGMenuPtr; Master,Item: GearPtr );
{ Search through MASTER, adding to menu all parts which can }
{ equip ITEM. }
var
N: Integer;
{ PROCEDURES BLOCK }
Procedure CheckAlongPath( Part: GearPtr );
{ CHeck along the path specified. }
begin
while Part <> Nil do begin
Inc(N);
if IsLegalSlot( Part , Item ) and PartActive( Part ) then AddRPGMenuItem( RPM , GearName( Part ) , N );
CheckAlongPath( Part^.InvCom );
CheckAlongPath( Part^.SubCom );
Part := Part^.Next;
end;
end;{CheckAlongPath}
begin
N := 0;
CheckAlongPath( Master^.InvCom );
CheckAlongPath( Master^.SubCom );
end; { BuildSlotMenu }
Procedure BuildSubMenu( RPM: RPGMenuPtr; Master,Item: GearPtr; DoMultiplicityCheck: Boolean );
{ Search through MASTER, adding to menu all parts which can }
{ take ITEM as a subcomponent. }
var
N: Integer;
{ PROCEDURES BLOCK }
Function MenuMsg( Part: GearPtr ): String;
begin
MenuMsg := GearName( Part ) + ' (' + BStr( SubComComplexity( Part ) ) + '/' + BStr( ComponentComplexity( Part ) ) + ')';
end;
Procedure CheckThisBit( Part: GearPtr );
{ Check this bit, and maybe add it to the menu. }
begin
if DoMultiplicityCheck then begin
if CanBeInstalled( Part , Item ) then AddRPGMenuItem( RPM , MenuMsg( Part ) , N );
end else begin
if IsLegalSubCom( Part , Item ) then AddRPGMenuItem( RPM , GearName( Part ) , N );
end;
end;
Procedure CheckAlongPath( Part: GearPtr );
{ CHeck along the path specified. }
begin
while Part <> Nil do begin
Inc(N);
CheckThisBit( Part );
CheckAlongPath( Part^.InvCom );
CheckAlongPath( Part^.SubCom );
Part := Part^.Next;
end;
end;{CheckAlongPath}
begin
N := 0;
CheckThisBit( Master );
CheckAlongPath( Master^.InvCom );
CheckAlongPath( Master^.SubCom );
end; { BuildSubMenu }
Function LocateGearByNumber( Master: GearPtr; Num: Integer ): GearPtr;
{ Locate the Nth part in the tree. }
var
N: Integer;
TheGearWeWant: GearPtr;
{ PROCEDURES BLOCK. }
Procedure CheckAlongPath( Part: GearPtr );
{ CHeck along the path specified. }
begin
while ( Part <> Nil ) and ( TheGearWeWant = Nil ) do begin
Inc(N);
if N = Num then TheGearWeWant := Part;
if TheGearWeWant = Nil then CheckAlongPath( Part^.InvCom );
if TheGearWeWant = Nil then CheckAlongPath( Part^.SubCom );
Part := Part^.Next;
end;
end;
begin
TheGearWeWant := Nil;
N := 0;
{ Part 0 is the master gear itself. }
if Num < 1 then Exit( Master );
CheckAlongPath( Master^.InvCom );
if TheGearWeWant = Nil then CheckAlongPath( Master^.SubCom );
LocateGearByNumber := TheGearWeWant;
end; { LocateGearByNumber }
Function FindNextWeapon( GB: GameBoardPtr; Master,Weapon: GearPtr; MinRange: Integer ): GearPtr;
{ This procedure will check recursively through MASTER looking }
{ for the first weapon (ready to fire) in standard order following PART. }
{ If MinRange > 0, the weapon's range or throwing range must exceed MinRange. }
{ If no further weapons are found, it will return the first }
{ weapon. }
var
FirstWep,NextWep: GearPtr;
FoundStart: Boolean;
{ PROCEDURES BLOCK }
Function WeaponIsOkay( W: GearPtr ): Boolean;
{ Return TRUE if W is ready to fire and meets our other criteria, or }
{ FALSE otherwise. }
begin
if MinRange = 0 then begin
WeaponIsOkay := ReadyToFire( GB , Master , W );
end else begin
WeaponIsOkay := ReadyToFire( GB , Master , W ) and ( ( WeaponRange( GB , W ) >= MinRange ) or ( ThrowingRange( GB , Master , W ) >= MinRange ) );
end;
end;
Procedure CheckAlongPath( Part: GearPtr );
{ CHeck along the path specified. }
begin
while Part <> Nil do begin
if WeaponIsOkay( Part ) then begin
if FirstWep = Nil then FirstWep := Part;
if FoundStart and ( NextWep = Nil ) then NextWep := Part;
end;
if Part = Weapon then FoundStart := True;
CheckAlongPath( Part^.InvCom );
CheckAlongPath( Part^.SubCom );
Part := Part^.Next;
end;
end;
begin
FirstWep := Nil;
NextWep := Nil;
if Weapon = Nil then FoundStart := True
else FoundStart := False;
CheckAlongPath( Master^.InvCom );
CheckAlongPath( Master^.SubCom );
{ Return either the next weapon or the first weapon, }
{ depending upon what we found. }
if NextWep = Nil then begin
if FirstWep = Nil then FindNextWeapon := Weapon
else FindNextWeapon := FirstWep;
end else FindNextWeapon := NextWep;
end; { FindNextWeapon }
Function FindGearIndex( Master , FindThis: GearPtr ): Integer;
{ Search through master looking for FINDTHIS. }
{ Once found, return its index number. Return -1 if it }
{ cannot be found. }
var
N,it: Integer;
{ PROCEDURES BLOCK }
Procedure CheckAlongPath( Part: GearPtr );
{ CHeck along the path specified. }
begin
while ( Part <> Nil ) and ( it = -1 ) do begin
Inc(N);
if ( Part = FindThis ) then it := N;
CheckAlongPath( Part^.InvCom );
CheckAlongPath( Part^.SubCom );
Part := Part^.Next;
end;
end;
begin
N := 0;
it := -1;
if Master = FindThis then it := 0;
CheckAlongPath( Master^.InvCom );
CheckAlongPath( Master^.SubCom );
FindGearIndex := it;
end; { FindGearIndex }
Procedure AlphaKeyMenu( RPM: RPGMenuPtr );
{ Alter this menu so that each item in it has a letter key }
{ hotlinked. }
{ This procedure has nothing to do with gears, but it's easier }
{ to stick it here than keep two copies in the conmenus and }
{ sdlmenus units. What I really need is a separate menu-utility }
{ unit, I guess. }
var
Key: Char;
MI: RPGMenuItemPtr;
begin
{ The hotkeys start with 'a'. }
Key := 'a';
MI := RPM^.firstitem;
while MI <> Nil do begin
{ Alter the message. }
MI^.msg := Key + ') ' + MI^.msg;
{ Add the key. }
AddRPGMenuKey( RPM , Key , MI^.value );
{ Move to the next letter in the series. }
{ note that only 52 letters can be assigned. }
if key = 'z' then key := 'A'
else inc( key );
MI := MI^.Next;
end;
end;
end.