98 lines
2.3 KiB
Lua
98 lines
2.3 KiB
Lua
|
local util = require "util"
|
||
|
local conf = util.conf
|
||
|
|
||
|
rednet.open(conf.modem)
|
||
|
|
||
|
if conf.introspection then
|
||
|
conf.introspection = peripheral.call(conf.introspection, "getInventory")
|
||
|
end
|
||
|
|
||
|
local function split(str, sep)
|
||
|
local t = {}
|
||
|
for sub in str:gmatch("[^" .. sep .. "]+") do
|
||
|
table.insert(t, sub)
|
||
|
end
|
||
|
|
||
|
return t
|
||
|
end
|
||
|
|
||
|
local function fetchItem(item, toGet)
|
||
|
local result
|
||
|
repeat
|
||
|
local toGetNow = 64
|
||
|
if toGet < 64 then toGetNow = toGet end
|
||
|
|
||
|
result = query { cmd = "extract", dname = item, destInv = conf.name, qty = toGetNow }
|
||
|
if result and type(result) == "table" and result[1] then
|
||
|
toGet = toGet - result[1]
|
||
|
end
|
||
|
|
||
|
if conf.introspection then
|
||
|
conf.introspection.pullItems(conf.name, 1)
|
||
|
end
|
||
|
until toGet <= 0 or result == "ERROR"
|
||
|
end
|
||
|
|
||
|
function dump(slot)
|
||
|
if conf.introspection then
|
||
|
conf.introspection.pushItems(conf.name, slot)
|
||
|
slot = 1
|
||
|
end
|
||
|
query { cmd = "insert", fromInv = conf.name, fromSlot = slot }
|
||
|
end
|
||
|
|
||
|
function tryNumber(tokens)
|
||
|
local fst = table.remove(tokens, 1)
|
||
|
local qty = tonumber(fst)
|
||
|
|
||
|
if not qty then
|
||
|
table.insert(tokens, 1, fst)
|
||
|
end
|
||
|
|
||
|
return qty
|
||
|
end
|
||
|
|
||
|
local help = [[
|
||
|
Welcome to the Dragon CLI.
|
||
|
Commands:
|
||
|
w [name] - withdraw all items whose names contain [name]
|
||
|
w [qty] [name] - withdraw [qty] items whose names contain [name]
|
||
|
c - Craft item, using the turtle's inventory as a grid (turtle.craft)
|
||
|
d - Dump all items into storage
|
||
|
d [slot] - Dump items in [slot] into storage
|
||
|
r - Force connected storage server to reindex
|
||
|
help - Display this
|
||
|
This is an unstable version and does not support a GUI or multiple storage servers.]]
|
||
|
|
||
|
print "Dragon CLI"
|
||
|
while true do
|
||
|
write "|> "
|
||
|
local tokens = split(read(), " ")
|
||
|
local cmd = table.remove(tokens, 1)
|
||
|
|
||
|
if cmd == "w" then
|
||
|
local qty = tryNumber(tokens)
|
||
|
if not qty then
|
||
|
qty = math.huge
|
||
|
end
|
||
|
|
||
|
local item = table.concat(tokens, " ")
|
||
|
fetchItem(item, qty)
|
||
|
elseif cmd == "c" then
|
||
|
turtle.craft()
|
||
|
elseif cmd == "d" then
|
||
|
local slot = tryNumber(tokens)
|
||
|
|
||
|
if slot then dump(slot) else
|
||
|
local size = 16
|
||
|
if conf.introspection then size = conf.introspection.size() end
|
||
|
for i = 1, size do
|
||
|
dump(i)
|
||
|
end
|
||
|
end
|
||
|
elseif cmd == "r" then
|
||
|
query { cmd = "reindex" }
|
||
|
elseif cmd == "help" then
|
||
|
textutils.pagedPrint(help)
|
||
|
end
|
||
|
end
|