2015-12-18 17:36:12 +03:00
|
|
|
--local t = os.clock()
|
2015-06-09 15:04:57 +03:00
|
|
|
xdecor = {}
|
2015-08-19 12:02:22 +03:00
|
|
|
local modpath = minetest.get_modpath("xdecor")
|
2015-06-09 15:04:57 +03:00
|
|
|
|
2016-02-12 17:00:44 +03:00
|
|
|
-- Handlers.
|
|
|
|
dofile(modpath.."/handlers/animations.lua")
|
2016-02-04 18:02:28 +03:00
|
|
|
dofile(modpath.."/handlers/helpers.lua")
|
2015-06-09 15:04:57 +03:00
|
|
|
dofile(modpath.."/handlers/nodeboxes.lua")
|
|
|
|
dofile(modpath.."/handlers/registration.lua")
|
2016-02-12 17:00:44 +03:00
|
|
|
|
2017-08-28 08:41:14 +03:00
|
|
|
-- Node and others
|
|
|
|
dofile(modpath.."/src/alias.lua")
|
2016-11-30 17:54:05 +03:00
|
|
|
dofile(modpath.."/src/nodes.lua")
|
|
|
|
dofile(modpath.."/src/recipes.lua")
|
2017-08-28 08:41:14 +03:00
|
|
|
|
|
|
|
-- Elements
|
|
|
|
local submod = {
|
|
|
|
"chess",
|
|
|
|
"cooking",
|
|
|
|
"enchanting",
|
|
|
|
"hive",
|
|
|
|
"itemframe",
|
|
|
|
"mailbox",
|
|
|
|
"mechanisms",
|
|
|
|
"rope",
|
|
|
|
"workbench"
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, name in ipairs(submod) do
|
|
|
|
local enable = not(minetest.settings:get_bool("disable_xdecor_"..name))
|
|
|
|
if enable then
|
|
|
|
dofile(modpath.."/src/"..name..".lua")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2016-02-09 14:35:17 +03:00
|
|
|
--print(string.format("[xdecor] loaded in %.2f ms", (os.clock()-t)*1000))
|