2020-05-11 01:02:02 +00:00
local we_c = worldeditadditions_commands
-- ██████ ██████ ███ ██ ███████ ███ ███ ███████ █████ ██
-- ██ ██ ██ ██ ████ ██ ██ ████ ████ ██ ██ ██ ██
-- ██████ ██ ██ ██ ██ ██ █████ ██ ████ ██ █████ ███████ ██
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
-- ██████ ██████ ██ ████ ███████ ██ ██ ███████ ██ ██ ███████
worldedit.register_command ( " bonemeal " , {
params = " [<strength> [<chance>]] " ,
description = " Bonemeals everything that's bonemeal-able that has an air node directly above it. Optionally takes a strength value to use (default: 1, maximum: 4), and a chance to actually bonemeal an eligible node (positive integer; nodes have a 1-in-<chance> chance to be bonemealed; higher values mean a lower chance; default: 1 - 100% chance). " ,
privs = { worldedit = true } ,
require_pos = 2 ,
parse = function ( params_text )
if not params_text or params_text == " " then
params_text = " 1 "
end
2020-05-11 23:38:42 +00:00
local parts = worldeditadditions.split ( params_text , " %s+ " , false )
2020-05-11 01:02:02 +00:00
local strength = 1
local chance = 1
if # parts >= 1 then
strength = tonumber ( parts [ 1 ] )
if not strength then
return false , " Invalid strength value (value must be an integer) "
end
end
if # parts >= 2 then
2021-05-11 21:20:29 +00:00
chance = worldeditadditions.parse . chance ( parts [ 2 ] )
2020-05-11 01:02:02 +00:00
if not chance then
return false , " Invalid chance value (must be a positive integer) "
end
end
if strength < 1 or strength > 4 then
return false , " Error: strength value out of bounds (value must be an integer between 1 and 4 inclusive) "
end
-- We unconditionally math.floor here because when we tried to test for it directly it was unreliable
return true , math.floor ( strength ) , math.floor ( chance )
end ,
nodes_needed = function ( name ) -- strength, chance
-- Since every node has to have an air block, in the best-case scenario
-- edit only half the nodes in the selected area
return worldedit.volume ( worldedit.pos1 [ name ] , worldedit.pos2 [ name ] ) / 2
end ,
func = function ( name , strength , chance )
2020-06-26 19:46:35 +00:00
local start_time = worldeditadditions.get_ms_time ( )
2020-05-11 01:02:02 +00:00
local success , nodes_bonemealed , candidates = worldeditadditions.bonemeal ( worldedit.pos1 [ name ] , worldedit.pos2 [ name ] , strength , chance )
if not success then
-- nodes_bonemealed is an error message here because success == false
return success , nodes_bonemealed
end
2020-05-11 23:38:42 +00:00
local percentage = worldeditadditions.round ( ( nodes_bonemealed / candidates ) * 100 , 2 )
2020-06-26 19:46:35 +00:00
local time_taken = worldeditadditions.get_ms_time ( ) - start_time
2020-06-26 20:23:03 +00:00
-- Avoid nan% - since if there aren't any candidates then nodes_bonemealed will be 0 too
if candidates == 0 then percentage = 0 end
2020-05-11 01:02:02 +00:00
minetest.log ( " action " , name .. " used //bonemeal at " .. worldeditadditions.vector . tostring ( worldedit.pos1 [ name ] ) .. " - " .. worldeditadditions.vector . tostring ( worldedit.pos2 [ name ] ) .. " , bonemealing " .. nodes_bonemealed .. " nodes (out of " .. candidates .. " nodes) at strength " .. strength .. " in " .. time_taken .. " s " )
2021-03-20 01:48:56 +00:00
return true , nodes_bonemealed .. " out of " .. candidates .. " (~ " .. percentage .. " %) candidates bonemealed in " .. worldeditadditions.format . human_time ( time_taken )
2020-05-11 01:02:02 +00:00
end
} )