home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 25 / CDMM_25.iso / takeru / menu.dxr / 00001_main.ls next >
Encoding:
Text File  |  1996-09-04  |  2.4 KB  |  106 lines

  1. on startMovie
  2.   global gflag
  3.   set gflag to the volume of sound 4
  4.   puppetSound(1, 0)
  5.   puppetSound(2, 0)
  6.   set the volume of sound 4 to 50
  7.   puppetSprite(1, 1)
  8.   puppetSprite(30, 1)
  9.   set the locH of sprite 1 to 320
  10.   set the locV of sprite 1 to 240
  11.   set the volume of sound 2 to 255
  12.   set the volume of sound 1 to 255
  13. end
  14.  
  15. on stopMovie
  16. end
  17.  
  18. on checkMoving
  19.   if the mouseH > 580 then
  20.     if marker(0) < 12 then
  21.       cursor([14, 15])
  22.       updateStage()
  23.       turn(0)
  24.       repeat with number = 1 to 40
  25.         set the locH of sprite 1 to the locH of sprite 1 - 16
  26.         updateStage()
  27.       end repeat
  28.       go(marker(1))
  29.     end if
  30.   else
  31.     if the mouseH < 60 then
  32.       if marker(0) > 3 then
  33.         cursor([12, 13])
  34.         turn(180)
  35.         repeat with number = 1 to 40
  36.           set the locH of sprite 1 to the locH of sprite 1 + 16
  37.           updateStage()
  38.         end repeat
  39.         if marker(0) = 297 then
  40.           go("3a")
  41.         end if
  42.         go(marker(-1))
  43.       end if
  44.     end if
  45.   end if
  46. end
  47.  
  48. on moveSprtDiag whchSprt, newH, newV
  49.   set x1 to the locH of sprite whchSprt
  50.   set y1 to the locV of sprite whchSprt
  51.   set x2 to newH
  52.   set y2 to newV
  53.   set stepSize to 20
  54.   set stepDelay to 0
  55.   if (x1 <> x2) or (y1 <> y2) then
  56.     if x1 > x2 then
  57.       set xVal to -1
  58.     else
  59.       set xVal to 1
  60.     end if
  61.     if y1 > y2 then
  62.       set yVal to -1
  63.     else
  64.       set yVal to 1
  65.     end if
  66.     set xDist to x2 - x1
  67.     set yDist to y2 - y1
  68.     set xDistAbs to abs(xDist)
  69.     set yDistAbs to abs(yDist)
  70.     set x to x1 * 1.0
  71.     set y to y1 * 1.0
  72.     if yDistAbs > xDistAbs then
  73.       if yDistAbs = 0 then
  74.         set xFact to 0
  75.       else
  76.         set xFact to 1.0 * xDistAbs / yDistAbs * stepSize
  77.       end if
  78.       set yFact to stepSize
  79.     else
  80.       if xDistAbs = 0 then
  81.         set yFact to 0
  82.       else
  83.         set yFact to 1.0 * yDistAbs / xDistAbs * stepSize
  84.       end if
  85.       set xFact to stepSize
  86.     end if
  87.     repeat while (x <> x2) or (y <> y2)
  88.       set x to x + (xFact * xVal)
  89.       set y to y + (yFact * yVal)
  90.       if abs(x - x2) <= xFact then
  91.         set x to x2
  92.       end if
  93.       if abs(y - y2) <= yFact then
  94.         set y to y2
  95.       end if
  96.       set the locH of sprite whchSprt to integer(x)
  97.       set the locV of sprite whchSprt to integer(y)
  98.       updateStage()
  99.       set curTicks to the ticks
  100.       repeat while the ticks < (curTicks + stepDelay)
  101.         nothing()
  102.       end repeat
  103.     end repeat
  104.   end if
  105. end
  106.