milo: lock chest with multiple items

This commit is contained in:
kepler155c
2018-11-13 17:18:55 -05:00
parent 6870378422
commit 16c56aa092
3 changed files with 90 additions and 68 deletions

View File

@@ -5,7 +5,7 @@ local colors = _G.colors
local device = _G.device
local storageView = UI.Window {
title = 'Storage Options',
title = 'Storage Options - General',
index = 2,
backgroundColor = colors.cyan,
form = UI.Form {
@@ -18,63 +18,24 @@ local storageView = UI.Window {
validate = 'numeric',
shadowText = 'Numeric priority',
},
[2] = UI.Checkbox {
formLabel = 'Locked', formKey = 'lockWith',
help = 'Locks chest to current item types',
},
[3] = UI.Text {
x = 16, ex = -2, y = 3,
value = '',
},
[4] = UI.Checkbox {
formLabel = 'Void', formKey = 'void',
help = 'Void items if locked chest is full',
},
[5] = UI.TextEntry {
[2] = UI.TextEntry {
formLabel = 'Refresh', formKey = 'refreshInterval',
shadowText = 'seconds between refresh',
limit = 4,
validate = 'numeric',
help = 'Refresh periodically',
},
[6] = UI.TextArea {
x = 12, ex = -2, y = 6,
[3] = UI.TextArea {
x = 12, ex = -2, y = 4,
textColor = colors.yellow,
value = 'Only specify if you are manually taking items out of this inventory. Value should be > 10',
},
--[[
[4] = UI.Checkbox {
formLabel = 'Void', formKey = 'voidExcess',
help = 'Void excess if locked - TODO',
pruneEmpty = true,
},
[5] = UI.Checkbox {
formLabel = 'Partition', formKey = 'partition',
help = 'TODO',
pruneEmpty = true,
},
]]--
},
}
function storageView:showLockTypes()
local types = { }
if self.node.lock then
if type(self.node.lock) == 'string' then
self.form[3].value = self.node.lock
return
end
for name in pairs(self.node.lock) do
table.insert(types, itemDB:getName(name))
end
end
self.form[3].value = table.concat(types, ', ')
end
function storageView:enable()
UI.Window.enable(self)
self:focusFirst()
self:showLockTypes()
end
function storageView:validate()
@@ -95,36 +56,101 @@ function storageView:isValidFor(node)
end
function storageView:setNode(node)
self.form:setValues(node)
end
UI:getPage('nodeWizard').wizard:add({ storageGeneral = storageView })
--[[ Locking Page ]]--
local lockView = UI.Window {
title = 'Storage Options - Locking',
index = 3,
backgroundColor = colors.cyan,
form = UI.Form {
x = 1, y = 1, ex = -1, ey = 3,
manualControls = true,
[1] = UI.Checkbox {
formLabel = 'Locked', formKey = 'lockWith',
help = 'Locks chest to current item types',
},
[2] = UI.Checkbox {
formLabel = 'Void', formKey = 'void',
help = 'Void items if locked chest is full',
},
},
grid = UI.ScrollingGrid {
x = 2, ex = -2, y = 4, ey = -2,
columns = {
{ heading = 'Name', key = 'displayName' },
},
sortColumn = 'displayName',
},
}
function lockView:showLockTypes()
self.grid.values = { }
if self.node.lock then
for key in pairs(self.node.lock) do
table.insert(self.grid.values, {
displayName = itemDB:getName(key),
key = key,
})
end
end
self.grid:update()
self.grid:draw()
end
function lockView:enable()
UI.Window.enable(self)
self:focusFirst()
end
function lockView:validate()
return self.form:save()
end
function lockView:isValidType(node)
local m = device[node.name]
return m and m.pullItems and {
name = 'Storage',
value = 'storage',
help = 'Use for item storage',
}
end
function lockView:isValidFor(node)
return node.mtype == 'storage'
end
function lockView:setNode(node)
self.node = node
self.form:setValues(node)
self:showLockTypes()
end
function storageView:eventHandler(event)
function lockView:eventHandler(event)
if event.type == 'checkbox_change' and event.element.formKey == 'lockWith' then
if event.checked then
if device[self.node.name] and device[self.node.name].list then
local lock = { }
for _, slot in pairs(device[self.node.name].list()) do
lock[itemDB:makeKey(slot)] = true
end
if not next(lock) then
local list = device[self.node.name].list()
if not next(list) then
self:emit({
type = 'general_error',
field = event.element,
message = 'The chest must contain the item(s) to lock' })
self.form[3].value = false
else
self.node.lock = lock
self.node.lock = { }
for _, slot in pairs(list) do
self.node.lock[itemDB:makeKey(slot)] = true
end
end
end
else
self.node.lock = nil
self.form[3].value = ''
end
self:showLockTypes()
self.form[3]:draw()
end
end
UI:getPage('nodeWizard').wizard:add({ storage = storageView })
UI:getPage('nodeWizard').wizard:add({ storageLock = lockView })