mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
migrate //floodfill to worldedit.register_command
This commit is contained in:
parent
bdf0bdea93
commit
b7888a2b3f
2 changed files with 26 additions and 43 deletions
|
@ -1,12 +1,14 @@
|
|||
local we_c = worldeditadditions_commands
|
||||
|
||||
-- ███████ ██ ██████ ██████ ██████ ███████ ██ ██ ██
|
||||
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||
-- █████ ██ ██ ██ ██ ██ ██ ██ █████ ██ ██ ██
|
||||
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||
-- ██ ███████ ██████ ██████ ██████ ██ ██ ███████ ███████
|
||||
|
||||
local function parse_params_floodfill(params_text)
|
||||
worldedit.register_command("floodfill", {
|
||||
params = "[<replace_node> [<radius>]]",
|
||||
description = "Floods all connected nodes of the same type starting at pos1 with <replace_node> (which defaults to `water_source`), in a sphere with a radius of <radius> (which defaults to 20).",
|
||||
privs = { worldedit = true },
|
||||
require_pos = 1,
|
||||
parse = function(params_text)
|
||||
if not params_text then params_text = "" end
|
||||
local found, _, replace_node, radius = params_text:find("([a-z:_\\-]+)%s+([0-9]+)")
|
||||
|
||||
|
@ -21,44 +23,27 @@ local function parse_params_floodfill(params_text)
|
|||
|
||||
replace_node = worldedit.normalize_nodename(replace_node)
|
||||
|
||||
return replace_node, radius
|
||||
end
|
||||
|
||||
minetest.register_chatcommand("/floodfill", {
|
||||
params = "[<replace_node> [<radius>]]",
|
||||
description = "Floods all connected nodes of the same type starting at pos1 with <replace_node> (which defaults to `water_source`), in a sphere with a radius of <radius> (which defaults to 20).",
|
||||
privs = { worldedit = true },
|
||||
func = we_c.safe_region(function(name, params_text)
|
||||
local replace_node, radius = parse_params_floodfill(params_text)
|
||||
|
||||
if not replace_node then
|
||||
worldedit.player_notify(name, "Error: Invalid node name.")
|
||||
return false
|
||||
end
|
||||
|
||||
if not worldedit.pos1[name] then
|
||||
worldedit.player_notify(name, "Error: No pos1 defined.")
|
||||
return false
|
||||
end
|
||||
|
||||
return true, replace_node, radius
|
||||
end,
|
||||
nodes_needed = function(name, replace_node, radius)
|
||||
-- Volume of a hemisphere
|
||||
return math.ceil(((4 * math.pi * (tonumber(radius) ^ 3)) / 3) / 2)
|
||||
end,
|
||||
func = function(name, replace_node, radius)
|
||||
local start_time = os.clock()
|
||||
local nodes_replaced = worldedit.floodfill(worldedit.pos1[name], radius, replace_node)
|
||||
local time_taken = os.clock() - start_time
|
||||
|
||||
if nodes_replaced == false then
|
||||
worldedit.player_notify(name, "Error: The search node is the same as the replace node.")
|
||||
return false
|
||||
return false, "Error: The search node is the same as the replace node."
|
||||
end
|
||||
|
||||
worldedit.player_notify(name, nodes_replaced .. " nodes replaced in " .. time_taken .. "s")
|
||||
minetest.log("action", name .. " used //floodfill at " .. worldeditadditions.vector.tostring(worldedit.pos1[name]) .. ", replacing " .. nodes_replaced .. " nodes in " .. time_taken .. "s")
|
||||
end, function(name, params_text)
|
||||
local replace_node, radius = parse_params_floodfill(params_text)
|
||||
|
||||
if not worldedit.pos1[name] then
|
||||
return 0 -- The actual command will send the error message to the client
|
||||
return true, nodes_replaced .. " nodes replaced in " .. time_taken .. "s"
|
||||
end
|
||||
-- Volume of a hemisphere
|
||||
return math.ceil(((4 * math.pi * (tonumber(radius) ^ 3)) / 3) / 2)
|
||||
end)
|
||||
})
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
local we_c = worldeditadditions_commands
|
||||
|
||||
-- ████████ ██████ ██████ ██ ██ ███████
|
||||
-- ██ ██ ██ ██ ██ ██ ██ ██
|
||||
-- ██ ██ ██ ██████ ██ ██ ███████
|
||||
|
|
Loading…
Reference in a new issue