Advertisement
zootsuitman

Piano

Feb 4th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.02 KB | None | 0 0
  1. --zootsuitman
  2.  
  3. nb={}
  4. nb[1]= peripheral.wrap("music_0")
  5. nb[2]= peripheral.wrap("music_1")
  6. nb[3]= peripheral.wrap("music_2")
  7. nb[4]= peripheral.wrap("music_3")
  8. nb[5]= peripheral.wrap("music_4")
  9.  
  10. local num= 1
  11.  
  12. function setUp()
  13.   term.clear()
  14.   term.setCursorPos(1,1)
  15.   term.setBackgroundColor(colors.brown)
  16.   term.clear()
  17.   bg= paintutils.loadImage(".bg")
  18.   paintutils.drawImage(bg,1,1)
  19.   term.setCursorPos(1,1)
  20.   term.setBackgroundColor(colors.green)
  21.   term.clearLine()
  22.   term.setCursorPos(1,2)
  23.   term.setBackgroundColor(colors.green)
  24.   term.clearLine()
  25.   term.setCursorPos(18,1)
  26.   print("ZSI Synthesizer")
  27.   term.setCursorPos(18,2)
  28.   print("By  zootsuitman")
  29.   term.setBackgroundColor(colors.gray)
  30.   term.setCursorPos(11,3)
  31.   write("    Piano    ")
  32.   term.setBackgroundColor(colors.lightGray)
  33.   term.setCursorPos(27,3)
  34.   write("  Bass Drum  ")
  35.   term.setCursorPos(11,5)
  36.   write("   Clicks    ")
  37.   term.setCursorPos(27,5)
  38.   write(" Snare Drum  ")
  39.   term.setCursorPos(19,7)
  40.   write(" Bass Guitar ")
  41. end
  42.  
  43. setUp()
  44.  
  45. while true do
  46.   local event,button,x,y= os.pullEventRaw()
  47.   if event== "mouse_click" then
  48.     if x>=11 and x<=24 and y==3 then
  49.       num=1
  50.       term.setBackgroundColor(colors.gray)
  51.       term.setCursorPos(11,3)
  52.       write("    Piano    ")
  53.       term.setBackgroundColor(colors.lightGray)
  54.       term.setCursorPos(27,3)
  55.       write("  Bass Drum  ")
  56.       term.setCursorPos(11,5)
  57.       write("   Clicks    ")
  58.       term.setCursorPos(27,5)
  59.       write(" Snare Drum  ")
  60.       term.setCursorPos(19,7)
  61.       write(" Bass Guitar ")
  62.     elseif x>=27 and x<=40 and y==3 then
  63.       num=2
  64.       term.setBackgroundColor(colors.gray)
  65.       term.setCursorPos(27,3)
  66.       write("  Bass Drum  ")
  67.       term.setBackgroundColor(colors.lightGray)
  68.       term.setCursorPos(11,3)
  69.       write("    Piano    ")
  70.       term.setCursorPos(11,5)
  71.       write("   Clicks    ")
  72.       term.setCursorPos(27,5)
  73.       write(" Snare Drum  ")
  74.       term.setCursorPos(19,7)
  75.       write(" Bass Guitar ")
  76.     elseif x>=11 and x<=24 and y==5 then
  77.       num=3
  78.       term.setBackgroundColor(colors.gray)
  79.       term.setCursorPos(11,5)
  80.       write("   Clicks    ")
  81.       term.setBackgroundColor(colors.lightGray)
  82.       term.setCursorPos(11,3)
  83.       write("    Piano    ")
  84.       term.setCursorPos(27,3)
  85.       write("  Bass Drum  ")
  86.       term.setCursorPos(27,5)
  87.       write(" Snare Drum  ")
  88.       term.setCursorPos(19,7)
  89.       write(" Bass Guitar ")
  90.     elseif x>=27 and x<=40 and y==5 then
  91.       num=4
  92.       term.setBackgroundColor(colors.gray)
  93.       term.setCursorPos(27,5)
  94.       write(" Snare Drum  ")
  95.       term.setBackgroundColor(colors.lightGray)
  96.       term.setCursorPos(11,3)
  97.       write("    Piano    ")
  98.       term.setCursorPos(27,3)
  99.       write("  Bass Drum  ")
  100.       term.setCursorPos(11,5)
  101.       write("   Clicks    ")
  102.       term.setCursorPos(19,7)
  103.       write(" Bass Guitar ")
  104.     elseif x>=19 and x<=32 and y==7 then
  105.       num=5
  106.       term.setBackgroundColor(colors.gray)
  107.       term.setCursorPos(19,7)
  108.       write(" Bass Guitar ")
  109.       term.setBackgroundColor(colors.lightGray)
  110.       term.setCursorPos(11,3)
  111.       write("    Piano    ")
  112.       term.setCursorPos(27,3)
  113.       write("  Bass Drum  ")
  114.       term.setCursorPos(11,5)
  115.       write("   Clicks    ")
  116.       term.setCursorPos(27,5)
  117.       write(" Snare Drum  ")
  118.     elseif x>=4 and x<=6 and y<=13 and y>=10 then
  119.       nb[num].setPitch(0)
  120.       nb[num].triggerNote()
  121.     elseif x>=7 and x<=9 and y<=13 and y>=10 then
  122.       nb[num].setPitch(2)
  123.       nb[num].triggerNote()
  124.     elseif x>=10 and x<=12 and y<=13 and y>=10 then
  125.       nb[num].setPitch(4)
  126.       nb[num].triggerNote()
  127.     elseif x>=16 and x<=18 and y<=13 and y>=10 then
  128.       nb[num].setPitch(7)
  129.       nb[num].triggerNote()
  130.     elseif x>=19 and x<=21 and y<=13 and y>=10 then
  131.       nb[num].setPitch(9)
  132.       nb[num].triggerNote()
  133.     elseif x>=25 and x<=27 and y<=13 and y>=10 then
  134.       nb[num].setPitch(12)
  135.       nb[num].triggerNote()
  136.     elseif x>=28 and x<=30 and y<=13 and y>=10 then
  137.       nb[num].setPitch(14)
  138.       nb[num].triggerNote()
  139.     elseif x>=31 and x<=33 and y<=13 and y>=10 then
  140.       nb[num].setPitch(16)
  141.       nb[num].triggerNote()
  142.     elseif x>=37 and x<=39 and y<=13 and y>=10 then
  143.       nb[num].setPitch(19)
  144.       nb[num].triggerNote()
  145.     elseif x>=40 and x<=42 and y<=13 and y>=10 then
  146.       nb[num].setPitch(21)
  147.       nb[num].triggerNote()
  148.     elseif x>=46 and x<=48 and y<=13 and y>=10 then
  149.       nb[num].setPitch(24)
  150.       nb[num].triggerNote()
  151.    
  152.     elseif x>=6 and x<=7 and y<=16 and y>=14 then
  153.       nb[num].setPitch(1)
  154.       nb[num].triggerNote()
  155.     elseif x>=9 and x<=10 and y<=16 and y>=14 then
  156.       nb[num].setPitch(3)
  157.       nb[num].triggerNote()
  158.     elseif x>=12 and x<=13 and y<=16 and y>=14 then
  159.       nb[num].setPitch(5)
  160.       nb[num].triggerNote()
  161.     elseif x>=15 and x<=16 and y<=16 and y>=14 then
  162.       nb[num].setPitch(6)
  163.       nb[num].triggerNote()
  164.     elseif x>=18 and x<=19 and y<=16 and y>=14 then
  165.       nb[num].setPitch(8)
  166.       nb[num].triggerNote()
  167.     elseif x>=21 and x<=22 and y<=16 and y>=14 then
  168.       nb[num].setPitch(10)
  169.       nb[num].triggerNote()
  170.     elseif x>=24 and x<=25 and y<=16 and y>=14 then
  171.       nb[num].setPitch(11)
  172.       nb[num].triggerNote()
  173.     elseif x>=27 and x<=28 and y<=16 and y>=14 then
  174.       nb[num].setPitch(13)
  175.       nb[num].triggerNote()
  176.      elseif x>=30 and x<=31 and y<=16 and y>=14 then
  177.       nb[num].setPitch(15)
  178.       nb[num].triggerNote()
  179.     elseif x>=33 and x<=34 and y<=16 and y>=14 then
  180.       nb[num].setPitch(17)
  181.       nb[num].triggerNote()
  182.     elseif x>=36 and x<=37 and y<=16 and y>=14 then
  183.       nb[num].setPitch(18)
  184.       nb[num].triggerNote()
  185.     elseif x>=39 and x<=40 and y<=16 and y>=14 then
  186.       nb[num].setPitch(20)
  187.       nb[num].triggerNote()
  188.     elseif x>=42 and x<=43 and y<=16 and y>=14 then
  189.       nb[num].setPitch(22)
  190.       nb[num].triggerNote()
  191.     elseif x>=45 and x<=46 and y<=16 and y>=14 then
  192.       nb[num].setPitch(23)
  193.       nb[num].triggerNote()
  194.     end
  195.   end
  196.   end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement