Minetest-WorldEdit/worldedit_commands/cuboid.lua

210 lines
5.8 KiB
Lua
Raw Normal View History

2019-12-19 14:12:45 +01:00
worldedit.register_command("outset", {
params = "[h|v] <amount>",
2019-12-19 14:12:45 +01:00
description = "Outset the selected region.",
privs = {worldedit=true},
2019-12-19 14:12:45 +01:00
require_pos = 2,
parse = function(param)
local find, _, dir, amount = param:find("(%a*)%s*([+-]?%d+)")
if find == nil then
2019-12-19 14:12:45 +01:00
return false
end
2019-12-19 14:12:45 +01:00
local hv_test = dir:find("[^hv]+")
if hv_test ~= nil then
return false, "Invalid direction."
end
2019-12-19 14:12:45 +01:00
return true, dir, tonumber(amount)
end,
func = function(name, dir, amount)
if dir == "" or dir == "hv" or dir == "vh" then
2015-01-06 14:20:58 +01:00
assert(worldedit.cuboid_volumetric_expand(name, amount))
elseif dir == "h" then
2015-01-06 14:20:58 +01:00
assert(worldedit.cuboid_linear_expand(name, 'x', 1, amount))
assert(worldedit.cuboid_linear_expand(name, 'x', -1, amount))
assert(worldedit.cuboid_linear_expand(name, 'z', 1, amount))
assert(worldedit.cuboid_linear_expand(name, 'z', -1, amount))
elseif dir == "v" then
2015-01-06 14:20:58 +01:00
assert(worldedit.cuboid_linear_expand(name, 'y', 1, amount))
assert(worldedit.cuboid_linear_expand(name, 'y', -1, amount))
else
return false, "Invalid number of arguments"
end
2019-12-19 14:12:45 +01:00
worldedit.marker_update(name)
return true, "Region outset by " .. amount .. " blocks"
end,
2019-12-19 14:12:45 +01:00
})
2015-01-06 14:20:58 +01:00
2019-12-19 14:12:45 +01:00
worldedit.register_command("inset", {
params = "[h|v] <amount>",
2019-12-19 14:12:45 +01:00
description = "Inset the selected region.",
2015-01-04 03:20:27 +01:00
privs = {worldedit=true},
2019-12-19 14:12:45 +01:00
require_pos = 2,
parse = function(param)
local find, _, dir, amount = param:find("(%a*)%s*([+-]?%d+)")
2015-01-04 03:20:27 +01:00
if find == nil then
2019-12-19 14:12:45 +01:00
return false
2015-01-04 03:20:27 +01:00
end
2019-12-19 14:12:45 +01:00
local hv_test = dir:find("[^hv]+")
if hv_test ~= nil then
return false, "Invalid direction."
end
2019-12-19 14:12:45 +01:00
return true, dir, tonumber(amount)
end,
func = function(name, dir, amount)
if dir == "" or dir == "vh" or dir == "hv" then
2015-01-06 14:20:58 +01:00
assert(worldedit.cuboid_volumetric_expand(name, -amount))
2015-01-04 03:20:27 +01:00
elseif dir == "h" then
2015-01-06 14:20:58 +01:00
assert(worldedit.cuboid_linear_expand(name, 'x', 1, -amount))
assert(worldedit.cuboid_linear_expand(name, 'x', -1, -amount))
assert(worldedit.cuboid_linear_expand(name, 'z', 1, -amount))
assert(worldedit.cuboid_linear_expand(name, 'z', -1, -amount))
2015-01-04 03:20:27 +01:00
elseif dir == "v" then
2015-01-06 14:20:58 +01:00
assert(worldedit.cuboid_linear_expand(name, 'y', 1, -amount))
assert(worldedit.cuboid_linear_expand(name, 'y', -1, -amount))
2015-01-04 03:20:27 +01:00
else
return false, "Invalid number of arguments"
2015-01-04 03:20:27 +01:00
end
2019-12-19 14:12:45 +01:00
2015-01-04 03:20:27 +01:00
worldedit.marker_update(name)
return true, "Region inset by " .. amount .. " blocks"
end,
2019-12-19 14:12:45 +01:00
})
2019-12-19 14:12:45 +01:00
worldedit.register_command("shift", {
params = "[x|y|z|?|up|down|left|right|front|back] [+|-]<amount>",
2015-01-04 03:20:27 +01:00
description = "Moves the selection region. Does not move contents.",
privs = {worldedit=true},
2019-12-19 14:12:45 +01:00
require_pos = 2,
parse = function(param)
local find, _, direction, amount = param:find("([%?%l]+)%s*([+-]?%d+)")
2015-01-04 03:20:27 +01:00
if find == nil then
2019-12-19 14:12:45 +01:00
return false
2015-01-04 03:20:27 +01:00
end
2019-12-19 14:12:45 +01:00
return true, direction, tonumber(amount)
end,
func = function(name, direction, amount)
2015-01-04 03:20:27 +01:00
local axis, dir
2016-07-04 19:51:28 +02:00
if direction == "x" or direction == "y" or direction == "z" then
axis, dir = direction, 1
elseif direction == "?" then
2015-01-04 03:20:27 +01:00
axis, dir = worldedit.player_axis(name)
2016-07-04 19:51:28 +02:00
else
axis, dir = worldedit.translate_direction(name, direction)
2015-01-04 03:20:27 +01:00
end
2019-12-19 14:12:45 +01:00
if axis == nil or dir == nil then
2015-02-16 05:15:52 +01:00
return false, "Invalid if looking straight up or down"
end
2019-12-19 14:12:45 +01:00
2015-01-04 03:20:27 +01:00
assert(worldedit.cuboid_shift(name, axis, amount * dir))
worldedit.marker_update(name)
2019-12-19 14:12:45 +01:00
return true, "Region shifted by " .. amount .. " nodes"
end,
2019-12-19 14:12:45 +01:00
})
2015-01-06 14:20:58 +01:00
2019-12-19 14:12:45 +01:00
worldedit.register_command("expand", {
params = "[+|-]<x|y|z|?|up|down|left|right|front|back> <amount> [reverse-amount]",
2015-01-04 03:56:27 +01:00
description = "expand the selection in one or two directions at once",
privs = {worldedit=true},
2019-12-19 14:12:45 +01:00
require_pos = 2,
parse = function(param)
local find, _, sign, direction, amount,
rev_amount = param:find("([+-]?)([%?%l]+)%s*(%d+)%s*(%d*)")
if find == nil then
return false
end
2019-12-19 14:12:45 +01:00
if rev_amount == "" then
rev_amount = "0"
end
return true, sign, direction, tonumber(amount), tonumber(rev_amount)
end,
func = function(name, sign, direction, amount, rev_amount)
local absolute = direction:find("[xyz?]")
local dir, axis
if absolute == nil then
axis, dir = worldedit.translate_direction(name, direction)
if axis == nil or dir == nil then
return false, "Invalid if looking straight up or down"
end
2015-01-04 03:56:27 +01:00
else
2019-12-19 14:12:45 +01:00
if direction == "?" then
axis, dir = worldedit.player_axis(name)
else
axis = direction
dir = 1
end
end
if sign == "-" then
dir = -dir
end
worldedit.cuboid_linear_expand(name, axis, dir, amount)
worldedit.cuboid_linear_expand(name, axis, -dir, rev_amount)
worldedit.marker_update(name)
return true, "Region expanded by " .. (amount + rev_amount) .. " nodes"
end,
})
2015-01-04 03:56:27 +01:00
2019-12-19 14:12:45 +01:00
worldedit.register_command("contract", {
params = "[+|-]<x|y|z|?|up|down|left|right|front|back> <amount> [reverse-amount]",
2015-01-04 03:56:27 +01:00
description = "contract the selection in one or two directions at once",
privs = {worldedit=true},
2019-12-19 14:12:45 +01:00
require_pos = 2,
parse = function(param)
local find, _, sign, direction, amount,
rev_amount = param:find("([+-]?)([%?%l]+)%s*(%d+)%s*(%d*)")
if find == nil then
return false
end
2019-12-19 14:12:45 +01:00
if rev_amount == "" then
rev_amount = "0"
end
return true, sign, direction, tonumber(amount), tonumber(rev_amount)
end,
func = function(name, sign, direction, amount, rev_amount)
local absolute = direction:find("[xyz?]")
local dir, axis
if absolute == nil then
axis, dir = worldedit.translate_direction(name, direction)
if axis == nil or dir == nil then
return false, "Invalid if looking straight up or down"
end
2015-01-04 03:56:27 +01:00
else
2019-12-19 14:12:45 +01:00
if direction == "?" then
axis, dir = worldedit.player_axis(name)
else
axis = direction
dir = 1
end
end
if sign == "-" then
dir = -dir
end
worldedit.cuboid_linear_expand(name, axis, dir, -amount)
worldedit.cuboid_linear_expand(name, axis, -dir, -rev_amount)
worldedit.marker_update(name)
return true, "Region contracted by " .. (amount + rev_amount) .. " nodes"
end,
})