-
Notifications
You must be signed in to change notification settings - Fork 5
/
hu_lib.pas
744 lines (662 loc) · 21.5 KB
/
hu_lib.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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
//------------------------------------------------------------------------------
//
// FPCDoom - Port of Doom to Free Pascal Compiler
// Copyright (C) 1993-1996 by id Software, Inc.
// Copyright (C) 2004-2007 by Jim Valavanis
// Copyright (C) 2017-2022 by Jim Valavanis
//
// This program 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 2
// of the License, or (at your option) any later version.
//
// This program 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 this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA.
//
//------------------------------------------------------------------------------
// E-Mail: [email protected]
// Site : https://sourceforge.net/projects/fpcdoom/
//------------------------------------------------------------------------------
{$I FPCDoom.inc}
unit hu_lib;
interface
uses
d_fpc,
doomdef,
r_defs;
const
// font stuff
HU_CHARERASE = KEY_BACKSPACE;
HU_MAXLINES = 4;
HU_MAXLINELINESS = 4;
HU_MAXLINELENGTH = HU_MAXLINELINESS * 80;
//
// Typedefs of widgets
//
// Text Line widget
// (parent of Scrolling Text and Input Text widgets)
type
hu_textline_t = record
// left-justified position of scrolling text window
x: integer;
y: integer;
font: Ppatch_tPArray; // font
sc: integer; // start character
line: array[0..(HU_MAXLINELENGTH + 1) - 1] of char; // line of text
len: integer; // current line length
// whether this line needs to be udpated
needsupdate: integer;
end;
Phu_textline_t = ^hu_textline_t;
// Scrolling Text window widget
// (child of Text Line widget)
hu_stext_t = record
lines: array[0..HU_MAXLINES - 1] of hu_textline_t; // text lines to draw
height: integer; // height in lines
curline: integer; // current line number
// pointer to boolean stating whether to update window
_on: Pboolean;
laston: boolean; // last value of *._on.
end;
Phu_stext_t = ^hu_stext_t;
// Input Text Line widget
// (child of Text Line widget)
hu_itext_t = record
line: hu_textline_t; // text line to input on
// left margin past which I am not to delete characters
lm: integer;
// pointer to boolean stating whether to update window
_on: Pboolean;
laston: boolean; // last value of *->on;
end;
Phu_itext_t = ^hu_itext_t;
//==============================================================================
// HUlib_init
//
// Widget creation, access, and update routines
//
// initializes heads-up widget library
//
//==============================================================================
procedure HUlib_init;
//==============================================================================
// HUlib_clearTextLine
//
// textline code
//
// clear a line of text
//
//==============================================================================
procedure HUlib_clearTextLine(t: Phu_textline_t);
//==============================================================================
//
// HUlib_initTextLine
//
//==============================================================================
procedure HUlib_initTextLine(t: Phu_textline_t; x: integer; y: integer; f: Ppatch_tPArray; sc: integer);
//==============================================================================
// HUlib_addCharToTextLine
//
// returns success
//
//==============================================================================
function HUlib_addCharToTextLine(t: Phu_textline_t; ch: char): boolean;
//==============================================================================
// HUlib_delCharFromTextLine
//
// returns success
//
//==============================================================================
function HUlib_delCharFromTextLine(t: Phu_textline_t): boolean;
//==============================================================================
// HUlib_drawTextLine
//
// draws tline
//
//==============================================================================
procedure HUlib_drawTextLine(l: Phu_textline_t; drawcursor: boolean);
//==============================================================================
// HUlib_eraseTextLine
//
// erases text line
//
//==============================================================================
procedure HUlib_eraseTextLine(l: Phu_textline_t);
//==============================================================================
// HUlib_initSText
//
// Scrolling Text window widget routines
//
// ?
//
//==============================================================================
procedure HUlib_initSText(s: Phu_stext_t; x: integer; y: integer; h: integer;
font: Ppatch_tPArray; startchar: integer; _on: Pboolean);
//==============================================================================
// HUlib_addLineToSText
//
// add a new line
//
//==============================================================================
procedure HUlib_addLineToSText(s: Phu_stext_t);
//==============================================================================
//
// HUlib_removeLineFromSText
//
//==============================================================================
procedure HUlib_removeLineFromSText(s: Phu_stext_t);
//==============================================================================
// HUlib_addMessageToSText
//
// ?
//
//==============================================================================
procedure HUlib_addMessageToSText(s: Phu_stext_t; prefix: string; msg: string);
//==============================================================================
//
// HUlib_addMessageToSText2
//
//==============================================================================
procedure HUlib_addMessageToSText2(s: Phu_stext_t; prefix: string; msg: string);
//==============================================================================
// HUlib_drawSText
//
// draws stext
//
//==============================================================================
procedure HUlib_drawSText(s: Phu_stext_t);
//==============================================================================
// HUlib_eraseSText
//
// erases all stext lines
//
//==============================================================================
procedure HUlib_eraseSText(s: Phu_stext_t);
//==============================================================================
// HUlib_initIText
//
// Input Text Line widget routines
//
//==============================================================================
procedure HUlib_initIText(it: Phu_itext_t; x: integer; y: integer; font: Ppatch_tPArray;
startchar: integer; _on: Pboolean);
//==============================================================================
// HUlib_delCharFromIText
//
// enforces left margin
//
//==============================================================================
procedure HUlib_delCharFromIText(it: Phu_itext_t);
//==============================================================================
// HUlib_eraseLineFromIText
//
// enforces left margin
//
//==============================================================================
procedure HUlib_eraseLineFromIText(it: Phu_itext_t);
//==============================================================================
// HUlib_resetIText
//
// resets line and left margin
//
//==============================================================================
procedure HUlib_resetIText(it: Phu_itext_t);
//==============================================================================
// HUlib_addPrefixToIText
//
// left of left-margin
//
//==============================================================================
procedure HUlib_addPrefixToIText(it: Phu_itext_t; str: string);
//==============================================================================
// HUlib_keyInIText
//
// whether eaten
//
//==============================================================================
function HUlib_keyInIText(it: Phu_itext_t; ch: byte): boolean;
//==============================================================================
//
// HUlib_drawIText
//
//==============================================================================
procedure HUlib_drawIText(it: Phu_itext_t);
//==============================================================================
// HUlib_eraseIText
//
// erases all itext lines
//
//==============================================================================
procedure HUlib_eraseIText(it: Phu_itext_t);
implementation
uses
am_map,
r_draw,
v_video;
//==============================================================================
//
// HUlib_init
//
//==============================================================================
procedure HUlib_init;
begin
end;
//==============================================================================
//
// HUlib_clearTextLine
//
//==============================================================================
procedure HUlib_clearTextLine(t: Phu_textline_t);
begin
t.len := 0;
t.line[0] := Chr(0);
t.needsupdate := 1; //true;
end;
//==============================================================================
//
// HUlib_initTextLine
//
//==============================================================================
procedure HUlib_initTextLine(t: Phu_textline_t; x: integer; y: integer; f: Ppatch_tPArray; sc: integer);
begin
t.x := x;
t.y := y;
t.font := f;
t.sc := sc;
HUlib_clearTextLine(t);
end;
//==============================================================================
//
// HUlib_addCharToTextLine
//
//==============================================================================
function HUlib_addCharToTextLine(t: Phu_textline_t; ch: char): boolean;
begin
if t.len = HU_MAXLINELENGTH then
result := false
else
begin
t.line[t.len] := ch;
inc(t.len);
t.line[t.len] := Chr(0);
t.needsupdate := 4;
result := true;
end;
end;
//==============================================================================
//
// HUlib_delCharFromTextLine
//
//==============================================================================
function HUlib_delCharFromTextLine(t: Phu_textline_t): boolean;
begin
if t.len = 0 then
result := false
else
begin
dec(t.len);
t.line[t.len] := Chr(0);
t.needsupdate := 4;
result := true;
end;
end;
//==============================================================================
//
// HUlib_drawTextLine
//
//==============================================================================
procedure HUlib_drawTextLine(l: Phu_textline_t; drawcursor: boolean);
var
i: integer;
w: integer;
x: integer;
y: integer;
c: char;
begin
// draw the new stuff
x := l.x;
y := l.y;
for i := 0 to l.len - 1 do
begin
c := toupper(l.line[i]);
if c = #10 then
x := l.x
else if c = #13 then
y := y + 8
else if c = ' ' then
begin
x := x + 4;
if x >= 320 then
break;
end
else if (Ord(c) >= l.sc) and (c <= '_') then
begin
w := l.font[Ord(c) - l.sc].width;
if x + w > 320 then
break;
V_DrawPatch(x, y, SCN_FG, l.font[Ord(c) - l.sc], true);
x := x + w;
end;
end;
// draw the cursor if requested
if drawcursor and (x + l.font[Ord('_') - l.sc].width <= 320) then
V_DrawPatch(x, l.y, SCN_FG, l.font[Ord('_') - l.sc], true);
end;
//==============================================================================
// HUlib_countLineLines
//
// sorta called by HU_Erase and just better darn get things straight
//
//==============================================================================
function HUlib_countLineLines(l: Phu_textline_t): integer;
var
i: integer;
begin
if l.len = 0 then
result := 0
else
begin
result := 1;
for i := 1 to l.len - 1 do
if l.line[i] = #10 then
inc(result);
end;
end;
//==============================================================================
//
// HUlib_eraseTextLine
//
//==============================================================================
procedure HUlib_eraseTextLine(l: Phu_textline_t);
var
lh: integer;
y: integer;
yoffset: integer;
begin
// Only erases when NOT in automap and the screen is reduced,
// and the text must either need updating or refreshing
// (because of a recent change back from the automap)
if (amstate <> am_only) and (viewwindowx <> 0) and (l.needsupdate <> 0) then
begin
lh := l.font[0].height + 1;
lh := lh * HU_MAXLINELINESS;
y := V_PreserveY(l.y);
yoffset := y * SCREENWIDTH;
while y < V_PreserveY(l.y) + V_PreserveY(lh) + 1 do
begin
if (y < viewwindowy) or (y >= viewwindowy + viewheight) then
R_VideoErase(yoffset, SCREENWIDTH) // erase entire line
else
begin
// erase left border
R_VideoErase(yoffset, viewwindowx);
// erase right border
R_VideoErase(yoffset + viewwindowx + viewwidth, viewwindowx);
end;
inc(y);
yoffset := yoffset + SCREENWIDTH;
end;
end;
if l.needsupdate > 0 then
l.needsupdate := l.needsupdate - 1;
end;
//==============================================================================
//
// HUlib_initSText
//
//==============================================================================
procedure HUlib_initSText(s: Phu_stext_t; x: integer; y: integer; h: integer;
font: Ppatch_tPArray; startchar: integer; _on: Pboolean);
var
i: integer;
begin
s.height := h;
s._on := _on;
s.laston := true;
s.curline := 0;
for i := 0 to h - 1 do
HUlib_initTextLine(@s.lines[i], x, y - i * (font[0].height + 1),
font, startchar);
end;
//==============================================================================
//
// HUlib_addLineToSText
//
//==============================================================================
procedure HUlib_addLineToSText(s: Phu_stext_t);
var
i: integer;
begin
// add a clear line
inc(s.curline);
if s.curline = s.height then
s.curline := 0;
HUlib_clearTextLine(@s.lines[s.curline]);
// everything needs updating
for i := 0 to s.height - 1 do
s.lines[i].needsupdate := 4;
end;
//==============================================================================
//
// HUlib_removeLineFromSText
//
//==============================================================================
procedure HUlib_removeLineFromSText(s: Phu_stext_t);
var
i: integer;
len: integer;
sl: TDStringList;
ss: string;
begin
len := s.lines[s.curline].len;
ss := '';
for i := 0 to len - 1 do
ss := ss + s.lines[s.curline].line[i];
sl := TDStringList.Create;
try
sl.Text := ss;
if sl.Count > 0 then
sl.Delete(0);
ss := sl.Text;
if Length(ss) > 1 then
if Copy(ss, Length(ss) - 1, 2) = #13#10 then
SetLength(ss, Length(ss) - 2);
len := Length(ss);
for i := 1 to len do
s.lines[s.curline].line[i - 1] := ss[i];
s.lines[s.curline].len := len;
finally
sl.Free;
end;
s.lines[s.curline].needsupdate := 4;
end;
//==============================================================================
//
// HUlib_addMessageToSText
//
//==============================================================================
procedure HUlib_addMessageToSText(s: Phu_stext_t; prefix: string; msg: string);
var
i: integer;
begin
HUlib_addLineToSText(s);
printf('%s%s'#13#10, [prefix, msg]);
for i := 1 to Length(prefix) do
HUlib_addCharToTextLine(@s.lines[s.curline], prefix[i]);
for i := 1 to Length(msg) do
HUlib_addCharToTextLine(@s.lines[s.curline], msg[i]);
end;
//==============================================================================
//
// HUlib_addMessageToSText2
//
//==============================================================================
procedure HUlib_addMessageToSText2(s: Phu_stext_t; prefix: string; msg: string);
var
i: integer;
begin
while HUlib_countLineLines(@s.lines[s.curline]) >= HU_MAXLINELINESS do
begin
HUlib_removeLineFromSText(s);
end;
printf('%s%s'#13#10, [prefix, msg]);
if s.lines[s.curline].len > 0 then
begin
HUlib_addCharToTextLine(@s.lines[s.curline], #13);
HUlib_addCharToTextLine(@s.lines[s.curline], #10);
end;
for i := 1 to Length(prefix) do
HUlib_addCharToTextLine(@s.lines[s.curline], prefix[i]);
for i := 1 to Length(msg) do
HUlib_addCharToTextLine(@s.lines[s.curline], msg[i]);
s.lines[s.curline].needsupdate := 4;
end;
//==============================================================================
//
// HUlib_drawSText
//
//==============================================================================
procedure HUlib_drawSText(s: Phu_stext_t);
var
i, idx: integer;
l: Phu_textline_t;
begin
if not s._on^ then
exit; // if not on, don't draw
// draw everything
for i := 0 to s.height - 1 do
begin
idx := s.curline - i;
if idx < 0 then
idx := idx + s.height; // handle queue of lines
l := @s.lines[idx];
// need a decision made here on whether to skip the draw
HUlib_drawTextLine(l, false); // no cursor, please
end;
end;
//==============================================================================
//
// HUlib_eraseSText
//
//==============================================================================
procedure HUlib_eraseSText(s: Phu_stext_t);
var
i: integer;
begin
for i := 0 to s.height - 1 do
begin
if (s.laston) and not s._on^ then
s.lines[i].needsupdate := 4;
HUlib_eraseTextLine(@s.lines[i]);
end;
s.laston := s._on^;
end;
//==============================================================================
//
// HUlib_initIText
//
//==============================================================================
procedure HUlib_initIText(it: Phu_itext_t; x: integer; y: integer; font: Ppatch_tPArray;
startchar: integer; _on: Pboolean);
begin
it.lm := 0; // default left margin is start of text
it._on := _on;
it.laston := true;
HUlib_initTextLine(@it.line, x, y, font, startchar);
end;
//==============================================================================
// HUlib_delCharFromIText
//
// The following deletion routines adhere to the left margin restriction
//
//==============================================================================
procedure HUlib_delCharFromIText(it: Phu_itext_t);
begin
if it.line.len <> it.lm then
HUlib_delCharFromTextLine(@it.line);
end;
//==============================================================================
//
// HUlib_eraseLineFromIText
//
//==============================================================================
procedure HUlib_eraseLineFromIText(it: Phu_itext_t);
begin
while it.lm <> it.line.len do
HUlib_delCharFromTextLine(@it.line);
end;
//==============================================================================
// HUlib_resetIText
//
// Resets left margin as well
//
//==============================================================================
procedure HUlib_resetIText(it: Phu_itext_t);
begin
it.lm := 0;
HUlib_clearTextLine(@it.line);
end;
//==============================================================================
//
// HUlib_addPrefixToIText
//
//==============================================================================
procedure HUlib_addPrefixToIText(it: Phu_itext_t; str: string);
var
i: integer;
begin
for i := 1 to Length(str) do
HUlib_addCharToTextLine(@it.line, str[i]);
it.lm := it.line.len;
end;
//==============================================================================
// HUlib_keyInIText
//
// wrapper function for handling general keyed input.
// returns true if it ate the key
//
//==============================================================================
function HUlib_keyInIText(it: Phu_itext_t; ch: byte): boolean;
begin
if (ch >= Ord(' ')) and (ch <= Ord('_')) then
HUlib_addCharToTextLine(@it.line, Chr(ch))
else
if ch = KEY_BACKSPACE then
HUlib_delCharFromIText(it)
else if ch <> KEY_ENTER then
begin
result := false; // did not eat key
exit;
end;
result := true; // ate the key
end;
//==============================================================================
//
// HUlib_drawIText
//
//==============================================================================
procedure HUlib_drawIText(it: Phu_itext_t);
begin
if it._on^ then
HUlib_drawTextLine(@it.line, true); // draw the line w/ cursor
end;
//==============================================================================
//
// HUlib_eraseIText
//
//==============================================================================
procedure HUlib_eraseIText(it: Phu_itext_t);
begin
if it.laston and not it._on^ then
it.line.needsupdate := 4;
HUlib_eraseTextLine(@it.line);
it.laston := it._on^;
end;
end.