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
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
|
{
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)}
{ $DEFINE DEFAULT_FORMAT:=TPTCFormat.Create(24, $00FF0000, $0000FF00, $000000FF)}
procedure VESALogProcedure(const S: string);
begin
LOG(s);
end;
constructor TVESAConsole.Create;
begin
inherited Create;
FTryLFB := true;
FTryWindowed := true;
vesa.LogProcedure := @VESALogProcedure;
FOpen := False;
FLocked := False;
FTitle := '';
FInformation := '';
FDefaultWidth := DEFAULT_WIDTH;
FDefaultHeight := DEFAULT_HEIGHT;
FDefaultFormat := DEFAULT_FORMAT;
FPrimary := nil;
InitVESA;
if not VBEPresent then
raise TPTCError.Create('the system does not support the VESA BIOS extensions');
UpdateModeList;
FClip := TPTCArea.Create;
FArea := TPTCArea.Create;
FCopy := TPTCCopy.Create;
FPalette := TPTCPalette.Create;
Configure('ptcpas.cfg');
end;
destructor TVESAConsole.Destroy;
begin
Close;
FKeyboard.Free;
FMouse.Free;
FEventQueue.Free;
FCopy.Free;
inherited Destroy;
end;
procedure TVESAConsole.UpdateModeList;
var
I, J: Integer;
r, g, b, a: DWord;
tmpbpp: Integer;
begin
SetLength(FModes, 0);
SetLength(FModesN, 0);
(* FModesLast := -1;
for I := Low(VBEModes) to High(VBEModes) do
with VBEModes[I] do
if (MemoryModel = vmmmDirectColor) and
((BitsPerPixel = 8) or
(BitsPerPixel = 15) or
(BitsPerPixel = 16) or
(BitsPerPixel = 24) or
(BitsPerPixel = 32)) then
Inc(FModesLast)
else
if (MemoryModel = vmmmPackedPixel) and (BitsPerPixel = 8) then
Inc(FModesLast, 2);
SetLength(FModes, FModesLast + 2);
SetLength(FModesN, FModesLast + 1);
// Writeln(FModesLast, ' ', NrOfModes);
FModes[FModesLast + 1] := TPTCMode.Create; {mark end of list!} *)
J := -1;
for I := Low(VBEModes) to High(VBEModes) do
with VBEModes[I] do
if (FTryWindowed and SupportsWindowed) or (FTryLFB and SupportsLFB) then
if (MemoryModel = vmmmDirectColor) and
((BitsPerPixel = 8) or
(BitsPerPixel = 15) or
(BitsPerPixel = 16) or
(BitsPerPixel = 24) or
(BitsPerPixel = 32)) then
begin
if FTryWindowed and SupportsWindowed then
begin
Inc(J);
r := MakeMask(WindowedRedMaskSize, WindowedRedFieldPosition);
g := MakeMask(WindowedGreenMaskSize, WindowedGreenFieldPosition);
b := MakeMask(WindowedBlueMaskSize, WindowedBlueFieldPosition);
{a := MakeMask(RsvdMaskSize, RsvdFieldPosition);}
a := 0;
if BitsPerPixel = 15 then
tmpbpp := 16
else
tmpbpp := BitsPerPixel;
SetLength(FModes, J + 1);
SetLength(FModesN, J + 1);
FModes[J] := TPTCMode.Create(XResolution, YResolution, TPTCFormat.Create(tmpbpp, r, g, b, a));
FModesN[J].Index := I;
FModesN[J].SupportsWindowed := true;
end;
if FTryLFB and SupportsLFB then
begin
if (FTryWindowed and SupportsWindowed) and
(WindowedRedMaskSize = LFBRedMaskSize) and
(WindowedRedFieldPosition = LFBRedFieldPosition) and
(WindowedGreenMaskSize = LFBGreenMaskSize) and
(WindowedGreenFieldPosition = LFBGreenFieldPosition) and
(WindowedBlueMaskSize = LFBBlueMaskSize) and
(WindowedBlueFieldPosition = LFBBlueFieldPosition) then
begin
{ the same as the windowed mode => do not add a new mode, just
set the LFB flag of the last one }
FModesN[J].SupportsLFB := true;
end
else
begin
Inc(J);
r := MakeMask(LFBRedMaskSize, LFBRedFieldPosition);
g := MakeMask(LFBGreenMaskSize, LFBGreenFieldPosition);
b := MakeMask(LFBBlueMaskSize, LFBBlueFieldPosition);
{a := MakeMask(RsvdMaskSize, RsvdFieldPosition);}
a := 0;
if BitsPerPixel = 15 then
tmpbpp := 16
else
tmpbpp := BitsPerPixel;
SetLength(FModes, J + 1);
SetLength(FModesN, J + 1);
FModes[J] := TPTCMode.Create(XResolution, YResolution, TPTCFormat.Create(tmpbpp, r, g, b, a));
FModesN[J].Index := I;
FModesN[J].SupportsLFB := true;
end;
end;
{ Inc(FModesLast)}
end
else
if (MemoryModel = vmmmPackedPixel) and (BitsPerPixel = 8) then
begin
Inc(J);
SetLength(FModes, J + 1);
SetLength(FModesN, J + 1);
FModes[J] := TPTCMode.Create(XResolution, YResolution, TPTCFormat.Create(8));
FModesN[J].Index := I;
FModesN[J].SupportsWindowed := FTryWindowed and SupportsWindowed;
FModesN[J].SupportsLFB := FTryLFB and SupportsLFB;
Inc(J);
{RGB 332}
SetLength(FModes, J + 1);
SetLength(FModesN, J + 1);
FModes[J] := TPTCMode.Create(XResolution, YResolution, TPTCFormat.Create(8, $E0, $1C, $03));
FModesN[J].Index := I;
FModesN[J].SupportsWindowed := FTryWindowed and SupportsWindowed;
FModesN[J].SupportsLFB := FTryLFB and SupportsLFB;
{ Inc(FModesLast, 2);}
end;
FModesLast := J;
end;
procedure TVESAConsole.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;
procedure TVESAConsole.EnableLFB;
begin
if FTryLFB <> true then
begin
FTryLFB := true;
UpdateModeList;
end;
end;
procedure TVESAConsole.DisableLFB;
begin
if FTryLFB <> false then
begin
FTryLFB := false;
UpdateModeList;
end;
end;
procedure TVESAConsole.EnableWindowed;
begin
if FTryWindowed <> true then
begin
FTryWindowed := true;
UpdateModeList;
end;
end;
procedure TVESAConsole.DisableWindowed;
begin
if FTryWindowed <> false then
begin
FTryWindowed := false;
UpdateModeList;
end;
end;
function TVESAConsole.Option(const AOption: string): Boolean;
begin
{...}
if AOption = 'enable lfb' then
begin
EnableLFB;
Result := true;
exit;
end;
if AOption = 'disable lfb' then
begin
DisableLFB;
Result := true;
exit;
end;
if AOption = 'default lfb' then
begin
EnableLFB;
Result := true;
exit;
end;
if AOption = 'enable windowed framebuffer' then
begin
EnableWindowed;
Result := true;
exit;
end;
if AOption = 'disable windowed framebuffer' then
begin
DisableWindowed;
Result := true;
exit;
end;
if AOption = 'default windowed framebuffer' then
begin
EnableWindowed;
Result := true;
exit;
end;
if AOption = 'enable dpmi508h' then
begin
VESA.TryDPMI508h := true;
Result := true;
exit;
end;
if AOption = 'disable dpmi508h' then
begin
VESA.TryDPMI508h := false;
Result := true;
exit;
end;
if AOption = 'default dpmi508h' then
begin
VESA.TryDPMI508h := VESA.TryDPMI508hDefault;
Result := true;
exit;
end;
if AOption = 'enable nearptr' then
begin
VESA.TryNearPtr := true;
Result := true;
exit;
end;
if AOption = 'disable nearptr' then
begin
VESA.TryNearPtr := false;
Result := true;
exit;
end;
if AOption = 'default nearptr' then
begin
VESA.TryNearPtr := VESA.TryNearPtrDefault;
Result := true;
exit;
end;
if AOption = 'no8bitdac' then
begin
VESA.EightBitDACEnabled := false;
Result := true;
exit;
end;
if AOption = 'enable logging' then
begin
LOG_enabled := true;
Result := true;
exit;
end;
if AOption = 'disable logging' then
begin
LOG_enabled := false;
Result := true;
exit;
end;
Result := FCopy.Option(AOption);
end;
function TVESAConsole.Modes: TPTCModeList;
begin
Result := FModes;
end;
function TVESAConsole.FindBestMode(const AMode: IPTCMode): Integer;
var
I: Integer;
modefound, bestmodefound: Integer;
x, y, bpp: Integer;
begin
if not AMode.Valid then
raise TPTCError.Create('invalid mode');
for I := 0 to FModesLast do
if FModes[I].Equals(AMode) then
begin
Result := I;
exit;
end;
modefound := -1;
bestmodefound := -1;
if (modefound = -1) and (AMode.Format.Direct) then
begin
x := 100000000;
y := x;
bpp := -1;
for I := 0 to FModesLast do
if (FModes[i].Width >= AMode.Width) and
(FModes[i].Height >= AMode.Height) and
(FModes[i].Width <= x) and
(FModes[i].Height <= y) and
(((FModes[i].Format.Bits >= bpp) and
(bpp < AMode.Format.Bits)) or
((FModes[i].Format.Bits < bpp) and
(FModes[i].Format.Bits >= AMode.Format.Bits) and
(bpp > AMode.Format.Bits))) then
begin
bestmodefound := I;
x := FModes[i].Width;
y := FModes[i].Height;
bpp := FModes[i].Format.Bits;
end;
{ if FModes[I].bpp >= then
begin
modefound := I;
Break;
End;}
end;
if (modefound = -1) and (AMode.format.indexed) then
begin
x := 100000000;
y := x;
bpp := -1;
for I := 0 to FModesLast do
if (FModes[i].Width >= AMode.Width) and
(FModes[i].Height >= AMode.Height) and
(FModes[i].Width <= x) and
(FModes[i].Height <= y) { and
(((FModes[i].format.bits >= bpp) and
(bpp < _mode.format.bits)) or
((FModes[i].format.bits < bpp) and
(FModes[i].format.bits >= _mode.format.bits) and
(bpp > _mode.format.bits)))} then
begin
if (FModes[i].Width <> x) or (FModes[i].Height <> y) then
bpp := -1;
if FModes[i].Format.Indexed or
(FModes[i].Format.Bits > bpp) then
begin
bestmodefound := I;
x := FModes[i].Width;
y := FModes[i].Height;
bpp := FModes[i].Format.Bits;
if FModes[i].Format.Indexed then
bpp := 1000;
end;
end;
{ if FModes[I].bpp >= then
begin
modefound := I;
Break;
End;}
end;
if bestmodefound <> -1 then
modefound := bestmodefound;
Result := modefound;
end;
procedure TVESAConsole.Open(const ATitle: string; APages: Integer); overload;
begin
Open(ATitle, FDefaultFormat, APages);
end;
procedure TVESAConsole.Open(const ATitle: string; AFormat: IPTCFormat;
APages: Integer); overload;
begin
Open(ATitle, FDefaultWidth, FDefaultHeight, AFormat, APages);
end;
procedure TVESAConsole.Open(const ATitle: string; AWidth, AHeight: Integer;
AFormat: IPTCFormat; APages: Integer); overload;
begin
Open(ATitle, TPTCMode.Create(AWidth, AHeight, AFormat), APages);
end;
procedure TVESAConsole.Open(const ATitle: string; AMode: IPTCMode;
APages: Integer); overload;
procedure SetRGB332Palette;
var
I: Integer;
plt: array [0..255] of packed record
B, G, R, A: Byte;
end;
begin
for I := 0 to 255 do
with plt[I] do
begin
case I shr 5 of
0: R := 0;
1: R := 36;
2: R := 73;
3: R := 109;
4: R := 146;
5: R := 182;
6: R := 219;
7: R := 255;
end;
case (I shr 2) and 7 of
0: G := 0;
1: G := 36;
2: G := 73;
3: G := 109;
4: G := 146;
5: G := 182;
6: G := 219;
7: G := 255;
end;
case I and 3 of
0: B := 0;
1: B := 85;
2: B := 170;
3: B := 255;
end;
A := 0;
end;
SetPalette(@plt, 0, 256);
end;
var
ModeFound: Integer;
begin
ModeFound := FindBestMode(AMode);
if ModeFound = -1 then
raise TPTCError.Create('mode not found >:)');
internal_close;
FTitle := ATitle;
FCurrentMode := ModeFound;
if FModesN[ModeFound].SupportsLFB then
begin
if not SetVESAMode(FModesN[ModeFound].Index, true) then
begin
if FTryWindowed then
begin
{ LFB -> Windowed fallback (useful for buggy DPMI hosts like NTVDM) }
LOG('Setting LFB mode failed; will try without LFB...');
DisableLFB;
Open(ATitle, AMode, APages);
exit;
end
else
raise TPTCError.Create('error setting VBE mode');
end;
end
else
begin
if not SetVESAMode(FModesN[ModeFound].Index, false) then
raise TPTCError.Create('error setting VBE mode');
end;
FVESACurrentMode := FModesN[ModeFound].Index;
with FModes[FCurrentMode].Format do
if (Bits = 8) and Direct and (R = $E0) and (G = $1C) and (B = $03) then
SetRGB332Palette;
with VBEModes[FVESACurrentMode] do
begin
FWidth := XResolution;
FHeight := YResolution;
if LFBUsed then
begin
FPitch := LFBBytesPerScanLine;
FVideoPagesCount := LFBNumberOfImagePages + 1;
end
else
begin
FPitch := WindowedBytesPerScanline;
FVideoPagesCount := WindowedNumberOfImagePages + 1;
end;
if FVideoPagesCount < 1 then
FVideoPagesCount := 1;
if (APages > 0) and (FVideoPagesCount > APages) then
FVideoPagesCount := APages;
FVideoPageSize := YResolution * FPitch;
FVideoPageHeight := YResolution;
FCurrentVideoPage := 0;
if FVideoPagesCount > 1 then
FNextVideoPage := 1
else
FNextVideoPage := 0;
end;
FArea := TPTCArea.Create(0, 0, FWidth, FHeight);
FClip := FArea;
FLFBNearPtrAccessAvailable := LFBNearPtrAccessAvailable;
if not FLFBNearPtrAccessAvailable then
begin
FPrimary := GetMem(FHeight * FPitch);
FillChar(FPrimary^, FHeight * FPitch, 0);
end;
if FLFBNearPtrAccessAvailable and (FVideoPagesCount > 1) then
begin
{ clear video memory pages numbers 1..FVideoPagesCount-1 }
FillChar((PByte(LFBNearPtrAccessPtr) + FVideoPageSize)^, FVideoPageSize * (FVideoPagesCount - 1), 0);
end;
FreeAndNil(FKeyboard);
FreeAndNil(FMouse);
FreeAndNil(FEventQueue);
FKeyboard := TDosKeyboard.Create;
FMouse := TDosMouse.Create(FWidth, FHeight);
FEventQueue := TEventQueue.Create;
{ temporary platform dependent information fudge }
FInformation := 'dos version x.xx.x'+#13+#10+'vesa version x.xx'+#13+#10+'vesa driver name xxxxx'+#13+#10+'display driver vendor xxxxx'+#13+#10+'certified driver? x'+#13+#10;
{ set open flag }
FOpen := True;
end;
procedure TVESAConsole.Close;
begin
if FOpen then
begin
if FLocked then
raise TPTCError.Create('console is still locked');
{flush all key presses}
while KeyPressed do ReadKey;
internal_close;
FOpen := False;
end;
end;
procedure TVESAConsole.Flush;
begin
check_open;
check_unlocked;
end;
procedure TVESAConsole.Finish;
begin
check_open;
check_unlocked;
end;
procedure TVESAConsole.Update;
var
framebuffer: PInteger;
begin
check_open;
check_unlocked;
if FVideoPagesCount = 1 then
begin
WaitRetraceSinglePage;
if not FLFBNearPtrAccessAvailable then
begin
WriteToVideoMemory(FPrimary, 0, FPitch * FHeight);
end;
end
else
begin
if not FLFBNearPtrAccessAvailable then
begin
WriteToVideoMemory(FPrimary, FNextVideoPage * FVideoPageSize, FPitch * FHeight);
end;
SetDisplayStart(0, FNextVideoPage * FVideoPageHeight, true);
FCurrentVideoPage := FNextVideoPage;
FNextVideoPage := FCurrentVideoPage + 1;
if FNextVideoPage >= FVideoPagesCount then
FNextVideoPage := 0;
end;
end;
procedure TVESAConsole.Update(AArea: IPTCArea);
begin
Update;
end;
procedure TVESAConsole.Copy(ASurface: IPTCSurface);
var
Pixels: Pointer;
begin
check_open;
check_unlocked;
Pixels := Lock;
try
ASurface.Load(Pixels, Width, Height, Pitch, Format, Palette);
Unlock;
except
on error: TPTCError do
begin
Unlock;
raise TPTCError.Create('failed to copy console to surface', error);
end;
end;
end;
procedure TVESAConsole.Copy(ASurface: IPTCSurface;
ASource, ADestination: IPTCArea);
var
pixels: Pointer;
begin
check_open;
check_unlocked;
Pixels := Lock;
try
ASurface.Load(Pixels, Width, Height, Pitch, Format, Palette, ASource, ADestination);
Unlock;
except
on error: TPTCError do
begin
Unlock;
raise TPTCError.Create('failed to copy console to surface', error);
end;
end;
end;
function TVESAConsole.Lock: Pointer;
var
pixels: Pointer;
begin
check_open;
if FLocked then
raise TPTCError.Create('console is already locked');
FLocked := True;
if FLFBNearPtrAccessAvailable then
Result := PByte(LFBNearPtrAccessPtr) + (FNextVideoPage * FVideoPageSize)
else
Result := FPrimary;
end;
procedure TVESAConsole.Unlock;
begin
check_open;
if not FLocked then
raise TPTCError.Create('console is not locked');
FLocked := False;
end;
procedure TVESAConsole.Load(const APixels: Pointer;
AWidth, AHeight, APitch: Integer;
AFormat: IPTCFormat;
APalette: IPTCPalette);
var
ConsolePixels: Pointer;
begin
check_open;
check_unlocked;
if Clip.Equals(Area) then
begin
ConsolePixels := Lock;
try
try
FCopy.Request(AFormat, Format);
FCopy.Palette(APalette, Palette);
FCopy.Copy(APixels, 0, 0, AWidth, AHeight, APitch, ConsolePixels, 0, 0,
Width, Height, Pitch);
except
on error: TPTCError do
begin
raise TPTCError.Create('failed to load pixels to console', error);
end;
end;
finally
Unlock;
end;
end
else
Load(APixels, AWidth, AHeight, APitch, AFormat, APalette, TPTCArea.Create(0, 0, Width, Height), Area);
end;
procedure TVESAConsole.Load(const APixels: Pointer;
AWidth, AHeight, APitch: Integer;
AFormat: IPTCFormat;
APalette: IPTCPalette;
ASource, ADestination: IPTCArea);
var
ConsolePixels: Pointer;
ClippedSource, ClippedDestination: IPTCArea;
begin
check_open;
check_unlocked;
ConsolePixels := Lock;
try
try
TPTCClipper.Clip(ASource, TPTCArea.Create(0, 0, AWidth, AHeight), ClippedSource, ADestination, Clip, ClippedDestination);
FCopy.Request(AFormat, Format);
FCopy.Palette(APalette, Palette);
FCopy.Copy(APixels, ClippedSource.Left, ClippedSource.Top, ClippedSource.Width, ClippedSource.Height, APitch,
ConsolePixels, ClippedDestination.Left, ClippedDestination.Top, ClippedDestination.Width, ClippedDestination.Height, Pitch);
except
on error:TPTCError do
begin
raise TPTCError.Create('failed to load pixels to console area', error);
end;
end;
finally
Unlock;
end;
end;
procedure TVESAConsole.Save(APixels: Pointer;
AWidth, AHeight, APitch: Integer;
AFormat: IPTCFormat;
APalette: IPTCPalette);
var
ConsolePixels: Pointer;
begin
check_open;
check_unlocked;
if Clip.Equals(Area) then
begin
ConsolePixels := Lock;
try
try
FCopy.Request(Format, AFormat);
FCopy.Palette(Palette, APalette);
FCopy.Copy(ConsolePixels, 0, 0, Width, Height, Pitch, APixels, 0, 0,
AWidth, AHeight, APitch);
except
on error: TPTCError do
begin
raise TPTCError.Create('failed to save console pixels', error);
end;
end;
finally
Unlock;
end;
end
else
Save(APixels, AWidth, AHeight, APitch, AFormat, APalette, Area, TPTCArea.Create(0, 0, Width, Height));
end;
procedure TVESAConsole.Save(APixels: Pointer;
AWidth, AHeight, APitch: Integer;
AFormat: IPTCFormat;
APalette: IPTCPalette;
ASource, ADestination: IPTCArea);
var
ConsolePixels: Pointer;
ClippedSource, ClippedDestination: IPTCArea;
begin
check_open;
check_unlocked;
ConsolePixels := Lock;
try
try
TPTCClipper.Clip(ASource, Clip, ClippedSource, ADestination, TPTCArea.Create(0, 0, AWidth, AHeight), ClippedDestination);
FCopy.Request(Format, AFormat);
FCopy.Palette(Palette, APalette);
FCopy.Copy(ConsolePixels, ClippedSource.Left, ClippedSource.Top, ClippedSource.Width, ClippedSource.Height, Pitch,
APixels, ClippedDestination.Left, ClippedDestination.Top, ClippedDestination.Width, ClippedDestination.Height, APitch);
except
on error:TPTCError do
begin
raise TPTCError.Create('failed to save console area pixels', error);
end;
end;
finally
Unlock;
end;
end;
procedure TVESAConsole.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 TVESAConsole.Clear(AColor: IPTCColor);
var
tmp: TPTCArea;
begin
check_open;
check_unlocked;
Clear(AColor, TPTCArea.Create);
end;
procedure TVESAConsole.Clear(AColor: IPTCColor;
AArea: IPTCArea);
begin
check_open;
check_unlocked;
{...}
end;
procedure TVESAConsole.Palette(APalette: IPTCPalette);
begin
check_open;
if Format.Indexed then
begin
FPalette.Load(APalette.Data);
SetPalette(APalette.Data, 0, 256);
end;
end;
function TVESAConsole.Palette: IPTCPalette;
begin
check_open;
Result := FPalette;
end;
procedure TVESAConsole.Clip(AArea: IPTCArea);
var
tmp: TPTCArea;
begin
check_open;
FClip := TPTCClipper.Clip(AArea, FArea);
end;
function TVESAConsole.GetWidth: Integer;
begin
check_open;
Result := FWidth;
end;
function TVESAConsole.GetHeight: Integer;
begin
check_open;
Result := FHeight;
end;
function TVESAConsole.GetPitch: Integer;
begin
check_open;
Result := FPitch;
end;
function TVESAConsole.GetPages: Integer;
begin
check_open;
Result := 2;{FPrimary.pages;}
end;
function TVESAConsole.GetArea: IPTCArea;
begin
check_open;
Result := FArea;
end;
function TVESAConsole.Clip: IPTCArea;
begin
check_open;
Result := FClip;
end;
function TVESAConsole.GetFormat: IPTCFormat;
begin
check_open;
Result := FModes[FCurrentMode].Format;
end;
function TVESAConsole.GetName: string;
begin
Result := 'VESA';
end;
function TVESAConsole.GetTitle: string;
begin
Result := FTitle;
end;
function TVESAConsole.GetInformation: string;
begin
Result := FInformation;
end;
procedure TVESAConsole.internal_close;
begin
FreeMemAndNil(FPrimary);
FreeAndNil(FKeyboard);
FreeAndNil(FMouse);
FreeAndNil(FEventQueue);
RestoreTextMode;
end;
procedure TVESAConsole.HandleEvents;
begin
FKeyboard.GetPendingEvents(FEventQueue);
FMouse.GetPendingEvents(FEventQueue);
end;
function TVESAConsole.NextEvent(out AEvent: IPTCEvent; AWait: Boolean; const AEventMask: TPTCEventMask): Boolean;
begin
check_open;
repeat
{ get events }
HandleEvents;
{ try to find an event that matches the EventMask }
AEvent := FEventQueue.NextEvent(AEventMask);
until (not AWait) or (AEvent <> nil);
Result := AEvent <> nil;
end;
function TVESAConsole.PeekEvent(AWait: Boolean; const AEventMask: TPTCEventMask): IPTCEvent;
begin
check_open;
repeat
{ get events }
HandleEvents;
{ try to find an event that matches the EventMask }
Result := FEventQueue.PeekEvent(AEventMask);
until (not AWait) or (Result <> nil);
end;
procedure TVESAConsole.check_open;
begin
if not FOpen then
raise TPTCError.Create('console is not open');
end;
procedure TVESAConsole.check_unlocked;
begin
if FLocked then
raise TPTCError.Create('console is not unlocked');
end;
|