2014-07-22 23:15:43 +02:00
|
|
|
|
|
|
|
boost_cart = {}
|
|
|
|
boost_cart.modpath = minetest.get_modpath("boost_cart")
|
2016-04-15 09:45:26 +02:00
|
|
|
|
2017-06-09 22:25:58 +02:00
|
|
|
|
2017-10-03 08:35:20 +02:00
|
|
|
if not minetest.settings then
|
|
|
|
error("[boost_cart] Your Minetest version is no longer supported."
|
|
|
|
.. " (Version <= 0.4.15)")
|
2017-06-09 22:25:58 +02:00
|
|
|
end
|
|
|
|
|
2017-10-09 10:58:11 +02:00
|
|
|
local function getNum(setting)
|
|
|
|
return tonumber(minetest.settings:get(setting))
|
|
|
|
end
|
|
|
|
|
2016-04-15 09:45:26 +02:00
|
|
|
-- Maximal speed of the cart in m/s
|
2017-10-09 10:58:11 +02:00
|
|
|
boost_cart.speed_max = getNum("boost_cart.speed_max") or 10
|
2016-10-12 17:22:49 +02:00
|
|
|
-- Set to -1 to disable punching the cart from inside
|
2017-10-09 10:58:11 +02:00
|
|
|
boost_cart.punch_speed_max = getNum("boost_cart.punch_speed_max") or 7
|
|
|
|
-- Maximal distance for the path correction (for dtime peaks)
|
|
|
|
boost_cart.path_distance_max = 3
|
|
|
|
|
2016-04-15 09:45:26 +02:00
|
|
|
|
2015-06-05 20:30:48 +02:00
|
|
|
-- Support for non-default games
|
|
|
|
if not default.player_attached then
|
|
|
|
default.player_attached = {}
|
|
|
|
end
|
|
|
|
|
2018-01-15 18:41:40 +01:00
|
|
|
minetest.after(0.5, function()
|
|
|
|
boost_cart.old_player_model = not minetest.global_exists("player_api")
|
2017-10-27 12:33:32 +02:00
|
|
|
end)
|
|
|
|
|
2016-11-22 20:32:17 +01:00
|
|
|
dofile(boost_cart.modpath.."/functions.lua")
|
|
|
|
dofile(boost_cart.modpath.."/rails.lua")
|
2016-04-15 09:45:26 +02:00
|
|
|
|
2016-11-22 20:32:17 +01:00
|
|
|
if minetest.global_exists("mesecon") then
|
|
|
|
dofile(boost_cart.modpath.."/detector.lua")
|
|
|
|
--else
|
|
|
|
-- minetest.register_alias("carts:powerrail", "boost_cart:detectorrail")
|
|
|
|
-- minetest.register_alias("carts:powerrail", "boost_cart:detectorrail_on")
|
2014-07-22 23:15:43 +02:00
|
|
|
end
|
|
|
|
|
2016-11-22 20:32:17 +01:00
|
|
|
boost_cart.mtg_compat = minetest.global_exists("carts") and carts.pathfinder
|
|
|
|
if boost_cart.mtg_compat then
|
|
|
|
minetest.log("action", "[boost_cart] Overwriting definitions of similar carts mod")
|
2014-07-22 23:15:43 +02:00
|
|
|
end
|
2016-11-22 20:32:17 +01:00
|
|
|
dofile(boost_cart.modpath.."/cart_entity.lua")
|