2020-08-18 01:11:37 +00:00
worldeditadditions.erode = { }
dofile ( worldeditadditions.modpath .. " /lib/erode/snowballs.lua " )
2020-08-21 12:27:40 +00:00
function worldeditadditions . erode . run ( pos1 , pos2 , algorithm , params )
pos1 , pos2 = worldedit.sort_pos ( pos1 , pos2 )
local manip , area = worldedit.manip_helpers . init ( pos1 , pos2 )
local data = manip : get_data ( )
2021-02-26 02:20:53 +00:00
local heightmap_size = {
z = ( pos2.z - pos1.z ) + 1 ,
x = ( pos2.x - pos1.x ) + 1
}
2020-08-21 12:27:40 +00:00
2020-08-21 19:59:50 +00:00
local region_height = ( pos2.y - pos1.y ) + 1
2020-08-21 12:27:40 +00:00
local heightmap = worldeditadditions.make_heightmap ( pos1 , pos2 , manip , area , data )
local heightmap_eroded = worldeditadditions.shallowcopy ( heightmap )
2020-08-21 19:59:50 +00:00
-- print("[erode.run] algorithm: "..algorithm..", params:");
-- print(worldeditadditions.map_stringify(params))
2021-02-26 02:20:53 +00:00
-- worldeditadditions.print_2d(heightmap, heightmap_size.x)
2020-08-21 21:01:24 +00:00
local success , msg , stats
2020-08-21 12:27:40 +00:00
if algorithm == " snowballs " then
2020-08-21 21:01:24 +00:00
success , msg = worldeditadditions.erode . snowballs ( heightmap , heightmap_eroded , heightmap_size , region_height , params )
2020-08-21 12:27:40 +00:00
if not success then return success , msg end
else
return false , " Error: Unknown algorithm ' " .. algorithm .. " '. Currently implemented algorithms: snowballs (2d; hydraulic-like). Ideas for algorithms to implement are welcome! "
end
2020-08-21 21:01:24 +00:00
success , stats = worldeditadditions.apply_heightmap_changes (
2020-08-21 12:27:40 +00:00
pos1 , pos2 , area , data ,
heightmap , heightmap_eroded , heightmap_size
)
2020-08-21 14:21:10 +00:00
if not success then return success , stats end
2020-08-21 12:27:40 +00:00
worldedit.manip_helpers . finish ( manip , data )
2020-08-21 21:01:24 +00:00
return true , msg , stats
2020-08-21 12:27:40 +00:00
end