home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 25 / CDMM_25.iso / takeru / menu.dxr / 00002_bumpuku.ls < prev    next >
Encoding:
Text File  |  1996-09-04  |  3.7 KB  |  155 lines

  1. on moveSprtDiag whchSprt, newH, newV
  2.   set x1 to the locH of sprite whchSprt
  3.   set y1 to the locV of sprite whchSprt
  4.   set x2 to newH
  5.   set y2 to newV
  6.   set stepSize to 15
  7.   set stepDelay to 5
  8.   if (x1 <> x2) or (y1 <> y2) then
  9.     if x1 > x2 then
  10.       set xVal to -1
  11.     else
  12.       set xVal to 1
  13.     end if
  14.     if y1 > y2 then
  15.       set yVal to -1
  16.     else
  17.       set yVal to 1
  18.     end if
  19.     set xDist to x2 - x1
  20.     set yDist to y2 - y1
  21.     changeCharacter(xDist, yDist)
  22.     set xDistAbs to abs(xDist)
  23.     set yDistAbs to abs(yDist)
  24.     set x to x1 * 1.0
  25.     set y to y1 * 1.0
  26.     if yDistAbs > xDistAbs then
  27.       if yDistAbs = 0 then
  28.         set xFact to 0
  29.       else
  30.         set xFact to 1.0 * xDistAbs / yDistAbs * stepSize
  31.       end if
  32.       set yFact to stepSize
  33.     else
  34.       if xDistAbs = 0 then
  35.         set yFact to 0
  36.       else
  37.         set yFact to 1.0 * yDistAbs / xDistAbs * stepSize
  38.       end if
  39.       set xFact to stepSize
  40.     end if
  41.     repeat while (x <> x2) or (y <> y2)
  42.       set x to x + (xFact * xVal)
  43.       set y to y + (yFact * yVal)
  44.       if abs(x - x2) <= xFact then
  45.         set x to x2
  46.       end if
  47.       if abs(y - y2) <= yFact then
  48.         set y to y2
  49.       end if
  50.       if the castNum of sprite 30 > 100 then
  51.         set the castNum of sprite 30 to the castNum of sprite 30 - 100
  52.       else
  53.         set the castNum of sprite 30 to the castNum of sprite 30 + 100
  54.       end if
  55.       set the locH of sprite whchSprt to integer(x)
  56.       set the locV of sprite whchSprt to integer(y)
  57.       updateStage()
  58.       set curTicks to the ticks
  59.       repeat while the ticks < (curTicks + stepDelay)
  60.         nothing()
  61.       end repeat
  62.       checkMoving()
  63.     end repeat
  64.   else
  65.   end if
  66. end
  67.  
  68. on followMe offsetH, offsetV
  69.   set newH to the mouseH - offsetH
  70.   set newV to the mouseV - offsetV
  71.   moveSprtDiag(30, newH, newV)
  72. end
  73.  
  74. on changeCharacter xDist, yDist
  75.   set xDist to xDist * 1.0
  76.   set yDist to yDist * 1.0
  77.   if xDist <> 0 then
  78.     set angle to -atan(yDist / xDist) * (360 / (2 * PI))
  79.     if xDist < 0 then
  80.       set angle to angle + 180
  81.     else
  82.       if (xDist > 0) and (yDist > 0) then
  83.         set angle to angle + 360
  84.       end if
  85.     end if
  86.   else
  87.     if yDist <= 0 then
  88.       set angle to 90
  89.     else
  90.       set angle to 270
  91.     end if
  92.   end if
  93.   set angle to integer(angle)
  94.   turn(angle)
  95. end
  96.  
  97. on turn angle
  98.   set actualCast to the castNum of sprite 30
  99.   set angleNew to integer(the name of cast actualCast - angle)
  100.   if angleNew < 0 then
  101.     set angleNew to 360 + angleNew
  102.   end if
  103.   if angleNew < 180 then
  104.     set increments to integer((angleNew / 30) + integer(angleNew mod 30 / 15))
  105.     repeat with i = 1 to increments
  106.       if actualCast = 20 then
  107.         set actualCast to 31
  108.       else
  109.         if actualCast = 120 then
  110.           set actualCast to 131
  111.         else
  112.           set actualCast to actualCast - 1
  113.         end if
  114.       end if
  115.       set the castNum of sprite 30 to actualCast
  116.       updateStage()
  117.       myDelay(5)
  118.     end repeat
  119.   else
  120.     set angleNew to 360 - angleNew
  121.     set increments to integer((angleNew / 30) + integer(angleNew mod 30 / 15))
  122.     repeat with i = 1 to increments
  123.       if actualCast = 31 then
  124.         set actualCast to 20
  125.       else
  126.         if actualCast = 131 then
  127.           set actualCast to 120
  128.         else
  129.           set actualCast to actualCast + 1
  130.         end if
  131.       end if
  132.       set the castNum of sprite 30 to actualCast
  133.       updateStage()
  134.       myDelay(5)
  135.     end repeat
  136.   end if
  137. end
  138.  
  139. on myDelay number
  140.   startTimer()
  141.   repeat while the timer < number
  142.     nothing()
  143.   end repeat
  144. end
  145.  
  146. on lookAtMe whchSprt, newH, newV
  147.   set x1 to the locH of sprite whchSprt
  148.   set y1 to the locV of sprite whchSprt
  149.   set x2 to newH
  150.   set y2 to newV
  151.   set xDist to x2 - x1
  152.   set yDist to y2 - y1
  153.   changeCharacter(xDist, yDist)
  154. end
  155.