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
|
{
This file is part of the PTCPas framebuffer library
Copyright (C) 2001-2011 Nikolay Nikolov (nickysn@users.sourceforge.net)
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
with the following modification:
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent modules,and
to copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the terms
and conditions of the license of that module. An independent module is a
module which is not derived from or based on this library. If you modify
this library, you may extend this exception to your version of the library,
but you are not obligated to do so. If you do not wish to do so, delete this
exception statement from your version.
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
}
{$MACRO ON}
{$DEFINE DEFAULT_WIDTH:=320}
{$DEFINE DEFAULT_HEIGHT:=200}
{$DEFINE DEFAULT_FORMAT:=TPTCFormat.Create(32, $00FF0000, $0000FF00, $000000FF)}
{$ASMMODE intel}
constructor TVGAConsole.Create;
begin
inherited Create;
m_open := False;
m_locked := False;
m_title := '';
m_information := '';
m_default_width := DEFAULT_WIDTH;
m_default_height := DEFAULT_HEIGHT;
m_default_format := DEFAULT_FORMAT;
m_primary := nil;
m_area := TPTCArea.Create;
m_clip := TPTCArea.Create;
m_copy := TPTCCopy.Create;
m_clear := TPTCClear.Create;
m_palette := TPTCPalette.Create;
SetLength(m_modes, 3);
m_modes[0] := TPTCMode.Create(320, 200, TPTCFormat.Create(8));
m_modes[1] := TPTCMode.Create(320, 200, TPTCFormat.Create(8, $E0, $1C, $03));
m_modes[2] := TPTCMode.Create(320, 200, TPTCFormat.Create(16, $F800, $7E0, $1F));
m_faketype := FAKEMODE2A;
configure('ptcpas.cfg');
end;
destructor TVGAConsole.Destroy;
begin
close;
internal_clear_mode_list;
m_keyboard.Free;
FMouse.Free;
FEventQueue.Free;
m_copy.Free;
m_clear.Free;
inherited Destroy;
end;
procedure TVGAConsole.Configure(const AFileName: string);
var
F: TextFile;
S: string;
begin
AssignFile(F, AFileName);
{$I-}
Reset(F);
{$I+}
if IOResult <> 0 then
exit;
while not EoF(F) do
begin
{$I-}
Readln(F, S);
{$I+}
if IOResult <> 0 then
Break;
Option(S);
end;
CloseFile(F);
end;
function TVGAConsole.option(const _option: string): Boolean;
begin
{...}
if (System.Copy(_option, 1, 8) = 'FAKEMODE') and (Length(_option) = 10) and
(_option[9] >= '1') and (_option[9] <= '3') and
(_option[10] >= 'A') and (_option[10] <= 'C') then
begin
case _option[9] of
'1': case _option[10] of
'A': m_faketype := FAKEMODE1A;
'B': m_faketype := FAKEMODE1B;
'C': m_faketype := FAKEMODE1C;
end;
'2': case _option[10] of
'A': m_faketype := FAKEMODE2A;
'B': m_faketype := FAKEMODE2B;
'C': m_faketype := FAKEMODE2C;
end;
'3': case _option[10] of
'A': m_faketype := FAKEMODE3A;
'B': m_faketype := FAKEMODE3B;
'C': m_faketype := FAKEMODE3C;
end;
end;
Result := True;
exit;
end;
if _option = 'enable logging' then
begin
LOG_enabled := True;
Result := True;
exit;
end;
if _option = 'disable logging' then
begin
LOG_enabled := False;
Result := True;
exit;
end;
Result := m_copy.option(_option);
end;
procedure TVGAConsole.internal_clear_mode_list;
begin
SetLength(m_modes, 0);
end;
function TVGAConsole.modes: TPTCModeList;
begin
Result := m_modes;
end;
procedure TVGAConsole.open(const _title: string; _pages: Integer); overload;
begin
open(_title, m_default_format, _pages);
end;
procedure TVGAConsole.open(const _title: string; _format: IPTCFormat;
_pages: Integer); overload;
begin
open(_title, m_default_width, m_default_height, _format, _pages);
end;
procedure TVGAConsole.open(const _title: string; _width, _height: Integer;
_format: IPTCFormat; _pages: Integer); overload;
begin
open(_title, TPTCMode.Create(_width, _height, _format), _pages);
end;
procedure TVGAConsole.open(const _title: string; _mode: IPTCMode;
_pages: Integer); overload;
var
I: Integer;
modetype: Integer;
begin
if not _mode.valid then
raise TPTCError.Create('invalid mode');
if _mode.format.indexed then
modetype := INDEX8
else
if _mode.format.bits = 8 then
modetype := RGB332
else
modetype := FAKEMODE;
internal_pre_open_setup(_title);
internal_open_fullscreen_start;
internal_open_fullscreen(modetype);
internal_open_fullscreen_finish(_pages);
internal_post_open_setup;
end;
procedure TVGAConsole.close;
begin
if m_open then
begin
if m_locked then
raise TPTCError.Create('console is still locked');
{ flush all key presses }
while KeyPressed do ReadKey;
internal_close;
m_open := False;
end;
end;
procedure TVGAConsole.flush;
begin
check_open;
check_unlocked;
end;
procedure TVGAConsole.finish;
begin
check_open;
check_unlocked;
end;
procedure TVGAConsole.vga_load(data: Pointer); ASSembler; register;
asm
push es
mov esi, data
mov ax, fs
mov es, ax
mov ecx, 64000/4
mov edi, 0A0000h
cld
rep movsd
pop es
end;
procedure TVGAConsole.update;
begin
check_open;
check_unlocked;
case m_CurrentMode of
0, 1: begin
while (inportb($3DA) and 8) <> 0 Do;
while (inportb($3DA) and 8) = 0 Do;
vga_load(m_primary);
end;
2: fakemode_load(m_primary, True);
end;
end;
procedure TVGAConsole.update(_area: IPTCArea);
begin
update;
end;
procedure TVGAConsole.copy(surface: IPTCSurface);
var
pixels: Pointer;
begin
check_open;
check_unlocked;
pixels := lock;
try
try
surface.load(pixels, width, height, pitch, format, palette);
finally
unlock;
end;
except
on error: TPTCError do
raise TPTCError.Create('failed to copy console to surface', error);
end;
end;
procedure TVGAConsole.copy(surface: IPTCSurface;
source, destination: IPTCArea);
var
pixels: Pointer;
begin
check_open;
check_unlocked;
pixels := lock;
try
try
surface.load(pixels, width, height, pitch, format, palette, source, destination);
finally
unlock;
end;
except
on error: TPTCError do
raise TPTCError.Create('failed to copy console to surface', error);
end;
end;
function TVGAConsole.lock: Pointer;
begin
check_open;
if m_locked then
raise TPTCError.Create('console is already locked');
m_locked := True;
Result := m_primary;
end;
procedure TVGAConsole.unlock;
begin
check_open;
if not m_locked then
raise TPTCError.Create('console is not locked');
m_locked := False;
end;
procedure TVGAConsole.Load(const pixels: Pointer;
_width, _height, _pitch: Integer;
_format: IPTCFormat;
_palette: IPTCPalette);
var
console_pixels: Pointer;
begin
check_open;
check_unlocked;
if clip.Equals(area) then
begin
try
console_pixels := lock;
try
m_copy.request(_format, format);
m_copy.palette(_palette, palette);
m_copy.copy(pixels, 0, 0, _width, _height, _pitch, console_pixels, 0, 0,
width, height, pitch);
finally
unlock;
end;
except
on error: TPTCError do
raise TPTCError.Create('failed to load pixels to console', error);
end;
end
else
Load(pixels, _width, _height, _pitch, _format, _palette, TPTCArea.Create(0, 0, width, height), area);
end;
procedure TVGAConsole.Load(const pixels: Pointer;
_width, _height, _pitch: Integer;
_format: IPTCFormat;
_palette: IPTCPalette;
source, destination: IPTCArea);
var
console_pixels: Pointer;
clipped_source, clipped_destination: IPTCArea;
begin
check_open;
check_unlocked;
try
console_pixels := lock;
try
TPTCClipper.clip(source, TPTCArea.Create(0, 0, _width, _height), clipped_source, destination, clip, clipped_destination);
m_copy.request(_format, format);
m_copy.palette(_palette, palette);
m_copy.copy(pixels, clipped_source.left, clipped_source.top, clipped_source.width, clipped_source.height, _pitch,
console_pixels, clipped_destination.left, clipped_destination.top, clipped_destination.width, clipped_destination.height, pitch);
finally
unlock;
end;
except
on error:TPTCError do
raise TPTCError.Create('failed to load pixels to console area', error);
end;
end;
procedure TVGAConsole.save(pixels: Pointer;
_width, _height, _pitch: Integer;
_format: IPTCFormat;
_palette: IPTCPalette);
var
console_pixels: Pointer;
begin
check_open;
check_unlocked;
if clip.Equals(area) then
begin
try
console_pixels := lock;
try
m_copy.request(format, _format);
m_copy.palette(palette, _palette);
m_copy.copy(console_pixels, 0, 0, width, height, pitch, pixels, 0, 0,
_width, _height, _pitch);
finally
unlock;
end;
except
on error: TPTCError do
raise TPTCError.Create('failed to save console pixels', error);
end;
end
else
Save(pixels, _width, _height, _pitch, _format, _palette, area, TPTCArea.Create(0, 0, width, height));
end;
procedure TVGAConsole.Save(pixels: Pointer;
_width, _height, _pitch: Integer;
_format: IPTCFormat;
_palette: IPTCPalette;
source, destination: IPTCArea);
var
console_pixels: Pointer;
clipped_source, clipped_destination: IPTCArea;
begin
check_open;
check_unlocked;
try
console_pixels := lock;
try
TPTCClipper.clip(source, clip, clipped_source, destination, TPTCArea.Create(0, 0, _width, _height), clipped_destination);
m_copy.request(format, _format);
m_copy.palette(palette, _palette);
m_copy.copy(console_pixels, clipped_source.left, clipped_source.top, clipped_source.width, clipped_source.height, pitch,
pixels, clipped_destination.left, clipped_destination.top, clipped_destination.width, clipped_destination.height, _pitch);
finally
unlock;
end;
except
on error:TPTCError do
raise TPTCError.Create('failed to save console area pixels', error);
end;
end;
procedure TVGAConsole.clear;
var
Color: IPTCColor;
begin
check_open;
check_unlocked;
if format.direct then
Color := TPTCColor.Create(0, 0, 0, 0)
else
Color := TPTCColor.Create(0);
Clear(Color);
end;
procedure TVGAConsole.clear(AColor: IPTCColor);
begin
check_open;
check_unlocked;
Clear(AColor, TPTCArea.Create);
end;
procedure TVGAConsole.clear(color: IPTCColor;
_area: IPTCArea);
var
pixels: Pointer;
clipped_area: IPTCArea;
begin
check_open;
check_unlocked;
try
pixels := lock;
try
clipped_area := TPTCClipper.clip(_area, clip);
m_clear.request(format);
m_clear.clear(pixels, clipped_area.left, clipped_area.right, clipped_area.width, clipped_area.height, pitch, color);
finally
unlock;
end;
except
on error: TPTCError do
raise TPTCError.Create('failed to clear console area', error);
end;
end;
procedure TVGAConsole.Palette(_palette: IPTCPalette);
begin
check_open;
if format.indexed then
begin
m_palette.load(_palette.data);
internal_SetPalette(_palette.data);
end;
end;
function TVGAConsole.Palette: IPTCPalette;
begin
check_open;
Result := m_palette;
end;
procedure TVGAConsole.Clip(_area: IPTCArea);
begin
check_open;
m_clip := TPTCClipper.clip(_area, m_area);
end;
function TVGAConsole.GetWidth: Integer;
begin
check_open;
Result := m_width;
end;
function TVGAConsole.GetHeight: Integer;
begin
check_open;
Result := m_height;
end;
function TVGAConsole.GetPitch: Integer;
begin
check_open;
Result := m_pitch;
end;
function TVGAConsole.GetPages: Integer;
begin
check_open;
Result := 2;
end;
function TVGAConsole.GetArea: IPTCArea;
begin
check_open;
Result := m_area;
end;
function TVGAConsole.Clip: IPTCArea;
begin
check_open;
Result := m_clip;
end;
function TVGAConsole.GetFormat: IPTCFormat;
begin
check_open;
Result := m_modes[m_CurrentMode].format;
end;
function TVGAConsole.GetName: string;
begin
Result := 'VGA';
end;
function TVGAConsole.GetTitle: string;
begin
Result := m_title;
end;
function TVGAConsole.GetInformation: string;
begin
Result := m_information;
end;
procedure TVGAConsole.internal_pre_open_setup(const _title: string);
begin
m_title := _title;
end;
procedure TVGAConsole.internal_open_fullscreen_start;
begin
end;
procedure TVGAConsole.internal_open_fullscreen(ModeType: Integer);
begin
VGASetMode(320, 200, ModeType, m_faketype);
case ModeType of
INDEX8: begin
m_CurrentMode := 0;
m_pitch := 320;
end;
RGB332: begin
m_CurrentMode := 1;
m_pitch := 320;
end;
FAKEMODE: begin
m_CurrentMode := 2;
m_pitch := 640;
end;
end;
m_width := 320;
m_height := 200;
m_area := TPTCArea.Create(0, 0, m_width, m_height);
m_clip := m_area;
end;
procedure TVGAConsole.internal_open_fullscreen_finish(_pages: Integer);
begin
FreeMemAndNil(m_primary);
m_primary := GetMem(m_height * m_pitch);
FillChar(m_primary^, m_height * m_pitch, 0);
end;
procedure TVGAConsole.internal_post_open_setup;
begin
FreeAndNil(m_keyboard);
FreeAndNil(FMouse);
FreeAndNil(FEventQueue);
m_keyboard := TDosKeyboard.Create;
FMouse := TDosMouse.Create(m_width, m_height);
FEventQueue := TEventQueue.Create;
{ temporary platform dependent information fudge }
m_information := 'dos version x.xx.x, VGA, 320x200 FAKEMODExx/8-bit indexed/8-bit RGB332';
{ set open flag }
m_open := True;
end;
procedure TVGAConsole.internal_reset;
begin
FreeMemAndNil(m_primary);
FreeAndNil(m_keyboard);
FreeAndNil(FMouse);
FreeAndNil(FEventQueue);
end;
procedure TVGAConsole.internal_close;
begin
FreeMemAndNil(m_primary);
FreeAndNil(m_keyboard);
FreeAndNil(FMouse);
FreeAndNil(FEventQueue);
RestoreTextMode;
end;
procedure TVGAConsole.internal_SetPalette(data: PUint32);
var
i: Integer;
c: DWord;
begin
outportb($3C8, 0);
for i := 0 to 255 do
begin
c := (data^ shr 2) and $003F3F3F;
outportb($3C9, Byte(c shr 16));
outportb($3C9, Byte(c shr 8));
outportb($3C9, Byte(c));
Inc(data);
end;
end;
procedure TVGAConsole.HandleEvents;
begin
m_keyboard.GetPendingEvents(FEventQueue);
FMouse.GetPendingEvents(FEventQueue);
end;
function TVGAConsole.NextEvent(out event: IPTCEvent; wait: Boolean; const EventMask: TPTCEventMask): Boolean;
begin
check_open;
repeat
{ get events }
HandleEvents;
{ try to find an event that matches the EventMask }
event := FEventQueue.NextEvent(EventMask);
until (not Wait) or (event <> Nil);
Result := event <> nil;
end;
function TVGAConsole.PeekEvent(wait: Boolean; const EventMask: TPTCEventMask): IPTCEvent;
begin
check_open;
repeat
{ get events }
HandleEvents;
{ try to find an event that matches the EventMask }
Result := FEventQueue.PeekEvent(EventMask);
until (not Wait) or (Result <> Nil);
end;
procedure TVGAConsole.check_open;
begin
if not m_open then
raise TPTCError.Create('console is not open');
end;
procedure TVGAConsole.check_unlocked;
begin
if m_locked then
raise TPTCError.Create('console is not unlocked');
end;
|