mirror of
https://github.com/kepler155c/opus
synced 2024-11-10 10:49:55 +00:00
48 lines
1.1 KiB
Lua
48 lines
1.1 KiB
Lua
_G.requireInjector()
|
|
|
|
local Event = require('event')
|
|
local Peripheral = require('peripheral')
|
|
local Util = require('util')
|
|
|
|
local colors = _G.colors
|
|
local device = _G.device
|
|
local multishell = _ENV.multishell
|
|
local os = _G.os
|
|
local term = _G.term
|
|
|
|
multishell.setTitle(multishell.getCurrent(), 'Devices')
|
|
|
|
local attachColor = colors.green
|
|
local detachColor = colors.red
|
|
|
|
if not term.isColor() then
|
|
attachColor = colors.white
|
|
detachColor = colors.lightGray
|
|
end
|
|
|
|
Event.on('peripheral', function(_, side)
|
|
if side then
|
|
local dev = Peripheral.addDevice(device, side)
|
|
if dev then
|
|
term.setTextColor(attachColor)
|
|
Util.print('[%s] %s attached', dev.side, dev.name)
|
|
os.queueEvent('device_attach', dev.name)
|
|
end
|
|
end
|
|
end)
|
|
|
|
Event.on('peripheral_detach', function(_, side)
|
|
if side then
|
|
local dev = Util.find(device, 'side', side)
|
|
if dev then
|
|
term.setTextColor(detachColor)
|
|
Util.print('[%s] %s detached', dev.side, dev.name)
|
|
os.queueEvent('device_detach', dev.name)
|
|
device[dev.name] = nil
|
|
end
|
|
end
|
|
end)
|
|
|
|
print('waiting for peripheral changes')
|
|
Event.pullEvents()
|