Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Variables to store currently selected machine information.
- local selected = 1 -- Stores the list int value of the selected machine. Think list[1], list[2]...etc
- local selectedName = "" -- Stores the currently selected machines name
- local selectedInformation = {} -- Stores the currently selectes machines information.
- --Draws the list of machines to the screen
- local function drawMachineList()
- i = 1
- term.clear() -- Clear the screen
- for displayName, machineInfo in ipairs(machines) do -- We use ipairs to make sure that machines are always in the same order.
- if(i == selected) then
- gpu.setBackground(colors.item_highlighted)
- gpu.setForeground(colors.text_highlighted)
- selectedName = displayName
- selectedInformation = machineInfo
- end
- term.setCursor(1, startY + i - 1) -- xValue, yValue
- print(displayName)
- gpu.setBackground(0x000000)
- gpu.setForeground(colors.text_normal)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement