-
Notifications
You must be signed in to change notification settings - Fork 11
/
menulib1.pas
582 lines (510 loc) · 19.2 KB
/
menulib1.pas
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
// This file is part of Adlib Tracker II (AT2).
//
// AT2 is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// AT2 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with AT2. If not, see <http://www.gnu.org/licenses/>.
unit MenuLib1;
{$S-,Q-,R-,V-,B-,X+}
{$PACKRECORDS 1}
interface
uses
DOS,
AdT2unit,AdT2sys,AdT2keyb,AdT2ext2,
DialogIO,TxtScrIO,StringIO,ParserIO;
const
MenuLib1_mn_setting: Record
frame_type: String;
shadow_enabled: Boolean;
posbar_enabled: Boolean;
title_attr,
menu_attr,
text_attr,
text2_attr,
default_attr,
short_attr,
short2_attr,
disbld_attr,
contxt_attr,
contxt2_attr: Byte;
center_box: Boolean;
cycle_moves: Boolean;
edit_contents: Boolean;
reverse_use: Boolean;
fixed_len: Byte;
terminate_keys: array[1..50] of Word;
end
= (frame_type: frame_single;
shadow_enabled: TRUE;
posbar_enabled: TRUE;
title_attr: $0f;
menu_attr: $07;
text_attr: $07;
text2_attr: $70;
default_attr: $0f;
short_attr: $0f;
short2_attr: $70;
disbld_attr: $07;
contxt_attr: $0f;
contxt2_attr: $07;
center_box: TRUE;
cycle_moves: TRUE;
edit_contents: FALSE;
reverse_use: FALSE;
fixed_len: 0;
terminate_keys: ($011b,$1c0d,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000,
$0000,$0000,$0000,$0000,$0000));
var
MenuLib1_mn_environment: Record
v_dest: tSCREEN_MEM_PTR;
keystroke: Word;
context: String;
unpolite: Boolean;
winshade: Boolean;
edit_pos: Byte;
curr_pos: Word;
ext_proc: procedure;
refresh: procedure;
do_refresh: Boolean;
preview: Boolean;
descr_len: Byte;
descr: Pointer;
end;
function MenuLib1_Menu(var data; x,y: Byte; spos: Word;
len,len2: Byte; count: Word; title: String): Word;
procedure MenuLib1_Init;
implementation
type
tDBUFFR = array[1.. 100] of Record
str: String;
pos: Byte;
key: Char;
use: Boolean;
end;
type
tMBUFFR = array[1..16384] of Record
key: Char;
use: Boolean;
end;
var
idx,idx2,max,len2b,page,
first,last,temp,temp2,opage,opos: Word;
old_fr_shadow_enabled: Boolean;
key: Word;
solid: Boolean;
qflg: Boolean;
mbuf: tMBUFFR;
contxt: String;
var
mnu_x,mnu_y,mnu_len,mnu_len2: Byte;
mnu_data: Pointer;
mnu_count: Word;
var
vscrollbar_pos: Word;
function OutKey(str: String): Char;
var
result: Char;
begin
If (SYSTEM.Pos('~',str) = 0) then result := '~'
else If (str[SYSTEM.Pos('~',str)+2] <> '~') then result := '~'
else result := str[SYSTEM.Pos('~',str)+1];
OutKey := result;
end;
function pstr(item: Word): String;
var
temp: String;
begin
{$IFDEF GO32V2}
_last_debug_str_ := _debug_str_;
_debug_str_ := 'MENULIB1.PAS:pstr';
{$ENDIF}
Move(pBYTE(mnu_data)[(item-1)*(mnu_len+1)],temp,mnu_len+1);
If NOT solid then pstr := ExpStrR(temp,mnu_len-2,' ')
else pstr := ExpStrR(temp,mnu_len,' ');
end;
function pdes(item: Word): String;
var
temp: String;
begin
{$IFDEF GO32V2}
_last_debug_str_ := _debug_str_;
_debug_str_ := 'MENULIB1.PAS:pdes';
{$ENDIF}
If (mn_environment.descr <> NIL) then
Move(pBYTE(mn_environment.descr)[(item-1)*(mn_environment.descr_len+1)],temp,mn_environment.descr_len+1)
else temp := '';
pdes := ExpStrR(temp,mn_environment.descr_len,' ');
end;
procedure refresh;
procedure ShowCStr_clone(dest: tSCREEN_MEM_PTR; x,y: Byte; str: String;
atr1,atr2,atr3,atr4: Byte);
var
temp,len: Byte;
highlighted: Boolean;
begin
{$IFDEF GO32V2}
_last_debug_str_ := _debug_str_;
_debug_str_ := 'MENULIB1.PAS:refresh:ShowCStr_clone';
{$ENDIF}
If NOT (MenuLib1_mn_setting.fixed_len <> 0) then
begin
ShowCStr(dest,x,y,str,atr1,atr2);
EXIT;
end;
highlighted := FALSE;
len := 0;
For temp := 1 to Length(str) do
If (str[temp] = '~') then highlighted := NOT highlighted
else begin
If (len < MenuLib1_mn_setting.fixed_len) then
begin
If NOT highlighted then ShowStr(dest,x+len,y,str[temp],atr1)
else ShowStr(dest,x+len,y,str[temp],atr2);
Inc(len);
end
else
begin
If NOT highlighted then ShowStr(dest,x+len,y,str[temp],atr3)
else ShowStr(dest,x+len,y,str[temp],atr4);
Inc(len);
end
end;
end;
begin
{$IFDEF GO32V2}
_last_debug_str_ := _debug_str_;
_debug_str_ := 'MENULIB1.PAS:refresh';
{$ENDIF}
If (page = opage) and (idx2 = opos) and NOT MenuLib1_mn_environment.do_refresh then EXIT
else begin
opage := page;
opos := idx2;
MenuLib1_mn_environment.do_refresh := FALSE;
end;
For idx := page to mnu_len2+page-1 do
If (idx = idx2+page-1) then
ShowCStr_clone(MenuLib1_mn_environment.v_dest,mnu_x+1,mnu_y+idx2,
ExpStrR(pstr(idx2+page-1)+pdes(idx2+page-1),
max+(Length(pstr(idx2+page-1))+Length(pdes(idx2+page-1))-
CStrLen(pstr(idx2+page-1)+pdes(idx2+page-1))),' '),
MenuLib1_mn_setting.text2_attr,MenuLib1_mn_setting.short2_attr,
MenuLib1_mn_setting.text_attr,MenuLib1_mn_setting.short_attr)
else
If mbuf[idx].use then
ShowCStr(MenuLib1_mn_environment.v_dest,mnu_x+1,mnu_y+idx-page+1,
ExpStrR(pstr(idx)+pdes(idx),
max+(Length(pstr(idx))+Length(pdes(idx2+page-1))-
CStrLen(pstr(idx)+pdes(idx))),' '),
MenuLib1_mn_setting.text_attr,MenuLib1_mn_setting.short_attr)
else
ShowCStr(MenuLib1_mn_environment.v_dest,mnu_x+1,mnu_y+idx-page+1,
ExpStrR(pstr(idx)+pdes(idx),
max+(Length(pstr(idx))+Length(pdes(idx2+page-1))-
CStrLen(pstr(idx)+pdes(idx))),' '),
MenuLib1_mn_setting.disbld_attr,MenuLib1_mn_setting.disbld_attr);
vscrollbar_pos :=
VScrollBar(MenuLib1_mn_environment.v_dest,mnu_x+max+1,mnu_y+1,temp2,mnu_count,idx2+page-1,
vscrollbar_pos,MenuLib1_mn_setting.menu_attr,MenuLib1_mn_setting.menu_attr);
end;
function MenuLib1_Menu(var data; x,y: Byte; spos: Word;
len,len2: Byte; count: Word; title: String): Word;
procedure SubPos(var p: Word);
var
temp: Word;
begin
temp := p;
If (temp > 1) and mbuf[temp+page-2].use then
Dec(temp)
else If (temp > 1) then
begin
Dec(temp);
SubPos(temp);
end
else If (page > first) then
Dec(page);
If mbuf[temp+page-1].use then p := temp
else If (temp+page-1 > first) then SubPos(temp);
end;
procedure AddPos(var p: Word);
var
temp: Word;
begin
temp := p;
If (temp < len2) and (temp < last) and
mbuf[temp+page].use then
Inc(temp)
else If (temp < len2) and (temp < last) then
begin
Inc(temp);
AddPos(temp);
end
else If (page+temp <= last) then
Inc(page);
If mbuf[temp+page-1].use then p := temp
else If (temp+page-1 < last) then AddPos(temp);
end;
function RetKey(code: Byte): Word;
var
temp: Byte;
begin
RetKey := 0;
For temp := 1 to count do
If (UpCase(mbuf[temp].key) = UpCase(CHR(code))) then
begin
RetKey := temp;
BREAK;
end;
end;
procedure edit_contents(item: Word);
var
temp: String;
begin
{$IFDEF GO32V2}
_last_debug_str_ := _debug_str_;
_debug_str_ := 'MENULIB1.PAS:MenuLib1_Menu:edit_contents';
{$ENDIF}
is_setting.append_enabled := TRUE;
is_setting.character_set := [#32..#255];
is_environment.locate_pos := 1;
If (MenuLib1_mn_environment.edit_pos > 0) and (MenuLib1_mn_environment.edit_pos < max-2) then
temp := Copy(pstr(item),MenuLib1_mn_environment.edit_pos+1,
Length(pstr(item))-MenuLib1_mn_environment.edit_pos+1)
else
temp := CutStr(pstr(item));
While (temp <> '') and (temp[Length(temp)] = ' ') do Delete(temp,Length(temp),1);
temp := InputStr(temp,x+1+MenuLib1_mn_environment.edit_pos,y+idx2,
max-2-MenuLib1_mn_environment.edit_pos+1,
max-2-MenuLib1_mn_environment.edit_pos+1,
MenuLib1_mn_setting.text2_attr,MenuLib1_mn_setting.default_attr);
If (is_environment.keystroke = kENTER) then
begin
If (MenuLib1_mn_environment.edit_pos > 0) and (MenuLib1_mn_environment.edit_pos < max-2) then
temp := Copy(pstr(item),1,MenuLib1_mn_environment.edit_pos)+temp
else
temp := CutStr(temp);
Move(temp,pBYTE(data)[(item-1)*(len+1)],len+1);
end;
ShowCStr(MenuLib1_mn_environment.v_dest,x+1,y+idx2,
ExpStrR(pstr(item),max+(Length(pstr(item)))-
CStrLen(pstr(item)),' '),
MenuLib1_mn_setting.text2_attr,MenuLib1_mn_setting.short2_attr);
end;
begin { MenuLib1_Menu }
{$IFDEF GO32V2}
_last_debug_str_ := _debug_str_;
_debug_str_ := 'MENULIB1.PAS:MenuLib1_Menu';
{$ENDIF}
If (count = 0) then
begin
MenuLib1_Menu := 0;
EXIT;
end;
max := Length(title);
mnu_data := Addr(data);
mnu_count := count;
mnu_len := len;
If NOT MenuLib1_mn_environment.unpolite then
ScreenMemCopy(MenuLib1_mn_environment.v_dest,ptr_scr_backup);
If (count < 1) then EXIT;
vscrollbar_pos := BYTE_NULL;
If NOT MenuLib1_mn_environment.preview then HideCursor;
temp := 0;
For idx := 1 to count do
begin
mbuf[idx].key := OutKey(pstr(idx));
If NOT MenuLib1_mn_setting.reverse_use then mbuf[idx].use := mbuf[idx].key <> '~'
else mbuf[idx].use := NOT (mbuf[idx].key <> '~');
If mbuf[idx].use then temp := 1;
end;
solid := FALSE;
If (temp = 0) then
begin
For temp := 1 to count do mbuf[temp].use := TRUE;
solid := TRUE;
end;
For idx := 1 to count do
If (max < CStrLen(pstr(idx))+MenuLib1_mn_environment.descr_len) then
max := CStrLen(pstr(idx))+MenuLib1_mn_environment.descr_len;
If MenuLib1_mn_setting.center_box then
begin
x := (work_MaxCol-max-2) DIV 2+(work_MaxCol-max-2) MOD 2;
y := (work_MaxLn-len2-1) DIV 2+(work_MaxLn-len2-1) MOD 2;
end;
mnu_x := x;
mnu_y := y;
len2b := len2;
If NOT MenuLib1_mn_environment.unpolite then
begin
old_fr_shadow_enabled := fr_setting.shadow_enabled;
fr_setting.shadow_enabled := MenuLib1_mn_setting.shadow_enabled;
fr_setting.update_area := FALSE;
Frame(MenuLib1_mn_environment.v_dest,x,y,x+max+1,y+len2+1,MenuLib1_mn_setting.menu_attr,
title,MenuLib1_mn_setting.title_attr,MenuLib1_mn_setting.frame_type);
fr_setting.update_area := TRUE;
fr_setting.shadow_enabled := old_fr_shadow_enabled;
contxt := DietStr(MenuLib1_mn_environment.context,max+
(Length(MenuLib1_mn_environment.context)-CStrLen(MenuLib1_mn_environment.context)));
ShowCStr(MenuLib1_mn_environment.v_dest,x+max+1-CStrLen(contxt),y+len2+1,
contxt,MenuLib1_mn_setting.contxt_attr,MenuLib1_mn_setting.contxt2_attr);
temp2 := len2;
If (len2 > count) then len2 := count;
If (len2 < 1) then len2 := 1;
If (spos < 1) then spos := 1;
If (spos > count) then spos := count;
mnu_len2 := len2;
MenuLib1_mn_environment.refresh := refresh;
first := 1;
last := count;
While NOT mbuf[first].use do Inc(first);
While NOT mbuf[last].use do Dec(last);
If (spos < first) or (spos > last) then
spos := first;
idx2 := 1;
page := 1;
opage := WORD_NULL;
opos := WORD_NULL;
While (idx2+page-1 < spos) do AddPos(idx2);
end;
MenuLib1_mn_environment.curr_pos := idx2+page-1;
MenuLib1_mn_environment.keystroke := WORD_NULL;
If (Addr(MenuLib1_mn_environment.ext_proc) <> NIL) then MenuLib1_mn_environment.ext_proc;
qflg := FALSE;
If MenuLib1_mn_environment.preview then
begin
MenuLib1_mn_environment.preview := FALSE;
MenuLib1_mn_environment.unpolite := TRUE;
refresh;
end
else
Repeat
key := getkey;
If LookUpKey(key,MenuLib1_mn_setting.terminate_keys,50) then
If NOT ((key = MenuLib1_mn_setting.terminate_keys[2]) and
MenuLib1_mn_setting.edit_contents) then qflg := TRUE
else edit_contents(idx2+page-1);
If NOT qflg then
If (LO(key) in [$20..$0ff]) then
begin
idx := RetKey(LO(key));
If (idx <> 0) then
begin
refresh;
idx2 := idx;
If NOT ((key = MenuLib1_mn_setting.terminate_keys[2]) and
MenuLib1_mn_setting.edit_contents) then qflg := TRUE
else edit_contents(idx);
end;
end
else If NOT shift_pressed and
NOT ctrl_pressed and NOT alt_pressed then
Case key of
kUP: If (page+idx2-1 > first) or
NOT MenuLib1_mn_setting.cycle_moves then SubPos(idx2)
else begin
idx2 := len2;
page := count-len2+1;
If NOT mbuf[idx2+page-1].use then SubPos(idx2);
end;
kDOWN: If (page+idx2-1 < last) or
NOT MenuLib1_mn_setting.cycle_moves then AddPos(idx2)
else begin
idx2 := 1;
page := 1;
If NOT mbuf[idx2+page-1].use then AddPos(idx2);
end;
kHOME: begin
idx2 := 1;
page := 1;
If NOT mbuf[idx2+page-1].use then AddPos(idx2);
end;
kEND: begin
idx2 := len2;
page := count-len2+1;
If NOT mbuf[idx2+page-1].use then SubPos(idx2);
end;
kPgUP: For temp := 1 to len2-1 do SubPos(idx2);
kPgDOWN: For temp := 1 to len2-1 do AddPos(idx2);
end;
MenuLib1_mn_environment.curr_pos := idx2+page-1;
refresh;
MenuLib1_mn_environment.keystroke := key;
If (Addr(MenuLib1_mn_environment.ext_proc) <> NIL) then MenuLib1_mn_environment.ext_proc;
{$IFDEF GO32V2}
// draw_screen;
keyboard_reset_buffer_alt;
{$ELSE}
draw_screen;
// keyboard_reset_buffer;
{$ENDIF}
until qflg or _force_program_quit;
If MenuLib1_mn_environment.winshade and NOT MenuLib1_mn_environment.unpolite then
begin
If (Addr(move_to_screen_routine) <> NIL) then
begin
move_to_screen_data := ptr_scr_backup;
move_to_screen_area[1] := x;
move_to_screen_area[2] := y;
move_to_screen_area[3] := x+max+1+2;
move_to_screen_area[4] := y+len2b+1+1;
move_to_screen_routine;
end
else
ScreenMemCopy(ptr_scr_backup,MenuLib1_mn_environment.v_dest);
end;
MenuLib1_Menu := idx2+page-1;
end;
procedure MenuLib1_Init;
begin
{$IFDEF GO32V2}
_last_debug_str_ := _debug_str_;
_debug_str_ := 'MENULIB1.PAS:MenuLib1_Init';
{$ENDIF}
MenuLib1_mn_setting.frame_type := frame_single;
MenuLib1_mn_setting.center_box := FALSE;
MenuLib1_mn_setting.shadow_enabled := FALSE;
MenuLib1_mn_setting.cycle_moves := FALSE;
MenuLib1_mn_setting.title_attr := dialog_background+dialog_title;
MenuLib1_mn_setting.menu_attr := dialog_background+dialog_text;
MenuLib1_mn_setting.text_attr := dialog_background+dialog_item;
MenuLib1_mn_setting.text2_attr := dialog_sel_itm_bck+dialog_sel_itm;
MenuLib1_mn_setting.default_attr := dialog_def_bckg+dialog_def;
MenuLib1_mn_setting.short_attr := dialog_background+dialog_short;
MenuLib1_mn_setting.short2_attr := dialog_sel_itm_bck+dialog_sel_short;
MenuLib1_mn_setting.disbld_attr := dialog_background+dialog_item_dis;
MenuLib1_mn_setting.contxt_attr := dialog_background+dialog_context;
MenuLib1_mn_setting.contxt2_attr := dialog_background+dialog_context_dis;
MenuLib1_mn_setting.terminate_keys[3] := kTAB;
MenuLib1_mn_setting.terminate_keys[4] := kLEFT;
MenuLib1_mn_setting.terminate_keys[5] := kRIGHT;
MenuLib1_mn_setting.terminate_keys[6] := kCtrlO;
MenuLib1_mn_setting.terminate_keys[7] := kF1;
MenuLib1_mn_setting.terminate_keys[8] := kShTAB;
MenuLib1_mn_environment.v_dest := screen_ptr;
MenuLib1_mn_environment.keystroke := $0000;
MenuLib1_mn_environment.context := '';
MenuLib1_mn_environment.unpolite := FALSE;
MenuLib1_mn_environment.winshade := TRUE;
MenuLib1_mn_environment.ext_proc := NIL;
MenuLib1_mn_environment.refresh := NIL;
MenuLib1_mn_environment.do_refresh := FALSE;
MenuLib1_mn_environment.preview := FALSE;
MenuLib1_mn_environment.descr_len := 0;
MenuLib1_mn_environment.descr := NIL;
end;
end.