Refresh cache entries on change

This commit is contained in:
Gabriel Tofvesson 2024-09-25 10:11:27 +00:00
parent 49aa10bee7
commit f9d61a8b5e

View File

@ -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