mirror of
https://github.com/Uberi/Minetest-WorldEdit.git
synced 2024-12-25 18:20:38 +01:00
Fix performance of //stack, //stack2
This commit is contained in:
parent
f39a8e264d
commit
cc897150f2
@ -98,27 +98,47 @@ function worldedit.replace(pos1, pos2, search_node, replace_node, inverse)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local function deferred_execution(next_one, finished)
|
||||||
|
-- Allocate 100% of server step for execution (might lag a little)
|
||||||
|
local allocated_usecs =
|
||||||
|
tonumber(minetest.settings:get("dedicated_server_step")) * 1000000
|
||||||
|
local function f()
|
||||||
|
local deadline = minetest.get_us_time() + allocated_usecs
|
||||||
|
repeat
|
||||||
|
local is_done = next_one()
|
||||||
|
if is_done then
|
||||||
|
if finished then
|
||||||
|
finished()
|
||||||
|
end
|
||||||
|
return
|
||||||
|
end
|
||||||
|
until minetest.get_us_time() >= deadline
|
||||||
|
minetest.after(0, f)
|
||||||
|
end
|
||||||
|
f()
|
||||||
|
end
|
||||||
|
|
||||||
--- Duplicates a region `amount` times with offset vector `direction`.
|
--- Duplicates a region `amount` times with offset vector `direction`.
|
||||||
-- Stacking is spread across server steps, one copy per step.
|
-- Stacking is spread across server steps.
|
||||||
-- @return The number of nodes stacked.
|
-- @return The number of nodes stacked.
|
||||||
function worldedit.stack2(pos1, pos2, direction, amount, finished)
|
function worldedit.stack2(pos1, pos2, direction, amount, finished)
|
||||||
|
-- Protect arguments from external changes during execution
|
||||||
|
pos1 = table.copy(pos1)
|
||||||
|
pos2 = table.copy(pos2)
|
||||||
|
direction = table.copy(direction)
|
||||||
|
|
||||||
local i = 0
|
local i = 0
|
||||||
local translated = {x=0, y=0, z=0}
|
local translated = {x=0, y=0, z=0}
|
||||||
local function next_one()
|
local function step()
|
||||||
if i < amount then
|
|
||||||
i = i + 1
|
|
||||||
translated.x = translated.x + direction.x
|
translated.x = translated.x + direction.x
|
||||||
translated.y = translated.y + direction.y
|
translated.y = translated.y + direction.y
|
||||||
translated.z = translated.z + direction.z
|
translated.z = translated.z + direction.z
|
||||||
worldedit.copy2(pos1, pos2, translated)
|
worldedit.copy2(pos1, pos2, translated)
|
||||||
minetest.after(0, next_one)
|
i = i + 1
|
||||||
else
|
return i >= amount
|
||||||
if finished then
|
|
||||||
finished()
|
|
||||||
end
|
end
|
||||||
end
|
deferred_execution(step, finished)
|
||||||
end
|
|
||||||
next_one()
|
|
||||||
return worldedit.volume(pos1, pos2) * amount
|
return worldedit.volume(pos1, pos2) * amount
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -333,31 +353,29 @@ end
|
|||||||
|
|
||||||
|
|
||||||
--- Duplicates a region along `axis` `amount` times.
|
--- Duplicates a region along `axis` `amount` times.
|
||||||
-- Stacking is spread across server steps, one copy per step.
|
-- Stacking is spread across server steps.
|
||||||
-- @param pos1
|
-- @param pos1
|
||||||
-- @param pos2
|
-- @param pos2
|
||||||
-- @param axis Axis direction, "x", "y", or "z".
|
-- @param axis Axis direction, "x", "y", or "z".
|
||||||
-- @param count
|
-- @param count
|
||||||
-- @return The number of nodes stacked.
|
-- @return The number of nodes stacked.
|
||||||
function worldedit.stack(pos1, pos2, axis, count)
|
function worldedit.stack(pos1, pos2, axis, count, finished)
|
||||||
local pos1, pos2 = worldedit.sort_pos(pos1, pos2)
|
local pos1, pos2 = worldedit.sort_pos(pos1, pos2)
|
||||||
local length = pos2[axis] - pos1[axis] + 1
|
local length = pos2[axis] - pos1[axis] + 1
|
||||||
if count < 0 then
|
if count < 0 then
|
||||||
count = -count
|
count = -count
|
||||||
length = -length
|
length = -length
|
||||||
end
|
end
|
||||||
local amount = 0
|
|
||||||
local copy = worldedit.copy
|
local i, distance = 0, 0
|
||||||
local i = 1
|
local function step()
|
||||||
local function next_one()
|
distance = distance + length
|
||||||
if i <= count then
|
worldedit.copy(pos1, pos2, axis, distance)
|
||||||
i = i + 1
|
i = i + 1
|
||||||
amount = amount + length
|
return i >= count
|
||||||
copy(pos1, pos2, axis, amount)
|
|
||||||
minetest.after(0, next_one)
|
|
||||||
end
|
end
|
||||||
end
|
deferred_execution(step, finished)
|
||||||
next_one()
|
|
||||||
return worldedit.volume(pos1, pos2) * count
|
return worldedit.volume(pos1, pos2) * count
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user