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
|
{
Free Pascal port of the OpenPTC C++ library.
Copyright (C) 2001-2003, 2006, 2007, 2009-2013 Nikolay Nikolov (nickysn@users.sourceforge.net)
Original C++ version by Glenn Fiedler (ptc@gaffer.org)
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
}
constructor TDirectXPrimary.Create;
begin
FArea := TPTCArea.Create;
FClip := TPTCArea.Create;
FFormat := TPTCFormat.Create;
FClear := TPTCClear.Create;
FPalette := TPTCPalette.Create;
FActive := True;
FBlocking := True;
FCentering := True;
FSynchronize := True;
FFullscreen := False;
end;
destructor TDirectXPrimary.Destroy;
begin
{ close }
Close;
FClear.Free;
inherited Destroy;
end;
procedure TDirectXPrimary.Initialize(AWindow: TWin32Window; const ADDraw2: IDirectDraw2);
begin
LOG('initializing primary surface');
Close;
FWindow := AWindow;
FDD2 := ADDraw2;
end;
procedure TDirectXPrimary.Primary(APages: Integer; AVideo, AFullscreen, APalette, AComplex: Boolean);
var
attach_primary_pages: Boolean;
descriptor: TDDSURFACEDESC;
ddpf: TDDPIXELFORMAT;
capabilities: TDDSCAPS;
I: Integer;
rectangle: TRECT;
begin
try
LOG('creating primary surface');
LOG('pages', APages);
LOG('video', AVideo);
LOG('fullscreen', AFullscreen);
LOG('palette', APalette);
LOG('complex', AComplex);
if APages <= 0 then
raise TPTCError.Create('invalid number of pages');
FFullscreen := AFullscreen;
attach_primary_pages := False;
if AComplex or (not APalette) or (APages = 1) then
begin
LOG('creating a complex primary flipping surface');
FillChar(descriptor, SizeOf(descriptor), 0);
descriptor.dwSize := SizeOf(descriptor);
descriptor.dwFlags := DDSD_CAPS;
if APages > 1 then
descriptor.dwFlags := descriptor.dwFlags or DDSD_BACKBUFFERCOUNT;
descriptor.dwBackBufferCount := APages - 1;
descriptor.ddsCaps.dwCaps := DDSCAPS_PRIMARYSURFACE;
if AVideo then
descriptor.ddsCaps.dwCaps := descriptor.ddsCaps.dwCaps or DDSCAPS_VIDEOMEMORY;
if APages > 1 then
descriptor.ddsCaps.dwCaps := descriptor.ddsCaps.dwCaps or DDSCAPS_COMPLEX or DDSCAPS_FLIP;
DirectXCheck(FDD2.CreateSurface(@descriptor, FDDSPrimary, nil), 'FDD2.CreateSurface failed in TDirectXPrimary.Primary');
end
else
begin
LOG('creating a simple primary surface');
FillChar(descriptor, SizeOf(descriptor), 0);
descriptor.dwSize := SizeOf(descriptor);
descriptor.dwFlags := DDSD_CAPS;
descriptor.ddsCaps.dwCaps := DDSCAPS_PRIMARYSURFACE;
if AVideo then
descriptor.ddsCaps.dwCaps := descriptor.ddsCaps.dwCaps or DDSCAPS_VIDEOMEMORY;
DirectXCheck(FDD2.CreateSurface(@descriptor, FDDSPrimary, nil), 'FDD2.CreateSurface failed in TDirectXPrimary.Primary (palette)');
attach_primary_pages := True;
end;
FillChar(descriptor, SizeOf(descriptor), 0);
descriptor.dwSize := SizeOf(descriptor);
DirectXCheck(FDDSPrimary.GetSurfaceDesc(@descriptor), 'FDDSPrimary.GetSurfaceDesc failed in TDirectXPrimary.Primary');
if (descriptor.ddsCaps.dwCaps and DDSCAPS_VIDEOMEMORY) <> 0 then
begin
LOG('primary surface is in video memory');
end
else
begin
LOG('primary surface is in system memory');
end;
FillChar(ddpf, SizeOf(ddpf), 0);
ddpf.dwSize := SizeOf(ddpf);
DirectXCheck(FDDSPrimary.GetPixelFormat(@ddpf), 'FDDSPrimary.GetPixelFormat failed in TDirectXPrimary.Primary');
FFront := FDDSPrimary;
FPages := APages;
FWidth := descriptor.dwWidth;
FHeight := descriptor.dwHeight;
FFormat := DirectXTranslate(ddpf);
LOG('primary width', FWidth);
LOG('primary height', FHeight);
LOG('primary pages', FPages);
LOG('primary format', FFormat);
if APalette then
begin
LOG('clearing primary palette');
palette(TPTCPalette.Create);
end;
if attach_primary_pages then
begin
if (APages - 1) > High(FDDSPrimaryPage) then
raise TPTCError.Create('too many primary pages');
for I := 0 to APages - 2 do
begin
LOG('creating primary page surface');
FillChar(descriptor, SizeOf(descriptor), 0);
descriptor.dwSize := SizeOf(descriptor);
descriptor.dwFlags := DDSD_CAPS or DDSD_WIDTH or DDSD_HEIGHT;
descriptor.dwWidth := FWidth;
descriptor.dwHeight := FHeight;
descriptor.ddsCaps.dwCaps := DDSCAPS_OFFSCREENPLAIN;
if AVideo then
descriptor.ddsCaps.dwCaps := descriptor.ddsCaps.dwCaps or DDSCAPS_VIDEOMEMORY;
DirectXCheck(FDD2.CreateSurface(@descriptor, FDDSPrimaryPage[I], nil), 'FDD2.CreateSurface failed in TDirectXPrimary.Primary (primary page ' + IntToStr(I) + ')');
FillChar(descriptor, SizeOf(descriptor), 0);
descriptor.dwSize := SizeOf(descriptor);
DirectXCheck(FDDSPrimaryPage[I].GetSurfaceDesc(@descriptor), 'FDDSPrimaryPage[' + IntToStr(I) + '].GetSurfaceDesc failed in TDirectXPrimary.Primary');
if (descriptor.ddsCaps.dwCaps and DDSCAPS_VIDEOMEMORY) <> 0 then
begin
LOG('primary surface page is in video memory');
end
else
begin
LOG('primary surface page is in system memory');
end;
LOG('attaching page to primary surface');
DirectXCheck(FDDSPrimary.AddAttachedSurface(FDDSPrimaryPage[I]), 'FDDSPrimary.AddAttachedSurface failed in TDirectXPrimary.Primary (primary page ' + IntToStr(I) + ')');
end;
end;
FPrimaryWidth := FWidth;
FPrimaryHeight := FHeight;
if not AFullscreen then
begin
GetClientRect(FWindow.handle, rectangle);
FWidth := rectangle.right;
FHeight := rectangle.bottom;
end;
FArea := TPTCArea.Create(0, 0, FWidth, FHeight);
FClip := TPTCArea.Create(FArea);
if APages > 1 then
begin
capabilities.dwCaps := DDSCAPS_BACKBUFFER;
DirectXCheck(FFront.GetAttachedSurface(@capabilities, FDDSPrimaryBack), 'FFront.GetAttachedSurface failed in TDirectXPrimary.Primary');
FillChar(descriptor, SizeOf(descriptor), 0);
descriptor.dwSize := SizeOf(descriptor);
DirectXCheck(FDDSPrimaryBack.GetSurfaceDesc(@descriptor), 'FDDSPrimaryBack.GetSurfaceDesc failed in TDirectXPrimary.Primary');
if (descriptor.ddsCaps.dwCaps and DDSCAPS_VIDEOMEMORY) <> 0 then
begin
LOG('primary back surface is in video memory');
end
else
begin
LOG('primary back surface is in system memory');
end;
end
else
FDDSPrimaryBack := FFront;
FBack := FDDSPrimaryBack;
if AFullscreen then
while APages > 0 do
begin
Dec(APages);
LOG('clearing primary page');
Clear;
Update;
end;
except
on error: TPTCError do
begin
if FDDSPrimary <> nil then
begin
FDDSPrimary := nil;
end;
raise TPTCError.Create('could not create primary surface', error);
end;
end;
end;
procedure TDirectXPrimary.Secondary(AWidth, AHeight: Integer);
var
descriptor: TDDSURFACEDESC;
hel: TDDCAPS;
driver: TDDCAPS;
capabilities: TDDSCAPS;
begin
LOG('creating secondary surface');
LOG('width', AWidth);
LOG('height', AHeight);
if FDDC <> nil then
begin
LOG('releasing clipper');
FDDC := nil;
end;
if FDDSSecondary <> nil then
begin
LOG('releasing secondary surface');
FDDSSecondary := nil;
end;
FillChar(descriptor, SizeOf(descriptor), 0);
descriptor.dwSize := SizeOf(descriptor);
descriptor.dwFlags := DDSD_CAPS or DDSD_HEIGHT or DDSD_WIDTH;
descriptor.ddsCaps.dwCaps := DDSCAPS_OFFSCREENPLAIN;
descriptor.dwHeight := AHeight;
descriptor.dwWidth := AWidth;
DirectXCheck(FDD2.CreateSurface(@descriptor, FDDSSecondary, Nil), 'FDD2.CreateSurface failed in TDirectXPrimary.Secondary');
FillChar(descriptor, SizeOf(descriptor), 0);
descriptor.dwSize := SizeOf(descriptor);
DirectXCheck(FDDSSecondary.GetSurfaceDesc(@descriptor), 'FDDSSecondary.GetSurfaceDesc failed in TDirectXPrimary.Secondary');
if (descriptor.ddsCaps.dwCaps and DDSCAPS_VIDEOMEMORY) <> 0 then
begin
LOG('secondary surface is in video memory');
end
else
begin
LOG('secondary surface is in system memory');
end;
if not FFullscreen then
begin
LOG('attaching clipper to primary surface');
DirectXCheck(FDD2.CreateClipper(0, FDDC, nil), 'FDD2.CreateClipper failed in TDirectXPrimary.Secondary');
DirectXCheck(FDDC.SetHWnd(0, FWindow.Handle), 'FDDC.SetHWnd failed in TDirectXPrimary.Secondary');
DirectXCheck(FDDSPrimary.SetClipper(FDDC), 'FDDSPrimary.SetClipper failed in TDirectXPrimary.Secondary');
end;
FWidth := AWidth;
FHeight := AHeight;
FArea := TPTCArea.Create(0, 0, FWidth, FHeight);
FClip := TPTCArea.Create(FArea);
FSecondaryWidth := FWidth;
FSecondaryHeight := FHeight;
FBack := FDDSSecondary;
{ hel.dwSize := SizeOf(hel);
driver.dwSize := SizeOf(driver);
DirectXCheck(FDD2^.GetCaps(@driver, @hel));}
{
auto stretching support is disabled below because in almost 100% of cases
centering is faster and we must choose the fastest option by default!
}
{todo: DDCAPS!!!!!!!!!!!}
{ if ((driver.dwCaps and DDCAPS_BLTSTRETCH) <> 0) and
((driver.dwFXCaps and DDFXCAPS_BLTSTRETCHY) <> 0) then
begin
LOG('found hardware stretching support');
end
else
begin
LOG('no hardware stretching support');
End;}
FDDSSecondary.GetCaps(@capabilities);
if (capabilities.dwCaps and DDSCAPS_SYSTEMMEMORY) <> 0 then
begin
LOG('secondary surface is in system memory');
end;
Centering(True);
LOG('clearing secondary page');
Clear;
Update;
end;
procedure TDirectXPrimary.Synchronize(AUpdate: Boolean);
begin
FSynchronize := AUpdate;
if FPages > 1 then
FSynchronize := False;
LOG('primary synchronize', AUpdate);
end;
procedure TDirectXPrimary.Centering(ACenter: Boolean);
begin
FCentering := ACenter;
LOG('primary centering', FCentering);
end;
procedure TDirectXPrimary.Close;
var
i: Integer;
lost: Boolean;
begin
try
LOG('closing primary surface');
lost := False;
if (FDDSPrimary <> nil) and (FDDSPrimary.IsLost <> DD_OK) then
lost := True;
if (FDDSSecondary <> nil) and (FDDSSecondary.IsLost <> DD_OK) then
lost := True;
if (FBack <> nil) and (FDDSPrimary <> nil) and FFullscreen and (not lost) then
begin
palette(TPTCPalette.Create);
LOG('clearing primary pages');
for i := 0 to FPages - 1 do
begin
clear;
update;
end;
end;
except
on TPTCError do
begin
LOG('primary close clearing failed');
end;
end;
FBack := nil;
FFront := nil;
FDDSPrimaryBack := nil;
if FDDC <> nil then
begin
LOG('releasing clipper');
FDDC := nil;
end;
if FDDSSecondary <> nil then
begin
LOG('releasing secondary surface');
FDDSSecondary := nil;
end;
i := 0;
while FDDSPrimaryPage[i] <> nil do
begin
LOG('releasing attached primary surface page');
FDDSPrimaryPage[i] := nil;
Inc(i);
end;
if FDDSPrimary <> nil then
begin
LOG('releasing primary surface');
FDDSPrimary := nil;
end;
end;
procedure TDirectXPrimary.Update;
begin
Block;
Paint;
if FPages > 1 then
DirectXCheck(FFront.Flip(nil, DDFLIP_WAIT), 'FFront.Flip failed in TDirectXPrimary.Update');
end;
function TDirectXPrimary.Lock: Pointer;
var
descriptor: TDDSURFACEDESC;
pnt: POINT;
rct: RECT;
begin
Block;
descriptor.dwSize := SizeOf(descriptor);
if FFullscreen or (FBack = FDDSSecondary) then
begin
DirectXCheck(FBack.Lock(nil, @descriptor, DDLOCK_WAIT, 0), 'FBack.Lock failed in TDirectXPrimary.Lock');
FLocked := descriptor.lpSurface;
end
else
begin
pnt.x := 0;
pnt.y := 0;
ClientToScreen(FWindow.handle, pnt);
rct.left := pnt.x;
rct.top := pnt.y;
rct.right := pnt.x + FWidth;
rct.bottom := pnt.y + FHeight;
DirectXCheck(FBack.Lock(@rct, @descriptor, DDLOCK_WAIT, 0), 'FBack.Lock(rect) failed in TDirectXPrimary.Lock');
FLocked := descriptor.lpSurface;
end;
Result := FLocked;
end;
procedure TDirectXPrimary.Unlock;
begin
Block;
DirectXCheck(FBack.Unlock(FLocked), 'FBack.Unlock failed in TDirectXPrimary.Unlock');
end;
procedure TDirectXPrimary.Clear;
var
fx: TDDBLTFX;
begin
Block;
if FFullscreen or (FBack = FDDSSecondary) then
begin
fx.dwSize := SizeOf(fx);
fx.dwFillColor := 0;
DirectXCheck(FBack.Blt(nil, nil, nil, DDBLT_COLORFILL or DDBLT_WAIT, @fx), 'FBack.Blt failed in TDirectXPrimary.Clear');
end
else
begin
{ todo: replace with hardware clear! }
if Format.Direct then
Clear(TPTCColor.Create(0, 0, 0, 0), FArea)
else
Clear(TPTCColor.Create(0), FArea);
end;
end;
procedure TDirectXPrimary.Clear(AColor: IPTCColor; const AArea: IPTCArea);
var
clipped, clipped_area: IPTCArea;
clear_color: DWord;
rct: RECT;
fx: TDDBLTFX;
pixels: Pointer;
begin
Block;
if FFullscreen or (FBack = FDDSSecondary) then
begin
clipped := TPTCClipper.clip(AArea, FClip);
clear_color := Pack(AColor, FFormat);
with rct do
begin
left := clipped.left;
top := clipped.top;
right := clipped.right;
bottom := clipped.bottom;
end;
fx.dwSize := SizeOf(fx);
fx.dwFillColor := clear_color;
DirectXCheck(FBack.Blt(@rct, nil, nil, DDBLT_COLORFILL or DDBLT_WAIT, @fx), 'FBack.Blt(rect) failed in TDirectXPrimary.Clear');
end
else
begin
{ todo: replace with accelerated clearing code! }
pixels := Lock;
try
clipped_area := TPTCClipper.clip(AArea, Clip);
FClear.Request(Format);
FClear.Clear(pixels, clipped_area.left, clipped_area.right, clipped_area.width, clipped_area.height, Pitch, AColor);
Unlock;
except
on error: TPTCError do
begin
Unlock;
raise TPTCError.Create('failed to clear console area', error);
end;
end;
end;
end;
procedure TDirectXPrimary.Palette(APalette: IPTCPalette);
begin
Block;
FPalette.Load(APalette.Data);
ResetPalette;
end;
procedure TDirectXPrimary.ResetPalette;
var
data: PUint32;
temp: array [0..255] of PALETTEENTRY;
I: Integer;
DDP: IDirectDrawPalette;
begin
if not FFormat.Indexed then
begin
LOG('palette set in direct color');
end
else
begin
data := FPalette.Data;
for I := 0 to 255 do
begin
temp[I].peRed := (data[I] and $00FF0000) shr 16;
temp[I].peGreen := (data[I] and $0000FF00) shr 8;
temp[I].peBlue := data[I] and $000000FF;
temp[I].peFlags := 0;
end;
if FDDSPrimary.GetPalette(DDP) <> DD_OK then
begin
DirectXCheck(FDD2.CreatePalette(DDPCAPS_8BIT or DDPCAPS_ALLOW256 or DDPCAPS_INITIALIZE, @temp, DDP, nil), 'FDD2.CreatePalette failed in TDirectXPrimary.Palette');
DirectXCheck(FDDSPrimary.SetPalette(DDP), 'FDDSPrimary.SetPalette failed in TDirectXPrimary.Palette');
end
else
DirectXCheck(DDP.SetEntries(0, 0, 256, @temp), 'DDP.SetEntries failed in TDirectXPrimary.Palette');
end;
end;
procedure TDirectXPrimary.Clip(const AArea: IPTCArea);
begin
FClip := TPTCClipper.clip(AArea, FArea);
end;
function TDirectXPrimary.GetPitch: Integer;
var
descriptor: TDDSURFACEDESC;
begin
Block;
descriptor.dwSize := SizeOf(descriptor);
DirectXCheck(FBack.GetSurfaceDesc(@descriptor), 'FBack.GetSurfaceDesc failed in TDirectXPrimary.GetPitch');
Result := descriptor.lPitch;
end;
function TDirectXPrimary.GetDDS: IDirectDrawSurface;
begin
if FDDSSecondary <> nil then
Result := FDDSSecondary
else
Result := FDDSPrimaryBack;
end;
procedure TDirectXPrimary.Activate;
begin
LOG('primary activated');
FActive := True;
end;
procedure TDirectXPrimary.Deactivate;
begin
LOG('primary deactivated');
if FBlocking then
FActive := False
else
{no deactivation when not blocking};
end;
procedure TDirectXPrimary.Block;
var
restored: Boolean;
begin
if not FBlocking then
exit;
if not active then
begin
restored := False;
while not restored do
begin
LOG('blocking until activated');
while not active do
begin
FWindow.update(True);
Sleep(10);
end;
LOG('primary is active');
FWindow.update(True);
try
restore;
restored := True;
LOG('successful restore');
except
on TPTCError do
begin
LOG('application is active but cannot restore');
end;
end;
Sleep(10);
end;
end;
if FDDSPrimary.IsLost <> DD_OK then
raise TPTCError.Create('primary surface lost unexpectedly!');
if (FDDSSecondary <> nil) and (FDDSSecondary.IsLost <> DD_OK) then
raise TPTCError.Create('secondary surface lost unexpectedly!');
end;
procedure TDirectXPrimary.Save;
begin
if FDDSPrimary.IsLost = DD_OK then
begin
LOG('saving contents of primary surface');
{ todo: save contents of primary surface }
end
else
begin
LOG('could not save primary surface');
end;
if (FDDSSecondary <> nil) and (FDDSSecondary.IsLost = DD_OK) then
begin
LOG('saving contents of secondary surface');
{ todo: save contents of secondary surface }
end
else
if FDDSSecondary <> nil then
begin
LOG('could not save secondary surface');
end;
end;
procedure TDirectXPrimary.Restore;
var
I: Integer;
rct: RECT;
fx: TDDBLTFX;
begin
DirectXCheck(FDDSPrimary.Restore, 'FDDSPrimary.Restore failed in TDirectXConsole.Restore');
if FDDSSecondary <> nil then
DirectXCheck(FDDSSecondary.Restore, 'FDDSSecondary.Restore failed in TDirectXConsole.Restore');
LOG('restoring contents of primary surface');
{ todo: restore palette object on primary surface ? }
{ todo: restore contents of primary surface }
if FDDSPrimaryPage[0] <> nil then
begin
LOG('restoring attached pages');
for I := 0 to FPages - 2 do
DirectXCheck(FDDSPrimaryPage[I].Restore, 'FDDSPrimaryPage[' + IntToStr(I) + '].Restore failed in TDirectXConsole.Restore');
end;
if FDDSSecondary <> nil then
begin
if FFullscreen then
begin
LOG('temporary primary surface clear');
{ temporary: clear primary surface }
with rct do
begin
left := 0;
top := 0;
right := FPrimaryWidth;
bottom := FPrimaryHeight;
end;
fx.dwSize := SizeOf(fx);
fx.dwFillColor := 0;
DirectXCheck(FDDSPrimary.Blt(@rct, nil, nil, DDBLT_COLORFILL or DDBLT_WAIT, @fx), 'FDDSPrimary.Blt failed in TDirectXPrimary.Restore');
end;
LOG('restoring contents of secondary surface');
{ todo: restore contents of secondary surface }
end;
end;
procedure TDirectXPrimary.Paint;
var
source, destination: RECT;
pnt: POINT;
x, y: Integer;
fx: TDDBLTFX;
begin
if not Active then
begin
LOG('paint when not active');
exit;
end;
if FDDSSecondary <> nil then
begin
if (FDDSPrimary.IsLost <> DD_OK) or
(FDDSSecondary.IsLost <> DD_OK) then
begin
LOG('paint when surfaces are lost');
exit;
end;
source.left := 0;
source.top := 0;
source.right := FSecondaryWidth;
source.bottom := FSecondaryHeight;
destination.left := 0;
destination.top := 0;
destination.right := FPrimaryWidth;
destination.bottom := FPrimaryHeight;
{ note: code below assumes secondary is smaller than primary }
if FCentering and FFullscreen then
begin
x := (destination.right - source.right) div 2;
y := (destination.bottom - source.bottom) div 2;
destination.left := x;
destination.top := y;
destination.right := x + source.right;
destination.bottom := y + source.bottom;
end;
if not FFullscreen then
begin
pnt.x := 0;
pnt.y := 0;
ClientToScreen(FWindow.handle, pnt);
GetClientRect(FWindow.handle, destination);
Inc(destination.left, pnt.x);
Inc(destination.top, pnt.y);
Inc(destination.right, pnt.x);
Inc(destination.bottom, pnt.y);
end;
if ((source.right - source.left) = 0) or
((source.bottom - source.top) = 0) or
((destination.right - destination.left) = 0) or
((destination.bottom - destination.top) = 0) then
begin
LOG('zero area in primary paint');
exit;
end;
if FSynchronize then
begin
fx.dwSize := SizeOf(fx);
fx.dwDDFX := DDBLTFX_NOTEARING;
try
DirectXCheck(FDDSPrimaryBack.Blt(@destination, FDDSSecondary, @source, DDBLT_WAIT or DDBLT_DDFX, @fx), 'FDDSPrimary.Blt (synchronized) failed in TDirectXPrimary.Paint');
except
on TPTCError do
begin
LOG('falling back to unsynchronized blt');
FSynchronize := False;
end;
end;
end;
if not FSynchronize then
DirectXCheck(FDDSPrimaryBack.Blt(@destination, FDDSSecondary, @source, DDBLT_WAIT, nil), 'FDDSPrimaryBack.Blt (unsynchronized) failed in TDirectXPrimary.Paint');
end;
end;
procedure TDirectXPrimary.Blocking(ABlocking: Boolean);
begin
FBlocking := ABlocking;
end;
function TDirectXPrimary.Pack(const AColor: IPTCColor; const AFormat: IPTCFormat): Uint32;
var
r_base, g_base, b_base, a_base: Integer;
r_size, g_size, b_size, a_size: Integer;
r_scale, g_scale, b_scale, a_scale: Single;
begin
if AColor.direct and AFormat.direct then
begin
Analyse(AFormat.r, r_base, r_size);
Analyse(AFormat.g, g_base, g_size);
Analyse(AFormat.b, b_base, b_size);
Analyse(AFormat.a, a_base, a_size);
r_scale := 1 shl r_size;
g_scale := 1 shl g_size;
b_scale := 1 shl b_size;
a_scale := 1 shl a_size;
Result := (Trunc(AColor.r * r_scale) shl r_base) or
(Trunc(AColor.g * g_scale) shl g_base) or
(Trunc(AColor.b * b_scale) shl b_base) or
(Trunc(AColor.a * a_scale) shl a_base);
end
else
if AColor.indexed and AFormat.indexed then
Result := AColor.index
else
raise TPTCError.Create('color format type mismatch');
end;
procedure TDirectXPrimary.Analyse(AMask: Uint32; out ABase, ASize: Integer);
begin
ABase := 0;
ASize := 0;
if AMask = 0 then
exit;
while (AMask and 1) = 0 do
begin
AMask := AMask shr 1;
Inc(ABase);
end;
while (AMask and 1) <> 0 do
begin
AMask := AMask shr 1;
Inc(ASize);
end;
end;
function TDirectXPrimary.Palette: IPTCPalette;
begin
Result := FPalette;
end;
function TDirectXPrimary.Clip: IPTCArea;
begin
Result := FClip;
end;
procedure TDirectXPrimary.InternalResize(AWidth, AHeight: Integer);
begin
FWidth := AWidth;
FHeight := AHeight;
FArea := TPTCArea.Create(0, 0, FWidth, FHeight);
FClip := TPTCArea.Create(FArea);
end;
|