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 return count
end 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 function scanChest(chest)
local entry = {} local entry = {}
for slot=1,chest.size() do for slot=1,chest.size() do
@ -24,15 +36,7 @@ local function scanChest(chest)
if detail ~= nil then if detail ~= nil then
table.insert( table.insert(
entry, entry,
{ cacheFromItemDetail(detail)
name = detail.name,
enchantments = detail.enchantments,
count = detail.count,
maxCount = detail.maxCount,
displayName = detail.displayName,
damage = detail.damage,
maxDamage = detail.maxDamage
}
) )
else else
table.insert( table.insert(
@ -94,6 +98,16 @@ function Cache.makeCache(cacheLoader)
return Cache:from(state) return Cache:from(state)
end 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) function Cache:from(o)
setmetatable(o, self) setmetatable(o, self)
self.__index = self self.__index = self
@ -231,6 +245,11 @@ function Cache:insertStack(nodeSlot)
if not result then if not result then
print("Slot insert error for chest \""..slot.chest.."\"! Make sure it's still attached to the controller") print("Slot insert error for chest \""..slot.chest.."\"! Make sure it's still attached to the controller")
else else
if change == slot.count then
self:reloadSlot(slot.chest, slot.slot)
else
slot.count = slot.count - change
end
count = count + change count = count + change
end end
end end
@ -246,7 +265,7 @@ function Cache:extractStack(detail)
end) end)
local count = 0 local count = 0
for _,slot in ipairs(foundSlots) do for index,slot in ipairs(foundSlots) do
if count == detail.count then if count == detail.count then
break break
end end
@ -256,6 +275,11 @@ function Cache:extractStack(detail)
if not result then if not result then
print("Slot extract error for chest \""..slot.chest.."\"! Make sure it's still attached to the controller") print("Slot extract error for chest \""..slot.chest.."\"! Make sure it's still attached to the controller")
else else
if change == slot.count then
self:reloadSlot(slot.chest, slot.slot)
else
slot.count = slot.count - change
end
count = count + change count = count + change
end end
end end