home *** CD-ROM | disk | FTP | other *** search
/ Digital Design Material S…es 2: Stone Material Raw / 石素材王.iso / pc / stage.dir / 00027_system.ls < prev    next >
Encoding:
Text File  |  1997-01-21  |  4.8 KB  |  183 lines

  1. on atopentime
  2.   global topnum, selectnum
  3.   clearGlobals()
  4.   puppetSprite(47, 1)
  5.   puppetSprite(10, 1)
  6.   set the visible of sprite 10 to 0
  7.   set topnum to 10
  8.   set selectnum to 10
  9.   put "none" into field "n00"
  10.   set fields to ["n01", "n02", "n03", "n04", "n05", "n06", "n07", "n08", "n09", "n10", "n11", "n12", "n13", "n14", "n15"]
  11.   repeat with i = 1 to 15
  12.     put EMPTY into field getAt(fields, i)
  13.     puppetSprite(i + 10, 1)
  14.     set the castNum of sprite (i + 10) to the number of member "none"
  15.   end repeat
  16.   set cursorcast to the number of member "cursor"
  17.   cursor([cursorcast, cursorcast + 1])
  18.   doit(1)
  19. end
  20.  
  21. on doit num
  22.   global topnum, selectnum
  23.   set cursorcast to the number of member "cursor"
  24.   cursor([cursorcast, cursorcast + 1])
  25.   go(marker("load"))
  26.   if clickOn() < 10 then
  27.     hilitesprite(clickOn(), 1)
  28.   end if
  29.   updateStage()
  30.   if num < 1 then
  31.     set num to 1
  32.   else
  33.     if the number of lines in field "data" < num then
  34.       set num to the number of lines in field "data"
  35.     end if
  36.   end if
  37.   set zero to 70
  38.   set par to 300 / float(the number of lines in field "data" - 1)
  39.   set the locV of sprite 47 to integer((num - 1) * par) + zero
  40.   put num & "/" & the number of lines in field "data" into field "n00"
  41.   updateStage()
  42.   setdata(num - (selectnum - topnum))
  43.   setselect(num)
  44.   hilitesprite(clickOn(), 0)
  45.   go(marker("idol") - 1)
  46.   set the visible of sprite 10 to 1
  47.   cursor(-1)
  48. end
  49.  
  50. on doiticon num
  51.   global topnum, selectnum
  52.   hilitesprite(clickOn(), 1)
  53.   updateStage()
  54.   set zero to 70
  55.   set par to 300 / float(the number of lines in field "data" - 1)
  56.   set the locV of sprite 47 to integer((num - 1) * par) + zero
  57.   setselect(num)
  58.   hilitesprite(clickOn(), 0)
  59.   cursor(-1)
  60. end
  61.  
  62. on setdata localtopnum
  63.   global topnum
  64.   if voidp(topnum) then
  65.     set topnum to 0
  66.   end if
  67.   set oldtopnum to topnum
  68.   if localtopnum >= (the number of lines in field "data" - 15) then
  69.     set topnum to the number of lines in field "data" - 15 + 1
  70.   else
  71.     if localtopnum < 1 then
  72.       set topnum to 1
  73.     else
  74.       set topnum to localtopnum
  75.     end if
  76.   end if
  77.   set the visible of sprite 48 to 1
  78.   repeat with i = 1 to 15
  79.     set the castNum of sprite (i + 10) to 100 + (i + topnum - 1)
  80.     updateStage()
  81.     set namefield to getAt(["n01", "n02", "n03", "n04", "n05", "n06", "n07", "n08", "n09", "n10", "n11", "n12", "n13", "n14", "n15"], i)
  82.     put line i + topnum - 1 of field "files" into field namefield
  83.     set the width of sprite 48 to integer(420 / 15 * i)
  84.   end repeat
  85.   set the visible of sprite 48 to 0
  86. end
  87.  
  88. on setselect num
  89.   global topnum, selectnum
  90.   if (topnum > num) or (num >= (topnum + 15)) then
  91.     exit
  92.   end if
  93.   set the locH of sprite 10 to the locH of sprite (num - topnum + 1 + 10)
  94.   set the locV of sprite 10 to the locV of sprite (num - topnum + 1 + 10)
  95.   put num & "/" & the number of lines in field "data" into field "n00"
  96.   set selectnum to num
  97. end
  98.  
  99. on wait tick
  100.   startTimer()
  101.   repeat while the timer < tick
  102.     nothing()
  103.   end repeat
  104. end
  105.  
  106. on setnone
  107.   put "none" into field "n00"
  108.   repeat with i = 1 to 15
  109.     put "√ᬪ√ᬵ" into field getAt(["n01", "n02", "n03", "n04", "n05", "n06", "n07", "n08", "n09", "n10", "n11", "n12", "n13", "n14", "n15"], i)
  110.     set the castNum of sprite (i + 10) to the number of member "none"
  111.   end repeat
  112. end
  113.  
  114. on loaddata
  115.   repeat with i = 1 to the number of lines in field "data"
  116.     importFileInto(cast (i + 100), pathName() & "mini:" & line i of field "files")
  117.   end repeat
  118. end
  119.  
  120. on slidebar
  121.   global selectnum
  122.   set zero to 70
  123.   set par to 300 / float(the number of lines in field "data" - 1)
  124.   repeat while the mouseDown
  125.     if mouseV() < zero then
  126.       set vv to zero
  127.     else
  128.       if mouseV() > (zero + 300) then
  129.         set vv to zero + 300
  130.       else
  131.         set vv to mouseV()
  132.       end if
  133.     end if
  134.     set the locV of sprite 47 to vv
  135.     set num to integer((vv - zero) / par) + 1
  136.     put num & "/" & the number of lines in field "data" into field "n00"
  137.     updateStage()
  138.   end repeat
  139.   if selectnum <> num then
  140.     doit(num)
  141.   end if
  142. end
  143.  
  144. on hilitesprite spritenum, trueorfalse
  145.   if trueorfalse = 1 then
  146.     set the foreColor of sprite spritenum to 0
  147.     set the backColor of sprite spritenum to 255
  148.   else
  149.     set the foreColor of sprite spritenum to 255
  150.     set the backColor of sprite spritenum to 0
  151.   end if
  152. end
  153.  
  154. on fullsize
  155.   global selectnum
  156.   hilitesprite(clickOn(), 1)
  157.   updateStage()
  158.   set cursorcast to the number of member "cursor"
  159.   cursor([cursorcast, cursorcast + 1])
  160.   hilitesprite(clickOn(), 0)
  161.   pen()
  162.   cursor(-1)
  163. end
  164.  
  165. on copytohd
  166.   global selectnum
  167.   set sorce to line selectnum of field "files"
  168.   if the machineType = 256 then
  169.     set sorcefile to the pathName & "pict\" & sorce
  170.     filecopyxtras(sorcefile)
  171.   else
  172.     set sorcefile to the pathName & "pict:" & sorce
  173.     filecopyxtras(sorcefile)
  174.   end if
  175. end
  176.  
  177. on ending
  178.   repeat with i = 1 to 48
  179.     puppetSprite(i, 0)
  180.   end repeat
  181.   go(marker("ending"))
  182. end
  183.