Use terminal as default display

This commit is contained in:
Gabriel Tofvesson 2024-11-14 02:41:13 +00:00
parent 2f72ef4904
commit 1456dc332f

View File

@ -3,10 +3,10 @@ local CACHE_FILE = "/.storage.cache"
local LOCK_FILE = "/.storage.lock" local LOCK_FILE = "/.storage.lock"
local LOG_FILE_PATH = "latest.log" local LOG_FILE_PATH = "latest.log"
local Logger = Logging.firstLoad( local Logger = Logging.firstLoad(
Logging.LogLevel.DEBUG, Logging.LogLevel.TRACE,
Logging.OUTPUTS.combine( Logging.OUTPUTS.combine(
Logging.OUTPUTS.file(LOG_FILE_PATH), Logging.OUTPUTS.file(LOG_FILE_PATH)
Logging.OUTPUTS.stdout --Logging.OUTPUTS.stdout
) )
) )
@ -1009,7 +1009,10 @@ local PAGES = {
local accessNode = Chest:fromPeripheral("minecraft:trapped_chest", true) local accessNode = Chest:fromPeripheral("minecraft:trapped_chest", true)
---@diagnostic disable-next-line: need-check-nil ---@diagnostic disable-next-line: need-check-nil
local controller = loadState(CACHE_FILE, accessNode:getInventory()) local controller = loadState(CACHE_FILE, accessNode:getInventory())
local monitor = peripheral.find("monitor")
local nTerm = term.native()
local nTermW, nTermH = nTerm.getSize()
local monitor = window.create(nTerm, 1, 1, nTermW, nTermH, true) --peripheral.find("monitor")
local width, height = monitor.getSize() local width, height = monitor.getSize()
local CONTROLLER_STATE = { local CONTROLLER_STATE = {