From 3960eb0cd24f3bf48ca3ff1ccdc941c44602b10b Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 9 Oct 2024 06:35:54 +0200 Subject: [PATCH] Specify unique identifier for props --- gfx/prop/children.lua | 2 +- gfx/prop/init.lua | 18 ++++++++++++------ gfx/prop/orientation.lua | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 3628d24..8d73134 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -1,7 +1,7 @@ local Prop = require("gfx.prop") local Element = require("gfx.element") local Event = require("gfx.event") -local Children = Prop:new{ defaultState = {} } +local Children = Prop:new{ defaultState = {}, uid = "CHILDREN" } function Children:with(elementType) local propSelf = self diff --git a/gfx/prop/init.lua b/gfx/prop/init.lua index 634ad09..853afac 100644 --- a/gfx/prop/init.lua +++ b/gfx/prop/init.lua @@ -2,11 +2,15 @@ local Prop = {} Prop.__index = Prop function Prop:getState(element) - return element[self] + return element[self:getId()] end function Prop:setState(element, state) - element[self] = state + element[self:getId()] = state +end + +function Prop:getId() + return self.uid end function Prop.attach(elementType, prop, defaultState) @@ -15,10 +19,12 @@ function Prop.attach(elementType, prop, defaultState) end function Prop:new(o) - local obj = o or {} - setmetatable(obj, Prop) - obj.__index = obj - return obj + if o.uid == nil then + error("Property must carry a unique identifier") + end + setmetatable(o, Prop) + o.__index = o + return o end return Prop \ No newline at end of file diff --git a/gfx/prop/orientation.lua b/gfx/prop/orientation.lua index 220ee6d..5d9ffec 100644 --- a/gfx/prop/orientation.lua +++ b/gfx/prop/orientation.lua @@ -1,5 +1,5 @@ local Prop = require("gfx.prop") -local Orientation = Prop:new{ defaultState = false } +local Orientation = Prop:new{ defaultState = false, uid = "ORIENTATION" } function Orientation:with(elementType) local propSelf = self