mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
37 lines
1.6 KiB
Lua
37 lines
1.6 KiB
Lua
-- ██████ ██████ ██ ██ ███ ██ ████████
|
|
-- ██ ██ ██ ██ ██ ████ ██ ██
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ██████ ██████ ██████ ██ ████ ██
|
|
worldedit.register_command("count", {
|
|
params = "",
|
|
description = "Counts all the nodes in the defined region.",
|
|
privs = { worldedit = true },
|
|
require_pos = 2,
|
|
parse = function(params_text)
|
|
return true
|
|
end,
|
|
nodes_needed = function(name)
|
|
-- We don't actually modify anything, but without returning a
|
|
-- number here safe_region doesn't work
|
|
return worldedit.volume(worldedit.pos1[name], worldedit.pos2[name])
|
|
end,
|
|
func = function(name)
|
|
local start_time = worldeditadditions.get_ms_time()
|
|
|
|
local success, counts, total = worldeditadditions.count(
|
|
worldedit.pos1[name], worldedit.pos2[name],
|
|
true
|
|
)
|
|
|
|
local result = worldeditadditions.format.make_ascii_table(counts).."\n"..
|
|
string.rep("=", 6 + #tostring(total) + 6).."\n"..
|
|
"Total "..total.." nodes\n"
|
|
|
|
local time_taken = worldeditadditions.get_ms_time() - start_time
|
|
|
|
|
|
minetest.log("action", name.." used //count at "..worldeditadditions.vector.tostring(worldedit.pos1[name]).." - "..worldeditadditions.vector.tostring(worldedit.pos2[name])..", counting "..total.." nodes in "..worldeditadditions.format.human_time(time_taken))
|
|
return true, result
|
|
end
|
|
})
|