Advertisement
Doyle3694

DoorControl

Jan 7th, 2015
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.03 KB | None | 0 0
  1. rednet.open("back")
  2.  
  3. all = {}
  4. all.Doors = {}
  5. all.Doors.AE2 = {id = 8, state = true}
  6. all.Doors.Farm = {id = 33, state = true}
  7. temp = {}
  8. sCurFolder = "all"
  9. curFolder = all
  10. screen = {}
  11. curLine = 1
  12.  
  13. function updateScreen()
  14.   screen = {}
  15.   for i,j in pairs(curFolder) do
  16.     table.insert(screen, i)
  17.   end
  18.   tSx, tSy = term.getSize()
  19.   term.setCursorPos(1,1)
  20.   for i,j in pairs(screen) do
  21.     if curFolder[j]["state"] == true then
  22.       term.setBackgroundColor(2^14)
  23.     elseif curFolder[j]["state"] == false then
  24.       term.setBackgroundColor(2^5)
  25.     elseif curFolder[j]["state"] == nil then
  26.       term.setBackgroundColor(2^4)
  27.     end
  28.     write("   "..j)
  29.     for k = 1, tSx-3-#j do
  30.       write(" ")
  31.     end
  32.     print()
  33.   end
  34.   term.setBackgroundColor(2^15)
  35.   for i = #screen+1, tSy do
  36.     term.setCursorPos(1, i)
  37.     for j = 1, tSx do
  38.       write(" ")
  39.     end
  40.   end
  41.   dCursor(curLine)
  42. end
  43.  
  44. function updateStates()
  45.   for k,l in pairs(all.Doors) do
  46.     if type(l) == "table" then
  47.       rednet.send(l.id, l.state)
  48.     else err("Non table found '"..l.."'") end
  49.   end
  50. end
  51.  
  52. function err(msg)
  53.   error(msg)
  54. end
  55.  
  56. function dCursor(num)
  57.   term.setCursorPos(1,num)
  58.   term.setBackgroundColor(2^10)
  59.   term.write(" X ")
  60.   term.setBackgroundColor(2^15)
  61. end
  62.  
  63. while true do
  64.   updateStates()
  65.   updateScreen()
  66.  
  67.   event, key, x, y = os.pullEvent("key")
  68.   if event == "key" and (key == 200 or key == 208 or key == 28) then
  69.     if key == 28 then
  70.       if curFolder[screen[curLine]]["state"] == nil then
  71.         curFolder = curFolder[screen[curLine]]
  72.         sCurFolder = sCurFolder.."."..screen[curLine]
  73.       else
  74.          curFolder[screen[curLine]]["state"] = not curFolder[screen[curLine]]["state"]
  75.       end
  76.     elseif key == 200 then
  77.       if curLine > 1 then
  78.         curLine = curLine-1
  79.       end
  80.     elseif key == 208 then
  81.       if curLine < #screen then
  82.         curLine = curLine+1
  83.       end
  84.     end
  85.   elseif event == "mouse_click" then
  86.     if y < #screen+1 then
  87.       curLine = y
  88.     end
  89.   end
  90. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement