2021-03-17 17:39:15 +01:00
|
|
|
local groupcaps_cache = {}
|
2021-03-16 12:21:42 +01:00
|
|
|
|
2021-03-16 16:57:50 +01:00
|
|
|
-- Compute a hash value.
|
|
|
|
function compute_hash(value)
|
|
|
|
-- minetest.get_password_hash is quite fast, even if it uses a
|
|
|
|
-- cryptographic hashing function (SHA-1). It is written in C++ and it
|
|
|
|
-- is probably hard to write a faster hashing function in Lua.
|
|
|
|
return string.sub(minetest.get_password_hash("ryvnf", minetest.serialize(value)), 1, 8)
|
|
|
|
end
|
|
|
|
|
2021-03-17 17:39:15 +01:00
|
|
|
-- Get the groupcaps and hash for an enchanted tool. If this function is called
|
|
|
|
-- repeatedly with the same values it will return data from a cache.
|
|
|
|
--
|
|
|
|
-- Parameters:
|
|
|
|
-- toolname - Name of the tool
|
|
|
|
-- level - The efficiency level of the tool
|
2021-03-16 12:21:42 +01:00
|
|
|
--
|
|
|
|
-- Returns a table with the following two fields:
|
2021-03-17 17:39:15 +01:00
|
|
|
-- values - The groupcaps table
|
|
|
|
-- hash - The hash of the groupcaps table
|
2021-03-16 12:21:42 +01:00
|
|
|
local function get_efficiency_groupcaps(toolname, level)
|
2021-03-17 17:39:15 +01:00
|
|
|
local toolcache = groupcaps_cache[toolname]
|
|
|
|
local level = level
|
|
|
|
|
2021-03-16 12:21:42 +01:00
|
|
|
if not toolcache then
|
|
|
|
toolcache = {}
|
2021-03-17 17:39:15 +01:00
|
|
|
groupcaps_cache[toolname] = toolcache
|
2021-03-16 12:21:42 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local levelcache = toolcache[level]
|
|
|
|
if not levelcache then
|
|
|
|
levelcache = {}
|
|
|
|
levelcache.values = mcl_autogroup.get_groupcaps(toolname, level)
|
2021-03-16 16:57:50 +01:00
|
|
|
levelcache.hash = compute_hash(levelcache.values)
|
2021-03-16 12:21:42 +01:00
|
|
|
toolcache[level] = levelcache
|
|
|
|
end
|
|
|
|
|
|
|
|
return levelcache
|
|
|
|
end
|
|
|
|
|
2021-03-17 17:39:15 +01:00
|
|
|
-- Update groupcaps of an enchanted tool. This function will be called
|
2021-03-16 12:21:42 +01:00
|
|
|
-- repeatedly to make sure the digging times stored in groupcaps stays in sync
|
|
|
|
-- when the digging times of nodes can change.
|
|
|
|
--
|
|
|
|
-- To make it more efficient it will first check a hash value to determine if
|
|
|
|
-- the tool needs to be updated.
|
2021-03-17 17:39:15 +01:00
|
|
|
function mcl_enchanting.update_groupcaps(itemstack)
|
2021-03-16 12:21:42 +01:00
|
|
|
local name = itemstack:get_name()
|
2021-03-17 17:39:15 +01:00
|
|
|
local level = mcl_enchanting.get_enchantment(itemstack, "efficiency")
|
2021-03-16 12:21:42 +01:00
|
|
|
local groupcaps = get_efficiency_groupcaps(name, level)
|
|
|
|
local hash = itemstack:get_meta():get_string("groupcaps_hash")
|
|
|
|
|
|
|
|
if not hash or hash ~= groupcaps.hash then
|
|
|
|
local tool_capabilities = itemstack:get_tool_capabilities()
|
|
|
|
tool_capabilities.groupcaps = groupcaps.values
|
|
|
|
itemstack:get_meta():set_tool_capabilities(tool_capabilities)
|
|
|
|
itemstack:get_meta():set_string("groupcaps_hash", groupcaps.hash)
|
|
|
|
end
|
|
|
|
end
|