home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l045 / 2.ddi / TGDEMO.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-12-23  |  44.0 KB  |  1,648 lines

  1. (********************************************************************)
  2. (*                         GRAPHIX TOOLBOX 4.0                      *)
  3. (*       Copyright (c) 1985, 87 by  Borland International, Inc.     *)
  4. (*                                                                  *)
  5. (*                        Demonstration program                     *)
  6. (********************************************************************)
  7.  
  8. program TurboGraphicsDemo;
  9.  
  10. {$I Float.inc}  { Determines what type Float means. }
  11.  
  12. uses
  13.   Dos, Crt, GDriver, GKernel, GWindow, GShell;
  14.  
  15. procedure Delay(N : Float);
  16. var
  17.   I : Float;
  18.   J : integer;
  19.   Ch : char;
  20.   Quit : boolean;
  21.  
  22. begin
  23.   I := 0;
  24.   Ch := ' ';
  25.   repeat
  26.     I := I + 1;
  27.     Quit := false;
  28.     if KeyPressed then
  29.     begin
  30.       Ch := ReadKey;
  31.       Quit := (Ch = ^C);
  32.       if (Ch = '') and KeyPressed then
  33.       begin
  34.         Ch := ReadKey;
  35.         Quit := (Ch = 'O');
  36.         Ch := ' ';
  37.       end;
  38.     end;
  39.     if Quit then
  40.     begin
  41.       LeaveGraphic;
  42.       Halt;
  43.     end;
  44.   until (Ch = ^M) or (I >= N);
  45. end; { Delay }
  46.  
  47. procedure WaitReturn(N : Float);
  48. begin
  49.   Write('Hit RETURN to continue');
  50.   Delay(N);
  51. end; { WaitReturn }
  52.  
  53. procedure ClearEol(I : integer);
  54. begin
  55.   GotoXY(1, I);
  56.   Write('                                                                               ');
  57. end; { ClearEol }
  58.  
  59. procedure Msg(S : WrkString);
  60. begin
  61.   ClearEol(25);
  62.   GotoXY(1, 25);
  63.   Write(S);
  64.   Delay(750);
  65. end; { Msg }
  66.  
  67. procedure SelectIBM;
  68. begin
  69.   SelectWorld(2);
  70.   SelectWindow(10);
  71. end; { SelectIBM }
  72.  
  73. procedure DefineWindowIBM(I, X1, Y1, X2, Y2 : integer);
  74. begin
  75.   DefineWindow(I, Trunc(X1 / 79 * XMaxGlb + 0.001), Trunc(Y1 / 199 * YMaxGlb + 0.001),
  76.                   Trunc(X2 / 79 * XMaxGlb + 0.5), Trunc(Y2 / 199 * YMaxGlb + 0.5));
  77. end; { DefineWindow }
  78.  
  79. procedure MoveHorIBM(Delta : integer; Fill : boolean);
  80. var
  81.   D : integer;
  82. begin
  83.   D := Trunc(abs(Delta) / 79 * XMaxGlb + 0.001);
  84.   if Delta < 0 then
  85.     D := -D;
  86.   MoveHor(D, Fill);
  87. end; { MoveHorIBM }
  88.  
  89. procedure MoveVerIBM(Delta : integer; Fill : boolean);
  90. var
  91.   D : integer;
  92. begin
  93.   D := Trunc(abs(Delta) / 199 * YMaxGlb + 0.001);
  94.   if Delta < 0 then
  95.     D := -D;
  96.   MoveVer(D, Fill);
  97. end; { MoveVerIBM }
  98.  
  99. {----------------------------------------------------------------------------}
  100.  
  101. procedure Intro;
  102. var
  103.   I : integer;
  104. begin
  105.   SetHeaderOff;
  106.   DefineWindowIBM(1, 5, 40, 25, 80);
  107.   DefineWindowIBM(2, 16, 55, 43, 95);
  108.   DefineWindowIBM(4, 15, 60, 43, 135);
  109.   SelectWindow(1);
  110.   DrawBorder;
  111.   SelectIBM;
  112.   DrawTextW(52, 144, 5, 'TURBO');
  113.   StoreWindow(1);
  114.   Delay(500);
  115.   SelectWindow(2);
  116.   SetBackground(0);
  117.   DrawBorder;
  118.   SelectIBM;
  119.   DrawTextW(140, 129, 5, 'GRAPHIX');
  120.   StoreWindow(2);
  121.   Delay(500);
  122.   for I := 1 to 4 do
  123.   begin
  124.     RestoreWindow(1, 0, 0);
  125.     Delay(800);
  126.     RestoreWindow(2, 0, 0);
  127.     Delay(800);
  128.   end;
  129.   for I := 1 to 8 do
  130.   begin
  131.     RestoreWindow(1, Trunc(3 * I * XMaxGlb / 79), Trunc(9 * I * YMaxGlb / 199));
  132.     Delay(500);
  133.     RestoreWindow(2, Trunc(3 * I * XMaxGlb / 79), Trunc(9 * I * YMaxGlb / 199));
  134.     Delay(500);
  135.   end;
  136.   Delay(500);
  137.   SelectWindow(4);
  138.   StoreWindow(4);
  139.   SetBackground(0);
  140.   DrawBorder;
  141.   GotoXY(18, 10);
  142.   WriteLn('GRAPHICS for TURBO PASCAL');
  143.   for I := 2 to 40 do
  144.   begin
  145.     DrawLine(I * 8, 139, 639 - I * 8, 9);
  146.     DrawLine(639 - I * 8, 139, I * 8, 9);
  147.   end;
  148.   Delay(2500);
  149.   RestoreWindow(4, 0, 0);
  150.   InvertScreen;
  151.   SelectScreen(2);
  152.   ClearScreen;
  153.   InvertScreen;
  154.   SetColorBlack;
  155.   SelectIBM;
  156.   DrawTextW(40, 124, 3, 'By');
  157.   DrawTextW(40, 59, 4, 'BORLAND INTERNATIONAL');
  158.   CopyScreen;
  159.   SelectScreen(1);
  160.   Delay(5000);
  161.   DefineWindowIBM(1, 1, 125, 35, 168);
  162.   StoreWindow(1);
  163.   DefineWindowIBM(2, 36, 125, 78, 168);
  164.   StoreWindow(2);
  165.   for I := 1 to Trunc(34 * XMaxGlb / 79) do
  166.   begin
  167.     SelectWindow(1);
  168.     MoveHor(1, false);
  169.     ReDefineWindow(1, X1RefGlb, Y1RefGlb, X2RefGlb - 1, Y2RefGlb);
  170.     SelectWindow(2);
  171.     MoveHor(-1, false);
  172.     ReDefineWindow(2, X1RefGlb + 1, Y1RefGlb, X2RefGlb, Y2RefGlb);
  173.   end;
  174.   SetColorWhite;
  175.   DrawTextW(X1RefGlb - 56, Y1RefGlb + 96, 4, '_');
  176.   SetColorBlack;
  177.   Delay(1000);
  178.   RestoreWindow(1, 0, 0);
  179.   RestoreWindow(2, 0, 0);
  180.   GotoXY(1, 25);
  181.   ClrEOL;
  182.   GotoXY(17, 25);
  183.   Write('Copyright (C) 1985 Borland International, Inc.');
  184.   Delay(3000);
  185.   SetColorWhite;
  186.   SetHeaderOn;
  187. end; { Intro }
  188.  
  189. {----------------------------------------------------------------------------}
  190.  
  191. procedure Simple;
  192. var
  193.   I, J, Rnd : integer;
  194.   Rad : Float;
  195.   Ch : char;
  196.  
  197. procedure DrawPoints;
  198. var
  199.   I : integer;
  200. begin
  201.   SetBackground(0);
  202.   DrawBorder;
  203.   for I := 1 to 250 do
  204.     DrawPoint(Random(640), Random(200));
  205. end; { DrawPoints }
  206.  
  207. procedure DrawLines;
  208. var
  209.   I : integer;
  210. begin
  211.   SetBackground(0);
  212.   DrawBorder;
  213.   for I := 1 to 20 do
  214.     DrawLine(I * 31, 199, 640 - I * 31, 199 - I * 10);
  215. end; { DrawLines }
  216.  
  217. procedure DrawSquares;
  218. var
  219.   I : integer;
  220. begin
  221.   SetBackground(0);
  222.   DrawBorder;
  223.   for I := 1 to 15 do
  224.     DrawSquare(320 - I * 20, 100 - I * 6, 320 + I * 20, 100 + I * 6, false);
  225. end; { DrawSquares }
  226.  
  227. procedure DrawCircles;
  228. var
  229.   I : integer;
  230.   AspectLoc : Float;
  231. begin
  232.   SetBackground(0);
  233.   DrawBorder;
  234.   Rad := 0.8;
  235.   AspectLoc := GetAspect;
  236.   SetAspect(1 / 4.5);
  237.   for I := 1 to 15 do
  238.   begin
  239.     DrawCircle(320, 100, Rad);
  240.     SetAspect((1 + I) / 4.5);
  241.     Rad := Rad - 0.05;
  242.   end;
  243.   SetAspect(AspectLoc);
  244. end; { DrawCircles }
  245.  
  246. procedure DrawPie1;
  247. var
  248.   A : PieArray;
  249.   I : integer;
  250. begin
  251.   SetBackground(0);
  252.   DrawBorder;
  253.   for I := 1 to 5 do
  254.   begin
  255.     A[I].Area := Random + 0.35;
  256.     A[I].Text := '';
  257.   end;
  258.   A[2].Area := -A[2].Area;
  259.   DrawCartPie(320, 100, 500, 100, 1, 1, A, 5, 0, 1);
  260. end; { DrawPie1 }
  261.  
  262. procedure HatchIt;
  263. var
  264.   I, Temp, X1, X2, Y1, Y2 : integer;
  265. begin
  266.   SetBackground(0);
  267.   DrawBorder;
  268.   for I := 1 to 5 do
  269.   begin
  270.     X1 := 100 + Random(500);
  271.     X2 := 100 + Random(500);
  272.     Y1 := 30 + Random(160);
  273.     Y2 := 30 + Random(160);
  274.     if X1 > X2 then
  275.     begin
  276.       Temp := X1;
  277.       X1 := X2;
  278.       X2 := Temp;
  279.     end;
  280.     if Y1 < Y2 then
  281.     begin
  282.       Temp := Y1;
  283.       Y1 := Y2;
  284.       Y2 := Temp;
  285.     end;
  286.     DrawSquare(X1, Y1, X2, Y2, false);
  287.     hatch(X1, Y1, X2, Y2, Random(6) + 5);
  288.   end;
  289. end; { HatchIt }
  290.  
  291. begin { Simple }
  292.   ClearScreen;
  293.   SetHeaderOn;
  294.   DefineWindowIBM(1, 0, 0, 79, 185);
  295.   DefineHeader(1, 'The simple graphics procedures');
  296.   SelectWindow(1);
  297.   SetBackground(90);
  298.   DrawBorder;
  299.   CopyScreen;
  300.   DefineWindowIBM(2, 28, 60, 49, 140);
  301.   SelectWindow(2);
  302.   Msg('  Drawing points   :   DrawPoint');
  303.   DrawPoints;
  304.   MoveVerIBM(-44, true);
  305.   MoveHorIBM(-26, true);
  306.   Delay(1000);
  307.   DefineWindowIBM(3, 28, 60, 49, 140);
  308.   SelectWindow(3);
  309.   Msg('  Drawing Lines   :   DrawLine');
  310.   DrawLines;
  311.   MoveVerIBM(-44, true);
  312.   CopyScreen;
  313.   Delay(1000);
  314.   DefineWindowIBM(4, 28, 60, 49, 140);
  315.   SelectWindow(4);
  316.   Msg('  Drawing squares   :   DrawSquare');
  317.   DrawSquares;
  318.   MoveVerIBM(-44, true);
  319.   MoveHorIBM(26, true);
  320.   Delay(1000);
  321.   DefineWindowIBM(5, 28, 60, 49, 140);
  322.   SelectWindow(5);
  323.   Msg('  Drawing circles   :   DrawCircle');
  324.   DrawCircles;
  325.   MoveVerIBM(40, true);
  326.   MoveHorIBM(26, true);
  327.   Delay(1000);
  328.   DefineWindowIBM(6, 28, 60, 49, 140);
  329.   SelectWindow(6);
  330.   Msg('  Drawing circle segments   :   DrawCircleSegment');
  331.   DrawPie1;
  332.   MoveVerIBM(40, true);
  333.   CopyScreen;
  334.   Delay(1000);
  335.   DefineWindowIBM(7, 28, 60, 49, 140);
  336.   SelectWindow(7);
  337.   Msg('  Hatched squares   :   hatch');
  338.   HatchIt;
  339.   MoveVerIBM(40, true);
  340.   MoveHorIBM(-26, true);
  341.   Delay(1000);
  342.   ClearEol(25);
  343.   for I := 1 to 5 do
  344.   begin
  345.     SelectWindow(2);
  346.     InvertWindow;
  347.     for J := 3 to 7 do
  348.     begin
  349.       SelectWindow(J);
  350.       InvertWindow;
  351.       SelectWindow(J - 1);
  352.       InvertWindow;
  353.     end;
  354.     SelectWindow(7);
  355.     InvertWindow;
  356.   end;
  357.   Msg('              Hit RETURN to continue');
  358.   for I := 2 to 7 do
  359.   begin
  360.     SelectWindow(I);
  361.     InvertWindow;
  362.   end;
  363.   I := 0;
  364.   Ch := ' ';
  365.   repeat
  366.     Rnd := Random(6) + 1;
  367.     SelectWindow(Rnd + 1);
  368.     case Rnd of
  369.       1 : DrawPoints;
  370.       2 : DrawLines;
  371.       3 : DrawSquares;
  372.       4 : DrawCircles;
  373.       5 : DrawPie1;
  374.       6 : HatchIt;
  375.     end;
  376.     InvertWindow;
  377.     I := I + 1;
  378.     if KeyPressed then
  379.       Ch := ReadKey;
  380.   until (Ch = ^M) or (I = 30);
  381. end; { Simple }
  382.  
  383. {----------------------------------------------------------------------------}
  384.  
  385. procedure WindowDemo;
  386. var
  387.   Row, Column, I : integer;
  388.  
  389. procedure WriteSlow(S : WrkString);
  390. var
  391.   I : integer;
  392. begin
  393.   Row := Row + 1;
  394.   GotoXY(17, 5);
  395.   Write(Row:2);
  396.   GotoXY(8, 6 + Row);
  397.   for I := 1 to Length(S) do
  398.   begin
  399.     Write(S[I]);
  400.     GotoXY(28, 5);
  401.     Write(Column + I:2);
  402.     GotoXY(8 + I, 6 + Row);
  403.     Delay(10 + Random(100));
  404.   end;
  405. end; { WriteSlow }
  406.  
  407. begin { WindowDemo }
  408.   ClearScreen;
  409.   SetHeaderOn;
  410.   DefineWindowIBM(1, 0, 0, 79, 190);
  411.   DefineHeader(1, 'Using several windows on one screen');
  412.   SelectWindow(1);
  413.   SetBackground(24);
  414.   DrawBorder;
  415.   DefineWindowIBM(2, 4, 16, 55, 140);
  416.   DefineHeader(2, 'Example:  Editing');
  417.   SelectWindow(2);
  418.   SetBackground(0);
  419.   DrawBorder;
  420.   Column := 0; Row := 0;
  421.   GotoXY(11, 5); Write('Line      Column     file : A:TEST.TXT');
  422.   GotoXY(8, 6);  Write('L----#----#----#----#----#----#----#----#----R');
  423.   GotoXY(8, 7); WriteSlow ('This is a demonstration of the use of');
  424.   GotoXY(8, 8); WriteSlow ('windows within the TURBO GRAPHIX system.  A');
  425.   GotoXY(8, 9); WriteSlow ('window is any defined part of the screen.');
  426.   GotoXY(8, 10); WriteSlow('All further graphics commands refer to that');
  427.   GotoXY(8, 11); WriteSlow('window.  Those parts of the diagram that lie');
  428.   GotoXY(8, 12); WriteSlow('outside the window are not drawn.  Scaling of');
  429.   GotoXY(8, 13); WriteSlow('the diagram is also done by TURBO GRAPHIX,');
  430.   GotoXY(8, 14); WriteSlow('allowing you to draw in natural coordinates.');
  431.   GotoXY(19, 16);
  432.   StoreWindow(2);
  433.   WaitReturn(60000.0);
  434.   DefineWindowIBM(3, 25, 30, 78, 180);
  435.   DefineHeader(3, 'Example:  Chart calculation');
  436.   SelectWindow(3);
  437.   SetBackground(0);
  438.   DrawBorder;
  439.   GotoXY(28, 7);
  440.   Write('        1        2        3        4        5');
  441.   for I := 1 to 12 do
  442.   begin
  443.     GotoXY(28, 7 + I);
  444.     Write(I:2);
  445.   end;
  446.   GotoXY(28, 20); Write('Command ? _________________________________________');
  447.   GotoXY(28, 22); Write('working : sales.clc        free : 85 kByte = 92.3 %');
  448.   GotoXY(40, 9); Write(' S A L E S - M O D E L  1984');
  449.   GotoXY(40, 10); Write(' ===============================');
  450.   GotoXY(32, 12); Write('Production costs     :   1456.35');
  451.   GotoXY(32, 13); Write('Personnel costs      :    145.23');
  452.   GotoXY(32, 14); Write('Sales tax            :    524.12');
  453.   GotoXY(32, 15); Write('--------------------------------');
  454.   GotoXY(32, 16); Write('Subtotal             :   2125.70');
  455.   GotoXY(32, 18); Write('Sold                 :       145');
  456.   Delay(4000);
  457.   GotoXY(39, 20);
  458.   WaitReturn(15000);
  459.   DefineWindowIBM(4, 12, 60, 68, 164);
  460.   DefineHeader(4, 'Example:  Graphics');
  461.   SelectWindow(4);
  462.   SetBackground(0);
  463.   DrawBorder;
  464.   for I := 1 to 85 do
  465.     DrawLine(20 + I * 7, 30, 630 - I * 7, 170);
  466.   GotoXY(29, 20);
  467.   CopyScreen;
  468.   WaitReturn(15000);
  469.   RestoreWindow(2, Trunc(16 * XMaxGlb / 79), Trunc(32 * YMaxGlb / 199));
  470.   SelectWindow(2);
  471.   Delay(2000);
  472.   MoveHorIBM(-16, true);
  473.   MoveVerIBM(-32, true);
  474.   for I := 1 to 11 do
  475.   begin
  476.     GotoXY(8, 6 + I);
  477.     Write('                                              ');
  478.   end;
  479.   Row := 0;
  480.   Column := 0;
  481.   GotoXY(8, 7); WriteSlow('Besides defining the window you can also move');
  482.   GotoXY(8, 8); WriteSlow('it around on the screen.  You can slide');
  483.   GotoXY(8, 9); WriteSlow('windows over other windows or put several of');
  484.   GotoXY(8, 10); WriteSlow('them on top of each other.  A window can');
  485.   GotoXY(8, 11); WriteSlow('also be put into a window memory and be');
  486.   GotoXY(8, 12); WriteSlow('brought back onto the screen as the need');
  487.   GotoXY(8, 13); WriteSlow('arises.  The size of the window memory is');
  488.   GotoXY(8, 14); WriteSlow('limited only by the size of the main memory.');
  489.   GotoXY(19, 16);
  490.   WaitReturn(60000.0);
  491. end; { WindowDemo }
  492.  
  493. {----------------------------------------------------------------------------}
  494. procedure Sier;
  495. const
  496.   N = 4;
  497. var
  498.   I, H, X, Y, X0, Y0 : integer;
  499.   Sec : boolean;
  500.  
  501. procedure Plot;
  502. begin
  503.   if Sec then
  504.     SetColorWhite
  505.   else
  506.     SetColorBlack;
  507.   DrawLine(X, Y, X0, Y0);
  508.   DrawLine(X + 256, Y + 256, X0 + 256, Y0 + 256);
  509.   if Sec then
  510.     SetColorBlack
  511.   else
  512.     SetColorWhite;
  513.   DrawLine(X + 256, Y, X0 + 256, Y0);
  514.   DrawLine(X, Y + 256, X0, Y0 + 256);
  515.   X0 := X;
  516.   Y0 := Y;
  517. end; { Plot }
  518.  
  519. procedure B(I:integer); forward;
  520.  
  521. procedure C(I:integer); forward;
  522.  
  523. procedure D(I:integer); forward;
  524.  
  525. procedure A(I:integer);
  526. begin
  527.   if I > 0 then
  528.   begin
  529.     A(I - 1);
  530.     X := X + H;
  531.     Y := Y - H;
  532.     Plot;
  533.     B(I - 1);
  534.     X := X + 2 * H;
  535.     Plot;
  536.     D(I - 1);
  537.     X := X + H;
  538.     Y := Y + H;
  539.     Plot;
  540.     A(I - 1);
  541.   end;
  542. end; { A }
  543.  
  544. procedure B;
  545. begin
  546.   if I > 0 then
  547.   begin
  548.     B(I - 1);
  549.     X := X - H;
  550.     Y := Y - H;
  551.     Plot;
  552.     C(I - 1);
  553.     Y := Y - 2 * H;
  554.     Plot;
  555.     A(I - 1);
  556.     X := X + H;
  557.     Y := Y - H;
  558.     Plot;
  559.     B(I - 1);
  560.   end;
  561. end; { B }
  562.  
  563. procedure C;
  564. begin
  565.   if I > 0 then
  566.   begin
  567.     C(I - 1);
  568.     X := X - H;
  569.     Y := Y + H;
  570.     Plot;
  571.     D(I - 1);
  572.     X := X - 2 * H;
  573.     Plot;
  574.     B(I - 1);
  575.     X := X - H;
  576.     Y := Y - H;
  577.     Plot;
  578.     C(I - 1);
  579.   end;
  580. end; { C }
  581.  
  582. procedure D;
  583. begin
  584.   if I > 0 then
  585.   begin
  586.     D(I - 1);
  587.     X := X + H;
  588.     Y := Y + H;
  589.     Plot;
  590.     A(I - 1);
  591.     Y := Y + 2 * H;
  592.     Plot;
  593.     C(I - 1);
  594.     X := X - H;
  595.     Y := Y + H;
  596.     Plot;
  597.     D(I - 1);
  598.   end;
  599. end; { D }
  600.  
  601. procedure DoIt;
  602. begin
  603.   I := 3;
  604.   H := 16;
  605.   X0 := 30;
  606.   Y0 := 240;
  607.   repeat
  608.     I := I + 1;
  609.     X0 := X0 - H;
  610.     H := H div 2;
  611.     Y0 := Y0 + H;
  612.     X := X0;
  613.     Y := Y0;
  614.     A(I - 1);
  615.     X := X + H;
  616.     Y := Y - H;
  617.     Plot;
  618.     B(I - 1);
  619.     X := X - H;
  620.     Y := Y - H;
  621.     Plot;
  622.     C(I - 1);
  623.     X := X - H;
  624.     Y := Y + H;
  625.     Plot;
  626.     D(I - 1);
  627.     X := X + H;
  628.     Y := Y + H;
  629.     Plot;
  630.   until I = N;
  631. end; { DoIt }
  632.  
  633. begin  { Sier }
  634.   SetHeaderOn;
  635.   DefineWorld(1, -3, -3, 514, 514);
  636.   SelectWorld(1);
  637.   DefineWindowIBM(2, 0, 0, 39, 99);
  638.   SelectWindow(2);
  639.   InvertWindow;
  640.   DefineWindowIBM(2, 40, 100, 79, 190);
  641.   SelectWindow(2);
  642.   InvertWindow;
  643.   DefineWindowIBM(1, 0, 0, 79, 190);
  644.   DefineHeader(1, 'A Sierpinski curve');
  645.   SelectWindow(1);
  646.   DrawBorder;
  647.   GotoXY(1, 25);
  648.   Write('     The whole screen is the actual window');
  649.   Sec := false;
  650.   DoIt;
  651.   GotoXY(57, 25);
  652.   WaitReturn(15000);
  653.   DefineWindowIBM(1, 20, 40, 59, 159);
  654.   SelectWindow(1);
  655.   SetBackground(0);
  656.   DrawBorder;
  657.   DefineWindowIBM(2, 40, 40, 59, 99);
  658.   SelectWindow(2);
  659.   InvertWindow;
  660.   DefineWindowIBM(2, 20, 100, 39, 159);
  661.   SelectWindow(2);
  662.   InvertWindow;
  663.   SelectWindow(1);
  664.   ClearEol(25);
  665.   GotoXY(1, 25);
  666.   Write('      The same drawing operations in a smaller window');
  667.   Sec := true;
  668.   DoIt;
  669.   GotoXY(57, 25);
  670.   WaitReturn(15000);
  671.   ClearEol(25);
  672.   GotoXY(1, 25);
  673.   Write('   The screen is saved with the SaveScreen procedure, ...');
  674.   SaveScreen('TEST.PIC');
  675.   Delay(1000);
  676.   ClearScreen;
  677.   Delay(1000);
  678.   LoadScreen('TEST.PIC');
  679.   ClearEol(25);
  680.   GotoXY(1, 25);
  681.   Write('     ... and brought up again.');
  682.   GotoXY(57, 25);
  683.   WaitReturn(15000);
  684.   DefineWorld(1, 0, 0, 639, 199);
  685.   SelectWorld(1);
  686.   SelectWindow(1);
  687.   SetColorWhite;
  688. end; { Sier }
  689.  
  690. {----------------------------------------------------------------------------}
  691.  
  692. procedure PieDem;
  693. var
  694.   Sum : Float;
  695.   I, J, N : integer;
  696.   A : PieArray;
  697.  
  698. begin
  699.   ClearScreen;
  700.   SetColorWhite;
  701.   DefineWindowIBM(1, 0, 0, 79, 185);
  702.   DefineWindowIBM(2, 20, 20, 77, 180);
  703.   DefineWindowIBM(3, 28, 60, 59, 150);
  704.   DefineWindowIBM(4, 28, 60, 59, 140);
  705.   DefineWindowIBM(5, 28, 60, 59, 140);
  706.   DefineWindowIBM(6, 28, 60, 59, 140);
  707.   DefineHeader(1, 'Applications of pie charts');
  708.   DefineHeader(2, 'Sales volume');
  709.   DefineHeader(3, 'With text');
  710.   DefineHeader(4, 'With text');
  711.   DefineHeader(5, 'With text and numbers');
  712.   DefineHeader(6, 'No text');
  713.   A[1].Area := 25;
  714.   A[1].Text := 'JAN. ';
  715.   A[2].Area := 17.5;
  716.   A[2].Text := 'FEB. ';
  717.   A[3].Area := 9.6;
  718.   A[3].Text := 'MAR. ';
  719.   A[4].Area := 21;
  720.   A[4].Text := 'APR. ';
  721.   A[5].Area := 35;
  722.   A[5].Text := 'MAY  ';
  723.   N := 5;
  724.   Sum := 0;
  725.   for I := 1 to N do
  726.   begin
  727.     A[I].Area := A[I].Area + 5.35;
  728.     Sum := Sum + A[I].Area;
  729.   end;
  730.   SelectWindow(1);
  731.   DrawBorder;
  732.   GotoXY(24, 5);
  733.   WriteLn('Sales  1985');
  734.   GotoXY(5, 8);
  735.   Write('Amounts in $ (X 1,000,000)');
  736.   GotoXY(40, 8);
  737.   Write('Amounts in percent');
  738.   for I := 1 to N do
  739.   begin
  740.     GotoXY(11, 9 + I);
  741.     WriteLn(A[I].Text, '  ', A[I].Area:3:2, '                            ',
  742.             A[I].Area / Sum * 100:3:2);
  743.   end;
  744.   Msg('  Drawing on the second screen in the background :  SelectScreen');
  745.   SelectScreen(2);
  746.   ClearScreen;
  747.   SelectWindow(2);
  748.   SetBackground(0);
  749.   DrawBorder;
  750.   A[1].Area := -A[1].Area;
  751.   DrawCartPie(300, 100, 390, 73, 1.05, 1.5, A, N, 2, 2);
  752.   ResetWindowStack;
  753.   StoreWindow(2);
  754.   SelectScreen(1);
  755.   RestoreWindow(2, 0, 0);
  756.   Delay(15000);
  757.   CopyScreen;
  758.   Msg('  Variations of the Pie Chart diagram  :  DrawCartPie');
  759.   SetColorBlack;
  760.   SelectWindow(3);
  761.   SetBackground(255);
  762.   DrawBorder;
  763.   A[4].Area := -A[4].Area;
  764.   DrawCartPie(320, 100, 437, 73, 1.05, 1.6, A, N, 1, 1);
  765.   A[4].Area := -A[4].Area;
  766.   MoveVerIBM(-32, true);
  767.   MoveHorIBM(-26, true);
  768.   CopyScreen;
  769.   Delay(1000);
  770.   SelectWindow(4);
  771.   SetBackground(255);
  772.   DrawBorder;
  773.   DrawCartPie(320, 100, 437, 73, 0.75, 1.5, A, N, 1, 1);
  774.   MoveVerIBM(-44, true);
  775.   MoveHorIBM(19, true);
  776.   Delay(1000);
  777.   CopyScreen;
  778.   SelectWindow(5);
  779.   SetBackground(255);
  780.   DrawBorder;
  781.   DrawCartPie(320, 100, 437, 100, 0.7, 1.4, A, N, 2, 1);
  782.   MoveVerIBM(30, true);
  783.   MoveHorIBM(-18, true);
  784.   Delay(1000);
  785.   SelectWindow(6);
  786.   SetBackground(255);
  787.   DrawBorder;
  788.   DrawCartPie(320, 100, 482, 73, 1, 1.5, A, N, 0, 1);
  789.   Delay(1000);
  790.   Delay(15000);
  791.   RestoreWindow(2, 0, 0);
  792.   Delay(15000);
  793.   SetColorWhite;
  794. end; { PieDem }
  795.  
  796. {----------------------------------------------------------------------------}
  797.  
  798. procedure SplineDem;
  799. var
  800.   X, Temp : Float;
  801.   M, Dx, Dy, I, J, N, Lines, Scale : integer;
  802.   X1, Y1, X2, Y2 : integer;
  803.   B, A : PlotArray;
  804. begin
  805.   ClearScreen;
  806.   SetColorWhite;
  807.   GotoXY(50, 25);
  808.   Write('one moment please ....');
  809.   Dx := -8;
  810.   Dy := 7;
  811.   X1 := 3;
  812.   Y1 := 5;
  813.   X2 := 25;
  814.   Y2 := 10;
  815.   Lines := 0;
  816.   Scale := 0;
  817.   N := 12;
  818.   M := 50;
  819.   X := -49;
  820.   DefineWindowIBM(1, 0, 0, 79, 185);
  821.   DefineWindowIBM(2, 30, 20, 70, 164);
  822.   DefineHeader(1, 'A Spline interpolation');
  823.   DefineHeader(2, 'A variation of the diagram');
  824.   X := -49;
  825.   for I := 1 to N do
  826.   begin
  827.     A[I, 1] := I - 1;
  828.     A[I, 2] := Random - 0.5;
  829.     X := X + 7;
  830.   end;
  831.   Spline(A, N, A[2, 1], A[N - 1, 1], B, M);
  832.   FindWorld(1, B, M, 1, 1.08);
  833.   SelectWindow(1);
  834.   ClearEol(25);
  835.   GotoXY(10, 25);
  836.   Write('The given data');
  837.   FindWorld(1, B, M, 1, 1.08);
  838.   SelectWindow(1);
  839.   DrawBorder;
  840.   DrawAxis(Dx, Dy, X1, Y1, X2, Y2, Lines, Scale, false);
  841.   SetLineStyle(1);
  842.   DrawPolygon(A, 2, N - 1, 7, 2, 0);
  843.   SetLineStyle(0);
  844.   SelectIBM;
  845.   DrawTextW(470, 129, 1, ^['7@2   The data');
  846.   DrawTextW(470, 109, 1, '--  The interpolated values');
  847.   GotoXY(50, 25);
  848.   SelectWorld(1);
  849.   SelectWindow(1);
  850.   WaitReturn(15000);
  851.   ClearEol(25);
  852.   GotoXY(10, 25);
  853.   Write('The interpolating Spline function');
  854.   ResetAxis;
  855.   DrawPolygon(B, 1, -M, 0, 0, 0);
  856.   CopyScreen;
  857.   GotoXY(50, 25);
  858.   WaitReturn(15000);
  859.   ClearEol(25);
  860.   GotoXY(10, 25);
  861.   Write('Vertical coordinates exchanged');
  862.   with World[1] do     { Flip the found World vertically }
  863.   begin
  864.     Temp := Y1;
  865.     Y1 := Y2;
  866.     Y2 := Temp;
  867.   end;
  868.   SelectWorld(1);
  869.   SelectWindow(2);
  870.   SetBackground(255);
  871.   SetColorBlack;
  872.   DrawBorder;
  873.   DrawAxis(abs(Dx), abs(Dy), 0, 0, 0, 0, 0, 0, false);
  874.   DrawPolygon(A, 2, N - 1, -2, 2, -1);
  875.   ResetAxis;
  876.   DrawPolygon(B, 1, -M, 0, 0, 0);
  877.   SetColorWhite;
  878.   GotoXY(50, 25);
  879.   WaitReturn(15000);
  880.   ClearEol(25);
  881.   GotoXY(10, 25);
  882.   Write('Moving a window');
  883.   MoveVerIBM(-15, true);
  884.   MoveHorIBM(-30, true);
  885.   MoveVerIBM(35, true);
  886.   MoveHorIBM(35, true);
  887.   MoveVerIBM(-5, true);
  888.   MoveHorIBM(-5, true);
  889.   GotoXY(50, 25);
  890.   WaitReturn(15000);
  891.   ClearEol(25);
  892.   GotoXY(10, 25);
  893.   Write('Inverting a window');
  894.   InvertWindow;
  895.   SetColorWhite;
  896.   GotoXY(50, 25);
  897.   WaitReturn(15000);
  898.   SelectScreen(2);
  899.   ClearEol(25);
  900.   GotoXY(10, 25);
  901.   Write('The reconstruction of the first figure');
  902.   CopyScreen;
  903.   SelectScreen(1);
  904.   GotoXY(50, 25);
  905.   WaitReturn(15000);
  906. end; { SplineDem }
  907.  
  908. {----------------------------------------------------------------------------}
  909.  
  910. procedure PolygonDem;
  911. var
  912.   N : integer;
  913.   B, A : PlotArray;
  914.   X1, X2 : integer;
  915.  
  916. procedure GenerateFunction(var A, B : PlotArray; N : integer);
  917. var
  918.   I : integer;
  919.   Delta : Float;
  920. begin
  921.   Delta := 2 * Pi / (N - 1);
  922.   for I := 1 to N do
  923.   begin
  924.     A[I, 1] := (I - 1) * Delta - Pi;
  925.     B[I, 1] := A[I, 1];
  926.     B[I, 2] := Exp(-abs(A[I, 1]));
  927.     A[I, 2] := Sin(A[I, 1]) * Exp(-abs(A[I, 1]) * 0.1);
  928.   end;
  929. end; { GenerateFunction }
  930.  
  931. begin { PolygonDem }
  932.   ClearScreen;
  933.   SetColorWhite;
  934.   N := 30;
  935.   GotoXY(50, 25);
  936.   Write('one moment please ....');
  937.   GenerateFunction(A, B, N);
  938.   ClearScreen;
  939.   DefineWorld(1, -Pi, 1, Pi, -1);
  940.   SelectWorld(1);
  941.   Msg('The example function in world coordinates  [-Pi,Pi] : DrawPolygon');
  942.   DefineWindowIBM(1, 0, 0, 39, 95);
  943.   DefineHeader(1, 'The example function');
  944.   SelectWindow(1);
  945.   DrawBorder;
  946.   DrawPolygon(A, 1, N, 0, 0, 0);
  947.   Delay(15000);
  948.   Msg('Procedures used : DrawAxis , DrawPolygon');
  949.   DefineWindowIBM(2, 20, 40, 79, 185);
  950.   DefineHeader(2, 'Example function with axes');
  951.   SelectWindow(2);
  952.   SetBackground(0);
  953.   DrawBorder;
  954.   DrawAxis(8, -8, 0, 0, 0, 0, 0, 0, false);
  955.   DrawPolygon(A, 1, N, 0, 0, 0);
  956.   Delay(15000);
  957.   Msg('Greatest axis density : DrawAxis , DrawPolygon');
  958.   DefineWindowIBM(2, 8, 15, 70, 170);
  959.   DefineHeader(2, 'Example function with axes');
  960.   SelectWindow(2);
  961.   SetBackground(0);
  962.   DrawBorder;
  963.   DrawAxis(9, -9, 0, 0, 0, 0, 1, 1, false);
  964.   DrawPolygon(A, 1, N, 0, 0, 0);
  965.   Delay(15000);
  966.   Msg('The example function displayed through dots : DrawPolygon');
  967.   DefineWindowIBM(1, 0, 0, 39, 95);
  968.   DefineHeader(1, 'The example function');
  969.   SelectWindow(1);
  970.   SetBackground(0);
  971.   DrawBorder;
  972.   DrawPolygon(A, 1, N, 9, 1, 0);
  973.   Delay(15000);
  974.   Msg('The example function drawn with circles : DrawPolygon');
  975.   DrawPolygon(A, 1, N, -8, 3, 0);
  976.   Delay(15000);
  977.   Msg('The example function connected by Lines : SetLinestyle , DrawPolygon');
  978.   SetLinestyle(1);
  979.   DrawPolygon(A, 1, N, 0, 0, 0);
  980.   SetLinestyle(0);
  981.   Delay(15000);
  982.   Msg('The display of several functions by repeated calls of DrawPolygon');
  983.   DefineWindowIBM(2, 20, 40, 79, 185);
  984.   DefineHeader(2, 'Two functions displayed with axes');
  985.   SelectWindow(2);
  986.   SetBackground(0);
  987.   DrawBorder;
  988.   DrawAxis(8, -8, 0, 0, 0, 0, 0, 0, false);
  989.   DrawPolygon(A, 1, N, -1, 4, 0);
  990.   Delay(15000);
  991.   Msg('The points of the first function connected with Lines : DrawPolygon');
  992.   DrawAxis(0, 0, 0, 0, 0, 0, 0, 0, false);
  993.   DrawPolygon(A, 1, N, 0, 0, 0);
  994.   Delay(15000);
  995.   Msg('The points of the second function in the same coordinate system');
  996.   DrawAxis(0, 0, 0, 0, 0, 0, 0, 0, false);
  997.   DrawPolygon(B, 1, N, -4, 2, 0);
  998.   Delay(15000);
  999.   Msg('The points of the second function connected by Lines : DrawPolygon');
  1000.   DrawAxis(0, 0, 0, 0, 0, 0, 0, 0, false);
  1001.   SetLinestyle(1);
  1002.   DrawPolygon(B, 1, N, 0, 0, 0);
  1003.   SetLinestyle(0);
  1004.   Delay(15000);
  1005.   Msg('Lettering the axes with the greatest density : DrawAxis , DrawPolygon');
  1006.   DefineWindowIBM(2, 8, 15, 70, 170);
  1007.   DefineHeader(2, 'Marking the points');
  1008.   SelectWindow(2);
  1009.   SetBackground(0);
  1010.   DrawBorder;
  1011.   DrawAxis(8, -8, 0, 0, 0, 0, 0, 1, false);
  1012.   DrawPolygon(A, 1, N, -2, 3, 0);
  1013.   Delay(15000);
  1014.   DrawAxis(0, 0, 0, 0, 0, 0, -1, -1, false);
  1015.   DrawPolygon(A, 1, N, 9, 1, -1);
  1016.   Delay(15000);
  1017.   DrawAxis(0, 0, 0, 0, 0, 0, -1, -1, false);
  1018.   SetLinestyle(2);
  1019.   DrawPolygon(A, 1, N, 0, 0, 0);
  1020.   SetLinestyle(0);
  1021.   Delay(15000);
  1022. end; { PolygonDem }
  1023.  
  1024. {----------------------------------------------------------------------------}
  1025.  
  1026. procedure HistoDem;
  1027. var
  1028.   I, N : integer;
  1029.   A : PlotArray;
  1030.   R, Temp : Float;
  1031.  
  1032. begin
  1033.   GotoXY(50, 25);
  1034.   Write('one moment please ....');
  1035.   N := 50;
  1036.   R := abs(N / 2);
  1037.   for I := 0 to abs(N - 1) do
  1038.   begin
  1039.     A[I + 1, 1] := I - R;
  1040.     A[I + 1, 2] := Sin(A[I + 1, 1] / 10) *
  1041.                    Exp(-abs(A[I + 1, 1]) * 0.01) + Random * 0.1;
  1042.   end;
  1043.   ClearScreen;
  1044.   SetColorWhite;
  1045.   DefineWindowIBM(1, 0, 0, 79, 185);
  1046.   DefineWindowIBM(2, 20, 20, 75, 175);
  1047.   DefineWindowIBM(3, 5, 35, 60, 170);
  1048.   DefineWindowIBM(4, 10, 50, 55, 165);
  1049.   DefineHeader(1, 'A bar chart in the absolute value mode');
  1050.   DefineHeader(2, 'A bar chart in the normal mode');
  1051.   DefineHeader(3, 'A bar chart in the normal mode with hatching');
  1052.   DefineHeader(4, 'A bar chart with axes');
  1053.   Msg('Displaying the amounts : DrawHistogram');
  1054.   FindWorld(1, A, N, 1.1, 1.1);
  1055.   SelectWorld(1);
  1056.   SelectWindow(1);
  1057.   DrawBorder;
  1058.   DrawHistogram(A, N, false, 5);
  1059.   Delay(15000);
  1060.   Msg('Displaying the positive and negative values : DrawHistogram');
  1061.   SelectWindow(2);
  1062.   SetBackground(0);
  1063.   DrawBorder;
  1064.   DrawHistogram(A, -N, false, 5);
  1065.   Delay(15000);
  1066.   Msg('The density of the cross hatch can be adjusted : DrawHistogram');
  1067.   SelectWindow(3);
  1068.   SetBackground(0);
  1069.   DrawBorder;
  1070.   DrawHistogram(A, -N, true, 4);
  1071.   Delay(15000);
  1072.   Msg('The density of the axes is adjustable : DrawAxis , DrawHistogram');
  1073.   SelectWindow(4);
  1074.   SetBackground(0);
  1075.   DrawBorder;
  1076.   DrawAxis(7, -7, 0, 0, 0, 0, 0, 0, true);
  1077.   DrawHistogram(A, -N, true, 2);
  1078.   Delay(15000);
  1079. end; { HistoDem }
  1080.  
  1081. {----------------------------------------------------------------------------}
  1082.  
  1083. procedure FlowChartDem;
  1084. var
  1085.   X1, Y1, X2, Y2, I, Count : integer;
  1086.  
  1087. procedure DrawArrowHor(X1, Y1, X2, Y2 : integer);
  1088. begin
  1089.   DrawLine(X1, Y1, X2, Y2);
  1090.   if X2 > X1 then
  1091.     begin
  1092.       DrawLine(X2 - 4, Y2 - 2, X2, Y2);
  1093.       DrawLine(X2 - 4, Y2 + 2, X2, Y2);
  1094.     end
  1095.   else
  1096.     begin
  1097.       DrawLine(X2 + 5, Y2 - 2, X2, Y2);
  1098.       DrawLine(X2 + 5, Y2 + 2, X2, Y2);
  1099.     end;
  1100. end; { DrawArrowHor }
  1101.  
  1102. procedure DrawArrowVer(X1, Y1, X2, Y2 : integer);
  1103. begin
  1104.   DrawLine(X1, Y1, X2, Y2);
  1105.   if Y2 > Y1 then
  1106.     begin
  1107.       DrawLine(X2 - 2, Y2 - 3, X2, Y2);
  1108.       DrawLine(X2 + 2, Y2 - 3, X2, Y2);
  1109.     end
  1110.   else
  1111.     begin
  1112.       DrawLine(X2 - 2, Y2 + 3, X2, Y2);
  1113.       DrawLine(X2 + 2, Y2 + 3, X2, Y2);
  1114.     end;
  1115. end; { DrawArrowVer }
  1116.  
  1117. procedure Blink(Count, Time : integer);
  1118. var
  1119.   I : integer;
  1120. begin
  1121.   for I := 1 to Count do
  1122.   begin
  1123.     Delay(Time);
  1124.     InvertWindow;
  1125.   end;
  1126. end; { Blink }
  1127.  
  1128. begin { FlowChartDem }
  1129.   DefineWindowIBM(1, 0, 0, 79, 185);
  1130.   DefineWindowIBM(2, 12, 20, 25, 40);
  1131.   DefineWindowIBM(3, 15, 55, 22, 75);
  1132.   DefineWindowIBM(4, 11, 110, 26, 130);
  1133.   DefineWindowIBM(5, 47, 90, 56, 110);
  1134.   DefineHeader(1, 'A flow chart');
  1135.   SetColorWhite;
  1136.   SetHeaderOn;
  1137.   SelectWindow(1);
  1138.   DrawBorder;
  1139.   SetHeaderOff;
  1140.   SelectWindow(2);
  1141.   DrawBorder;
  1142.   SelectIBM;
  1143.   DrawTextW(125, 172, 2, 'Start');
  1144.   DrawArrowVer(151, 159, 151, 144);
  1145.   SelectWindow(3);
  1146.   DrawBorder;
  1147.   SelectIBM;
  1148.   DrawTextW(136, 136, 2, 'I=1');
  1149.   DrawArrowVer(151, 124, 151, 89);
  1150.   SelectWindow(4);
  1151.   DrawBorder;
  1152.   SelectIBM;
  1153.   DrawTextW(108, 81, 2, 'if I<=5');
  1154.   DrawLine(215, 79, 417, 79);
  1155.   DrawArrowVer(417, 79, 417, 89);
  1156.   DrawArrowVer(151, 69, 151, 44);
  1157.   SelectIBM;
  1158.   DrawTextW(300, 89, 2, 'YES');
  1159.   DrawTextW(160, 62, 2, 'NO');
  1160.   SelectWindow(5);
  1161.   DrawBorder;
  1162.   SelectIBM;
  1163.   DrawTextW(390, 101, 2, 'I=I+1');
  1164.   DrawLine(417, 119, 417, 109);
  1165.   DrawArrowHor(417, 119, 151, 119);
  1166.   DrawCircle(151, 34, 0.25);
  1167.   DrawTextW(137, 36, 2, 'end');
  1168.   SetHeaderOn;
  1169.   CopyScreen;
  1170.   ClearEol(25);
  1171.   GotoXY(27, 25);
  1172.   DefineWindowIBM(2, 15, 21, 22, 39);
  1173.   SelectWindow(2);
  1174.   SetBackground(0);
  1175.   DrawBorder;
  1176.   InvertWindow;
  1177.   Delay(1000);
  1178.   InvertWindow;
  1179.   MoveVerIBM(35, true);
  1180.   SelectIBM;
  1181.   DrawTextW(139, 136, 2, 'I=1');
  1182.   SelectWindow(2);
  1183.   Blink(30, 50);
  1184.   MoveVerIBM(55, true);
  1185.   for Count := 2 to 6 do
  1186.   begin
  1187.     Delay(500);
  1188.     MoveHorIBM(33, true);
  1189.     MoveVerIBM(-20, true);
  1190.     SetBackground(0);
  1191.     DrawBorder;
  1192.     SelectIBM;
  1193.     DrawTextW(400, 101, 2, 'I=' + Chr(48 + Count));
  1194.     SelectWindow(2);
  1195.     Blink(30, 50);
  1196.     MoveVerIBM(-20, true);
  1197.     MoveHorIBM(-33, true);
  1198.     MoveVerIBM(40, true);
  1199.   end;
  1200.   InvertWindow;
  1201.   Delay(1000);
  1202.   MoveVerIBM(46, true);
  1203.   Blink(30, 50);
  1204.   MoveHorIBM(45, true);
  1205.   MoveVerIBM(-136, true);
  1206.   MoveHorIBM(-45, true);
  1207.   SetHeaderOn;
  1208. end; { FlowChartDem }
  1209.  
  1210. {----------------------------------------------------------------------------}
  1211.  
  1212. procedure BezierDem;
  1213.  
  1214. procedure ClearToEol;
  1215. { Procedure to clear to end of line }
  1216. var
  1217.   I : integer;
  1218. begin
  1219.   for I := 1 to 80 do
  1220.     Write(' ');
  1221. end; { ClearToEol }
  1222.  
  1223. procedure ReadInput(var S : WrkString);
  1224. const
  1225.   Cr = #13;
  1226.   Bs = #8;
  1227. var
  1228.   Count : integer;
  1229.   Ch    : char;
  1230. begin
  1231.   Count := 0;
  1232.   S := '';
  1233.   repeat
  1234.     Ch := ReadKey;
  1235.     case Ch of
  1236.       Bs : begin
  1237.              if Count > 0 then
  1238.              begin
  1239.                Write(Ch);
  1240.                ClrEol;
  1241.                Delete(S, Length(S), 1);
  1242.                Dec(Count);
  1243.              end;
  1244.            end;
  1245.     else
  1246.       if Ch <> Cr then
  1247.       begin
  1248.         Write(Ch);
  1249.         S := S + Ch;
  1250.         Count := Count + 1;
  1251.       end;
  1252.     end;
  1253.   until Ch = Cr;
  1254. end; { ReadInput }
  1255.  
  1256. procedure BeziDemo;
  1257.  
  1258. var
  1259.   Result, I, MaxControlPoints, MaxIntPoints : integer;
  1260.   DummyX, DummyY : Float;
  1261.   A, B : PlotArray;
  1262.   Break : boolean;
  1263.   DummyS, Temp2, Temp : WrkString;
  1264.  
  1265. begin
  1266.   MaxControlPoints := 7;               { Initialize everything }
  1267.   MaxIntPoints := 15;
  1268.  
  1269.   A[1, 1] := 1;   A[2, 1] := 1.5; A[3, 1] := 2;   A[4, 1] := 2.5;
  1270.   A[5, 1] := 3;   A[6, 1] := 4;   A[7, 1] := 5;   A[1, 2] := 2;
  1271.   A[2, 2] := 1.5; A[3, 2] := 1;   A[4, 2] := 2.5; A[5, 2] := 4;
  1272.   A[6, 2] := 4.5; A[7, 2] := 5;
  1273.  
  1274.   ClearScreen;                         { Set up screen }
  1275.   SetColorWhite;
  1276.   DefineWorld(1, 0, 0, 6.33, 7.0);     { Set world so rulers are good }
  1277.   SelectWorld(1);
  1278.   DefineWindow(1, 0, 0, XMaxGlb, 17 * YMaxGlb div 20);
  1279.   SelectWindow(1);
  1280.   SetBackground(0);
  1281.   DefineHeader(1, 'A demonstration of modeling and graphic design');
  1282.   DrawBorder;
  1283.   DrawAxis(7, -7, 0, 0, 0, 0, -1, -1, false);
  1284.  
  1285.   Break := false;                      { Init exit flag }
  1286.  
  1287.   repeat
  1288.     SetLinestyle(1);                   { Draw polygon between points }
  1289.     ResetAxis;
  1290.     DrawPolygon(A, 1, MaxControlPoints, 4, 2, 0);
  1291.  
  1292.     Bezier(A, MaxControlPoints, B, MaxIntPoints);  { Do bezier operation }
  1293.  
  1294.     SetLinestyle(0);                   { Plot it }
  1295.     ResetAxis;
  1296.     DrawPolygon(B, 1, MaxIntPoints, 0, 0, 0);
  1297.  
  1298.     repeat
  1299.       GotoXY(1, 24);                   { Clear out old text }
  1300.       ClearToEol;
  1301.       GotoXY(1, 25);
  1302.       ClearToEol;
  1303.       GotoXY(1, 23);
  1304.       ClearToEol;
  1305.       GotoXY(1, 23);                   { Get point to change }
  1306.       Write('Enter the number of the point to change (0 to quit) :  ');
  1307.       GotoXY(55, 23);
  1308.       ReadInput(Temp);
  1309.       Val(Temp, I, Result);
  1310.     until I in [0..MaxControlPoints];
  1311.  
  1312.     if I > 0 then
  1313.       begin
  1314.         repeat
  1315.           GotoXY(1, 24);               { Get new values for x and y }
  1316.           Write('Old position : [', A[I,1]:4:2, ',', A[I,2]:4:2, ']');
  1317.           GotoXY(40, 24);
  1318.           Write('   New position  x:  ');
  1319.           GotoXY(60, 24);
  1320.           ReadInput(DummyS);
  1321.           while DummyS[1] = ' ' do
  1322.             Delete(DummyS, 1, 1);
  1323.           Temp := DummyS;
  1324.           GotoXY(40, 25);
  1325.           Write('   New position  y:  ');
  1326.           GotoXY(60, 25);
  1327.           ReadInput(DummyS);
  1328.           while DummyS[1] = ' ' do
  1329.             Delete(DummyS, 1, 1);
  1330.           Temp2 := DummyS;
  1331.           Val(Temp, DummyX, Result);
  1332.           Val(Temp2, DummyY, Result);
  1333.         until ((DummyX >= X1WldGlb) and (DummyX <= X2WldGlb)) and
  1334.               ((DummyY >= Y1WldGlb) and (DummyY <= Y2WldGlb));
  1335.  
  1336.         SetLinestyle(1);               { Erase old curve }
  1337.         SetColorBlack;
  1338.         ResetAxis;
  1339.         DrawPolygon(A, 1, MaxControlPoints, 4, 2, 0);
  1340.         SetLinestyle(0);
  1341.         ResetAxis;
  1342.         DrawPolygon(B, 1, MaxIntPoints, 0, 0, 0);
  1343.         A[I, 1] := DummyX;
  1344.         A[I, 2] := DummyY;
  1345.         SetColorWhite;
  1346.       end
  1347.     else
  1348.       Break := true;
  1349.   until Break;
  1350. end; { BeziDemo }
  1351.  
  1352. begin
  1353.   BeziDemo;
  1354. end; { BezierDem }
  1355.  
  1356. {----------------------------------------------------------------------------}
  1357.  
  1358. function MenuChoice(OldChoice : integer) : integer;
  1359. const
  1360.   Null    = #0;
  1361.   Cr      = #13;
  1362.   Bs      = #8;
  1363.   CtrlC   = #3;
  1364.   Esc     = #27;
  1365.   Prompt : string[6] = '==>   ';
  1366.   Title = 'TURBO GRAPHIX TOOLBOX demonstration';
  1367.   N = 9;
  1368.   MenuItems : array [0..9] of string[35] = ('Exit this demonstration',
  1369.                                             'The use of windows',
  1370.                                             'The simple graphic commands',
  1371.                                             'Application: Sierpinski curves',
  1372.                                             'Pie charts',
  1373.                                             'Splines',
  1374.                                             'Polygonal presentation',
  1375.                                             'Bar charts',
  1376.                                             'Application: A flow chart',
  1377.                                             'Drawing and design');
  1378.  
  1379. var
  1380.   X, Y, I : integer;
  1381.   J : word;
  1382.   Ch : char;
  1383.   Quit : boolean;
  1384.  
  1385. begin
  1386.   OldChoice := OldChoice + 1;
  1387.   if OldChoice > N - 1 then
  1388.      OldChoice := 1;
  1389.   X := 40 - Length(Title) div 2;
  1390.   GotoXY(X, 1);
  1391.   Write(Title);
  1392.   GotoXY(8, 24);
  1393.   Write('Select item with SPACE / BACKSPACE or a number, then hit RETURN');
  1394.   Y := 8 - N div 2;
  1395.   X := 20;
  1396.   for I := 0 to N do
  1397.   begin
  1398.     GotoXY(X - 4, Y + I * 2);
  1399.     Write(I:1, ' -- ', MenuItems[I]);
  1400.   end;
  1401.   I := OldChoice;
  1402.   GotoXY(X - 10, Y + I * 2);
  1403.   Write(Prompt, I:1, ' -- ', MenuItems[I]);
  1404.   GotoXY(62, Y + I * 2);
  1405.   Write('<==');
  1406.  
  1407.   J := 0;
  1408.   Ch := '#';
  1409.   Quit := FALSE;
  1410.   while (Ch <> Cr) do
  1411.   begin
  1412.     Ch := '#';
  1413.  
  1414.     if KeyPressed then
  1415.     begin                 { Read a keystroke! }
  1416.       Ch := ReadKey;
  1417.       J := 0;
  1418.     end;
  1419.  
  1420.     case Ch of
  1421.       Bs         : begin
  1422.                      GotoXY(X - 10, Y + I * 2);
  1423.                      Write('      ');
  1424.                      GotoXY(62, Y + I * 2);
  1425.                      Write('   ');
  1426.                      I := I - 1;
  1427.                      if I = -1 then
  1428.                        I := N;
  1429.                      GotoXY(X - 10, Y + I * 2);
  1430.                      Write(Prompt, I:1, ' -- ', MenuItems[I]);
  1431.                      GotoXY(62, Y + I * 2);
  1432.                      Write('<==');
  1433.                    end;
  1434.  
  1435.       ' '        : begin
  1436.                      GotoXY(X - 10, Y + I * 2);
  1437.                      Write('      ');
  1438.                      GotoXY(62, Y + I * 2);
  1439.                      Write('   ');
  1440.                      I := I + 1;
  1441.                      if I > N then
  1442.                        I := 0;
  1443.                      GotoXY(X - 10, Y + I * 2);
  1444.                      Write(Prompt, I:1, ' -- ', MenuItems[I]);
  1445.                      GotoXY(62, Y + I * 2);
  1446.                      Write('<==');
  1447.                    end;
  1448.  
  1449.       '0'..'9'   : begin
  1450.                      if (Ord(Ch) - 48) <> I then
  1451.                      begin
  1452.                        GotoXY(X - 10, Y + I * 2);
  1453.                        Write('      ');
  1454.                        GotoXY(62, Y + I * 2);
  1455.                        Write('   ');
  1456.                        I := Ord(Ch) - 48;
  1457.                        GotoXY(X - 10, Y + I * 2);
  1458.                        Write(Prompt, I:1, ' -- ', MenuItems[I]);
  1459.                        GotoXY(62, Y + I * 2);
  1460.                        Write('<==');
  1461.                      end;
  1462.                    end;
  1463.  
  1464.       Esc, CtrlC : begin
  1465.                      LeaveGraphic;
  1466.                      Halt;
  1467.                    end;
  1468.  
  1469.       Null       : begin
  1470.                      if KeyPressed then
  1471.                      begin
  1472.                        Ch := ReadKey;
  1473.                        if Ch = 'O' then    { The End key was hit! }
  1474.                        begin
  1475.                          LeaveGraphic;
  1476.                          Halt;
  1477.                        end;
  1478.                      end;
  1479.                    end;
  1480.     end; { case }
  1481.     J := J + 1;
  1482.     if J > 32767 then
  1483.       Ch := Cr;
  1484.   end; { while Ch <> Cr do }
  1485.  
  1486.   MenuChoice := I;
  1487. end; { MenuChoice }
  1488.  
  1489. procedure Dummy2;
  1490. begin
  1491. end; { Dummy2 }
  1492.  
  1493. procedure SimpleInfo;
  1494. begin
  1495.   GotoXY(20, 5);
  1496.   WriteLn('The simple drawing commands');
  1497.   GotoXY(10, 10); Write('The simple drawing commands make it possible for the user to');
  1498.   GotoXY(10, 11); Write('realize graphic presentations according to his own mental image.');
  1499.   GotoXY(10, 12); Write('These commands refer to the window in use.  Thus drawing is');
  1500.   GotoXY(10, 13); Write('normally only possible within this window.  If parts of the');
  1501.   GotoXY(10, 14); Write('diagram go beyond the window limits, they are not shown.  To');
  1502.   GotoXY(10, 15); Write('provide greater flexibility, this feature can be turned off.');
  1503.   GotoXY(10, 16); Write('The scaling of the diagram is also accomplished by TURBO GRAPHIX.');
  1504.   GotoXY(10, 17); Write('Therefore it is possible to draw in any desired coordinate system');
  1505.   GotoXY(10, 18); Write('without requiring complicated calculations.  A separate');
  1506.   GotoXY(10, 19); Write('Coordinate System can be appointed to every window that is');
  1507.   GotoXY(10, 20); Write('defined.');
  1508.   GotoXY(31, 25);
  1509.   WaitReturn(60000.0);
  1510.   Simple;
  1511. end; { SimpleInfo }
  1512.  
  1513. procedure WindowDemoInfo;
  1514. begin
  1515.   GotoXY(20, 5);
  1516.   WriteLn('The Use of Windows');
  1517.   GotoXY(10, 8); Write('Within the TURBO Graphix System there can be as many graphic');
  1518.   GotoXY(10, 9); Write('windows displayed as one wants.  After their definition such');
  1519.   GotoXY(10, 10); Write('windows represent the actual drawing sheet.  All graphic');
  1520.   GotoXY(10, 11); Write('operations which would normally be carried out with the whole');
  1521.   GotoXY(10, 12); Write('screen, can be undertaken in one or several windows in exactly');
  1522.   GotoXY(10, 13); Write('the same manner.  Thus different operations can be displayed on');
  1523.   GotoXY(10, 14); Write('one screen in a simple and clear manner.');
  1524.   GotoXY(10, 16); Write('Through simple commands windows can be moved on the screen and');
  1525.   GotoXY(10, 17); Write('can be printed out in any desired position.  Every window can be');
  1526.   GotoXY(10, 18); Write('stored in a window memory that is independent from the screen and');
  1527.   GotoXY(10, 19); Write('can quickly be restored again into any part of the screen.  The');
  1528.   GotoXY(10, 20); Write('size of that memory is limited only by the existing main memory.');
  1529.   GotoXY(31, 25);
  1530.   WaitReturn(60000.0);
  1531.   WindowDemo;
  1532. end; { WindowDemoInfo }
  1533.  
  1534. procedure SplineInfo;
  1535. begin
  1536.   GotoXY(20, 5); WriteLn('The use of Spline functions');
  1537.   GotoXY(10, 10); Write('procedure : Spline(parameter);');
  1538.   GotoXY(10, 13); Write('The Spline procedure serves to create smooth curves.');
  1539.   GotoXY(10, 14); Write('You give a number of columns, choose the starting and ending');
  1540.   GotoXY(10, 15); Write('points of the interpolation, the number of points between start');
  1541.   GotoXY(10, 16); Write('and end, call up Spline, and then draw the points with the help');
  1542.   GotoXY(10, 17); Write('of the DrawPolygon procedure.');
  1543.   GotoXY(10, 19); Write('In the following example the data (*) will be presented first,');
  1544.   GotoXY(10, 20); Write('then the created Spline function (50 points) will be plotted');
  1545.   GotoXY(10, 21); Write('(drawn line).');
  1546.   GotoXY(20, 25);
  1547.   WaitReturn(60000.0);
  1548.   SplineDem;
  1549. end; { SplineInfo }
  1550.  
  1551. procedure PieInfo;
  1552. begin
  1553.   GotoXY(20, 5); WriteLn('The use of Pie-Charts');
  1554.   GotoXY(10, 8); Write('procedure : DrawCartPie or DrawPolarPie(parameter);');
  1555.   GotoXY(10, 10); Write('The DrawPie procedures are used to create pie charts.  To create');
  1556.   GotoXY(10, 11); Write('a pie chart you give the coordinates of the center of the circle,');
  1557.   GotoXY(10, 12); Write('the number of the exploded segments to be drawn, the total number');
  1558.   GotoXY(10, 13); Write('of segments, a numerical field and the descriptive text.  If you');
  1559.   GotoXY(10, 14); Write('wish, text and numbers can be displayed together or seperately.');
  1560.   GotoXY(10, 16); Write('The following example first lists the basic data of the diagram');
  1561.   GotoXY(10, 17); Write('At the same time, a pie chart is drawn on the second screen in');
  1562.   GotoXY(10, 18); Write('the background and then copied onto the first screen.  Following');
  1563.   GotoXY(10, 19); Write('that are several variations of the same DrawPie operation.');
  1564.   GotoXY(20, 25);
  1565.   WaitReturn(60000.0);
  1566.   PieDem;
  1567. end; { PieInfo }
  1568.  
  1569. procedure BezierInfo;
  1570. begin
  1571.   GotoXY(10, 5); WriteLn('Using the BEZIER function to draw');
  1572.   GotoXY(3, 8); Write('procedure : Bezier(parameter);');
  1573.   GotoXY(3, 10); Write('The bezier procedure creates smooth two dimensional objects from');
  1574.   GotoXY(3, 11); Write('points given by the user.  It can also be used to make curves of');
  1575.   GotoXY(3, 12); Write('large curvature and to fit unfavorable polynomials.');
  1576.   GotoXY(3, 13); Write('The following example will draw 7 points (light squares) and');
  1577.   GotoXY(3, 14); Write('their respective BEZIER function (drawn line).  You can change');
  1578.   GotoXY(3, 15); Write('the position of individual points by entering the number of the');
  1579.   GotoXY(3, 16); Write('point to be changed (1 through 7) and the New coordinates.  The');
  1580.   GotoXY(3, 17); Write('bezier procedure then creates the respective BEZIER function.');
  1581.   GotoXY(3, 19); Write('You can leave this module by typing RETURN to the point number');
  1582.   GotoXY(3, 20); Write('question.');
  1583.   GotoXY(20, 25);
  1584.   WaitReturn(60000.0);
  1585.   BezierDem;
  1586. end; { BezierInfo }
  1587.  
  1588. procedure PolygonInfo;
  1589. begin
  1590.   GotoXY(10, 5); WriteLn('Possibilities of polygonal diagrams');
  1591.   GotoXY(3, 8); Write('Command : DrawPolygon(parameter);');
  1592.   GotoXY(3, 10); Write('The command DrawPolygon is used for the drawing of polygons.  The');
  1593.   GotoXY(3, 11); Write('procedure DrawPolygon connects the vertices of a polygon through');
  1594.   GotoXY(3, 12); Write('different types of lines, marks the corner points through');
  1595.   GotoXY(3, 13); Write('different symbols, such as stars, squares, cross-bars etc.,');
  1596.   GotoXY(3, 14); Write('creates bars and much more.  Through repeated drawing in the same');
  1597.   GotoXY(3, 15); Write('window, as many polygons as you like can be plotted over');
  1598.   GotoXY(3, 16); Write('each other.  All diagrams can be drawn with or without the');
  1599.   GotoXY(3, 17); Write('coordinates or text.');
  1600.   GotoXY(3, 19); Write('The following examples were all created with the DrawPolygon');
  1601.   GotoXY(3, 20); Write('command varying the parameter.  Through the DrawAxis command a');
  1602.   GotoXY(3, 21); Write('presentation of the axes including text is possible.');
  1603.   GotoXY(3, 23); Write('Use the RETURN key to move within this demonstration module.');
  1604.   GotoXY(20, 25);
  1605.   WaitReturn(60000.0);
  1606.   PolygonDem;
  1607. end; { PolygonInfo }
  1608.  
  1609. var
  1610.   Choice : integer;
  1611.  
  1612. begin { TurboGraphicsDemo }
  1613.   CheckBreak := false;
  1614.   InitGraphic;
  1615.   SetBreakOn;
  1616.   SetMessageOn;
  1617.   SetHeaderOn;
  1618.   DefineWorld(2, 0, 199, 639, 0);
  1619.   DefineWindow(10, 0, 0, XMaxGlb, YMaxGlb);
  1620.   Intro;
  1621.   Choice := 0;
  1622.   repeat
  1623.     ClearScreen;
  1624.     ResetWindowStack;
  1625.     ResetWindows;
  1626.     ResetWorlds;
  1627.     DefineWorld(2, 0, 199, 639, 0);
  1628.     DefineWindow(10, 0, 0, XMaxGlb, YMaxGlb);
  1629.     SelectWorld(2);
  1630.     SelectWindow(10);
  1631.     SetAspect(1.0);
  1632.     Choice := MenuChoice(Choice);
  1633.     ClearScreen;
  1634.     case Choice of
  1635.       1 : WindowDemoInfo;
  1636.       2 : SimpleInfo;
  1637.       3 : Sier;
  1638.       4 : PieInfo;
  1639.       5 : SplineInfo;
  1640.       6 : PolygonInfo;
  1641.       7 : HistoDem;
  1642.       8 : FlowChartDem;
  1643.       9 : BezierInfo;
  1644.     end;
  1645.   until Choice = 0;
  1646.   LeaveGraphic;
  1647. end. { TurboGraphicsDemo }
  1648.