SX 3df86dd24b Add power tool API, refactor existing tools
Cleanup deprecated metadata access for tools

Fix mining drill translations

Remove deprecated power tool functions

Drop charge value completely

Ensure use_RE_charge always uses at least 1 point

Use precalculated wear factor, remove negative set_wear hack...

Use technic_max_charge instead of max_charge in item definition, accept both

Log errors instead of failing with invalid power tool stack

Metadata migration for prospector

Cleanup tool definition max_charge, get_RE_charge log warning for unknown stacks
2022-06-09 22:29:48 +03:00

61 lines
1.3 KiB
Lua

-- Minetest 0.4.7 mod: technic
-- namespace: technic
-- (c) 2012-2013 by RealBadAngel <mk@realbadangel.pl>
local load_start = os.clock()
technic = rawget(_G, "technic") or {}
technic.plus = true
technic.creative_mode = minetest.settings:get_bool("creative_mode")
local modpath = minetest.get_modpath("technic")
technic.modpath = modpath
technic.getter = minetest.get_translator(minetest.get_current_modname())
local S = technic.getter
-- Read configuration file
dofile(modpath.."/config.lua")
-- Lag monitoring
dofile(modpath.."/max_lag.lua")
-- Helper functions
dofile(modpath.."/helpers.lua")
-- Register functions
dofile(modpath.."/register.lua")
-- Compatibility shims for tools
dofile(modpath.."/machines/compat/tools.lua")
-- Items
dofile(modpath.."/items.lua")
-- Craft recipes for items
dofile(modpath.."/crafts.lua")
-- Radiation
dofile(modpath.."/radiation.lua")
-- Machines
dofile(modpath.."/machines/init.lua")
-- Tools
dofile(modpath.."/tools/init.lua")
-- Aliases for legacy node/item names
dofile(modpath.."/legacy.lua")
-- visual effects
dofile(modpath.."/effects.lua")
if minetest.settings:get_bool("log_mods") then
print(S("[Technic] Loaded in @1 seconds", os.clock() - load_start))
end
if minetest.settings:get_bool("enable_technic_integration_test") then
dofile(modpath.."/integration_test.lua")
end