2016-12-11 19:24:52 +00:00
|
|
|
local Peripheral = { }
|
|
|
|
|
2017-04-01 23:21:49 +00:00
|
|
|
local function getDeviceList()
|
|
|
|
|
|
|
|
if _G.device then
|
|
|
|
return _G.device
|
|
|
|
end
|
|
|
|
|
|
|
|
local deviceList = { }
|
|
|
|
|
|
|
|
for _,side in pairs(peripheral.getNames()) do
|
|
|
|
Peripheral.addDevice(deviceList, side)
|
|
|
|
end
|
|
|
|
|
|
|
|
return deviceList
|
|
|
|
end
|
|
|
|
|
|
|
|
function Peripheral.addDevice(deviceList, side)
|
2016-12-11 19:24:52 +00:00
|
|
|
local name = side
|
|
|
|
local ptype = peripheral.getType(side)
|
|
|
|
|
|
|
|
if not ptype then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if ptype == 'modem' then
|
|
|
|
if peripheral.call(name, 'isWireless') then
|
|
|
|
ptype = 'wireless_modem'
|
|
|
|
else
|
|
|
|
ptype = 'wired_modem'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local sides = {
|
|
|
|
front = true,
|
|
|
|
back = true,
|
|
|
|
top = true,
|
|
|
|
bottom = true,
|
|
|
|
left = true,
|
|
|
|
right = true
|
|
|
|
}
|
|
|
|
|
|
|
|
if sides[name] then
|
|
|
|
local i = 1
|
|
|
|
local uniqueName = ptype
|
2017-04-01 23:21:49 +00:00
|
|
|
while deviceList[uniqueName] do
|
2016-12-11 19:24:52 +00:00
|
|
|
uniqueName = ptype .. '_' .. i
|
|
|
|
i = i + 1
|
|
|
|
end
|
|
|
|
name = uniqueName
|
|
|
|
end
|
|
|
|
|
2017-04-01 23:21:49 +00:00
|
|
|
deviceList[name] = peripheral.wrap(side)
|
|
|
|
Util.merge(deviceList[name], {
|
2016-12-11 19:24:52 +00:00
|
|
|
name = name,
|
|
|
|
type = ptype,
|
|
|
|
side = side,
|
|
|
|
})
|
|
|
|
|
2017-04-01 23:21:49 +00:00
|
|
|
return deviceList[name]
|
2016-12-11 19:24:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Peripheral.getBySide(side)
|
2017-04-01 23:21:49 +00:00
|
|
|
return Util.find(getDeviceList(), 'side', side)
|
2016-12-11 19:24:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Peripheral.getByType(typeName)
|
2017-04-01 23:21:49 +00:00
|
|
|
return Util.find(getDeviceList(), 'type', typeName)
|
2016-12-11 19:24:52 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function Peripheral.getByMethod(method)
|
2017-04-01 23:21:49 +00:00
|
|
|
for _,p in pairs(getDeviceList()) do
|
2016-12-11 19:24:52 +00:00
|
|
|
if p[method] then
|
|
|
|
return p
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- match any of the passed arguments
|
|
|
|
function Peripheral.get(args)
|
|
|
|
|
|
|
|
if type(args) == 'string' then
|
|
|
|
args = { type = args }
|
|
|
|
end
|
|
|
|
|
|
|
|
args = args or { type = pType }
|
|
|
|
|
|
|
|
if args.type then
|
|
|
|
local p = Peripheral.getByType(args.type)
|
|
|
|
if p then
|
|
|
|
return p
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.method then
|
|
|
|
local p = Peripheral.getByMethod(args.method)
|
|
|
|
if p then
|
|
|
|
return p
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.side then
|
|
|
|
local p = Peripheral.getBySide(args.side)
|
|
|
|
if p then
|
|
|
|
return p
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return Peripheral
|