fpc/packages/amunits/examples/otherlibs/p96checkboards.pas
Michaël Van Canneyt 99106402cb * PChar -> PAnsiChar
2023-07-15 18:22:39 +02:00

95 lines
3.5 KiB
ObjectPascal

Program P96CheckBoards;
{***********************************************************************
* This is example shows how to use p96GetRTGDataTagList and p96GetBoardDataTagList
*
* tabt (Sat Sep 12 23:06:28 1998)
***********************************************************************}
{
Translated to fpc pascal.
15 Mars 2001.
Updated for fpc 1.0.7
08 Jan 2003.
nils.sjoholm@mailbox.swipnet.se
}
uses exec, amigados, agraphics, picasso96api,utility,amigalib;
var
NumBoards : Longint;
i, clock : Longint;
tmp : Longint;
RGBFormats,
MemorySize,
FreeMemory,
LargestFreeMemory,
MemoryClock,
MoniSwitch : Longint;
BoardName : PAnsiChar;
boardtmp : array[0..200] of AnsiChar;
FUNCTION GetMonitorValue(value : longint): STRING;
BEGIN
IF value = 0 THEN GetMonitorValue := 'not set'
ELSE GetMonitorValue := 'set';
END;
begin
if not Assigned(P96Base) then
begin
writeln('Cannot open ', PICASSO96APINAME);
Halt(5);
end;
BoardName := @boardtmp;
tmp := p96GetRTGDataTags([P96RD_NumberOfBoards, AsTag(@NumBoards), TAG_END]);
writeln('Looking through all boards installed for Picasso96');
for i := 0 to NumBoards-1 do begin
p96GetBoardDataTags(i,[P96BD_BoardName, AsTag(@BoardName),
P96BD_RGBFormats, AsTag(@RGBFormats),
P96BD_TotalMemory, AsTag(@MemorySize),
P96BD_FreeMemory, AsTag(@FreeMemory),
P96BD_LargestFreeMemory, AsTag(@LargestFreeMemory),
P96BD_MemoryClock, AsTag(@MemoryClock),
P96BD_MonitorSwitch, AsTag(@MoniSwitch),
TAG_END]);
writeln('--------------------------------------------------');
printf('Board %ld: %s'#10,[ i, BoardName]);
printf('Total size of memory: %8ld'#10,[ MemorySize]);
printf('Size of free memory: %8ld'#10,[ FreeMemory]);
printf('Largest free chunk: %8ld'#10,[ LargestFreeMemory]);
printf('Monitor switch: %s'#10,[ GetMonitorValue(MoniSwitch)]);
writeln('This board supports:');
writeln(#9,'following rgb formats:');
if (RGBFormats and RGBFF_NONE) <> 0 then writeln(#9,#9,'PLANAR');
if (RGBFormats and RGBFF_CLUT) <> 0 then writeln(#9,#9,'CHUNKY');
if (RGBFormats and RGBFF_R5G5B5) <> 0 then writeln(#9,#9,'tR5G5B5');
if (RGBFormats and RGBFF_R5G5B5PC) <> 0 then writeln(#9,#9,'R5G5B5PC');
if (RGBFormats and RGBFF_B5G5R5PC) <> 0 then writeln(#9,#9,'B5G5R5PC');
if (RGBFormats and RGBFF_R5G6B5) <> 0 then writeln(#9,#9,'R5G6B5');
if (RGBFormats and RGBFF_R5G6B5PC) <> 0 then writeln(#9,#9,'R5G6B5PC');
if (RGBFormats and RGBFF_B5G6R5PC) <> 0 then writeln(#9,#9,'B5G6R5PC');
if (RGBFormats and RGBFF_R8G8B8) <> 0 then writeln(#9,#9,'R8G8B8');
if (RGBFormats and RGBFF_B8G8R8) <> 0 then writeln(#9,#9,'B8G8R8');
if (RGBFormats and RGBFF_A8R8G8B8) <> 0 then writeln(#9,#9,'A8R8G8B8');
if (RGBFormats and RGBFF_A8B8G8R8) <> 0 then writeln(#9,#9,'A8B8G8R8');
if (RGBFormats and RGBFF_R8G8B8A8) <> 0 then writeln(#9,#9,'R8G8B8A8');
if (RGBFormats and RGBFF_B8G8R8A8) <> 0 then writeln(#9,#9,'B8G8R8A8');
if (RGBFormats and RGBFF_Y4U2V2) <> 0 then writeln(#9,#9,'Y4U2V2');
if (RGBFormats and RGBFF_Y4U1V1) <> 0 then writeln(#9,#9,'Y4U1V1');
clock := (MemoryClock+50000) div 100000;
write(#9);
printf('memory clock set to %ld.%1ld MHz,'#10,[(clock div 10),(clock mod 10)]);
end;
end.