2020-05-02 23:37:18 +00:00
-- ████████ ██████ ██████ ██ ██ ███████
-- ██ ██ ██ ██ ██ ██ ██ ██
-- ██ ██ ██ ██████ ██ ██ ███████
-- ██ ██ ██ ██ ██ ██ ██ ██
-- ██ ██████ ██ ██ ██████ ███████
local function parse_params_torus ( params_text )
2021-05-15 01:00:40 +00:00
local parts = worldeditadditions.split ( params_text , " %s+ " , false )
2020-05-02 23:37:18 +00:00
2021-05-15 01:00:40 +00:00
if # parts < 1 then
2021-05-15 01:15:14 +00:00
return false , " Error: No replace_node specified. "
2020-05-10 20:44:00 +00:00
end
2021-05-15 01:00:40 +00:00
if # parts < 2 then
2021-05-15 01:15:14 +00:00
return false , " Error: No major radius specified (expected integer greater than 0). "
2020-05-10 20:44:00 +00:00
end
2021-05-15 01:00:40 +00:00
if # parts < 3 then
2021-05-15 01:15:14 +00:00
return false , " Error: No minor radius specified (expected integer greater than 0). "
2020-05-10 20:44:00 +00:00
end
2021-05-15 01:00:40 +00:00
local major_radius = tonumber ( parts [ 1 ] )
local minor_radius = tonumber ( parts [ 2 ] )
local replace_node = worldedit.normalize_nodename ( parts [ 3 ] )
local axes
if # parts > 3 then axes = parts [ 4 ] end
if not axes then axes = " xy " end
if major_radius < 1 then
return false , " Error: The major radius must be greater than 0. "
end
if minor_radius < 1 then
return false , " Error: The minor radius must be greater than 0. "
end
if not replace_node then
return false , " Error: Invalid node name. "
end
if axes : find ( " [^xyz] " ) then
2021-05-15 01:15:14 +00:00
return false , " Error: The axes may only contain the letters x, y, and z. "
2021-05-15 01:00:40 +00:00
end
2021-05-18 00:16:04 +00:00
if # axes > 2 then
return false , " Error: 2 or less axes must be specified. For example, xy is valid, but xzy is not. "
2021-05-15 01:00:40 +00:00
end
2021-05-17 16:13:43 +00:00
local hollow = false
if parts [ 5 ] == " hollow " or parts [ 5 ] == " h " then
hollow = true
end
2021-05-15 01:00:40 +00:00
-- Sort the axis names (this is important to ensure we can identify the direction properly)
if axes == " yx " then axes = " xy " end
if axes == " zx " then axes = " xz " end
if axes == " zy " then axes = " yz " end
2021-05-18 00:16:04 +00:00
return true , replace_node , major_radius , minor_radius , axes , hollow
2020-05-02 23:37:18 +00:00
end
2020-05-10 20:44:00 +00:00
worldedit.register_command ( " torus " , {
2021-05-17 16:13:43 +00:00
params = " <major_radius> <minor_radius> <replace_node> [<axes=xy> [h[ollow]]] " ,
2021-05-15 01:00:40 +00:00
description = " Creates a 3D torus with a major radius of <major_radius> and a minor radius of <minor_radius> at pos1, filled with <replace_node>, on axes <axes> (i.e. 2 axis names: xz, zy, etc). " ,
2020-05-02 23:37:18 +00:00
privs = { worldedit = true } ,
2020-05-10 20:44:00 +00:00
require_pos = 1 ,
parse = function ( params_text )
local values = { parse_params_torus ( params_text ) }
return unpack ( values )
end ,
nodes_needed = function ( name , target_node , major_radius , minor_radius )
return math.ceil ( 2 * math.pi * math.pi * major_radius * minor_radius * minor_radius )
end ,
2021-05-18 00:16:04 +00:00
func = function ( name , target_node , major_radius , minor_radius , axes , hollow )
2020-06-26 19:46:35 +00:00
local start_time = worldeditadditions.get_ms_time ( )
2021-05-17 16:13:43 +00:00
local replaced = worldeditadditions.torus (
worldedit.pos1 [ name ] ,
major_radius , minor_radius ,
target_node ,
axes ,
hollow
)
2020-06-26 19:46:35 +00:00
local time_taken = worldeditadditions.get_ms_time ( ) - start_time
2020-05-02 23:37:18 +00:00
minetest.log ( " action " , name .. " used //torus at " .. worldeditadditions.vector . tostring ( worldedit.pos1 [ name ] ) .. " , replacing " .. replaced .. " nodes in " .. time_taken .. " s " )
2021-03-20 01:48:56 +00:00
return true , replaced .. " nodes replaced in " .. worldeditadditions.format . human_time ( time_taken )
2020-05-10 20:44:00 +00:00
end
2020-05-02 23:37:18 +00:00
} )
-- TODO: This duplicates a lot of code. Perhaps we can trim it down a bit?
2020-05-10 20:44:00 +00:00
worldedit.register_command ( " hollowtorus " , {
2021-05-15 01:00:40 +00:00
params = " <major_radius> <minor_radius> <replace_node> [<axes=xy>] " ,
description = " Creates a 3D hollow torus with a major radius of <major_radius> and a minor radius of <minor_radius> at pos1, made out of <replace_node>, on axes <axes> (i.e. 2 axis names: xz, zy, etc). " ,
2020-05-02 23:37:18 +00:00
privs = { worldedit = true } ,
2020-05-10 20:44:00 +00:00
require_pos = 1 ,
parse = function ( params_text )
local values = { parse_params_torus ( params_text ) }
return unpack ( values )
end ,
2021-05-15 01:00:40 +00:00
nodes_needed = function ( name , target_node , major_radius , minor_radius , axes )
2020-05-10 20:44:00 +00:00
return math.ceil ( 2 * math.pi * math.pi * major_radius * minor_radius * minor_radius )
end ,
2021-05-17 16:13:43 +00:00
func = function ( name , target_node , major_radius , minor_radius , axes )
2020-06-26 19:46:35 +00:00
local start_time = worldeditadditions.get_ms_time ( )
2021-05-17 16:13:43 +00:00
local replaced = worldeditadditions.torus (
worldedit.pos1 [ name ] ,
major_radius , minor_radius ,
target_node ,
axes ,
true -- hollow
)
2020-06-26 19:46:35 +00:00
local time_taken = worldeditadditions.get_ms_time ( ) - start_time
2020-05-02 23:37:18 +00:00
minetest.log ( " action " , name .. " used //hollowtorus at " .. worldeditadditions.vector . tostring ( worldedit.pos1 [ name ] ) .. " , replacing " .. replaced .. " nodes in " .. time_taken .. " s " )
2021-03-20 01:48:56 +00:00
return true , replaced .. " nodes replaced in " .. worldeditadditions.format . human_time ( time_taken )
2020-05-10 20:44:00 +00:00
end
2020-05-02 23:37:18 +00:00
} )