Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --zootsuitman
- nb={}
- nb[1]= peripheral.wrap("music_0")
- nb[2]= peripheral.wrap("music_1")
- nb[3]= peripheral.wrap("music_2")
- nb[4]= peripheral.wrap("music_3")
- nb[5]= peripheral.wrap("music_4")
- local num= 1
- function setUp()
- term.clear()
- term.setCursorPos(1,1)
- term.setBackgroundColor(colors.brown)
- term.clear()
- bg= paintutils.loadImage(".bg")
- paintutils.drawImage(bg,1,1)
- term.setCursorPos(1,1)
- term.setBackgroundColor(colors.green)
- term.clearLine()
- term.setCursorPos(1,2)
- term.setBackgroundColor(colors.green)
- term.clearLine()
- term.setCursorPos(18,1)
- print("ZSI Synthesizer")
- term.setCursorPos(18,2)
- print("By zootsuitman")
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(11,3)
- write(" Piano ")
- term.setBackgroundColor(colors.lightGray)
- term.setCursorPos(27,3)
- write(" Bass Drum ")
- term.setCursorPos(11,5)
- write(" Clicks ")
- term.setCursorPos(27,5)
- write(" Snare Drum ")
- term.setCursorPos(19,7)
- write(" Bass Guitar ")
- end
- setUp()
- while true do
- local event,button,x,y= os.pullEventRaw()
- if event== "mouse_click" then
- if x>=11 and x<=24 and y==3 then
- num=1
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(11,3)
- write(" Piano ")
- term.setBackgroundColor(colors.lightGray)
- term.setCursorPos(27,3)
- write(" Bass Drum ")
- term.setCursorPos(11,5)
- write(" Clicks ")
- term.setCursorPos(27,5)
- write(" Snare Drum ")
- term.setCursorPos(19,7)
- write(" Bass Guitar ")
- elseif x>=27 and x<=40 and y==3 then
- num=2
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(27,3)
- write(" Bass Drum ")
- term.setBackgroundColor(colors.lightGray)
- term.setCursorPos(11,3)
- write(" Piano ")
- term.setCursorPos(11,5)
- write(" Clicks ")
- term.setCursorPos(27,5)
- write(" Snare Drum ")
- term.setCursorPos(19,7)
- write(" Bass Guitar ")
- elseif x>=11 and x<=24 and y==5 then
- num=3
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(11,5)
- write(" Clicks ")
- term.setBackgroundColor(colors.lightGray)
- term.setCursorPos(11,3)
- write(" Piano ")
- term.setCursorPos(27,3)
- write(" Bass Drum ")
- term.setCursorPos(27,5)
- write(" Snare Drum ")
- term.setCursorPos(19,7)
- write(" Bass Guitar ")
- elseif x>=27 and x<=40 and y==5 then
- num=4
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(27,5)
- write(" Snare Drum ")
- term.setBackgroundColor(colors.lightGray)
- term.setCursorPos(11,3)
- write(" Piano ")
- term.setCursorPos(27,3)
- write(" Bass Drum ")
- term.setCursorPos(11,5)
- write(" Clicks ")
- term.setCursorPos(19,7)
- write(" Bass Guitar ")
- elseif x>=19 and x<=32 and y==7 then
- num=5
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(19,7)
- write(" Bass Guitar ")
- term.setBackgroundColor(colors.lightGray)
- term.setCursorPos(11,3)
- write(" Piano ")
- term.setCursorPos(27,3)
- write(" Bass Drum ")
- term.setCursorPos(11,5)
- write(" Clicks ")
- term.setCursorPos(27,5)
- write(" Snare Drum ")
- elseif x>=4 and x<=6 and y<=13 and y>=10 then
- nb[num].setPitch(0)
- nb[num].triggerNote()
- elseif x>=7 and x<=9 and y<=13 and y>=10 then
- nb[num].setPitch(2)
- nb[num].triggerNote()
- elseif x>=10 and x<=12 and y<=13 and y>=10 then
- nb[num].setPitch(4)
- nb[num].triggerNote()
- elseif x>=16 and x<=18 and y<=13 and y>=10 then
- nb[num].setPitch(7)
- nb[num].triggerNote()
- elseif x>=19 and x<=21 and y<=13 and y>=10 then
- nb[num].setPitch(9)
- nb[num].triggerNote()
- elseif x>=25 and x<=27 and y<=13 and y>=10 then
- nb[num].setPitch(12)
- nb[num].triggerNote()
- elseif x>=28 and x<=30 and y<=13 and y>=10 then
- nb[num].setPitch(14)
- nb[num].triggerNote()
- elseif x>=31 and x<=33 and y<=13 and y>=10 then
- nb[num].setPitch(16)
- nb[num].triggerNote()
- elseif x>=37 and x<=39 and y<=13 and y>=10 then
- nb[num].setPitch(19)
- nb[num].triggerNote()
- elseif x>=40 and x<=42 and y<=13 and y>=10 then
- nb[num].setPitch(21)
- nb[num].triggerNote()
- elseif x>=46 and x<=48 and y<=13 and y>=10 then
- nb[num].setPitch(24)
- nb[num].triggerNote()
- elseif x>=6 and x<=7 and y<=16 and y>=14 then
- nb[num].setPitch(1)
- nb[num].triggerNote()
- elseif x>=9 and x<=10 and y<=16 and y>=14 then
- nb[num].setPitch(3)
- nb[num].triggerNote()
- elseif x>=12 and x<=13 and y<=16 and y>=14 then
- nb[num].setPitch(5)
- nb[num].triggerNote()
- elseif x>=15 and x<=16 and y<=16 and y>=14 then
- nb[num].setPitch(6)
- nb[num].triggerNote()
- elseif x>=18 and x<=19 and y<=16 and y>=14 then
- nb[num].setPitch(8)
- nb[num].triggerNote()
- elseif x>=21 and x<=22 and y<=16 and y>=14 then
- nb[num].setPitch(10)
- nb[num].triggerNote()
- elseif x>=24 and x<=25 and y<=16 and y>=14 then
- nb[num].setPitch(11)
- nb[num].triggerNote()
- elseif x>=27 and x<=28 and y<=16 and y>=14 then
- nb[num].setPitch(13)
- nb[num].triggerNote()
- elseif x>=30 and x<=31 and y<=16 and y>=14 then
- nb[num].setPitch(15)
- nb[num].triggerNote()
- elseif x>=33 and x<=34 and y<=16 and y>=14 then
- nb[num].setPitch(17)
- nb[num].triggerNote()
- elseif x>=36 and x<=37 and y<=16 and y>=14 then
- nb[num].setPitch(18)
- nb[num].triggerNote()
- elseif x>=39 and x<=40 and y<=16 and y>=14 then
- nb[num].setPitch(20)
- nb[num].triggerNote()
- elseif x>=42 and x<=43 and y<=16 and y>=14 then
- nb[num].setPitch(22)
- nb[num].triggerNote()
- elseif x>=45 and x<=46 and y<=16 and y>=14 then
- nb[num].setPitch(23)
- nb[num].triggerNote()
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement