init.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. --
  2. -- This file contains built-in stuff in Minetest implemented in Lua.
  3. --
  4. -- It is always loaded and executed after registration of the C API,
  5. -- before loading and running any mods.
  6. --
  7. -- Initialize some very basic things
  8. function core.debug(...) core.log(table.concat({...}, "\t")) end
  9. if core.print then
  10. local core_print = core.print
  11. -- Override native print and use
  12. -- terminal if that's turned on
  13. function print(...)
  14. local n, t = select("#", ...), {...}
  15. for i = 1, n do
  16. t[i] = tostring(t[i])
  17. end
  18. core_print(table.concat(t, "\t"))
  19. end
  20. core.print = nil -- don't pollute our namespace
  21. end
  22. math.randomseed(os.time())
  23. minetest = core
  24. -- Load other files
  25. local scriptdir = core.get_builtin_path()
  26. local gamepath = scriptdir .. "game" .. DIR_DELIM
  27. local clientpath = scriptdir .. "client" .. DIR_DELIM
  28. local commonpath = scriptdir .. "common" .. DIR_DELIM
  29. local asyncpath = scriptdir .. "async" .. DIR_DELIM
  30. dofile(commonpath .. "strict.lua")
  31. dofile(commonpath .. "serialize.lua")
  32. dofile(commonpath .. "misc_helpers.lua")
  33. if INIT == "game" then
  34. dofile(gamepath .. "init.lua")
  35. assert(not core.get_http_api)
  36. elseif INIT == "mainmenu" then
  37. local mm_script = core.settings:get("main_menu_script")
  38. local custom_loaded = false
  39. if mm_script and mm_script ~= "" then
  40. local testfile = io.open(mm_script, "r")
  41. if testfile then
  42. testfile:close()
  43. dofile(mm_script)
  44. custom_loaded = true
  45. core.log("info", "Loaded custom main menu script: "..mm_script)
  46. else
  47. core.log("error", "Failed to load custom main menu script: "..mm_script)
  48. core.log("info", "Falling back to default main menu script")
  49. end
  50. end
  51. if not custom_loaded then
  52. dofile(core.get_mainmenu_path() .. DIR_DELIM .. "init.lua")
  53. end
  54. elseif INIT == "async" then
  55. dofile(asyncpath .. "init.lua")
  56. elseif INIT == "client" then
  57. dofile(clientpath .. "init.lua")
  58. else
  59. error(("Unrecognized builtin initialization type %s!"):format(tostring(INIT)))
  60. end