2021-03-09 21:43:25 +01:00
|
|
|
--[[
|
2021-03-16 16:10:57 +01:00
|
|
|
This is one part of a mod to replicate the digging times from Minecraft. This
|
|
|
|
part only exposes a function to register digging groups. The rest of the mod is
|
|
|
|
implemented and documented in the _mcl_autogroup.
|
2021-03-09 21:43:25 +01:00
|
|
|
|
2021-03-18 11:34:20 +01:00
|
|
|
The mod is split up into two parts, mcl_autogroup and _mcl_autogroup.
|
|
|
|
mcl_autogroup contains the API functions used to register custom digging groups.
|
|
|
|
_mcl_autogroup contains most of the code. The leading underscore in the name
|
|
|
|
"_mcl_autogroup" is used to force Minetest to load that part of the mod as late
|
|
|
|
as possible. Minetest loads mods in reverse alphabetical order.
|
2021-03-09 21:43:25 +01:00
|
|
|
--]]
|
|
|
|
mcl_autogroup = {}
|
2021-03-11 15:06:30 +01:00
|
|
|
mcl_autogroup.registered_diggroups = {}
|
2021-03-09 21:43:25 +01:00
|
|
|
|
2021-03-20 19:32:04 +01:00
|
|
|
assert(minetest.get_modpath("_mcl_autogroup"), "This mod requires the mod _mcl_autogroup to function")
|
|
|
|
|
2021-03-11 21:52:00 +01:00
|
|
|
-- Register a group as a digging group.
|
|
|
|
--
|
|
|
|
-- Parameters:
|
|
|
|
-- group - Name of the group to register as a digging group
|
|
|
|
-- def - Table with information about the diggroup (defaults to {} if unspecified)
|
|
|
|
--
|
|
|
|
-- Values in def:
|
2021-03-16 16:10:57 +01:00
|
|
|
-- level - If specified it is an array containing the names of the different
|
|
|
|
-- digging levels the digging group supports.
|
2021-03-11 15:06:30 +01:00
|
|
|
function mcl_autogroup.register_diggroup(group, def)
|
|
|
|
mcl_autogroup.registered_diggroups[group] = def or {}
|
2021-03-09 21:43:25 +01:00
|
|
|
end
|