mirror of
https://github.com/minetest-mods/digilines.git
synced 2025-06-30 07:20:29 +02:00
Use minetest.hash_node_position
for searches.
Previously, Digilines used concatenations of X/Y/Z coordinates into strings as keys to check for repeatedly visiting the same node during a graph search. Replace them with integer keys generated by `minetest.hash_node_position`, which should be more efficient.
This commit is contained in:
committed by
Auke Kok
parent
25ea72270d
commit
84133a10df
@ -105,7 +105,7 @@ function digiline:transmit(pos, channel, msg, checked)
|
||||
for _, rule in ipairs(rules) do
|
||||
local nextPos = digiline:addPosRule(curPos, rule)
|
||||
if digiline:rules_link(curPos, nextPos) then
|
||||
local checkedID = tostring(nextPos.x) .. "_" .. tostring(nextPos.y) .. "_" .. tostring(nextPos.z)
|
||||
local checkedID = minetest.hash_node_position(nextPos)
|
||||
if not checked[checkedID] then
|
||||
checked[checkedID] = true
|
||||
queue_enqueue(queue, nextPos)
|
||||
|
Reference in New Issue
Block a user