2021-07-03 21:53:16 +00:00
local wea = worldeditadditions
2022-09-18 19:58:28 +00:00
local wea_c = worldeditadditions_core
local Vector3 = wea_c.Vector3
2021-07-03 21:53:16 +00:00
2022-05-19 21:10:09 +00:00
worldeditadditions_core.register_command ( " noise2d " , {
2021-07-03 21:53:16 +00:00
params = " [<key_1> [<value_1>]] [<key_2> [<value_2>]] ...] " ,
description = " Applies 2d random noise to the terrain as a 2d heightmap in the defined region. Optionally takes an arbitrary set of key - value pairs representing parameters that control the properties of the noise and how it's applied. See the full documentation for details of these parameters and what they do. " ,
privs = { worldedit = true } ,
require_pos = 2 ,
parse = function ( params_text )
if not params_text then return true , { } end
2022-09-18 19:58:28 +00:00
params_text = wea_c.trim ( params_text )
2021-07-03 21:53:16 +00:00
if params_text == " " then return true , { } end
2022-09-18 19:58:28 +00:00
local success , map = wea_c.parse . map ( params_text ,
2021-07-12 01:45:32 +00:00
wea.noise . engines.available ) -- Keywords
2021-07-03 21:53:16 +00:00
if not success then return success , map end
if map.scale then
map.scale = tonumber ( map.scale )
2022-09-18 19:58:28 +00:00
map.scale = Vector3.new ( map.scale , map.scale , map.scale )
2021-07-03 21:53:16 +00:00
elseif map.scalex or map.scaley or map.scalez then
2021-07-04 12:21:13 +00:00
map.scalex = tonumber ( map.scalex ) or 1
map.scaley = tonumber ( map.scaley ) or 1
map.scalez = tonumber ( map.scalez ) or 1
2022-09-18 19:58:28 +00:00
map.scale = Vector3.new ( map.scalex , map.scaley , map.scalez )
2021-07-03 21:53:16 +00:00
end
if map.offsetx or map.offsety or map.offsetz then
map.offsetx = tonumber ( map.offsetx ) or 0
map.offsety = tonumber ( map.offsety ) or 0
map.offsetz = tonumber ( map.offsetz ) or 0
2022-09-18 19:58:28 +00:00
map.offset = Vector3.new ( map.offsetx , map.offsety , map.offsetz )
2021-07-03 21:53:16 +00:00
end
return true , map
end ,
nodes_needed = function ( name )
return worldedit.volume ( worldedit.pos1 [ name ] , worldedit.pos2 [ name ] )
end ,
func = function ( name , params )
2022-09-18 19:58:28 +00:00
local start_time = wea_c.get_ms_time ( )
local pos1 , pos2 = Vector3.sort ( worldedit.pos1 [ name ] , worldedit.pos2 [ name ] )
local success , stats = wea.noise . run2d (
pos1 , pos2 ,
2021-07-03 21:53:16 +00:00
params
)
if not success then return success , stats end
2022-09-18 19:58:28 +00:00
local time_taken = wea_c.get_ms_time ( ) - start_time
2021-07-03 21:53:16 +00:00
2022-09-18 19:58:28 +00:00
minetest.log ( " action " , name .. " used //noise2d at " .. pos1 .. " - " .. pos2 .. " , adding " .. stats.added .. " nodes and removing " .. stats.removed .. " nodes in " .. wea_c.format . human_time ( time_taken ) )
return true , stats.added .. " nodes added and " .. stats.removed .. " nodes removed in " .. wea_c.format . human_time ( time_taken )
2021-07-03 21:53:16 +00:00
end
} )