home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / GRDEMO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  35.7 KB  |  1,289 lines

  1.  
  2. {           Copyright (c) 1985, 87 by Borland International, Inc.            }
  3.  
  4. program GrDemo;
  5. { Turbo Pascal 4.0 Graph unit demonstration program }
  6.  
  7. uses
  8.   Crt, Dos, Graph;
  9.  
  10. const
  11.   { The names of the various device drivers supported }
  12.   DriverNames : array[0..10] of string[8] =
  13.   ('Detect', 'CGA', 'MCGA', 'EGA', 'EGA64', 'EGAMono',
  14.    'RESERVED', 'HercMono', 'ATT400', 'VGA', 'PC3270');
  15.  
  16.   { The five fonts available }
  17.   Fonts : array[0..4] of string[13] =
  18.   ('DefaultFont', 'TriplexFont', 'SmallFont', 'SansSerifFont', 'GothicFont');
  19.  
  20.   { The five predefined line styles supported }
  21.   LineStyles : array[0..4] of string[9] =
  22.   ('SolidLn', 'DottedLn', 'CenterLn', 'DashedLn', 'UserBitLn');
  23.  
  24.   { The twelve predefined fill styles supported }
  25.   FillStyles : array[0..11] of string[14] =
  26.   ('EmptyFill', 'SolidFill', 'LineFill', 'LtSlashFill', 'SlashFill',
  27.    'BkSlashFill', 'LtBkSlashFill', 'HatchFill', 'XHatchFill',
  28.    'InterleaveFill', 'WideDotFill', 'CloseDotFill');
  29.  
  30.   { The two text directions available }
  31.   TextDirect : array[0..1] of string[8] = ('HorizDir', 'VertDir');
  32.  
  33.   { The Horizontal text justifications available }
  34.   HorizJust  : array[0..2] of string[10] = ('LeftText', 'CenterText', 'RightText');
  35.  
  36.   { The vertical text justifications available }
  37.   VertJust   : array[0..2] of string[10] = ('BottomText', 'CenterText', 'TopText');
  38.  
  39. var
  40.   GraphDriver : integer;  { The Graphics device driver }
  41.   GraphMode   : integer;  { The Graphics mode value }
  42.   MaxX, MaxY  : word;     { The maximum resolution of the screen }
  43.   ErrorCode   : integer;  { Reports any graphics errors }
  44.   MaxColor    : word;     { The maximum color value available }
  45.   OldExitProc : Pointer;  { Saves exit procedure address }
  46.  
  47. {$F+}
  48. procedure MyExitProc;
  49. begin
  50.   ExitProc := OldExitProc; { Restore exit procedure address }
  51.   CloseGraph;              { Shut down the graphics system }
  52. end; { MyExitProc }
  53. {$F-}
  54.  
  55. procedure Initialize;
  56. { Initialize graphics and report any errors that may occur }
  57. begin
  58.   { when using Crt and graphics, turn off Crt's memory-mapped writes }
  59.   DirectVideo := False;
  60.   OldExitProc := ExitProc;                { save previous exit proc }
  61.   ExitProc := @MyExitProc;                { insert our exit proc in chain }
  62.   DetectGraph(GraphDriver, GraphMode);    { Test for RESERVED driver }
  63.   if GraphDriver = RESERVED then
  64.     begin
  65.       GraphDriver := CGA;                 { Force RESERVED driver to }
  66.       GraphMode := CGAHi;                 { CGA driver and mode!     }
  67.     end
  68.   else
  69.     GraphDriver := Detect;                { use autodetection }
  70.   InitGraph(GraphDriver, GraphMode, '');  { activate graphics }
  71.   ErrorCode := GraphResult;               { error? }
  72.   if ErrorCode <> grOk then
  73.   begin
  74.     Writeln('Graphics error: ', GraphErrorMsg(ErrorCode));
  75.     Halt(1);
  76.   end;
  77.   Randomize;                { init random number generator }
  78.   MaxColor := GetMaxColor;  { Get the maximum allowable drawing color }
  79.   MaxX := GetMaxX;          { Get screen resolution values }
  80.   MaxY := GetMaxY;
  81. end; { Initialize }
  82.  
  83. function Int2Str(L : LongInt) : string;
  84. { Converts an integer to a string for use with OutText, OutTextXY }
  85. var
  86.   S : string;
  87. begin
  88.   Str(L, S);
  89.   Int2Str := S;
  90. end; { Int2Str }
  91.  
  92. function RandColor : word;
  93. { Returns a Random non-zero color value that is within the legal
  94.   color range for the selected device driver and graphics mode.
  95.   MaxColor is set to GetMaxColor by Initialize }
  96. begin
  97.   RandColor := Random(MaxColor)+1;
  98. end; { RandColor }
  99.  
  100. procedure DefaultColors;
  101. { Select the maximum color in the Palette for the drawing color }
  102. begin
  103.   SetColor(MaxColor);
  104. end; { DefaultColors }
  105.  
  106. procedure DrawBorder;
  107. { Draw a border around the current view port }
  108. var
  109.   ViewPort : ViewPortType;
  110. begin
  111.   DefaultColors;
  112.   SetLineStyle(SolidLn, 0, NormWidth);
  113.   GetViewSettings(ViewPort);
  114.   with ViewPort do
  115.     Rectangle(0, 0, x2-x1, y2-y1);
  116. end; { DrawBorder }
  117.  
  118. procedure FullPort;
  119. { Set the view port to the entire screen }
  120. begin
  121.   SetViewPort(0, 0, MaxX, MaxY, ClipOn);
  122. end; { FullPort }
  123.  
  124. procedure MainWindow(Header : string);
  125. { Make a default window and view port for demos }
  126. begin
  127.   DefaultColors;                           { Reset the colors }
  128.   ClearDevice;                             { Clear the screen }
  129.   SetTextStyle(DefaultFont, HorizDir, 1);  { Default text font }
  130.   SetTextJustify(CenterText, TopText);     { Left justify text }
  131.   FullPort;                                { Full screen view port }
  132.   OutTextXY(MaxX div 2, 2, Header);        { Draw the header }
  133.   { Draw main window }
  134.   SetViewPort(0, TextHeight('M')+4, MaxX, MaxY-(TextHeight('M')+4), ClipOn);
  135.   DrawBorder;                              { Put a border around it }
  136.   { Move the edges in 1 pixel on all sides so border isn't in the view port }
  137.   SetViewPort(1, TextHeight('M')+5, MaxX-1, MaxY-(TextHeight('M')+5), ClipOn);
  138. end; { MainWindow }
  139.  
  140. procedure StatusLine(Msg : string);
  141. { Display a status line at the bottom of the screen }
  142. begin
  143.   FullPort;
  144.   DefaultColors;
  145.   SetTextStyle(DefaultFont, HorizDir, 1);
  146.   SetTextJustify(CenterText, TopText);
  147.   SetLineStyle(SolidLn, 0, NormWidth);
  148.   SetFillStyle(EmptyFill, 0);
  149.   Bar(0, MaxY-(TextHeight('M')+4), MaxX, MaxY);      { Erase old status line }
  150.   Rectangle(0, MaxY-(TextHeight('M')+4), MaxX, MaxY);
  151.   OutTextXY(MaxX div 2, MaxY-(TextHeight('M')+2), Msg);
  152.   { Go back to the main window }
  153.   SetViewPort(1, TextHeight('M')+5, MaxX-1, MaxY-(TextHeight('M')+5), ClipOn);
  154. end; { StatusLine }
  155.  
  156. procedure WaitToGo;
  157. { Wait for the user to abort the program or continue }
  158. const
  159.   Esc = #27;
  160. var
  161.   Ch : char;
  162. begin
  163.   StatusLine('Esc aborts or press a key...');
  164.   repeat until KeyPressed;
  165.   Ch := ReadKey;
  166.   if Ch = Esc then                    
  167.     Halt(0)                           { terminate program }
  168.   else
  169.     ClearDevice;                      { clear screen, go on with demo }
  170. end; { WaitToGo }
  171.  
  172. procedure GetDriverAndMode(var DriveStr, ModeStr : string);
  173. { Return strings describing the current device driver and graphics mode
  174.   for display status report }
  175. begin
  176.   DriveStr := DriverNames[GraphDriver];
  177.   GraphMode := GetGraphMode;
  178.   case GraphDriver of
  179.     CGA        : case GraphMode of
  180.                    CGAC0 : ModeStr := 'CGAC0';
  181.                    CGAC1 : ModeStr := 'CGAC1';
  182.                    CGAC2 : ModeStr := 'CGAC2';
  183.                    CGAC3 : ModeStr := 'CGAC3';
  184.                    CGAHi : ModeStr := 'CGAHi';
  185.                  end; { case }
  186.     MCGA       : case GraphMode of
  187.                    MCGAC0  : ModeStr := 'MCGAC0';
  188.                    MCGAC1  : ModeStr := 'MCGAC1';
  189.                    MCGAC2  : ModeStr := 'MCGAC2';
  190.                    MCGAC3  : ModeStr := 'MCGAC3';
  191.                    MCGAMed : ModeStr := 'MCGAMed';
  192.                    MCGAHi  : ModeStr := 'MCGAHi';
  193.                  end; { case }
  194.     EGA         : case GraphMode of
  195.                     EGALo : ModeStr := 'EGALo';
  196.                     EGAHi : ModeStr := 'EGAHi';
  197.                   end;
  198.     EGA64       : case GraphMode of
  199.                     EGA64Lo :  ModeStr := 'EGA64Lo';
  200.                     EGA64Hi :  ModeStr := 'EGA64Hi';
  201.                   end; { case }
  202.      HercMono   : ModeStr := 'HercMonoHi';
  203.      EGAMono    : ModeStr := 'EGAMonoHi';
  204.      PC3270     : ModeStr := 'PC3270Hi';
  205.      ATT400     : case GraphMode of
  206.                     ATT400C0  : ModeStr := 'ATT400C0';
  207.                     ATT400C1  : ModeStr := 'ATT400C1';
  208.                     ATT400C2  : ModeStr := 'ATT400C2';
  209.                     ATT400C3  : ModeStr := 'ATT400C3';
  210.                     ATT400Med : ModeStr := 'ATT400Med';
  211.                     ATT400Hi  : ModeStr := 'ATT400Hi';
  212.                   end; { case }
  213.      VGA         : case GraphMode of
  214.                      VGALo  : ModeStr := 'VGALo';
  215.                      VGAMed : ModeStr := 'VGAMed';
  216.                      VGAHi  : ModeStr := 'VGAHi';
  217.                    end; { case }
  218.   end; { case }
  219. end; { GetDriverAndMode }
  220.  
  221. procedure ReportStatus;
  222. { Display the status of all query functions after InitGraph }
  223. const
  224.   X = 10;
  225. var
  226.   ViewInfo   : ViewPortType;     { Parameters for inquiry procedures }
  227.   LineInfo   : LineSettingsType;
  228.   FillInfo   : FillSettingsType;
  229.   TextInfo   : TextSettingsType;
  230.   Palette    : PaletteType;
  231.   DriverStr  : string;           { Driver and mode strings }
  232.   ModeStr    : string;
  233.   Y          : word;
  234.  
  235. procedure WriteOut(S : string);
  236. { Write out a string and increment to next line }
  237. begin
  238.   OutTextXY(X, Y, S);
  239.   Inc(Y, TextHeight('M')+2);
  240. end; { WriteOut }
  241.  
  242. begin { ReportStatus }
  243.   GetDriverAndMode(DriverStr, ModeStr);   { Get current settings }
  244.   GetViewSettings(ViewInfo);
  245.   GetLineSettings(LineInfo);
  246.   GetFillSettings(FillInfo);
  247.   GetTextSettings(TextInfo);
  248.   GetPalette(Palette);
  249.  
  250.   Y := 4;
  251.   MainWindow('Status report after InitGraph');
  252.   SetTextJustify(LeftText, TopText);
  253.   WriteOut('Graphics device    : '+DriverStr);
  254.   WriteOut('Graphics mode      : '+ModeStr);
  255.   WriteOut('Screen resolution  : (0, 0, '+Int2Str(GetMaxX)+', '+Int2Str(GetMaxY)+')');
  256.   with ViewInfo do
  257.   begin
  258.     WriteOut('Current view port  : ('+Int2Str(x1)+', '+Int2Str(y1)+', '+Int2Str(x2)+', '+Int2Str(y2)+')');
  259.     if ClipOn then
  260.       WriteOut('Clipping           : ON')
  261.     else
  262.       WriteOut('Clipping           : OFF');
  263.   end;
  264.   WriteOut('Current position   : ('+Int2Str(GetX)+', '+Int2Str(GetY)+')');
  265.   WriteOut('Palette entries    : '+Int2Str(Palette.Size));
  266.   WriteOut('GetMaxColor        : '+Int2Str(GetMaxColor));
  267.   WriteOut('Current color      : '+Int2Str(GetColor));
  268.   with LineInfo do
  269.   begin
  270.     WriteOut('Line style         : '+LineStyles[LineStyle]);
  271.     WriteOut('Line thickness     : '+Int2Str(Thickness));
  272.   end;
  273.   with FillInfo do
  274.   begin
  275.     WriteOut('Current fill style : '+FillStyles[Pattern]);
  276.     WriteOut('Current fill color : '+Int2Str(Color));
  277.   end;
  278.   with TextInfo do
  279.   begin
  280.     WriteOut('Current font       : '+Fonts[Font]);
  281.     WriteOut('Text direction     : '+TextDirect[Direction]);
  282.     WriteOut('Character size     : '+Int2Str(CharSize));
  283.     WriteOut('Horizontal justify : '+HorizJust[Horiz]);
  284.     WriteOut('Vertical justify   : '+VertJust[Vert]);
  285.   end;
  286.   WaitToGo;
  287. end; { ReportStatus }
  288.  
  289. procedure TextPlay;
  290. { Demonstrate text justifications and text sizing }
  291. var
  292.   Size : word;
  293.   W, H, X, Y : word;
  294.   ViewInfo : ViewPortType;
  295. begin
  296.   MainWindow('SetTextJustify / SetUserCharSize demo');
  297.   GetViewSettings(ViewInfo);
  298.   with ViewInfo do
  299.   begin
  300.     SetTextStyle(TriplexFont, VertDir, 4);
  301.     Y := (y2-y1) - 2;
  302.     SetTextJustify(CenterText, BottomText);
  303.     OutTextXY(2*TextWidth('M'), Y, 'Vertical');
  304.     SetTextStyle(TriplexFont, HorizDir, 4);
  305.     SetTextJustify(LeftText, TopText);
  306.     OutTextXY(2*TextWidth('M'), 2, 'Horizontal');
  307.     SetTextJustify(CenterText, CenterText);
  308.     X := (x2-x1) div 2;
  309.     Y := TextHeight('H');
  310.     for Size := 1 to 4 do
  311.     begin
  312.       SetTextStyle(TriplexFont, HorizDir, Size);
  313.       H := TextHeight('M');
  314.       W := TextWidth('M');
  315.       Inc(Y, H);
  316.       OutTextXY(X, Y, 'Size '+Int2Str(Size));
  317.     end;
  318.     Inc(Y, H div 2);
  319.     SetTextJustify(CenterText, TopText);
  320.     SetUserCharSize(5, 6, 3, 2);
  321.     SetTextStyle(TriplexFont, HorizDir, UserCharSize);
  322.     OutTextXY((x2-x1) div 2, Y, 'User defined size!');
  323.   end;
  324.   WaitToGo;
  325. end; { TextPlay }
  326.  
  327. procedure TextDump;
  328. { Dump the complete character sets to the screen }
  329. const
  330.   CGASizes  : array[0..4] of word = (1, 3, 7, 3, 3);
  331.   NormSizes : array[0..4] of word = (1, 4, 7, 4, 4);
  332. var
  333.   Font : word;
  334.   ViewInfo : ViewPortType;
  335.   Ch : char;
  336. begin
  337.   for Font := 0 to 4 do
  338.   begin
  339.     MainWindow(Fonts[Font]+' character set');
  340.     GetViewSettings(ViewInfo);
  341.     with ViewInfo do
  342.     begin
  343.       SetTextJustify(LeftText, TopText);
  344.       MoveTo(2, 3);
  345.       if Font = DefaultFont then
  346.         begin
  347.           SetTextStyle(Font, HorizDir, 1);
  348.           Ch := #0;
  349.           repeat
  350.             OutText(Ch);
  351.             if (GetX + TextWidth('M')) > (x2-x1) then
  352.               MoveTo(2, GetY + TextHeight('M')+3);
  353.             Ch := Succ(Ch);
  354.           until (Ch >= #255);
  355.         end
  356.       else
  357.         begin
  358.           if MaxY < 200 then
  359.             SetTextStyle(Font, HorizDir, CGASizes[Font])
  360.           else
  361.             SetTextStyle(Font, HorizDir, NormSizes[Font]);
  362.           Ch := '!';
  363.           repeat
  364.             OutText(Ch);
  365.             if (GetX + TextWidth('M')) > (x2-x1) then
  366.               MoveTo(2, GetY + TextHeight('M')+3);
  367.             Ch := Succ(Ch);
  368.           until (Ord(Ch) = Ord('~')+1);
  369.         end;
  370.     end; { with }
  371.     WaitToGo;
  372.   end; { for loop }
  373. end; { TextDump }
  374.  
  375. procedure LineToPlay;
  376. { Demonstrate MoveTo and LineTo commands }
  377. const
  378.   MaxPoints = 15;
  379. var
  380.   Points     : array[0..MaxPoints] of PointType;
  381.   ViewInfo   : ViewPortType;
  382.   I, J       : integer;
  383.   CenterX    : integer;   { The center point of the circle }
  384.   CenterY    : integer;
  385.   Radius     : word;
  386.   StepAngle  : word;
  387.   Xasp, Yasp : word;
  388.   Radians    : real;
  389.  
  390. function AdjAsp(Value : integer) : integer;
  391. { Adjust a value for the aspect ratio of the device }
  392. begin
  393.   AdjAsp := (LongInt(Value) * Xasp) div Yasp;
  394. end; { AdjAsp }
  395.  
  396. begin
  397.   MainWindow('MoveTo, LineTo demonstration');
  398.   GetAspectRatio(Xasp, Yasp);
  399.   GetViewSettings(ViewInfo);
  400.   with ViewInfo do
  401.   begin
  402.     CenterX := (x2-x1) div 2;
  403.     CenterY := (y2-y1) div 2;
  404.     Radius := CenterY;
  405.     while (CenterY+AdjAsp(Radius)) < (y2-y1)-20 do
  406.       Inc(Radius);
  407.   end;
  408.   StepAngle := 360 div MaxPoints;
  409.   for I := 0 to MaxPoints - 1 do
  410.   begin
  411.     Radians := (StepAngle * I) * Pi / 180;
  412.     Points[I].X := CenterX + round(Cos(Radians) * Radius);
  413.     Points[I].Y := CenterY - AdjAsp(round(Sin(Radians) * Radius));
  414.   end;
  415.   Circle(CenterX, CenterY, Radius);
  416.   for I := 0 to MaxPoints - 1 do
  417.   begin
  418.     for J := I to MaxPoints - 1 do
  419.     begin
  420.       MoveTo(Points[I].X, Points[I].Y);
  421.       LineTo(Points[J].X, Points[J].Y);
  422.     end;
  423.   end;
  424.   WaitToGo;
  425. end; { LineToPlay }
  426.  
  427. procedure LineRelPlay;
  428. { Demonstrate MoveRel and LineRel commands }
  429. const
  430.   MaxPoints = 12;
  431. var
  432.   Poly     : array[1..MaxPoints] of PointType; { Stores a polygon for filling }
  433.   CurrPort : ViewPortType;
  434.  
  435. procedure DrawTesseract;
  436. { Draw a Tesseract on the screen with relative move and
  437.   line drawing commands, also create a polygon for filling }
  438. const
  439.   CheckerBoard : FillPatternType = (0, $10, $28, $44, $28, $10, 0, 0);
  440. var
  441.   X, Y, W, H   : integer;
  442.  
  443. begin
  444.   GetViewSettings(CurrPort);
  445.   with CurrPort do
  446.   begin
  447.     W := (x2-x1) div 9;
  448.     H := (y2-y1) div 8;
  449.     X := ((x2-x1) div 2) - round(2.5 * W);
  450.     Y := ((y2-y1) div 2) - (3 * H);
  451.  
  452.     { Border around viewport is outer part of polygon }
  453.     Poly[1].X := 0;     Poly[1].Y := 0;
  454.     Poly[2].X := x2-x1; Poly[2].Y := 0;
  455.     Poly[3].X := x2-x1; Poly[3].Y := y2-y1;
  456.     Poly[4].X := 0;     Poly[4].Y := y2-y1;
  457.     Poly[5].X := 0;     Poly[5].Y := 0;
  458.     MoveTo(X, Y);
  459.  
  460.     { Grab the whole in the polygon as we draw }
  461.     MoveRel(0, H);      Poly[6].X := GetX;  Poly[6].Y := GetY;
  462.     MoveRel(W, -H);     Poly[7].X := GetX;  Poly[7].Y := GetY;
  463.     MoveRel(4*W, 0);    Poly[8].X := GetX;  Poly[8].Y := GetY;
  464.     MoveRel(0, 5*H);    Poly[9].X := GetX;  Poly[9].Y := GetY;
  465.     MoveRel(-W, H);     Poly[10].X := GetX; Poly[10].Y := GetY;
  466.     MoveRel(-4*W, 0);   Poly[11].X := GetX; Poly[11].Y := GetY;
  467.     MoveRel(0, -5*H);   Poly[12].X := GetX; Poly[12].Y := GetY;
  468.  
  469.     { Fill the polygon with a user defined fill pattern }
  470.     SetFillPattern(CheckerBoard, MaxColor);
  471.     FillPoly(12, Poly);
  472.  
  473.     MoveRel(W, -H);
  474.     LineRel(0, 5*H);   LineRel(2*W, 0);    LineRel(0, -3*H);
  475.     LineRel(W, -H);    LineRel(0, 5*H);    MoveRel(0, -5*H);
  476.     LineRel(-2*W, 0);  LineRel(0, 3*H);    LineRel(-W, H);
  477.     MoveRel(W, -H);    LineRel(W, 0);      MoveRel(0, -2*H);
  478.     LineRel(-W, 0);
  479.  
  480.     { Flood fill the center }
  481.     FloodFill((x2-x1) div 2, (y2-y1) div 2, MaxColor);
  482.   end;
  483. end; { DrawTesseract }
  484.  
  485. begin
  486.   MainWindow('LineRel / MoveRel demonstration');
  487.   GetViewSettings(CurrPort);
  488.   with CurrPort do
  489.     { Move the viewport out 1 pixel from each end }
  490.     SetViewPort(x1-1, y1-1, x2+1, y2+1, ClipOn);
  491.   DrawTesseract;
  492.   WaitToGo;
  493. end; { LineRelPlay }
  494.  
  495. procedure PiePlay;
  496. { Demonstrate  PieSlice and GetAspectRatio commands }
  497. var
  498.   ViewInfo   : ViewPortType;
  499.   CenterX    : integer;
  500.   CenterY    : integer;
  501.   Radius     : word;
  502.   Xasp, Yasp : word;
  503.   X, Y       : integer;
  504.  
  505. function AdjAsp(Value : integer) : integer;
  506. { Adjust a value for the aspect ratio of the device }
  507. begin
  508.   AdjAsp := (LongInt(Value) * Xasp) div Yasp;
  509. end; { AdjAsp }
  510.  
  511. procedure GetTextCoords(AngleInDegrees, Radius : word; var X, Y : integer);
  512. { Get the coordinates of text for pie slice labels }
  513. var
  514.   Radians : real;
  515. begin
  516.   Radians := AngleInDegrees * Pi / 180;
  517.   X := round(Cos(Radians) * Radius);
  518.   Y := round(Sin(Radians) * Radius);
  519. end; { GetTextCoords }
  520.  
  521. begin
  522.   MainWindow('PieSlice / GetAspectRatio demonstration');
  523.   GetAspectRatio(Xasp, Yasp);
  524.   GetViewSettings(ViewInfo);
  525.   with ViewInfo do
  526.   begin
  527.     CenterX := (x2-x1) div 2;
  528.     CenterY := ((y2-y1) div 2) + 20;
  529.     Radius := (y2-y1) div 3;
  530.     while AdjAsp(Radius) < round((y2-y1) / 3.6) do
  531.       Inc(Radius);
  532.   end;
  533.   SetTextStyle(TriplexFont, HorizDir, 4);
  534.   SetTextJustify(CenterText, TopText);
  535.   OutTextXY(CenterX, 0, 'This is a pie chart!');
  536.  
  537.   SetTextStyle(TriplexFont, HorizDir, 3);
  538.  
  539.   SetFillStyle(SolidFill, RandColor);
  540.   PieSlice(CenterX+10, CenterY-AdjAsp(10), 0, 90, Radius);
  541.   GetTextCoords(45, Radius, X, Y);
  542.   SetTextJustify(LeftText, BottomText);
  543.   OutTextXY(CenterX+10+X+TextWidth('H'), CenterY-AdjAsp(10+Y), '25 %');
  544.  
  545.   SetFillStyle(HatchFill, RandColor);
  546.   PieSlice(CenterX, CenterY, 225, 360, Radius);
  547.   GetTextCoords(293, Radius, X, Y);
  548.   SetTextJustify(LeftText, TopText);
  549.   OutTextXY(CenterX+X+TextWidth('H'), CenterY-AdjAsp(Y), '37.5 %');
  550.  
  551.   SetFillStyle(InterleaveFill, RandColor);
  552.   PieSlice(CenterX-10, CenterY, 135, 225, Radius);
  553.   GetTextCoords(180, Radius, X, Y);
  554.   SetTextJustify(RightText, CenterText);
  555.   OutTextXY(CenterX-10+X-TextWidth('H'), CenterY-AdjAsp(Y), '25 %');
  556.  
  557.   SetFillStyle(WideDotFill, RandColor);
  558.   PieSlice(CenterX, CenterY, 90, 135, Radius);
  559.   GetTextCoords(112, Radius, X, Y);
  560.   SetTextJustify(RightText, BottomText);
  561.   OutTextXY(CenterX+X-TextWidth('H'), CenterY-AdjAsp(Y), '12.5 %');
  562.  
  563.   WaitToGo;
  564. end; { PiePlay }
  565.  
  566. procedure Bar3DPlay;
  567. { Demonstrate Bar3D command }
  568. const
  569.   NumBars   = 7;  { The number of bars drawn }
  570.   BarHeight : array[1..NumBars] of byte = (1, 3, 2, 5, 4, 2, 1);
  571.   YTicks    = 5;  { The number of tick marks on the Y axis }
  572. var
  573.   ViewInfo : ViewPortType;
  574.   H        : word;
  575.   XStep    : real;
  576.   YStep    : real;
  577.   I, J     : integer;
  578.   Depth    : word;
  579.   Color    : word;
  580. begin
  581.   MainWindow('Bar3D / Rectangle demonstration');
  582.   H := 3*TextHeight('M');
  583.   GetViewSettings(ViewInfo);
  584.   SetTextJustify(CenterText, TopText);
  585.   SetTextStyle(TriplexFont, HorizDir, 4);
  586.   OutTextXY(MaxX div 2, 6, 'These are 3D bars !');
  587.   SetTextStyle(DefaultFont, HorizDir, 1);
  588.   with ViewInfo do
  589.     SetViewPort(x1+50, y1+40, x2-50, y2-10, ClipOn);
  590.   GetViewSettings(ViewInfo);
  591.   with ViewInfo do
  592.   begin
  593.     Line(H, H, H, (y2-y1)-H);
  594.     Line(H, (y2-y1)-H, (x2-x1)-H, (y2-y1)-H);
  595.     YStep := ((y2-y1)-(2*H)) / YTicks;
  596.     XStep := ((x2-x1)-(2*H)) / NumBars;
  597.     J := (y2-y1)-H;
  598.     SetTextJustify(CenterText, CenterText);
  599.  
  600.     { Draw the Y axis and ticks marks }
  601.     for I := 0 to Yticks do
  602.     begin
  603.       Line(H div 2, J, H, J);
  604.       OutTextXY(0, J, Int2Str(I));
  605.       J := Round(J-Ystep);
  606.     end;
  607.  
  608.  
  609.     Depth := trunc(0.25 * XStep);    { Calculate depth of bar }
  610.  
  611.     { Draw X axis, bars, and tick marks }
  612.     SetTextJustify(CenterText, TopText);
  613.     J := H;
  614.     for I := 1 to Succ(NumBars) do
  615.     begin
  616.       SetColor(MaxColor);
  617.       Line(J, (y2-y1)-H, J, (y2-y1-3)-(H div 2));
  618.       OutTextXY(J, (y2-y1)-(H div 2), Int2Str(I-1));
  619.       if I <> Succ(NumBars) then
  620.       begin
  621.         Color := RandColor;
  622.         SetFillStyle(I, Color);
  623.         SetColor(Color);
  624.         Bar3D(J, round((y2-y1-H)-(BarHeight[I] * Ystep)),
  625.                  round(J+Xstep-Depth), round((y2-y1)-H-1), Depth, TopOn);
  626.         J := Round(J+Xstep);
  627.       end;
  628.     end;
  629.  
  630.   end;
  631.   WaitToGo;
  632. end; { Bar3DPlay }
  633.  
  634. procedure BarPlay;
  635. { Demonstrate Bar command }
  636. const
  637.   NumBars   = 5;
  638.   BarHeight : array[1..NumBars] of byte = (1, 3, 5, 2, 4);
  639.   Styles    : array[1..NumBars] of byte = (1, 3, 10, 5, 9);
  640. var
  641.   ViewInfo  : ViewPortType;
  642.   BarNum    : word;
  643.   H         : word;
  644.   XStep     : real;
  645.   YStep     : real;
  646.   I, J      : integer;
  647.   Color     : word;
  648. begin
  649.   MainWindow('Bar / Rectangle demonstration');
  650.   H := 3*TextHeight('M');
  651.   GetViewSettings(ViewInfo);
  652.   SetTextJustify(CenterText, TopText);
  653.   SetTextStyle(TriplexFont, HorizDir, 4);
  654.   OutTextXY(MaxX div 2, 6, 'These are 2D bars !');
  655.   SetTextStyle(DefaultFont, HorizDir, 1);
  656.   with ViewInfo do
  657.     SetViewPort(x1+50, y1+30, x2-50, y2-10, ClipOn);
  658.   GetViewSettings(ViewInfo);
  659.   with ViewInfo do
  660.   begin
  661.     Line(H, H, H, (y2-y1)-H);
  662.     Line(H, (y2-y1)-H, (x2-x1)-H, (y2-y1)-H);
  663.     YStep := ((y2-y1)-(2*H)) / NumBars;
  664.     XStep := ((x2-x1)-(2*H)) / NumBars;
  665.     J := (y2-y1)-H;
  666.     SetTextJustify(CenterText, CenterText);
  667.  
  668.     { Draw Y axis with tick marks }
  669.     for I := 0 to NumBars do
  670.     begin
  671.       Line(H div 2, J, H, J);
  672.       OutTextXY(0, J, Int2Str(i));
  673.       J := Round(J-Ystep);
  674.     end;
  675.  
  676.     { Draw X axis, bars, and tick marks }
  677.     J := H;
  678.     SetTextJustify(CenterText, TopText);
  679.     for I := 1 to Succ(NumBars) do
  680.     begin
  681.       SetColor(MaxColor);
  682.       Line(J, (y2-y1)-H, J, (y2-y1-3)-(H div 2));
  683.       OutTextXY(J, (y2-y1)-(H div 2), Int2Str(I));
  684.       if I <> Succ(NumBars) then
  685.       begin
  686.         Color := RandColor;
  687.         SetFillStyle(Styles[I], Color);
  688.         SetColor(Color);
  689.         Bar(J, round((y2-y1-H)-(BarHeight[I] * Ystep)), round(J+Xstep), (y2-y1)-H-1);
  690.         Rectangle(J, round((y2-y1-H)-(BarHeight[I] * Ystep)), round(J+Xstep), (y2-y1)-H-1);
  691.       end;
  692.       J := Round(J+Xstep);
  693.     end;
  694.  
  695.   end;
  696.   WaitToGo;
  697. end; { BarPlay }
  698.  
  699. procedure CirclePlay;
  700. { Draw random circles on the screen }
  701. var
  702.   MaxRadius : word;
  703. begin
  704.   MainWindow('Circle demonstration');
  705.   StatusLine('Esc aborts or press a key');
  706.   MaxRadius := MaxY div 10;
  707.   SetLineStyle(SolidLn, 0, NormWidth);
  708.   repeat
  709.     SetColor(RandColor);
  710.     Circle(Random(MaxX), Random(MaxY), Random(MaxRadius));
  711.   until KeyPressed;
  712.   WaitToGo;
  713. end; { CirclePlay }
  714.  
  715. procedure RandBarPlay;
  716. { Draw random bars on the screen }
  717. var
  718.   MaxWidth  : integer;
  719.   MaxHeight : integer;
  720.   ViewInfo  : ViewPortType;
  721.   Color     : word;
  722. begin
  723.   MainWindow('Random Bars');
  724.   StatusLine('Esc aborts or press a key');
  725.   GetViewSettings(ViewInfo);
  726.   with ViewInfo do
  727.   begin
  728.     MaxWidth := x2-x1;
  729.     MaxHeight := y2-y1;
  730.   end;
  731.   repeat
  732.     Color := RandColor;
  733.     SetColor(Color);
  734.     SetFillStyle(Random(CloseDotFill)+1, Color);
  735.     Bar3D(Random(MaxWidth), Random(MaxHeight),
  736.           Random(MaxWidth), Random(MaxHeight), 0, TopOff);
  737.   until KeyPressed;
  738.   WaitToGo;
  739. end; { RandBarPlay }
  740.  
  741. procedure ArcPlay;
  742. { Draw random arcs on the screen }
  743. var
  744.   MaxRadius : word;
  745.   EndAngle : word;
  746.   ArcInfo : ArcCoordsType;
  747. begin
  748.   MainWindow('Arc / GetArcCoords demonstration');
  749.   StatusLine('Esc aborts or press a key');
  750.   MaxRadius := MaxY div 10;
  751.   repeat
  752.     SetColor(RandColor);
  753.     EndAngle := Random(360);
  754.     SetLineStyle(SolidLn, 0, NormWidth);
  755.     Arc(Random(MaxX), Random(MaxY), Random(EndAngle), EndAngle, Random(MaxRadius));
  756.     GetArcCoords(ArcInfo);
  757.     with ArcInfo do
  758.     begin
  759.       Line(X, Y, XStart, YStart);
  760.       Line(X, Y, Xend, Yend);
  761.     end;
  762.   until KeyPressed;
  763.   WaitToGo;
  764. end; { ArcPlay }
  765.  
  766. procedure PutPixelPlay;
  767. { Demonstrate the PutPixel and GetPixel commands }
  768. const
  769.   Seed   = 1962; { A seed for the random number generator }
  770.   NumPts = 2000; { The number of pixels plotted }
  771.   Esc    = #27;
  772. var
  773.   I : word;
  774.   X, Y, Color : word;
  775.   XMax, YMax  : integer;
  776.   ViewInfo    : ViewPortType;
  777. begin
  778.   MainWindow('PutPixel / GetPixel demonstration');
  779.   StatusLine('Esc aborts or press a key...');
  780.  
  781.   GetViewSettings(ViewInfo);
  782.   with ViewInfo do
  783.   begin
  784.     XMax := (x2-x1-1);
  785.     YMax := (y2-y1-1);
  786.   end;
  787.  
  788.   while not KeyPressed do
  789.   begin
  790.     { Plot random pixels }
  791.     RandSeed := Seed;
  792.     I := 0;
  793.     while (not KeyPressed) and (I < NumPts) do
  794.     begin
  795.       Inc(I);
  796.       PutPixel(Random(XMax)+1, Random(YMax)+1, RandColor);
  797.     end;
  798.  
  799.     { Erase pixels }
  800.     RandSeed := Seed;
  801.     I := 0;
  802.     while (not KeyPressed) and (I < NumPts) do
  803.     begin
  804.       Inc(I);
  805.       X := Random(XMax)+1;
  806.       Y := Random(YMax)+1;
  807.       Color := GetPixel(X, Y);
  808.       if Color = RandColor then
  809.         PutPixel(X, Y, 0);
  810.     end;
  811.   end;
  812.   WaitToGo;
  813. end; { PutPixelPlay }
  814.  
  815. procedure PutImagePlay;
  816. { Demonstrate the GetImage and PutImage commands }
  817.  
  818. const
  819.   r  = 20;
  820.   StartX = 100;
  821.   StartY = 50;
  822.  
  823. var
  824.   CurPort : ViewPortType;
  825.  
  826. procedure MoveSaucer(var X, Y : integer; Width, Height : integer);
  827. var
  828.   Step : integer;
  829. begin
  830.   Step := Random(2*r);
  831.   if Odd(Step) then
  832.     Step := -Step;
  833.   X := X + Step;
  834.   Step := Random(r);
  835.   if Odd(Step) then
  836.     Step := -Step;
  837.   Y := Y + Step;
  838.  
  839.   { Make saucer bounce off viewport walls }
  840.   with CurPort do
  841.   begin
  842.     if (x1 + X + Width - 1 > x2) then
  843.       X := x2-x1 - Width + 1
  844.     else
  845.       if (X < 0) then
  846.         X := 0;
  847.     if (y1 + Y + Height - 1 > y2) then
  848.       Y := y2-y1 - Height + 1
  849.     else
  850.       if (Y < 0) then
  851.         Y := 0;
  852.   end;
  853. end; { MoveSaucer }
  854.  
  855. var
  856.   Pausetime : word;
  857.   Saucer    : pointer;
  858.   X, Y      : integer;
  859.   ulx, uly  : word;
  860.   lrx, lry  : word;
  861.   Size      : word;
  862.   I         : word;
  863. begin
  864.   ClearDevice;
  865.   FullPort;
  866.  
  867.   { PaintScreen }
  868.   ClearDevice;
  869.   MainWindow('GetImage / PutImage Demonstration');
  870.   StatusLine('Esc aborts or press a key...');
  871.   GetViewSettings(CurPort);
  872.  
  873.   { DrawSaucer }
  874.   Ellipse(StartX, StartY, 0, 360, r, (r div 3)+2);
  875.   Ellipse(StartX, StartY-4, 190, 357, r, r div 3);
  876.   Line(StartX+7, StartY-6, StartX+10, StartY-12);
  877.   Circle(StartX+10, StartY-12, 2);
  878.   Line(StartX-7, StartY-6, StartX-10, StartY-12);
  879.   Circle(StartX-10, StartY-12, 2);
  880.   SetFillStyle(SolidFill, MaxColor);
  881.   FloodFill(StartX+1, StartY+4, GetColor);
  882.  
  883.   { ReadSaucerImage }
  884.   ulx := StartX-(r+1);
  885.   uly := StartY-14;
  886.   lrx := StartX+(r+1);
  887.   lry := StartY+(r div 3)+3;
  888.  
  889.   Size := ImageSize(ulx, uly, lrx, lry);
  890.   GetMem(Saucer, Size);
  891.   GetImage(ulx, uly, lrx, lry, Saucer^);
  892.   PutImage(ulx, uly, Saucer^, XORput);               { erase image }
  893.  
  894.   { Plot some "stars" }
  895.   for I := 1 to 1000 do
  896.     PutPixel(Random(MaxX), Random(MaxY), RandColor);
  897.   X := MaxX div 2;
  898.   Y := MaxY div 2;
  899.   PauseTime := 70;
  900.  
  901.   { Move the saucer around }
  902.   repeat
  903.     PutImage(X, Y, Saucer^, XORput);                 { draw image }
  904.     Delay(PauseTime);
  905.     PutImage(X, Y, Saucer^, XORput);                 { erase image }
  906.     MoveSaucer(X, Y, lrx - ulx + 1, lry - uly + 1);  { width/height }
  907.   until KeyPressed;
  908.   FreeMem(Saucer, size);
  909.   WaitToGo;
  910. end; { PutImagePlay }
  911.  
  912. procedure PolyPlay;
  913. { Draw random polygons with random fill styles on the screen }
  914. const
  915.   MaxPts = 5;
  916. type
  917.   PolygonType = array[1..MaxPts] of PointType;
  918. var
  919.   Poly : PolygonType;
  920.   I, Color : word;
  921. begin
  922.   MainWindow('FillPoly demonstration');
  923.   StatusLine('Esc aborts or press a key...');
  924.   repeat
  925.     Color := RandColor;
  926.     SetFillStyle(Random(11)+1, Color);
  927.     SetColor(Color);
  928.     for I := 1 to MaxPts do
  929.       with Poly[I] do
  930.       begin
  931.         X := Random(MaxX);
  932.         Y := Random(MaxY);
  933.       end;
  934.     FillPoly(MaxPts, Poly);
  935.   until KeyPressed;
  936.   WaitToGo;
  937. end; { PolyPlay }
  938.  
  939. procedure FillStylePlay;
  940. { Display all of the predefined fill styles available }
  941. var
  942.   Style    : word;
  943.   Width    : word;
  944.   Height   : word;
  945.   X, Y     : word;
  946.   I, J     : word;
  947.   ViewInfo : ViewPortType;
  948.  
  949. procedure DrawBox(X, Y : word);
  950. begin
  951.   SetFillStyle(Style, MaxColor);
  952.   with ViewInfo do
  953.     Bar(X, Y, X+Width, Y+Height);
  954.   Rectangle(X, Y, X+Width, Y+Height);
  955.   OutTextXY(X+(Width div 2), Y+Height+4, Int2Str(Style));
  956.   Inc(Style);
  957. end; { DrawBox }
  958.  
  959. begin
  960.   MainWindow('Pre-defined fill styles');
  961.   GetViewSettings(ViewInfo);
  962.   with ViewInfo do
  963.   begin
  964.     Width := 2 * ((x2+1) div 13);
  965.     Height := 2 * ((y2-10) div 10);
  966.   end;
  967.   X := Width div 2;
  968.   Y := Height div 2;
  969.   Style := 0;
  970.   for J := 1 to 3 do
  971.   begin
  972.     for I := 1 to 4 do
  973.     begin
  974.       DrawBox(X, Y);
  975.       Inc(X, (Width div 2) * 3);
  976.     end;
  977.     X := Width div 2;
  978.     Inc(Y, (Height div 2) * 3);
  979.   end;
  980.   SetTextJustify(LeftText, TopText);
  981.   WaitToGo;
  982. end; { FillStylePlay }
  983.  
  984. procedure FillPatternPlay;
  985. { Display some user defined fill patterns }
  986. const
  987.   Patterns : array[0..11] of FillPatternType = (
  988.   ($AA, $55, $AA, $55, $AA, $55, $AA, $55),
  989.   ($33, $33, $CC, $CC, $33, $33, $CC, $CC),
  990.   ($F0, $F0, $F0, $F0, $F, $F, $F, $F),
  991.   (0, $10, $28, $44, $28, $10, 0, 0),
  992.   (0, $70, $20, $27, $25, $27, $4, $4),
  993.   (0, 0, 0, $18, $18, 0, 0, 0),
  994.   (0, 0, $3C, $3C, $3C, $3C, 0, 0),
  995.   (0, $7E, $7E, $7E, $7E, $7E, $7E, 0),
  996.   (0, 0, $22, $8, 0, $22, $1C, 0),
  997.   ($FF, $7E, $3C, $18, $18, $3C, $7E, $FF),
  998.   (0, $10, $10, $7C, $10, $10, 0, 0),
  999.   (0, $42, $24, $18, $18, $24, $42, 0));
  1000. var
  1001.   Style    : word;
  1002.   Width    : word;
  1003.   Height   : word;
  1004.   X, Y     : word;
  1005.   I, J     : word;
  1006.   ViewInfo : ViewPortType;
  1007.  
  1008. procedure DrawBox(X, Y : word);
  1009. begin
  1010.   SetFillPattern(Patterns[Style], MaxColor);
  1011.   with ViewInfo do
  1012.     Bar(X, Y, X+Width, Y+Height);
  1013.   Rectangle(X, Y, X+Width, Y+Height);
  1014.   Inc(Style);
  1015. end; { DrawBox }
  1016.  
  1017. begin
  1018.   MainWindow('User defined fill styles');
  1019.   GetViewSettings(ViewInfo);
  1020.   with ViewInfo do
  1021.   begin
  1022.     Width := 2 * ((x2+1) div 13);
  1023.     Height := 2 * ((y2-10) div 10);
  1024.   end;
  1025.   X := Width div 2;
  1026.   Y := Height div 2;
  1027.   Style := 0;
  1028.   for J := 1 to 3 do
  1029.   begin
  1030.     for I := 1 to 4 do
  1031.     begin
  1032.       DrawBox(X, Y);
  1033.       Inc(X, (Width div 2) * 3);
  1034.     end;
  1035.     X := Width div 2;
  1036.     Inc(Y, (Height div 2) * 3);
  1037.   end;
  1038.   SetTextJustify(LeftText, TopText);
  1039.   WaitToGo;
  1040. end; { FillPatternPlay }
  1041.  
  1042. procedure ColorPlay;
  1043. { Display all of the colors available for the current driver and mode }
  1044. var
  1045.   Color    : word;
  1046.   Width    : word;
  1047.   Height   : word;
  1048.   X, Y     : word;
  1049.   I, J     : word;
  1050.   ViewInfo : ViewPortType;
  1051.  
  1052. procedure DrawBox(X, Y : word);
  1053. begin
  1054.   SetFillStyle(SolidFill, Color);
  1055.   SetColor(Color);
  1056.   with ViewInfo do
  1057.     Bar(X, Y, X+Width, Y+Height);
  1058.   Rectangle(X, Y, X+Width, Y+Height);
  1059.   Color := GetColor;
  1060.   if Color = 0 then
  1061.   begin
  1062.     SetColor(MaxColor);
  1063.     Rectangle(X, Y, X+Width, Y+Height);
  1064.   end;
  1065.   OutTextXY(X+(Width div 2), Y+Height+4, Int2Str(Color));
  1066.   Color := Succ(Color) mod (MaxColor + 1);
  1067. end; { DrawBox }
  1068.  
  1069. begin
  1070.   MainWindow('Color demonstration');
  1071.   Color := 1;
  1072.   GetViewSettings(ViewInfo);
  1073.   with ViewInfo do
  1074.   begin
  1075.     Width := 2 * ((x2+1) div 16);
  1076.     Height := 2 * ((y2-10) div 10);
  1077.   end;
  1078.   X := Width div 2;
  1079.   Y := Height div 2;
  1080.   for J := 1 to 3 do
  1081.   begin
  1082.     for I := 1 to 5 do
  1083.     begin
  1084.       DrawBox(X, Y);
  1085.       Inc(X, (Width div 2) * 3);
  1086.     end;
  1087.     X := Width div 2;
  1088.     Inc(Y, (Height div 2) * 3);
  1089.   end;
  1090.   WaitToGo;
  1091. end; { ColorPlay }
  1092.  
  1093. procedure PalettePlay;
  1094. { Demonstrate the use of the SetPalette command }
  1095. const
  1096.   XBars = 15;
  1097.   YBars = 10;
  1098. var
  1099.   I, J     : word;
  1100.   X, Y     : word;
  1101.   Color    : word;
  1102.   ViewInfo : ViewPortType;
  1103.   Width    : word;
  1104.   Height   : word;
  1105.   OldPal   : PaletteType;
  1106. begin
  1107.   GetPalette(OldPal);
  1108.   MainWindow('Palette demonstration');
  1109.   StatusLine('Press any key...');
  1110.   GetViewSettings(ViewInfo);
  1111.   with ViewInfo do
  1112.   begin
  1113.     Width := (x2-x1) div XBars;
  1114.     Height := (y2-y1) div YBars;
  1115.   end;
  1116.   X := 0; Y := 0;
  1117.   Color := 0;
  1118.   for J := 1 to YBars do
  1119.   begin
  1120.     for I := 1 to XBars do
  1121.     begin
  1122.       SetFillStyle(SolidFill, Color);
  1123.       Bar(X, Y, X+Width, Y+Height);
  1124.       Inc(X, Width+1);
  1125.       Inc(Color);
  1126.       Color := Color mod (MaxColor+1);
  1127.     end;
  1128.     X := 0;
  1129.     Inc(Y, Height+1);
  1130.   end;
  1131.   repeat
  1132.     SetPalette(Random(GetMaxColor + 1), Random(65));
  1133.   until KeyPressed;
  1134.   SetAllPalette(OldPal);
  1135.   WaitToGo;
  1136. end; { PalettePlay }
  1137.  
  1138. procedure CrtModePlay;
  1139. { Demonstrate the use of RestoreCrtMode and SetGraphMode }
  1140. var
  1141.   ViewInfo : ViewPortType;
  1142.   Ch       : char;
  1143. begin
  1144.   MainWindow('SetGraphMode / RestoreCrtMode demo');
  1145.   GetViewSettings(ViewInfo);
  1146.   SetTextJustify(CenterText, CenterText);
  1147.   with ViewInfo do
  1148.   begin
  1149.     OutTextXY((x2-x1) div 2, (y2-y1) div 2, 'Now you are in graphics mode');
  1150.     StatusLine('Press any key for text mode...');
  1151.     repeat until KeyPressed;
  1152.     Ch := ReadKey;
  1153.     RestoreCrtmode;
  1154.     Writeln('Now you are in text mode.');
  1155.     Write('Press any key to go back to graphics...');
  1156.     repeat until KeyPressed;
  1157.     Ch := ReadKey;
  1158.     SetGraphMode(GetGraphMode);
  1159.     MainWindow('SetGraphMode / RestoreCrtMode demo');
  1160.     SetTextJustify(CenterText, CenterText);
  1161.     OutTextXY((x2-x1) div 2, (y2-y1) div 2, 'Back in graphics mode...');
  1162.   end;
  1163.   WaitToGo;
  1164. end; { CrtModePlay }
  1165.  
  1166. procedure LineStylePlay;
  1167. { Demonstrate the predefined line styles available }
  1168. var
  1169.   Style    : word;
  1170.   Step     : word;
  1171.   X, Y     : word;
  1172.   ViewInfo : ViewPortType;
  1173.  
  1174. begin
  1175.   ClearDevice;
  1176.   DefaultColors;
  1177.   MainWindow('Pre-defined line styles');
  1178.   GetViewSettings(ViewInfo);
  1179.   with ViewInfo do
  1180.   begin
  1181.     X := 35;
  1182.     Y := 10;
  1183.     Step := (x2-x1) div 11;
  1184.     SetTextJustify(LeftText, TopText);
  1185.     OutTextXY(X, Y, 'NormWidth');
  1186.     SetTextJustify(CenterText, TopText);
  1187.     for Style := 0 to 3 do
  1188.     begin
  1189.       SetLineStyle(Style, 0, NormWidth);
  1190.       Line(X, Y+20, X, Y2-40);
  1191.       OutTextXY(X, Y2-30, Int2Str(Style));
  1192.       Inc(X, Step);
  1193.     end;
  1194.     Inc(X, 2*Step);
  1195.     SetTextJustify(LeftText, TopText);
  1196.     OutTextXY(X, Y, 'ThickWidth');
  1197.     SetTextJustify(CenterText, TopText);
  1198.     for Style := 0 to 3 do
  1199.     begin
  1200.       SetLineStyle(Style, 0, ThickWidth);
  1201.       Line(X, Y+20, X, Y2-40);
  1202.       OutTextXY(X, Y2-30, Int2Str(Style));
  1203.       Inc(X, Step);
  1204.     end;
  1205.   end;
  1206.   SetTextJustify(LeftText, TopText);
  1207.   WaitToGo;
  1208. end; { LineStylePlay }
  1209.  
  1210. procedure UserLineStylePlay;
  1211. { Demonstrate user defined line styles }
  1212. var
  1213.   Style    : word;
  1214.   X, Y, I  : word;
  1215.   ViewInfo : ViewPortType;
  1216. begin
  1217.   MainWindow('User defined line styles');
  1218.   GetViewSettings(ViewInfo);
  1219.   with ViewInfo do
  1220.   begin
  1221.     X := 4;
  1222.     Y := 10;
  1223.     Style := 0;
  1224.     I := 0;
  1225.     while X < X2-4 do
  1226.     begin
  1227.       {$B+}
  1228.       Style := Style or (1 shl (I mod 16));
  1229.       {$B-}
  1230.       SetLineStyle(UserBitLn, Style, NormWidth);
  1231.       Line(X, Y, X, (y2-y1)-Y);
  1232.       Inc(X, 5);
  1233.       Inc(I);
  1234.       if Style = 65535 then
  1235.       begin
  1236.         I := 0;
  1237.         Style := 0;
  1238.       end;
  1239.     end;
  1240.   end;
  1241.   WaitToGo;
  1242. end; { UserLineStylePlay }
  1243.  
  1244. procedure SayGoodbye;
  1245. { Say goodbye and then exit the program }
  1246. var
  1247.   ViewInfo : ViewPortType;
  1248. begin
  1249.   MainWindow('');
  1250.   GetViewSettings(ViewInfo);
  1251.   SetTextStyle(TriplexFont, HorizDir, 4);
  1252.   SetTextJustify(CenterText, CenterText);
  1253.   with ViewInfo do
  1254.     OutTextXY((x2-x1) div 2, (y2-y1) div 2, 'That''s all folks!');
  1255.   StatusLine('Press any key to quit...');
  1256.   repeat until KeyPressed;
  1257. end; { SayGoodbye }
  1258.  
  1259. begin { program body }
  1260.   Initialize;
  1261.   ReportStatus;
  1262.   ColorPlay;
  1263.   { PalettePlay only intended to work on these drivers: }
  1264.   if (GraphDriver = EGA) or
  1265.      (GraphDriver = EGA64) or
  1266.      (GraphDriver = VGA) then
  1267.     PalettePlay;
  1268.   PutPixelPlay;
  1269.   PutImagePlay;
  1270.   RandBarPlay;
  1271.   BarPlay;
  1272.   Bar3DPlay;
  1273.   ArcPlay;
  1274.   CirclePlay;
  1275.   PiePlay;
  1276.   LineToPlay;
  1277.   LineRelPlay;
  1278.   LineStylePlay;
  1279.   UserLineStylePlay;
  1280.   TextDump;
  1281.   TextPlay;
  1282.   CrtModePlay;
  1283.   FillStylePlay;
  1284.   FillPatternPlay;
  1285.   PolyPlay;
  1286.   SayGoodbye;
  1287.   CloseGraph;
  1288. end.
  1289.