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

  1.  
  2. {           Copyright (c) 1985, 87 by Borland International, Inc.            }
  3.  
  4. program GR3DEMO;
  5. {
  6.                 TURTLEGRAPHICS DEMO PROGRAM
  7.  
  8.   This programs demonstrates the use of Turbo Pascal 3.0's
  9.   turtle graphics by using Version 4.0's GRAPH3 unit.
  10.  
  11.   NOTE:  You must have a color graphics adapter to use this
  12.   program.
  13.  
  14.   PSEUDO CODE
  15.  
  16.   1.  Initialize program variables.
  17.   2.  Play with the turtle routines.
  18.       a.  Start with medium resolution graphics.
  19.       b.  Read a character and manipulate the turtle until
  20.           the user pressed <ESC> or ^C.
  21.   3.  Reset screen to text mode and quit.
  22.  
  23.  
  24.   Here is a list of the commands that this program uses:
  25.  
  26.     Function Keys:
  27.       F1           Turns turtle to the left.
  28.       F2           Turns turtle to the right.
  29.  
  30.     Cursor Keys:
  31.  
  32.       They point the turtle:
  33.         Up arrow,    north
  34.         Down arrow,  south
  35.         Right arrow, east
  36.         Left arrow:  west
  37.         Home,        northwest
  38.         PgUp,        northeast
  39.         PgDn,        southeast
  40.         End:         southwest
  41.  
  42.         Alpha keys:
  43.         0 thru 9:    Set the magnitude for speed.
  44.                      (i.e. 0 is stop, 1 is slow, 9 is fast)
  45.         H:           Sets video mode to High resolution.
  46.         M:           Sets video mode to Medium resolution.
  47.         W:           TOGGLE: Wrap on / off
  48.         P:           TOGGLE: PenUp / PenDown.
  49.         T:           TOGGLE: Hide / show the turtle.
  50.         C:           Changes the color (or intensity) of the lines.
  51.         +:           Homes the turtle.
  52.         <ESC>:       Quits the turtle demo.
  53. }
  54.  
  55. uses
  56.   Crt,
  57.   Turbo3,
  58.   Graph3;
  59.  
  60. const
  61.   TurtleSpeed = 50;
  62.  
  63. type
  64.   ToggleCommands = (PenOn, WrapOn, TurtleOn);
  65.  
  66. var
  67.   ToggleRay    : array[PenOn..TurtleOn] of boolean;
  68.   Magnitude,               { Sets speed: 0 = stopped, 9 = fast        }
  69.   Color,                   { Current palette color                    }
  70.   CurentPalette: Integer;  { Current Palette                          }
  71.  
  72. procedure Init;
  73. var  Toggle: ToggleCommands;
  74.  
  75. procedure VerifyGraphicsCard;
  76. var ch : char;
  77. begin
  78.   ClrScr;
  79.   Writeln('You must have a color graphics adapter to use this program.');
  80.   write('CONTINUE?  (Y/N): ');
  81.   repeat
  82.     ch := UpCase(ReadKey);
  83.     if ch in ['N', #27, ^C] then
  84.     begin
  85.       TextMode(LastMode);
  86.       Halt;
  87.     end;
  88.   until ch = 'Y';
  89. end; { VerifyGraphicsCard }
  90.  
  91. begin
  92.   VerifyGraphicsCard;
  93.   Magnitude := 0;  { Stopped }
  94.   Color     := 0;
  95.   for Toggle := PenOn to TurtleOn do
  96.     ToggleRay[Toggle]  := true;      { Start with all commands toggled on }
  97. end;
  98.  
  99. procedure PlayWithTurtle;
  100. var
  101.   InKey:     Char;
  102.  
  103. FunctionKey:  Boolean;    { TRUE if a function key was pressed       }
  104.  
  105. procedure NewScreen(SetRes : char);
  106.  
  107. procedure DrawBox(x, y, w, h : integer);
  108. begin
  109.   Draw(x, y, x + w, y, 1);                     { top        }
  110.   Draw(x, y, x, y + h, 1);                     { left side  }
  111.   Draw(x, y + h, x + w, y + h, 1);             { bottom     }
  112.   Draw(x + w, y + h, x + w, y, 1);             { right side }
  113. end; { DrawBox }
  114.  
  115. procedure HiResOn;
  116. const
  117.   CharHeight = 10;
  118. begin
  119.   HiRes;
  120.   HiResColor(Yellow);
  121.   DrawBox(0, 0, 639, 199-CharHeight);
  122.   TurtleWindow(319, 99-(CharHeight DIV 2), 638, 198-CharHeight);
  123. end; { HiResOn }
  124.  
  125. procedure MediumResOn;
  126. const
  127.   CharHeight = 20;
  128. begin
  129.   GraphColorMode;
  130.   DrawBox(0, 0, 319, 199-CharHeight);
  131.   TurtleWindow(159, 99-(CharHeight DIV 2), 318, 198-CharHeight);
  132. end; { MediumResOn }
  133.  
  134. begin
  135.   case SetRes of
  136.     'M'   : begin
  137.               MediumResOn;
  138.               GoToXY(1, 24);
  139.               writeln('SPEED:0-9 TOGGLES:Pen,Wrap,Turtle,Color');
  140.               write('   TURN: F1,F2, HOME: +, RES: Hi,Med');
  141.             end;
  142.     'H'   : begin
  143.               HiResOn;
  144.               GoToXY(1, 25);
  145.               write(' SPEED: 0-9  TOGGLES: Pen,Wrap,Turtle,Color');
  146.               write('  TURN: F1,F2  HOME: +  RES: Hi,Med');
  147.             end;
  148.   end; { case }
  149.   Showturtle;
  150.   home;
  151.   Wrap;
  152.   Magnitude := 0;
  153. end; { NewScreen }
  154.  
  155. function GetKey(var FunctionKey: Boolean): char;
  156. var ch: char;
  157. begin
  158.   ch := ReadKey;
  159.   If (Ch = #0) Then  { it must be a function key }
  160.   begin
  161.     ch := ReadKey;
  162.     FunctionKey := true;
  163.   end
  164.   else FunctionKey := false;
  165.   GetKey := Ch;
  166. end;
  167.  
  168. procedure TurtleDo(InKey : char; FunctionKey : boolean);
  169. const
  170.   NorthEast = 45;
  171.   SouthEast = 135;
  172.   SouthWest = 225;
  173.   NorthWest = 315;
  174.  
  175. procedure DoFunctionCommand(FunctionKey: char);
  176. begin
  177.   case FunctionKey of
  178.     'H': SetHeading(North);      { Up arrow Key    }
  179.     'P': SetHeading(South);      { Down arrow Key  }
  180.     'M': SetHeading(East);       { Left arrow Key  }
  181.     'K': SetHeading(West);       { Right arrow Key }
  182.     'I': SetHeading(NorthEast);  { PgUp            }
  183.     'Q': SetHeading(SouthEast);  { PgDn            }
  184.     'G': SetHeading(NorthWest);  { Home            }
  185.     'O': SetHeading(SouthWest);  { End             }
  186.     '<': SetHeading(Heading+5);  { F1              }
  187.     ';': SetHeading(Heading-5);  { F2              }
  188.   end
  189. end { Do function command };
  190.  
  191. begin
  192.   If FunctionKey then DoFunctionCommand(Upcase(InKey))
  193.   else
  194.   case upcase(InKey) of
  195.     'P': begin
  196.            ToggleRay[PenOn] := NOT ToggleRay[PenOn];
  197.            case ToggleRay[PenOn] of
  198.              true  : PenUp;
  199.              false : PenDown;
  200.            end; { case }
  201.          end;
  202.     'W': begin
  203.            ToggleRay[WrapOn] := NOT ToggleRay[WrapOn];
  204.            case ToggleRay[WrapOn] of
  205.              true  : Wrap;
  206.              false : NoWrap;
  207.            end; { case }
  208.          end;
  209.     'T': begin
  210.            ToggleRay[TurtleOn] := NOT ToggleRay[TurtleOn];
  211.            case ToggleRay[TurtleOn] of
  212.              true  : ShowTurtle;
  213.              false : HideTurtle;
  214.            end; { case }
  215.          end;
  216.     '+': Home;
  217.     'C': begin
  218.            Color := succ(color) mod 4;
  219.            SetPenColor(Color);
  220.          end;
  221.     '0'..'9': Magnitude := Sqr(ord(inkey) - ord('0'));
  222.     'M': begin
  223.            NewScreen('M');     { medium resolution graphics }
  224.          end;
  225.     'H': begin
  226.            NewScreen('H');     { HiRes graphics }
  227.          end;
  228.   end;   { case }
  229. end; { TurtleDo }
  230.  
  231. begin { PlayWithTurtle }
  232.   NewScreen('M');     { start with medium resolution graphics }
  233.   repeat
  234.     TurtleDelay(TurtleSpeed);
  235.     repeat
  236.       if Magnitude <> 0 then forwd(Magnitude);
  237.     until KeyPressed;
  238.     Inkey := GetKey(FunctionKey);
  239.     TurtleDo(InKey, FunctionKey);
  240.   until UpCase(Inkey) in [#27, ^C];
  241. end;  { PlayWithTurtle }
  242.  
  243. begin { program body }
  244.   Init;
  245.   PlayWithTurtle;
  246.   ClearScreen;
  247.   TextMode(LastMode);
  248. end.
  249.