Advertisement
Guest User

Untitled

a guest
Jan 12th, 2016
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.91 KB | None | 0 0
  1. --Variables to store currently selected machine information.
  2. local selected = 1 -- Stores the list int value of the selected machine. Think list[1], list[2]...etc
  3. local selectedName = "" -- Stores the currently selected machines name
  4. local selectedInformation = {} -- Stores the currently selectes machines information.
  5.  
  6. --Draws the list of machines to the screen
  7. local function drawMachineList()
  8.     i = 1
  9.     term.clear() -- Clear the screen
  10.     for displayName, machineInfo in ipairs(machines) do -- We use ipairs to make sure that machines are always in the same order.
  11.         if(i == selected) then
  12.             gpu.setBackground(colors.item_highlighted)
  13.             gpu.setForeground(colors.text_highlighted)
  14.             selectedName = displayName
  15.             selectedInformation = machineInfo
  16.         end
  17.        
  18.         term.setCursor(1, startY + i - 1) -- xValue, yValue
  19.         print(displayName)
  20.         gpu.setBackground(0x000000)
  21.         gpu.setForeground(colors.text_normal)
  22.     end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement