Try to enforce better encapsulation with getters
This commit is contained in:
parent
7dca84b128
commit
147dc40365
@ -19,7 +19,7 @@ function ItemStack:fromDetail(inv, detail, slot)
|
|||||||
obj.damage = detail.damage
|
obj.damage = detail.damage
|
||||||
obj.maxDamage = detail.maxDamage
|
obj.maxDamage = detail.maxDamage
|
||||||
obj.count = detail.count
|
obj.count = detail.count
|
||||||
obj.maxCount = detail.maxCount
|
obj.maxCount = detail.maxCount or 64
|
||||||
obj.enchantments = detail.enchantments
|
obj.enchantments = detail.enchantments
|
||||||
obj.displayName = detail.displayName
|
obj.displayName = detail.displayName
|
||||||
obj.nbt = detail.nbt
|
obj.nbt = detail.nbt
|
||||||
@ -33,16 +33,16 @@ end
|
|||||||
|
|
||||||
function ItemStack:clone(withSlot)
|
function ItemStack:clone(withSlot)
|
||||||
local obj = {
|
local obj = {
|
||||||
slot = withSlot or self.slot,
|
slot = withSlot or self:getSlot(),
|
||||||
inv = self.inv,
|
inv = self:getInventory(),
|
||||||
name = self.name,
|
name = self:getName(),
|
||||||
damage = self.damage,
|
damage = self:getDamage(),
|
||||||
maxDamage = self.maxDamage,
|
maxDamage = self:getMaxDamage(),
|
||||||
count = self.count,
|
count = self:getCount(),
|
||||||
maxCount = self.maxCount,
|
maxCount = self:getMaxCount(),
|
||||||
enchantments = self.enchantments,
|
enchantments = self:getEnchantments(),
|
||||||
displayName = self.displayName,
|
displayName = self:getDisplayName(),
|
||||||
nbt = self.nbt
|
nbt = self:getNBT()
|
||||||
}
|
}
|
||||||
|
|
||||||
setmetatable(obj, self)
|
setmetatable(obj, self)
|
||||||
@ -53,19 +53,19 @@ end
|
|||||||
|
|
||||||
function ItemStack:toSerializable()
|
function ItemStack:toSerializable()
|
||||||
local ser = {
|
local ser = {
|
||||||
slot = self.slot,
|
slot = self:getSlot(),
|
||||||
maxCount = self.maxCount
|
maxCount = self:getMaxCount()
|
||||||
}
|
}
|
||||||
|
|
||||||
if not self:isEmpty() then
|
if not self:isEmpty() then
|
||||||
-- Not empty
|
-- Not empty
|
||||||
ser.name = self.name
|
ser.name = self:getName()
|
||||||
ser.damage = self.damage
|
ser.damage = self:getDamage()
|
||||||
ser.maxDamage = self.maxDamage
|
ser.maxDamage = self:getMaxDamage()
|
||||||
ser.count = self.count
|
ser.count = self:getCount()
|
||||||
ser.enchantments = self.enchantments
|
ser.enchantments = self:getEnchantments()
|
||||||
ser.displayName = self.displayName
|
ser.displayName = self:getDisplayName()
|
||||||
ser.nbt = self.nbt
|
ser.nbt = self:getNBT()
|
||||||
end
|
end
|
||||||
|
|
||||||
return ser
|
return ser
|
||||||
@ -149,12 +149,14 @@ function ItemStack:getSimpleName()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function ItemStack:hasChanged(listObj, thorough)
|
function ItemStack:hasChanged(listObj, thorough)
|
||||||
local listItem = listObj[self.slot]
|
local listItem = listObj[self:getSlot()]
|
||||||
if listItem == nil or listItem.name ~= self.name or listItem.count ~= self.count then
|
if listItem == nil or listItem.name ~= self.name or listItem.count ~= self:getCount() then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
return thorough and (self ~= self:fromDetail(self.inv, self.inv.getItemDetail(self.slot), self.slot))
|
local inv = self:getInventory()
|
||||||
|
local slot = self:getSlot()
|
||||||
|
return thorough and (self ~= self:fromDetail(inv, inv.getItemDetail(slot), slot))
|
||||||
end
|
end
|
||||||
|
|
||||||
function ItemStack:_modify(countDelta, stack)
|
function ItemStack:_modify(countDelta, stack)
|
||||||
@ -176,14 +178,13 @@ function ItemStack:_modify(countDelta, stack)
|
|||||||
else
|
else
|
||||||
-- If stack is empty, copy stack data from source
|
-- If stack is empty, copy stack data from source
|
||||||
if self:isEmpty() then
|
if self:isEmpty() then
|
||||||
self.maxCount = stack.maxCount
|
self.name = stack:getName()
|
||||||
self.name = stack.name
|
self.damage = stack:getDamage()
|
||||||
self.damage = stack.damage
|
self.maxDamage = stack:getMaxDamage()
|
||||||
self.maxDamage = stack.maxDamage
|
self.maxCount = stack:getMaxCount()
|
||||||
self.maxCount = stack.maxCount
|
self.enchantments = stack:getEnchantments()
|
||||||
self.enchantments = stack.enchantments
|
self.displayName = stack:getDisplayName()
|
||||||
self.displayName = stack.displayName
|
self.nbt = stack:getNBT()
|
||||||
self.nbt = stack.nbt
|
|
||||||
end
|
end
|
||||||
|
|
||||||
self.count = newCount
|
self.count = newCount
|
||||||
@ -244,23 +245,45 @@ local function objEquals(o1, o2)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function ItemStack:__eq(other)
|
local function runGetter(obj, name)
|
||||||
return type(other) == "table" and
|
local fun = obj[name]
|
||||||
self.count == other.count and
|
if type(fun) ~= "function" then
|
||||||
self.maxCount == other.maxCount and
|
return false, ("Function '%s' cannot be found in object"):format(name)
|
||||||
self:canTransfer(other)
|
end
|
||||||
|
return pcall(fun, obj)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function checkEqual(obj1, obj2, funcName)
|
||||||
|
local result1 = { runGetter(obj1, funcName) }
|
||||||
|
local result2 = { runGetter(obj2, funcName) }
|
||||||
|
return result1[1] and result2[2] and (result1[2] == result2[2])
|
||||||
|
end
|
||||||
|
|
||||||
|
local function checkEnchantments(obj1, obj2)
|
||||||
|
local GETTER_FUNC_NAME = "getEnchantments"
|
||||||
|
local result1 = { runGetter(obj1, GETTER_FUNC_NAME) }
|
||||||
|
local result2 = { runGetter(obj2, GETTER_FUNC_NAME) }
|
||||||
|
return result1[1] and result2[1] and objEquals(result1[2], result2[2])
|
||||||
|
end
|
||||||
|
|
||||||
|
function ItemStack:__eq(other)
|
||||||
|
return type(other) == "table" and
|
||||||
|
checkEqual(self, other, "getCount") and
|
||||||
|
checkEqual(self, other, "getMaxCount") and
|
||||||
|
self:canTransfer(other)
|
||||||
|
end
|
||||||
|
|
||||||
-- Determines if two stacks can be transferred to eachother
|
-- Determines if two stacks can be transferred to eachother
|
||||||
-- Empty stacks are always valid transfer nodes
|
-- Empty stacks are always valid transfer nodes
|
||||||
function ItemStack:canTransfer(stack)
|
function ItemStack:canTransfer(stack)
|
||||||
return self:isEmpty() or stack:isEmpty() or (self.name == stack.name and
|
return self:isEmpty() or stack:isEmpty() or (
|
||||||
self.damage == stack.damage and
|
checkEqual(self, stack, "getName") and
|
||||||
self.maxDamage == stack.maxDamage and
|
checkEqual(self, stack, "getDamage") and
|
||||||
self.displayName == stack.displayName and
|
checkEqual(self, stack, "getMaxDamage") and
|
||||||
self.nbt == stack.nbt and
|
checkEqual(self, stack, "getDisplayName") and
|
||||||
objEquals(self.enchantments, stack.enchantments))
|
checkEqual(self, stack, "getNBT") and
|
||||||
|
checkEnchantments(self, stack)
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function queryField(query, field)
|
local function queryField(query, field)
|
||||||
@ -283,14 +306,14 @@ function ItemStack:matches(query)
|
|||||||
return query(self)
|
return query(self)
|
||||||
end
|
end
|
||||||
|
|
||||||
return queryField(query.name, self.name) and
|
return queryField(query.name, self:getName()) and
|
||||||
queryField(query.damage, self.damage) and
|
queryField(query.damage, self:getDamage()) and
|
||||||
queryField(query.count, self.count) and
|
queryField(query.count, self:getCount()) and
|
||||||
queryField(query.maxDamage, self.maxDamage) and
|
queryField(query.maxDamage, self:getMaxDamage()) and
|
||||||
queryField(query.enchantments, self.enchantments) and
|
queryField(query.enchantments, self:getEnchantments()) and
|
||||||
queryField(query.maxCount, self.maxCount) and
|
queryField(query.maxCount, self:getMaxCount()) and
|
||||||
queryField(query.nbt, self.nbt) and
|
queryField(query.nbt, self:getNBT()) and
|
||||||
queryField(query.displayName, self.displayName)
|
queryField(query.displayName, self:getDisplayName())
|
||||||
end
|
end
|
||||||
|
|
||||||
return ItemStack
|
return ItemStack
|
Loading…
x
Reference in New Issue
Block a user