Lua 类管理器
local ClassManager = { } local this = ClassManagerfunction ClassManager. Class ( className, ... ) print ( 'ClassManager::Class' ) local cls = { __className = className} local supers = { ... } for _, super in pairs ( supers) do local superType = type ( super) assert ( superType == nil or superType == 'table' or superType == 'function' , string. format ( "class() - create class \"%s\" with invalid super class type \"%s\"" , className, superType) ) if superType == 'function' then assert ( cls. __create == nil , string. format ( "class() - create class \"%s\" with more than one creating function" , className) ) cls. __create = superelseif superType == 'table' then if super[ '.isclass' ] then assert ( cls. __create == nil , string. format ( "class() - create class \"%s\" with more than one creating function or native class" , className) ) ; cls. __create = function ( ) super: create ( ) end else cls. __supers = cls. __supers or { } local dp = false for _, v in pairs ( cls. __supers) do if v. __className == super. __className then dp = true break end end if not dp then cls. __supers[ # cls. __supers + 1 ] = superif not cls. super then cls. super = superend end end else error ( string. format ( "class() - create class \"%s\" with invalid super type" , className) , 0 ) end end cls. __index = clsif not cls. __supers or # cls. __supers == 1 then setmetatable ( cls, { __index = cls. super} ) else setmetatable ( cls, { __index = function ( _, key) local supers = cls. __supersfor i= 1 , # supers do local super = supers[ i] if super[ key] then return super[ key] end end end } ) end if not cls. constructor then cls. constructor = function ( ) end end cls. new = function ( ... ) local instanceif cls. __create then instance = cls. __create ( ... ) else instance = { } end setmetatable ( instance, cls) instance. class = clsinstance: constructor ( ... ) return instanceend cls. create = function ( _, ... ) return cls. new ( ... ) end return clsend local setmetatableindex = function ( t, index) local mt = getmetatable ( t) mt = mt or { } if not mt. __index then mt. __index = indexsetmetatable ( t, mt) elseif mt. __index ~= index then setmetatableindex ( mt, index) end
end return ClassManager