Advertisement
Guest User

snged

a guest
May 12th, 2013
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 16.09 KB | None | 0 0
  1. -- snged v1.0
  2. --  by chiloxsan
  3.  
  4. function prompt(promptString)
  5.   local width, height = term.getSize()
  6.   term.setCursorPos(1, height)
  7.   term.setBackgroundColor(gui_colours.highlight)
  8.   term.setTextColor(gui_colours.highlight_text)
  9.   term.clearLine()
  10.   write(promptString)
  11.   return read()
  12. end
  13.  
  14. statusbar = {
  15.   ["new"] = function(songAreaObj)
  16.     return {
  17.       ["songAreaObj"] = songAreaObj,
  18.      
  19.       ["draw"] = function(self)
  20.         local width, height = term.getSize()
  21.         term.setCursorPos(width - 10, height)
  22.         term.setBackgroundColour(gui_colours.highlight)
  23.         term.setTextColour(gui_colours.highlight_text)
  24.         term.clearLine()
  25.        
  26.         if self.songAreaObj.playing then
  27.           write("|>|")
  28.         else
  29.           write("|||")
  30.         end
  31.        
  32.         if songAreaObj.highNotes then
  33.           write("OCT2|")
  34.         else
  35.           write("OCT1|")
  36.         end
  37.         if songAreaObj.recording then
  38.           term.setTextColour(colours.red)
  39.           write("REC")
  40.         else
  41.           term.setTextColour(colours.lime)
  42.           write("NAV")
  43.         end
  44.         term.setCursorPos(1, height)
  45.         term.setTextColour(gui_colours.highlight_text)
  46.         write("Pos: " .. songAreaObj.currentPos .. " | Length: " .. (songAreaObj.songObj.length + 1) .. " | Ins: " .. songAreaObj.recordIns .. " | Skip: " .. songAreaObj.skip)
  47.       end;
  48.      
  49.       ["tick"] = function(self, e, ...)
  50.         if e == "saved" then
  51.           local width, height = term.getSize()
  52.           term.setCursorPos(1, height)
  53.           term.setBackgroundColour(gui_colours.highlight)
  54.           term.setTextColour(gui_colours.highlight_text)        
  55.           term.clearLine()
  56.           write("Saved.")
  57.           sleep(1)
  58.           os.queueEvent("update")
  59.         end
  60.       end
  61.     }
  62.   end
  63. }
  64.  
  65. songArea = {
  66.   ["new"] = function(songObj)
  67.     return {
  68.       ["currentPos"] = 0,
  69.       ["songObj"]    = songObj,
  70.       ["playing"]    = false,
  71.       ["recording"]  = false,
  72.       ["recordIns"]  = 0,
  73.       ["recordCol"]  = 1,
  74.       ["highNotes"]  = false,
  75.       ["skip"]       = 1,
  76.  
  77.       ["draw"] = function(self)
  78.         local width, height = term.getSize()
  79.         local areaHeight = height - 4
  80.         local rowPos = (self.currentPos - math.floor(areaHeight / 2))
  81.         term.setCursorPos(1, 3)
  82.         for y = 1, areaHeight do
  83.           term.setBackgroundColor(gui_colours.background)
  84.           if rowPos == self.currentPos then
  85.             term.setCursorPos(1, 3 + y)
  86.             for i = 1, width do
  87.               if self.recording then
  88.                 term.setBackgroundColor(gui_colours.track_record)
  89.               else
  90.                 term.setBackgroundColor(gui_colours.track_highlight)
  91.               end
  92.               write(" ")
  93.             end
  94.           end
  95.           term.setCursorPos(1, 3 + y)
  96.           if self.songObj.songData[rowPos] ~= nil then
  97.             for i = 1, self.songObj.cols + 1 do
  98.               term.setTextColor(gui_colours.ins)
  99.               if self.songObj.songData[rowPos][(i * 2) - 1] ~= nil then
  100.                 term.setTextColor(gui_colours[self.songObj.songData[rowPos][(i * 2) - 1]])
  101.               end
  102.               if self.songObj.songData[rowPos][(i * 2) - 1] ~= nil then
  103.                 write(self.songObj.songData[rowPos][(i * 2) - 1])
  104.               else
  105.                 write(".")
  106.               end
  107.               term.setTextColor(gui_colours.note)
  108.               if self.songObj.songData[rowPos][i * 2] ~= nil then
  109.                 if #tostring(self.songObj.songData[rowPos][i * 2]) == 1 then
  110.                   write("0" .. self.songObj.songData[rowPos][i * 2])
  111.                 else
  112.                   write(self.songObj.songData[rowPos][i * 2])
  113.                 end
  114.               else
  115.                 write("..")
  116.               end
  117.               term.setTextColor(gui_colours.track_border)
  118.               if self.recording and self.recordCol == i and self.currentPos == rowPos then
  119.                 write("<")
  120.               else
  121.                 write("|")
  122.               end
  123.             end
  124.           end
  125.           rowPos = rowPos + 1
  126.         end
  127.       end;
  128.  
  129.       ["tick"] = function(self, e, ...)
  130.         local eventData = { ... }
  131.         if e == "mouse_scroll" or e == "key" then
  132.           if eventData[1] == -1 or eventData[1] == 200 then
  133.             self.currentPos = self.currentPos - 1
  134.           elseif eventData[1] == 1 or eventData[1] == 208 then
  135.             self.currentPos = self.currentPos + 1
  136.           elseif eventData[1] == 199 then
  137.             self.currentPos = 0
  138.           elseif eventData[1] == 207 then
  139.             self.currentPos = self.songObj.length
  140.           elseif eventData[1] == 57 then
  141.             self.recording = not self.recording
  142.           elseif eventData[1] == 203 and self.recording then
  143.             if self.recordCol > 1 then self.recordCol = self.recordCol - 1 end
  144.           elseif eventData[1] == 205 and self.recording then
  145.             if self.recordCol < self.songObj.cols + 1 then
  146.               self.recordCol = self.recordCol + 1
  147.             end
  148.           elseif (eventData[1] >= 16 and eventData[1] <= 27) or (e == "key" and eventData[1] == 0) then
  149.             local note = 12
  150.             if eventData[1] ~= 0 then
  151.               note = eventData[1] - 16
  152.             end
  153.  
  154.             if self.highNotes then
  155.               note = note + 12
  156.             end
  157.            
  158.             if vNoteblockObj ~= nil then
  159.               vNoteblockObj.playNote(self.recordIns, note)
  160.             else
  161.               noteblocks[1].playNote(self.recordIns, note)
  162.             end
  163.            
  164.             if self.recording and self.songObj.songData[self.currentPos] ~= nil then
  165.               if self.songObj.songData[self.currentPos][(self.recordCol * 2) - 1] == nil then
  166.                 self.songObj.songData[self.currentPos][#self.songObj.songData[self.currentPos] + 1] = self.recordIns
  167.                 self.songObj.songData[self.currentPos][#self.songObj.songData[self.currentPos] + 1] = note
  168.               else
  169.                 self.songObj.songData[self.currentPos][(self.recordCol * 2) - 1] = self.recordIns
  170.                 self.songObj.songData[self.currentPos][self.recordCol * 2] = note
  171.               end
  172.               self.songObj:rescan()
  173.               self.currentPos = self.currentPos + self.skip
  174.             end
  175.           elseif eventData[1] == 15 then
  176.             self.highNotes = (not self.highNotes)
  177.           elseif eventData[1] >= 2 and eventData[1] <= 6 then
  178.             self.recordIns = eventData[1] - 2
  179.           elseif eventData[1] == 211 and self.recording then
  180.             if self.songObj.songData[self.currentPos][self.recordCol * 2] ~= nil then
  181.               table.remove(self.songObj.songData[self.currentPos], (self.recordCol * 2) - 1)
  182.               table.remove(self.songObj.songData[self.currentPos], (self.recordCol * 2) - 1)
  183.             end
  184.             self.currentPos = self.currentPos + self.skip
  185.           elseif eventData[1] == 12 and self.skip > 0 then
  186.             self.skip = self.skip - 1
  187.           elseif eventData[1] == 13 then
  188.             self.skip = self.skip + 1
  189.           elseif eventData[1] == 28 then
  190.             self.playing = (not self.playing)
  191.           end
  192.          
  193.           if self.currentPos > self.songObj.length then self.currentPos = 0 end
  194.           if self.currentPos < 0 then self.currentPos = 0 end
  195.           if self.recordCol < 1 then self.recordCol = 1 end
  196.         end
  197.       end
  198.     }
  199.   end
  200. }
  201.  
  202. song = {
  203.   ["new"] = function()
  204.     return {
  205.       ["title"] = "",
  206.       ["length"] = 0,
  207.       ["author"] = "",
  208.       ["originalAuthour"] = "",
  209.       ["description"] = "",
  210.       ["interval"] = 0.1,
  211.       ["songData"] = {},
  212.       ["cols"] = 0,
  213.  
  214.       ["rescan"] = function(self)
  215.         for i = 0, #self.songData do
  216.           if math.floor(#self.songData[i] / 2) > self.cols then self.cols = math.floor(#self.songData[i] / 2) end
  217.         end
  218.       end;
  219.  
  220.       ["loadFromString"] = function(self, str)
  221.         local data = textutils.unserialize(str)
  222.         if type(data) ~= "table" then error("Invalid song file/string.") end
  223.         self.title = data["title"]
  224.         self.length = data["length"]
  225.         self.author = data["author"]
  226.         self.originalAuthor = data["originalAuthor"]
  227.         self.description = data["description"]
  228.         self.interval = data["interval"]
  229.         self.songData = data["song"]
  230.  
  231.         self:rescan()
  232.       end;
  233.  
  234.       ["loadFromFile"] = function(self, filename)
  235.         local f = fs.open(filename, "r")
  236.         self:loadFromString(f:readAll("*a"))
  237.         f.close()
  238.       end;
  239.  
  240.       ["writeToString"] = function(self)
  241.         t = {
  242.           ["title"] = self.title,
  243.           ["length"] = self.length,
  244.           ["author"] = self.author,
  245.           ["originalAuthour"] = self.originalAuthor,
  246.           ["description"] = self.description,
  247.           ["interval"] = self.interval,
  248.           ["song"] = self.songData
  249.         }
  250.         return textutils.serialize(t)
  251.       end;
  252.  
  253.       ["writeToFile"] = function(self, filename)
  254.         local f = fs.open(filename, "w")
  255.         f.write(self:writeToString())
  256.         f.close()
  257.       end
  258.     }
  259.   end
  260. }
  261.  
  262. button = {
  263.   ["new"] = function(text, x, y, callback)
  264.     return {
  265.       ["text"] = text,
  266.       ["x"]    = x,
  267.       ["y"]    = y,
  268.       ["callback"] = callback,
  269.  
  270.       ["draw"] = function(self)
  271.         term.setCursorPos(self.x, self.y)
  272.         term.setTextColour(gui_colours.button_text)
  273.         term.setBackgroundColour(gui_colours.button)
  274.         write(" " .. self.text .. " ")
  275.       end;
  276.  
  277.       ["tick"] = function(self, e, ...)
  278.         local eventData = { ... }
  279.         local cursorX = eventData[2]
  280.         local cursorY = eventData[3]
  281.         if e == "mouse_click" and cursorY == self.y and cursorX >= self.x and cursorX <= self.x + #text + 1 then
  282.           self.callback()
  283.         end
  284.       end
  285.     }
  286.   end
  287. }
  288.  
  289. toolbar = {
  290.   ["new"] = function(songAreaObj)
  291.     return {
  292.       songAreaObj = songAreaObj,
  293.  
  294.       ["buttons"] = {
  295.         button.new("PlayPause", 12, 1, function() songAreaObj.playing = (not songAreaObj.playing) end),
  296.         button.new("SetNoteObj", 24, 1, function()
  297.           local obj = prompt("vNoteblockObj=")
  298.           if _G[obj] ~= nil and _G[obj].playNote ~= nil then
  299.             vNoteblockObj = _G[obj]
  300.           else
  301.             vNoteblockObj = nil
  302.           end
  303.         end),
  304.         button.new("Top", 37, 1, function() songAreaObj.currentPos = 0 end),
  305.         button.new("Exit", 43, 1, function() os.queueEvent("exit") end),
  306.         button.new("EditInterval", 1, 2, function()
  307.           songAreaObj.songObj.interval = tonumber(prompt("interval="))
  308.           if songAreaObj.songObj.interval == nil or songAreaObj.songObj.interval < 0.05 then
  309.             songAreaObj.songObj.interval = 0.05
  310.           end
  311.         end),
  312.         button.new("EditAuthorData", 16, 2, function()
  313.           songAreaObj.songObj.title = prompt("song.title=")
  314.           songAreaObj.songObj.description = prompt("song.description=")
  315.           songAreaObj.songObj.author = prompt("song.author=")
  316.           songAreaObj.songObj.originalAuthor = prompt("song.originalAuthor=")
  317.         end),
  318.         button.new("EditLength", 33, 2, function()
  319.           local length = tonumber(prompt("length="))
  320.           if length ~= nil and length > 0 then
  321.             songAreaObj.songObj.length = length - 1
  322.           end
  323.           for i = 0, length - 1 do
  324.             if songAreaObj.songObj.songData[i] == nil then songAreaObj.songObj.songData[i] = {} end
  325.           end
  326.           songAreaObj.songObj:rescan()
  327.         end),
  328.         button.new("Save", 46, 2, function()
  329.           songAreaObj.songObj:writeToFile(filename)
  330.           os.queueEvent("saved")
  331.         end)
  332.       },
  333.  
  334.       ["draw"] = function(self)
  335.         term.setCursorPos(1, 1)
  336.         term.setBackgroundColour(gui_colours.highlight)
  337.         term.setTextColour(gui_colours.highlight_text)
  338.         local width, height = term.getSize()
  339.         for y = 1, 3 do
  340.           for x = 1, width do
  341.             write(" ")
  342.           end
  343.           print("")
  344.         end
  345.         term.setCursorPos(1, 1)
  346.         write("snged v1.0")
  347.         for k, v in ipairs(self.buttons) do v:draw() end
  348.         term.setCursorPos(1, 3)
  349.         term.setBackgroundColour(gui_colours.highlight)
  350.         term.setTextColour(gui_colours.highlight_text)
  351.         write("Title: " .. self.songAreaObj.songObj.title .. " | Author: " .. self.songAreaObj.songObj.author)
  352.       end;
  353.  
  354.       ["tick"] = function(self, e, ...)
  355.         for k, v in ipairs(self.buttons) do v:tick(e, ...) end
  356.       end
  357.     }
  358.   end
  359. }
  360.  
  361. function cleanup()
  362.   gui_colours   = nil
  363.   cleanup       = nil
  364.   button        = nil
  365.   toolbar       = nil
  366.   song          = nil
  367.   songArea      = nil
  368.   statusbar     = nil
  369.   popup         = nil
  370.   vNoteblockObj = nil
  371.   noteblocks    = nil
  372.   prompt        = nil
  373. end
  374.  
  375. gui_colours = {
  376.   ["highlight"] = colours.blue,
  377.   ["highlight_text"] = colours.white,
  378.   ["button"] = colours.lime,
  379.   ["button_text"] = colours.white,
  380.   ["button_click_text"] = colours.white,
  381.   ["button_click"] = colours.red,
  382.   ["text"] = colours.white,
  383.   ["background"] = colours.black,
  384.   ["note"] = colours.lime,
  385.   ["ins"] = colours.yellow,
  386.   ["track_border"] = colours.white,
  387.   ["track_highlight"] = colours.grey,
  388.   ["track_record"] = colours.red,
  389.  
  390.   [0] = colours.lightBlue,
  391.   [1] = colours.lightGrey,
  392.   [2] = colours.yellow,
  393.   [3] = colours.white,
  394.   [4] = colours.brown
  395. }
  396.  
  397. local tArgs = { ... }
  398.  
  399. local width, height = term.getSize()
  400.  
  401. popup = nil
  402.  
  403. local songObj = song.new()
  404.  
  405. if tArgs[1] ~= nil then
  406.   filename = shell.resolve(tArgs[1])
  407.  
  408.   if fs.isDir(filename) then
  409.     error("You cannot edit directories.")
  410.   end
  411.  
  412.   if fs.exists(filename) then
  413.     songObj:loadFromFile(filename)
  414.   end
  415. else
  416.   print("Usage: snged filename")
  417.   return
  418. end
  419.  
  420. local songAreaObj = songArea.new(songObj)
  421. local toolbarObj = toolbar.new(songAreaObj)
  422. local statusbarObj = statusbar.new(songAreaObj)
  423.  
  424. noteblocks = {}
  425. vNoteblockObj = nil
  426.  
  427. for k, v in ipairs(rs.getSides()) do
  428.   local testObj = peripheral.wrap(v)
  429.   if type(testObj) == "table" and testObj.playNote ~= nil then
  430.     table.insert(noteblocks, testObj)
  431.   end
  432. end
  433.  
  434. toolbarObj:draw()
  435. songAreaObj:draw()
  436. statusbarObj:draw()
  437.  
  438. parallel.waitForAny(function()
  439.     while true do
  440.       local e, p1, p2, p3 = os.pullEvent()
  441.       if e == "exit" then break end
  442.       toolbarObj:tick(e, p1, p2, p3)
  443.       songAreaObj:tick(e, p1, p2, p3)
  444.       statusbarObj:tick(e, p1, p2, p3)
  445.       term.setBackgroundColor(gui_colours.background)
  446.       term.clear()
  447.       toolbarObj:draw()
  448.       songAreaObj:draw()
  449.       statusbarObj:draw()
  450.     end
  451.   end,
  452.  
  453.   function()
  454.     while true do
  455.       local slept = false
  456.       local nb = 1
  457.       if songAreaObj.playing and songAreaObj.songObj.songData[songAreaObj.currentPos] ~= nil then
  458.         slept = true
  459.         for i = 1, #songAreaObj.songObj.songData[songAreaObj.currentPos], 2 do
  460.           if vNoteblockObj == nil then
  461.             noteblocks[nb].playNote(songAreaObj.songObj.songData[songAreaObj.currentPos][i], songAreaObj.songObj.songData[songAreaObj.currentPos][i + 1])
  462.           else
  463.             vNoteblockObj.playNote(songAreaObj.songObj.songData[songAreaObj.currentPos][i], songAreaObj.songObj.songData[songAreaObj.currentPos][i + 1])
  464.           end
  465.           nb = nb + 1
  466.           if nb > #noteblocks then
  467.             nb = 1
  468.           end
  469.         end
  470. --        songAreaObj.recordCol = math.floor(#songAreaObj.songObj.songData[songAreaObj.currentPos] / 2) + 1
  471.         if songAreaObj.recordCol < 1 then songAreaObj.recordCol = 1 end
  472.         os.queueEvent("update")
  473.         sleep(songAreaObj.songObj.interval)
  474.         songAreaObj.currentPos = songAreaObj.currentPos + 1
  475.         if songAreaObj.currentPos > songAreaObj.songObj.length then
  476.           songAreaObj.currentPos = 0
  477.         end  
  478.       else
  479.         songAreaObj.playing = false
  480.       end
  481.       if not slept then
  482.         sleep(0.05)
  483.       end
  484.     end
  485.   end
  486. )
  487.  
  488. cleanup()
  489. term.setCursorPos(1, 1)
  490. term.setTextColor(colors.white)
  491. term.setBackgroundColor(colors.black)
  492. term.clear()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement