-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinclude.lua
43 lines (33 loc) · 1.31 KB
/
include.lua
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
local function registerEnum(name, elements)
-- Look for a previous enum and add elements to the new one
local partialEnum = rawget(_G, name)
if partialEnum and type(partialEnum) == "table" then
for key in pairs(partialEnum) do
table.insert(elements, key)
end
end
-- Now actually generate the enum
local generatedEnum = {}
local currentIndex = 1
for _, key in ipairs(elements) do
if not generatedEnum[key] then
generatedEnum[key] = currentIndex
currentIndex = currentIndex + 1
end
end
-- Register enum into global environment
rawset(_G, name, generatedEnum)
end
local unpack = unpack or table.unpack
function enum(name)
assert(type(name) == "string", "Expected [string] name for enum constructor, got " .. type(name))
return function(elements)
assert(type(elements) == "table", "Expected [table] elements for enum constructor got " .. type(elements))
for index = 1, select("#", unpack(elements)) do
assert(elements[index] ~= nil, "A nil parameter was passed to enum " .. name .. ", check scope or spell")
assert(type(elements[index]) == "string", "Non-string parameter passed to enum " .. name .. " - " .. type(elements[index]))
end
assert(#elements ~= 0, "Can't create enum without elements")
return registerEnum(name, elements)
end
end