]> git.lizzy.rs Git - xdecor.git/blobdiff - init.lua
Fix "xpanes_space.png" texture not found (#125)
[xdecor.git] / init.lua
index fa7955961bb2d16263e739e450e8ff3ce0643c7d..1399a1c69cb5346a9eb54c3f4779885c7ce58d3b 100644 (file)
--- a/init.lua
+++ b/init.lua
@@ -1,14 +1,33 @@
+--local t = os.clock()
+
 xdecor = {}
-modpath = minetest.get_modpath("xdecor")
-
-dofile(modpath.."/handlers/nodeboxes.lua")
-dofile(modpath.."/handlers/registration.lua")
-dofile(modpath.."/crafts.lua")
-dofile(modpath.."/enchanting.lua") -- In development.
-dofile(modpath.."/hive.lua")
-dofile(modpath.."/itemframe.lua")
-dofile(modpath.."/mailbox.lua")
-dofile(modpath.."/rope.lua")
-dofile(modpath.."/nodes.lua")
-dofile(modpath.."/worktable.lua")
-dofile(modpath.."/xwall.lua")
+local modpath = minetest.get_modpath("xdecor")
+
+dofile(modpath .. "/handlers/animations.lua")
+dofile(modpath .. "/handlers/helpers.lua")
+dofile(modpath .. "/handlers/nodeboxes.lua")
+dofile(modpath .. "/handlers/registration.lua")
+
+dofile(modpath .. "/src/nodes.lua")
+dofile(modpath .. "/src/recipes.lua")
+
+local subpart = {
+       "chess",
+       "cooking",
+       "enchanting",
+       "hive",
+       "itemframe",
+       "mailbox",
+       "mechanisms",
+       "rope",
+       "workbench",
+}
+
+for _, name in ipairs(subpart) do
+       local enable = minetest.settings:get_bool("enable_xdecor_" .. name)
+       if enable or enable == nil then
+               dofile(modpath .. "/src/" .. name .. ".lua")
+       end
+end
+
+--print(string.format("[xdecor] loaded in %.2f ms", (os.clock()-t)*1000))