Advertisement
grand_mind1

Button API

Sep 22nd, 2013
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.69 KB | None | 0 0
  1. mon = peripheral.wrap("top")
  2. mon.clear()
  3. mon.setCursorPos(1,1)
  4. mon.setBackgroundColor(colors.black)
  5. mon.setTextColor(colors.white)
  6. local button = {}
  7.  
  8. function fillTable(name, xmin, xmax, ymin, ymax, text, func, color, draw)
  9.     button[name] = {}
  10.     button[name]["text"] = text
  11.     button[name]["xmin"] = xmin
  12.     button[name]["xmax"] = xmax
  13.     button[name]["ymin"] = ymin
  14.     button[name]["ymax"] = ymax
  15.     button[name]["func"] = func
  16.     button[name]["color"] = color
  17.     button[name]["draw"] = draw
  18.     button[name]["active"] = false
  19. end
  20.    
  21. function createBox(name)
  22.     tableData = button[name]
  23.     currentY = tableData["ymin"]
  24.     while currentY ~= tableData["ymax"]+1 do
  25.         mon.setCursorPos(tableData["xmin"], currentY)
  26.         for i = tableData["xmin"],tableData["xmax"] do
  27.             mon.write(" ")
  28.         end
  29.         currentY = currentY +1
  30.     end
  31. end
  32.  
  33. function createButton(name)
  34.     tableData = button[name]
  35.     xLoc = tableData["xmin"] + (math.floor((tableData["xmax"] - tableData["xmin"] - string.len(tableData["text"])) / 2))
  36.     yLoc = math.floor((tableData["ymax"]+tableData["ymin"])/2)
  37.     if tableData["color"] == nil then
  38.         if tableData["active"] == false then
  39.             mon.setBackgroundColor(colors.red)
  40.         elseif tableData["active"] == true then
  41.             mon.setBackgroundColor(colors.lime)
  42.         end
  43.     else
  44.         mon.setBackgroundColor(tableData["color"])
  45.     end
  46.     createBox(name)
  47.     mon.setCursorPos(xLoc,yLoc)
  48.     mon.write(tableData["text"])
  49.     mon.setBackgroundColor(colors.black)
  50. end
  51.  
  52. function centerText(y, text, color)
  53.    width, height = mon.getSize()
  54.    mon.setCursorPos((width-string.len(text))/2+1, y)
  55.    mon.setTextColor(color)
  56.    mon.write(text)
  57. end
  58.  
  59. function title(text,titleColor)
  60.     centerText(1, text, titleColor)
  61. end
  62.  
  63. function createScreen(text,color)
  64.     if text ~= nil then
  65.         title(text,color)  
  66.     end
  67.     for name,tableData in pairs(button) do
  68.         if tableData["draw"] == true or tableData["draw"] == nil then
  69.             createButton(name) 
  70.         end
  71.     end
  72. end
  73.  
  74. function checkClick(x,y)
  75.     for name, tableData in pairs(button) do
  76.         if tableData["draw"] == true or tableData["draw"] == nil then
  77.             if x >= tableData["xmin"] and x <= tableData["xmax"] then
  78.                 if y >= tableData["ymin"] and y <= tableData["ymax"] then
  79.                     tableData["func"](name)
  80.                     break
  81.                 end
  82.             end
  83.         end
  84.     end
  85. end
  86.  
  87. function activateDraw(name)
  88.     tableData = button[name]
  89.     tableData["draw"] = true
  90. end
  91.  
  92. function deActivateDraw(name)
  93.     tableData = button[name]
  94.     tableData["draw"] = false
  95. end
  96.  
  97. function deActivateAllDraw()
  98.     for name, tableData in pairs(button) do
  99.         tableData["draw"] = false
  100.     end
  101. end
  102.  
  103. function activateAllDraw()
  104.     for name, tableData in pairs(button) do
  105.         tableData["draw"] = true
  106.     end
  107. end
  108.  
  109. function activate(name)
  110.     tableData = button[name]
  111.     tableData["active"] = true
  112. end
  113.  
  114. function deActivate(name)
  115.     tableData = button[name]
  116.     tableData["active"] = false
  117. end
  118.  
  119. function activateAll()
  120.     for name, tableData in pairs(button) do
  121.         tableData["active"] = true
  122.     end
  123. end
  124.  
  125. function deActivateAll()
  126.     for name, tableData in pairs(button) do
  127.         tableData["active"] = false
  128.     end
  129. end
  130.  
  131.  
  132. function toggle(name)
  133.     tableData = button[name]
  134.     tableData["active"] = not tableData["active"]
  135.     createScreen()
  136. end
  137.  
  138. function pulse(name, dur)
  139.     toggle(name)
  140.     sleep(dur)
  141.     toggle(name)
  142. end
  143.  
  144. function changeColor(name, newColor)
  145.     button[name]["color"] = newColor
  146. end
  147.  
  148. function changePos(name, newMinX, newMaxX, newMinY, newMaxY)
  149.     button[name]["xmin"] = newMinX
  150.     button[name]["xmax"] = newMaxX
  151.     button[name]["ymin"] = newMinY
  152.     button[name]["ymax"] = newMaxY
  153. end
  154.  
  155. function changeText(name,newText)
  156.     button[name]["text"] = newText
  157. end
  158.  
  159. function getText(name)
  160.     return button[name]["text"]
  161. end
  162.  
  163. function getColor(name)
  164.     return button[name]["color"]
  165. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement