2022-09-19 00:16:22 +00:00
|
|
|
local wea = worldeditadditions
|
|
|
|
local wea_c = worldeditadditions_core
|
|
|
|
local Vector3 = wea_c.Vector3
|
|
|
|
|
2021-07-03 00:44:36 +00:00
|
|
|
|
2021-03-01 21:26:33 +00:00
|
|
|
-- ███ ██ ██████ ██ ███████ ███████ ██████ ██████
|
|
|
|
-- ████ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
|
|
-- ██ ██ ██ ██ ██ ██ ███████ █████ █████ ██ ██
|
|
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
|
|
-- ██ ████ ██████ ██ ███████ ███████ ███████ ██████
|
2023-07-07 00:25:42 +00:00
|
|
|
|
2021-03-01 21:26:33 +00:00
|
|
|
--- Applies a layer of 2d noise over the terrain in the defined region.
|
|
|
|
-- @param pos1 Vector pos1 of the defined region
|
|
|
|
-- @param pos2 Vector pos2 of the defined region
|
2021-07-03 21:53:16 +00:00
|
|
|
-- @param noise_params table A noise parameters table.
|
2023-07-07 00:25:42 +00:00
|
|
|
-- @returns bool,table 1. Whether the operation was successful or not.
|
|
|
|
-- 2. A table of statistics from the operation. See `worldeditadditions.noise.apply_2d` for the format of this table.
|
2021-12-31 02:42:32 +00:00
|
|
|
function wea.noise.run2d(pos1, pos2, noise_params)
|
2022-09-19 00:16:22 +00:00
|
|
|
pos1, pos2 = Vector3.sort(pos1, pos2)
|
2021-03-01 21:26:33 +00:00
|
|
|
-- pos2 will always have the highest co-ordinates now
|
|
|
|
|
2021-07-03 00:44:36 +00:00
|
|
|
-- Fill in the default params
|
2022-09-19 00:16:22 +00:00
|
|
|
-- print("DEBUG noise_params_custom ", wea_c.format.map(noise_params))
|
2021-12-31 02:42:32 +00:00
|
|
|
noise_params = wea.noise.params_apply_default(noise_params)
|
2022-09-19 00:16:22 +00:00
|
|
|
-- print("DEBUG noise_params[1] ", wea_c.format.map(noise_params[1]))
|
2021-07-03 00:44:36 +00:00
|
|
|
|
2021-03-01 21:26:33 +00:00
|
|
|
-- Fetch the nodes in the specified area
|
|
|
|
local manip, area = worldedit.manip_helpers.init(pos1, pos2)
|
|
|
|
local data = manip:get_data()
|
|
|
|
|
2022-09-19 00:16:22 +00:00
|
|
|
local heightmap_old, heightmap_size = wea_c.terrain.make_heightmap(
|
2021-03-01 21:26:33 +00:00
|
|
|
pos1, pos2,
|
|
|
|
manip, area,
|
|
|
|
data
|
|
|
|
)
|
2022-09-19 00:16:22 +00:00
|
|
|
local heightmap_new = wea_c.table.shallowcopy(heightmap_old)
|
2021-03-01 21:26:33 +00:00
|
|
|
|
2021-07-03 21:53:16 +00:00
|
|
|
local success, noisemap = wea.noise.make_2d(
|
|
|
|
heightmap_size,
|
|
|
|
pos1,
|
|
|
|
noise_params)
|
|
|
|
if not success then return success, noisemap end
|
2021-03-01 21:26:33 +00:00
|
|
|
|
2021-07-04 12:21:13 +00:00
|
|
|
local message
|
2021-07-03 21:53:16 +00:00
|
|
|
success, message = wea.noise.apply_2d(
|
2021-07-03 00:44:36 +00:00
|
|
|
heightmap_new,
|
|
|
|
noisemap,
|
|
|
|
heightmap_size,
|
2021-07-04 12:21:13 +00:00
|
|
|
pos1, pos2,
|
2021-07-03 21:53:16 +00:00
|
|
|
noise_params[1].apply
|
2021-07-03 00:44:36 +00:00
|
|
|
)
|
2021-07-03 21:53:16 +00:00
|
|
|
if not success then return success, message end
|
|
|
|
|
2021-07-30 18:48:10 +00:00
|
|
|
local stats
|
2022-09-19 00:16:22 +00:00
|
|
|
success, stats = wea_c.terrain.apply_heightmap_changes(
|
2021-07-03 00:44:36 +00:00
|
|
|
pos1, pos2,
|
|
|
|
area, data,
|
|
|
|
heightmap_old, heightmap_new,
|
|
|
|
heightmap_size
|
|
|
|
)
|
|
|
|
if not success then return success, stats end
|
2021-03-01 21:26:33 +00:00
|
|
|
|
|
|
|
-- Save the modified nodes back to disk & return
|
|
|
|
worldedit.manip_helpers.finish(manip, data)
|
|
|
|
|
|
|
|
return true, stats
|
|
|
|
end
|