home *** CD-ROM | disk | FTP | other *** search
/ תקליטור אוסף מעל 200 משחקים מרתקים / over-200-games-micro-a-media.iso / CONNECTD / SHARED.DIR / 01000.ls next >
Encoding:
Text File  |  1996-01-12  |  11.8 KB  |  506 lines

  1. on center
  2.   set the centerStage to 1
  3.   set the fixStageSize to 1
  4. end
  5.  
  6. on setLocal
  7.   puppetSprite(48, 1)
  8.   set the castNum of sprite 48 to the number of cast "dot"
  9. end
  10.  
  11. on mouseCheck
  12.   global ram, invOn, level, invCurs, invMask, plz1Door, plz2Door, cyd2Door, cyd4Door, cyd7Door
  13.   if (the mouseCast = the number of cast "exitL") or (the mouseCast = the number of cast "exitL.alt") then
  14.     cursor([2, 3])
  15.     updateStage()
  16.   else
  17.     if (the mouseCast = the number of cast "exitR") or (the mouseCast = the number of cast "exitR.alt") then
  18.       cursor([4, 5])
  19.       updateStage()
  20.     else
  21.       if the mouseCast = the number of cast "forward" then
  22.         cursor([6, 7])
  23.         updateStage()
  24.       else
  25.         if the mouseCast = the number of cast "back" then
  26.           cursor([8, 9])
  27.           updateStage()
  28.         else
  29.           if the mouseCast = the number of cast "do" then
  30.             if invOn = 1 then
  31.               cursor([invCurs, invMask])
  32.             else
  33.               cursor([10, 11])
  34.             end if
  35.             updateStage()
  36.           else
  37.             if the mouseCast = the number of cast "talk" then
  38.               if invOn = 1 then
  39.                 cursor([invCurs, invMask])
  40.               else
  41.                 cursor([12, 13])
  42.               end if
  43.               updateStage()
  44.             else
  45.               if the mouseCast = the number of cast "door" then
  46.                 if level = 1 then
  47.                   if (the frameLabel = plz1Door) or (the frameLabel = plz2Door) or (the frameLabel = (plz1Door & "b")) or (the frameLabel = (plz2Door & "b")) or (the frameLabel = cyd2Door) or (the frameLabel = cyd4Door) or (the frameLabel = cyd7Door) then
  48.                     cursor([6, 7])
  49.                     updateStage()
  50.                   else
  51.                     cursor([10, 11])
  52.                     updateStage()
  53.                   end if
  54.                 else
  55.                   cursor([6, 7])
  56.                   updateStage()
  57.                 end if
  58.               else
  59.                 if invOn = 0 then
  60.                   cursor(0)
  61.                   updateStage()
  62.                 else
  63.                   if invOn = 1 then
  64.                     cursor([invCurs, invMask])
  65.                     updateStage()
  66.                   end if
  67.                 end if
  68.               end if
  69.             end if
  70.           end if
  71.         end if
  72.       end if
  73.     end if
  74.   end if
  75.   go(the frame)
  76. end
  77.  
  78. on navLeft altNode
  79.   global seton, invOn, invCurs, thisnode, thisdir
  80.   set invOn to 0
  81.   set invCurs to 0
  82.   if seton = 0 then
  83.     set thisnode to chars(the frameLabel, 1, 5)
  84.     set thisdir to chars(the frameLabel, 6, 6)
  85.     if thisdir = "N" then
  86.       preLoadCast(thisnode & "NW")
  87.       preLoadCast(thisnode & "W")
  88.       if altNode = "a" then
  89.         go(thisnode & "NWa")
  90.         go(thisnode & "Wa")
  91.       else
  92.         if altNode = "b" then
  93.           go(thisnode & "NWb")
  94.           go(thisnode & "Wb")
  95.         else
  96.           go(thisnode & "NW")
  97.           go(thisnode & "W")
  98.         end if
  99.       end if
  100.     else
  101.       if thisdir = "W" then
  102.         preLoadCast(thisnode & "SW")
  103.         preLoadCast(thisnode & "S")
  104.         if altNode = "a" then
  105.           go(thisnode & "SWa")
  106.           go(thisnode & "Sa")
  107.         else
  108.           if altNode = "b" then
  109.             go(thisnode & "SWb")
  110.             go(thisnode & "Sb")
  111.           else
  112.             go(thisnode & "SW")
  113.             go(thisnode & "S")
  114.           end if
  115.         end if
  116.       else
  117.         if thisdir = "S" then
  118.           preLoadCast(thisnode & "SE")
  119.           preLoadCast(thisnode & "E")
  120.           if altNode = "a" then
  121.             go(thisnode & "SEa")
  122.             go(thisnode & "Ea")
  123.           else
  124.             if altNode = "b" then
  125.               go(thisnode & "SEb")
  126.               go(thisnode & "Eb")
  127.             else
  128.               go(thisnode & "SE")
  129.               go(thisnode & "E")
  130.             end if
  131.           end if
  132.         else
  133.           if thisdir = "E" then
  134.             preLoadCast(thisnode & "NE")
  135.             preLoadCast(thisnode & "N")
  136.             if altNode = "a" then
  137.               go(thisnode & "NEa")
  138.               go(thisnode & "Na")
  139.             else
  140.               if altNode = "b" then
  141.                 go(thisnode & "NEb")
  142.                 go(thisnode & "Nb")
  143.               else
  144.                 go(thisnode & "NE")
  145.                 go(thisnode & "N")
  146.               end if
  147.             end if
  148.           end if
  149.         end if
  150.       end if
  151.     end if
  152.   end if
  153. end
  154.  
  155. on navRight altNode
  156.   global seton, invOn, invCurs, thisnode, thisdir
  157.   set invOn to 0
  158.   set invCurs to 0
  159.   if seton = 0 then
  160.     set thisnode to chars(the frameLabel, 1, 5)
  161.     set thisdir to chars(the frameLabel, 6, 6)
  162.     if thisdir = "N" then
  163.       preLoadCast(thisnode & "NE")
  164.       preLoadCast(thisnode & "E")
  165.       if altNode = "a" then
  166.         go(thisnode & "NEa")
  167.         go(thisnode & "Ea")
  168.       else
  169.         if altNode = "b" then
  170.           go(thisnode & "NEb")
  171.           go(thisnode & "Eb")
  172.         else
  173.           go(thisnode & "NE")
  174.           go(thisnode & "E")
  175.         end if
  176.       end if
  177.     else
  178.       if thisdir = "E" then
  179.         preLoadCast(thisnode & "SE")
  180.         preLoadCast(thisnode & "S")
  181.         if altNode = "a" then
  182.           go(thisnode & "SEa")
  183.           go(thisnode & "Sa")
  184.         else
  185.           if altNode = "b" then
  186.             go(thisnode & "SEb")
  187.             go(thisnode & "Sb")
  188.           else
  189.             go(thisnode & "SE")
  190.             go(thisnode & "S")
  191.           end if
  192.         end if
  193.       else
  194.         if thisdir = "S" then
  195.           preLoadCast(thisnode & "SW")
  196.           preLoadCast(thisnode & "W")
  197.           if altNode = "a" then
  198.             go(thisnode & "SWa")
  199.             go(thisnode & "Wa")
  200.           else
  201.             if altNode = "b" then
  202.               go(thisnode & "SWb")
  203.               go(thisnode & "Wb")
  204.             else
  205.               go(thisnode & "SW")
  206.               go(thisnode & "W")
  207.             end if
  208.           end if
  209.         else
  210.           if thisdir = "W" then
  211.             preLoadCast(thisnode & "NW")
  212.             preLoadCast(thisnode & "N")
  213.             if altNode = "a" then
  214.               go(thisnode & "NWa")
  215.               go(thisnode & "Na")
  216.             else
  217.               if altNode = "b" then
  218.                 go(thisnode & "NWb")
  219.                 go(thisnode & "Nb")
  220.               else
  221.                 go(thisnode & "NW")
  222.                 go(thisnode & "N")
  223.               end if
  224.             end if
  225.           end if
  226.         end if
  227.       end if
  228.     end if
  229.   end if
  230. end
  231.  
  232. on forward stepFrame, toWhere
  233.   global thisnode, seton, invOn, invCurs
  234.   set invOn to 0
  235.   set invCurs to 0
  236.   set thisnode to chars(toWhere, 1, 5)
  237.   if seton = 0 then
  238.     cursor(4)
  239.     unLoad()
  240.     if stepFrame = 1 then
  241.       preLoadCast("to" & toWhere)
  242.     end if
  243.     cursor(0)
  244.     if stepFrame = 1 then
  245.       go("to" & toWhere)
  246.     else
  247.       puppetTransition(23)
  248.     end if
  249.     go(toWhere)
  250.   end if
  251. end
  252.  
  253. on doSound whichSound
  254.   puppetSound(whichSound)
  255.   updateStage()
  256. end
  257.  
  258. on qtButton whichOne
  259.   global QTon, savePlace, JDspecial, special, level, pal, winVers, helpOn
  260.   if QTon = 0 then
  261.     set QTon to 1
  262.     if helpOn = 0 then
  263.       set savePlace to the frame
  264.       set pal to the framePalette
  265.       puppetSound(0)
  266.       sound stop 2
  267.       if JDspecial <> EMPTY then
  268.         set holdit to JDspecial
  269.         killSpecial()
  270.         set JDspecial to holdit
  271.       end if
  272.       repeat with x = 1 to 12
  273.         if special = x then
  274.           set temp to special
  275.           set killThing to "killSpecial"
  276.           put x after killThing
  277.           do(killThing)
  278.           set special to temp
  279.         end if
  280.       end repeat
  281.     end if
  282.   end if
  283.   set helpOn to 0
  284.   if level = 4 then
  285.     if whichOne = "wrap" then
  286.       go("CQT1")
  287.     else
  288.       if whichOne = "tapestry" then
  289.         go("CQT2")
  290.       else
  291.         if whichOne = "table" then
  292.           go("CQT3")
  293.         else
  294.           if whichOne = "boat" then
  295.             go("CQT4")
  296.           else
  297.             if whichOne = "map" then
  298.               go("CQT5")
  299.             else
  300.               if whichOne = "bible" then
  301.                 go("CQT6")
  302.               else
  303.                 if whichOne = "telescope" then
  304.                   go("CQT7")
  305.                 else
  306.                   if whichOne = "watch" then
  307.                     go("CQT8")
  308.                   end if
  309.                 end if
  310.               end if
  311.             end if
  312.           end if
  313.         end if
  314.       end if
  315.     end if
  316.   else
  317.     if level = 5 then
  318.       if whichOne = "teacup" then
  319.         go("CQT1")
  320.       else
  321.         if whichOne = "vase" then
  322.           go("CQT2")
  323.         else
  324.           if whichOne = "hiero" then
  325.             go("CQT3")
  326.           else
  327.             if whichOne = "therm" then
  328.               go("CQT4")
  329.             else
  330.               if whichOne = "pi" then
  331.                 go("CQT5")
  332.               else
  333.                 if whichOne = "code" then
  334.                   go("CQT6")
  335.                 else
  336.                   if whichOne = "boat" then
  337.                     go("CQT7")
  338.                   else
  339.                     if whichOne = "cellPhone" then
  340.                       go("CQT8")
  341.                     end if
  342.                   end if
  343.                 end if
  344.               end if
  345.             end if
  346.           end if
  347.         end if
  348.       end if
  349.     end if
  350.   end if
  351.   tell the stage
  352.     if (the colorDepth = 8) and (winVers <> 1) then
  353.       fixpal(mPatchIt)
  354.     end if
  355.     if level = 1 then
  356.       puppetPalette("system")
  357.     else
  358.       set palThing to "preloadCast" && QUOTE & "pal lev"
  359.       put level after palThing
  360.       put " + System" & QUOTE after palThing
  361.       do(palThing)
  362.       set palThing to "puppetPalette" && QUOTE & "pal lev"
  363.       put level after palThing
  364.       put " + System" & QUOTE after palThing
  365.       put ", 60" after palThing
  366.       do(palThing)
  367.     end if
  368.     go("QT" & level)
  369.   end tell
  370. end
  371.  
  372. on closeQT
  373.   go(the frame + 1)
  374. end
  375.  
  376. on closeQT2
  377.   global pal, level, JDspecial, special, savePlace, QTon, saveQT
  378.   tell the stage
  379.     if pal = -1 then
  380.       puppetPalette("system", 60)
  381.     else
  382.       preLoadCast(pal)
  383.       puppetPalette(pal, 60)
  384.     end if
  385.     go("main" & level)
  386.   end tell
  387.   if JDspecial <> EMPTY then
  388.     setSpecial(JDspecial)
  389.   end if
  390.   repeat with x = 1 to 12
  391.     if special = x then
  392.       set setThing to "setSpecial"
  393.       put x after setThing
  394.       do(setThing)
  395.     end if
  396.   end repeat
  397.   go(value(savePlace))
  398.   set QTon to 0
  399.   set saveQT to EMPTY
  400. end
  401.  
  402. on goQt whichSequence, whichPalette
  403.   global invOn, invCurs, QTc, winVers
  404.   set invOn to 0
  405.   set invCurs to 0
  406.   cursor(200)
  407.   tell the stage
  408.     cursor(200)
  409.   end tell
  410.   set QTc to whichSequence & ".c"
  411.   if whichPalette <> 0 then
  412.     tell the stage
  413.       preLoadCast(whichPalette)
  414.       puppetPalette(whichPalette, 60)
  415.     end tell
  416.   end if
  417.   if (the colorDepth = 8) and (winVers <> 1) then
  418.     tell the stage
  419.       fixpal(mPatchIt)
  420.     end tell
  421.   end if
  422.   if (the colorDepth = 16) and (winVers <> 1) then
  423.     go(whichSequence & ".16")
  424.     exit
  425.   else
  426.     if winVers = 1 then
  427.       sound stop 1
  428.       sound stop 2
  429.     end if
  430.     go(whichSequence & ".8")
  431.   end if
  432. end
  433.  
  434. on goto whichFrame
  435.   global invOn, ram
  436.   set invOn to 0
  437.   go(whichFrame)
  438. end
  439.  
  440. on gotoU whichFrame
  441.   global invOn
  442.   set invOn to 0
  443.   unLoad()
  444.   go(whichFrame)
  445. end
  446.  
  447. on goto.alt whichFrame
  448.   global seton, ram
  449.   if seton = 0 then
  450.     if ram < 4000 then
  451.       set ram to ram + 150
  452.     else
  453.       unLoad()
  454.       set ram to 0
  455.     end if
  456.     go(whichFrame)
  457.   end if
  458. end
  459.  
  460. on ram howmuch
  461.   global ram
  462.   set ram to ram + howmuch
  463. end
  464.  
  465. on checksound whichChannel
  466.   cursor(200)
  467.   repeat while the soundBusy of whichChannel
  468.     nothing()
  469.   end repeat
  470.   cursor(0)
  471.   updateStage()
  472. end
  473.  
  474. on wait howLong
  475.   startTimer()
  476.   repeat while the timer < howLong
  477.     go(the frame)
  478.   end repeat
  479. end
  480.  
  481. on repeatQT whichChannel
  482.   repeat while the movieTime of sprite whichChannel < the stopTime of sprite whichChannel
  483.     go(the frame)
  484.   end repeat
  485. end
  486.  
  487. on wr
  488.   puppetTransition(1, 0, 60)
  489. end
  490.  
  491. on wl
  492.   puppetTransition(2, 0, 60)
  493. end
  494.  
  495. on dp
  496.   puppetTransition(23)
  497. end
  498.  
  499. on wu
  500.   puppetTransition(4, 0, 60)
  501. end
  502.  
  503. on wd
  504.   puppetTransition(3, 0, 60)
  505. end
  506.