Refresh cache entries on change
This commit is contained in:
parent
49aa10bee7
commit
f9d61a8b5e
44
items.lua
44
items.lua
@ -17,6 +17,18 @@ local function countNamed(tbl)
|
||||
return count
|
||||
end
|
||||
|
||||
local function cacheFromItemDetail(detail)
|
||||
return {
|
||||
name = detail.name,
|
||||
enchantments = detail.enchantments,
|
||||
count = detail.count,
|
||||
maxCount = detail.maxCount,
|
||||
displayName = detail.displayName,
|
||||
damage = detail.damage,
|
||||
maxDamage = detail.maxDamage
|
||||
}
|
||||
end
|
||||
|
||||
local function scanChest(chest)
|
||||
local entry = {}
|
||||
for slot=1,chest.size() do
|
||||
@ -24,15 +36,7 @@ local function scanChest(chest)
|
||||
if detail ~= nil then
|
||||
table.insert(
|
||||
entry,
|
||||
{
|
||||
name = detail.name,
|
||||
enchantments = detail.enchantments,
|
||||
count = detail.count,
|
||||
maxCount = detail.maxCount,
|
||||
displayName = detail.displayName,
|
||||
damage = detail.damage,
|
||||
maxDamage = detail.maxDamage
|
||||
}
|
||||
cacheFromItemDetail(detail)
|
||||
)
|
||||
else
|
||||
table.insert(
|
||||
@ -94,6 +98,16 @@ function Cache.makeCache(cacheLoader)
|
||||
return Cache:from(state)
|
||||
end
|
||||
|
||||
function Cache:reloadSlot(chestName, slot)
|
||||
local chest = self[chestName]
|
||||
if chest == nil then
|
||||
return false
|
||||
end
|
||||
|
||||
chest[slot] = cacheFromItemDetail(store[chestName].getItemDetail(slot))
|
||||
return true
|
||||
end
|
||||
|
||||
function Cache:from(o)
|
||||
setmetatable(o, self)
|
||||
self.__index = self
|
||||
@ -231,6 +245,11 @@ function Cache:insertStack(nodeSlot)
|
||||
if not result then
|
||||
print("Slot insert error for chest \""..slot.chest.."\"! Make sure it's still attached to the controller")
|
||||
else
|
||||
if change == slot.count then
|
||||
self:reloadSlot(slot.chest, slot.slot)
|
||||
else
|
||||
slot.count = slot.count - change
|
||||
end
|
||||
count = count + change
|
||||
end
|
||||
end
|
||||
@ -246,7 +265,7 @@ function Cache:extractStack(detail)
|
||||
end)
|
||||
|
||||
local count = 0
|
||||
for _,slot in ipairs(foundSlots) do
|
||||
for index,slot in ipairs(foundSlots) do
|
||||
if count == detail.count then
|
||||
break
|
||||
end
|
||||
@ -256,6 +275,11 @@ function Cache:extractStack(detail)
|
||||
if not result then
|
||||
print("Slot extract error for chest \""..slot.chest.."\"! Make sure it's still attached to the controller")
|
||||
else
|
||||
if change == slot.count then
|
||||
self:reloadSlot(slot.chest, slot.slot)
|
||||
else
|
||||
slot.count = slot.count - change
|
||||
end
|
||||
count = count + change
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user