155 lines
3.2 KiB
Lua
155 lines
3.2 KiB
Lua
local Event = require('event')
|
|
local itemDB = require('itemDB')
|
|
local Milo = require('milo')
|
|
local Socket = require('socket')
|
|
local Sync = require('sync')
|
|
|
|
local device = _G.device
|
|
local turtle = _G.turtle
|
|
|
|
local SHIELD_SLOT = 2
|
|
|
|
local context = Milo:getContext()
|
|
|
|
local function getManipulatorForUser(user)
|
|
for _,v in pairs(device) do
|
|
if v.type == 'manipulator' and v.getName and v.getName() == user then
|
|
return v
|
|
end
|
|
end
|
|
end
|
|
|
|
local function client(socket)
|
|
_G._debug('REMOTE: connection from ' .. socket.dhost)
|
|
|
|
local user = socket:read(2)
|
|
if not user then
|
|
return
|
|
end
|
|
|
|
local manipulator = getManipulatorForUser(user)
|
|
if not manipulator then
|
|
_G._debug('REMOTE: Manipulator with introspection module bound with user not found. Closing connection.')
|
|
socket:write({
|
|
msg = 'Manipulator not found'
|
|
})
|
|
socket:close()
|
|
return
|
|
end
|
|
|
|
_G._debug('REMOTE: all good')
|
|
socket:write({
|
|
data = 'ok',
|
|
})
|
|
|
|
repeat
|
|
local data = socket:read()
|
|
if not data then
|
|
break
|
|
end
|
|
|
|
if data.request == 'scan' then -- full scan of all inventories
|
|
local items = Milo:mergeResources(Milo:listItems(true))
|
|
socket:write(items)
|
|
|
|
elseif data.request == 'list' then
|
|
local items = Milo:mergeResources(Milo:listItems())
|
|
socket:write(items)
|
|
|
|
elseif data.request == 'deposit' then
|
|
local function deposit()
|
|
Sync.sync(turtle, function()
|
|
if data.slot == 'shield' then
|
|
manipulator.getEquipment().pushItems(
|
|
context.localName,
|
|
SHIELD_SLOT,
|
|
data.count)
|
|
else
|
|
manipulator.getInventory().pushItems(
|
|
context.localName,
|
|
data.slot,
|
|
data.count)
|
|
end
|
|
Milo:clearGrid()
|
|
end)
|
|
end
|
|
|
|
local list = Milo:listItems()
|
|
local current = list[data.key] and list[data.key].count or 0
|
|
|
|
socket:write({
|
|
key = data.key,
|
|
current = current,
|
|
})
|
|
|
|
Milo:queueRequest({ }, deposit)
|
|
|
|
elseif data.request == 'transfer' then
|
|
local count = data.count
|
|
|
|
if count == 'stack' then
|
|
count = itemDB:getMaxCount(data.item)
|
|
elseif count == 'all' then
|
|
local item = Milo:getItem(Milo:listItems(), data.item)
|
|
count = item and item.count or 0
|
|
end
|
|
|
|
local function transfer(request)
|
|
Sync.sync(turtle, function()
|
|
local transferred = context.storage:export(
|
|
context.localName,
|
|
nil,
|
|
request.requested,
|
|
data.item)
|
|
|
|
if transferred > 0 then
|
|
turtle.eachFilledSlot(function(slot)
|
|
manipulator.getInventory().pullItems(
|
|
context.localName,
|
|
slot.index,
|
|
slot.count)
|
|
end)
|
|
end
|
|
end)
|
|
end
|
|
|
|
local request = Milo:makeRequest(data.item, count, transfer)
|
|
|
|
socket:write(request)
|
|
end
|
|
until not socket.connected
|
|
|
|
_G._debug('REMOTE: disconnected from ' .. socket.dhost)
|
|
end
|
|
|
|
local handler
|
|
|
|
local function listen()
|
|
if device.wireless_modem then
|
|
handler = Event.addRoutine(function()
|
|
_G._debug('REMOTE: listening on port 4242')
|
|
while true do
|
|
local socket = Socket.server(4242)
|
|
Event.addRoutine(function()
|
|
client(socket)
|
|
socket:close()
|
|
end)
|
|
end
|
|
end)
|
|
end
|
|
end
|
|
|
|
Event.on({ 'device_attach', 'device_detach' }, function(_, name)
|
|
if name == 'wireless_modem' then
|
|
if handler then
|
|
handler:terminate()
|
|
handler = nil
|
|
_debug('REMOTE: wireless modem disconnected')
|
|
else
|
|
listen()
|
|
end
|
|
end
|
|
end)
|
|
|
|
listen()
|