home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l076 / 1.ddi / TURTLE.TRU < prev    next >
Encoding:
Text File  |  1988-08-27  |  1.7 KB  |  84 lines

  1. !  Turtle.
  2. !  Sample program that implements Turtle Graphics.
  3. !
  4. set color 0
  5. call Right(45)
  6. call Forward(70)
  7. call Left(45)
  8. set color 1
  9. for i = 1 to 500
  10.     call Forward(8)
  11.     call Left(5+mod(i,50))
  12. next i
  13. end
  14.  
  15. !  Turtle graphics -- a sample module.
  16. !  Version 1.0
  17. !
  18. MODULE Turtle
  19.  
  20.     SHARE x, y, a                 !current turtle position, direction
  21.  
  22.     OPTION ANGLE degrees          !use degrees throughout module
  23.  
  24.     CALL ClearScreen              !initialize -- clear screen
  25.  
  26.  
  27.     !
  28.     !  ClearScreen
  29.     !
  30.     !  Clear the output window, set the x/y position to
  31.     !  (0,0) and turn the turtle to face "up".
  32.     !
  33.     SUB ClearScreen
  34.         CLEAR
  35.         SET WINDOW -140, 140, -120, 120
  36.         LET x,y = 0
  37.         LET a = 90
  38.     END SUB
  39.  
  40.     !
  41.     !  Left
  42.     !
  43.     !  Turn left by 'da' degrees.  Don't move; just turn.
  44.     !
  45.     SUB Left(da)
  46.         LET a = a + da
  47.     END SUB
  48.  
  49.     !
  50.     !  Right
  51.     !
  52.     !  Turn right by 'da' degrees.  Don't move; just turn.
  53.     !
  54.     SUB Right(da)
  55.         LET a = a - da
  56.     END SUB
  57.  
  58.     !
  59.     !  Forward
  60.     !
  61.     !  Go forward 'd' units.  We move in the current direction.
  62.     !
  63.     SUB Forward(d)
  64.         LET dx = d*cos(a)         !compute x/y distances to move
  65.         LET dy = d*sin(a)
  66.         LET newx = x + dx         !get new x/y position
  67.         LET newy = y + dy
  68.         PLOT x,y; newx, newy      !draw line from old position to new
  69.         LET x = newx
  70.         LET y = newy              !remember new position
  71.     END SUB
  72.  
  73.     !
  74.     !  Back
  75.     !
  76.     !  Go backward 'd' units.  We move in the opposite
  77.     !  of the current direction.
  78.     !
  79.     SUB Back(d)
  80.         CALL Forward(-d)
  81.     END SUB
  82.  
  83. END MODULE
  84.