kp-computercraft-scripts/command-center/quantum-beacon.lua

128 lines
3.3 KiB
Lua
Raw Normal View History

2022-12-29 09:46:41 +00:00
--[[
Quantum Beacon
A script that runs on computers connected to an AE quantum ring to ping their
status back to a central computer.
]]
local SEND_CHANNEL = 100
local RECEIVE_CHANNEL = 101
local NODE_NAME = "TMP"
local TRANSMIT_INTERVAL = 15
2022-12-29 10:08:20 +00:00
local function drawScreen(online)
local w, h = term.getSize()
term.setBackgroundColor(colors.black)
term.clear()
term.setCursorPos(1, 1)
term.setBackgroundColor(colors.gray)
term.setTextColor(colors.white)
term.clearLine()
term.write("Quantum Beacon")
term.setBackgroundColor(colors.black)
term.setTextColor(colors.lightGray)
term.setCursorPos(1, 3)
term.write("Node:")
term.setCursorPos(1, 5)
term.write("Channel:")
term.setCursorPos(1, 7)
term.write("Transmit Interval:")
term.setCursorPos(1, 9)
term.write("Online Status:")
term.setTextColor(colors.white)
term.setCursorPos(20, 3)
term.write(NODE_NAME)
term.setCursorPos(20, 5)
term.write(tostring(SEND_CHANNEL))
term.setCursorPos(20, 7)
term.write(tostring(TRANSMIT_INTERVAL))
local str = nil
if online then
str = "Online"
term.setTextColor(colors.lime)
else
str = "Offline"
term.setTextColor(colors.red)
end
term.setCursorPos(20, 9)
term.write(str)
end
local function clearMessageLine()
local _, h = term.getSize()
term.setBackgroundColor(colors.gray)
2022-12-29 10:12:12 +00:00
for i = 0, 3 do
term.setCursorPos(1, h - i)
term.clearLine()
end
2022-12-29 10:08:20 +00:00
end
local function showError(msg)
clearMessageLine()
local _, h = term.getSize()
2022-12-29 10:12:12 +00:00
term.setCursorPos(1, h - 2)
2022-12-29 10:08:20 +00:00
term.setBackgroundColor(colors.gray)
term.setTextColor(colors.red)
2022-12-29 10:12:12 +00:00
write(msg)
2022-12-29 10:08:20 +00:00
end
local function showMessage(msg)
clearMessageLine()
local _, h = term.getSize()
2022-12-29 10:12:12 +00:00
term.setCursorPos(1, h - 2)
2022-12-29 10:08:20 +00:00
term.setBackgroundColor(colors.gray)
term.setTextColor(colors.lightBlue)
2022-12-29 10:12:12 +00:00
write(msg)
2022-12-29 10:08:20 +00:00
end
2022-12-29 09:46:41 +00:00
local function getPeripheralOrWait(name)
local p = nil
repeat
p = peripheral.find(name)
if p == nil then
2022-12-29 10:49:02 +00:00
showError("Error: Couldn't find an attached peripheral with name \"" .. name .. "\". Please attach one.")
2022-12-29 09:46:41 +00:00
os.pullEvent("peripheral")
2022-12-29 10:08:20 +00:00
if p ~= nil then
2022-12-29 10:49:02 +00:00
showMessage("Peripheral \"" .. name .. "\" connected. Resuming operations shortly.")
os.sleep(3)
2022-12-29 10:08:20 +00:00
end
2022-12-29 09:46:41 +00:00
end
until p ~= nil
return p
end
-- We consider a foreign quantum link to be connected if we detect crafting
-- CPUs on the network, since subnetworks shouldn't ever have these.
local function meSystemConnected(meBridge)
local craftingCpus = meBridge.getCraftingCPUs()
return craftingCpus ~= nil and #craftingCpus > 0
end
2022-12-29 10:49:02 +00:00
2022-12-29 10:08:20 +00:00
drawScreen(false)
2022-12-29 10:49:02 +00:00
local lastOnlineStatus = false
2022-12-29 10:08:20 +00:00
2022-12-29 09:46:41 +00:00
while true do
local modem = getPeripheralOrWait("modem")
local meBridge = getPeripheralOrWait("meBridge")
local packet = {
node = NODE_NAME,
date = os.date("*t"),
online = meSystemConnected(meBridge)
}
modem.transmit(SEND_CHANNEL, RECEIVE_CHANNEL, packet)
2022-12-29 10:08:20 +00:00
drawScreen(packet.online)
2022-12-29 10:49:02 +00:00
if lastOnlineStatus == true and packet.online == false then
showError("The quantum link just went offline.")
os.sleep(3)
else
os.sleep(TRANSMIT_INTERVAL)
end
lastOnlineStatus = packet.online
2022-12-29 09:46:41 +00:00
end