blob: 73d7ea6b3b7586f6a03cd120992c8391002d5db8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
local listMgr = require 'vm.list'
---@class EmmyTypeUnit
local mt = {}
mt.__index = mt
mt.type = 'emmy.typeUnit'
function mt:getType()
return self.name
end
function mt:getName()
return self.name
end
function mt:getSource()
return listMgr.get(self.source)
end
function mt:getClass(callback)
self._manager:eachClass(self:getName(), function (class)
if class.type == 'emmy.class' then
callback(class)
end
end)
end
function mt:setValue(value)
self.value = value
end
function mt:getValue()
return self.value
end
function mt:setParent(parent)
self.parent = parent
end
function mt:getParent()
return self.parent
end
return function (manager, source)
local self = setmetatable({
name = source[1],
source = source.id,
_manager = manager,
}, mt)
return self
end
|