mirror of
https://github.com/Keyslam-Group/Concord.git
synced 2025-09-02 12:24:11 -04:00
73 lines
2.1 KiB
Lua
73 lines
2.1 KiB
Lua
--- Container for registered ComponentClasses
|
|
-- @module Components
|
|
|
|
local Components = {}
|
|
|
|
Components.__REJECT_PREFIX = "!"
|
|
Components.__REJECT_MATCH = "^(%"..Components.__REJECT_PREFIX.."?)(.+)"
|
|
|
|
--- Returns true if the containter has the ComponentClass with the specified name
|
|
-- @string name Name of the ComponentClass to check
|
|
-- @treturn boolean
|
|
function Components.has(name)
|
|
return rawget(Components, name) and true or false
|
|
end
|
|
|
|
--- Prefix a component's name with the currently set Reject Prefix
|
|
-- @string name Name of the ComponentClass to reject
|
|
-- @treturn string
|
|
function Components.reject(name)
|
|
local ok, err = Components.try(name)
|
|
|
|
if not ok then error(err, 2) end
|
|
|
|
return Components.__REJECT_PREFIX..name
|
|
end
|
|
|
|
--- Returns true and the ComponentClass if one was registered with the specified name
|
|
-- or false and an error otherwise
|
|
-- @string name Name of the ComponentClass to check
|
|
-- @boolean acceptRejected Whether to accept names prefixed with the Reject Prefix.
|
|
-- @treturn boolean
|
|
-- @treturn Component or error string
|
|
-- @treturn true if acceptRejected was true and the name had the Reject Prefix, false otherwise.
|
|
function Components.try(name, acceptRejected)
|
|
if type(name) ~= "string" then
|
|
return false, "ComponentsClass name is expected to be a string, got "..type(name)..")"
|
|
end
|
|
|
|
local rejected = false
|
|
if acceptRejected then
|
|
local prefix
|
|
prefix, name = string.match(name, Components.__REJECT_MATCH)
|
|
|
|
rejected = prefix ~= "" and name
|
|
end
|
|
|
|
local value = rawget(Components, name)
|
|
if not value then
|
|
return false, "ComponentClass '"..name.."' does not exist / was not registered"
|
|
end
|
|
|
|
return true, value, rejected
|
|
end
|
|
|
|
--- Returns the ComponentClass with the specified name
|
|
-- @string name Name of the ComponentClass to get
|
|
-- @treturn Component
|
|
function Components.get(name)
|
|
local ok, value = Components.try(name)
|
|
|
|
if not ok then error(value, 2) end
|
|
|
|
return value
|
|
end
|
|
|
|
return setmetatable(Components, {
|
|
__index = function(_, name)
|
|
local ok, value = Components.try(name)
|
|
|
|
if not ok then error(value, 2) end
|
|
|
|
return value end
|
|
})
|