mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
35 lines
2 KiB
Lua
35 lines
2 KiB
Lua
local wea_c = worldeditadditions_core
|
|
local Vector3 = wea_c.Vector3
|
|
|
|
-- ███ ███ █████ ██ ██ ███████ ██████ ██████ ███ ███ ██████ █████ ███████ ███████
|
|
-- ████ ████ ██ ██ ██ ██ ██ ██ ██ ██ ████ ████ ██ ██ ██ ██ ██ ██
|
|
-- ██ ████ ██ ███████ █████ █████ ██ ██ ██ ██ ████ ██ ██████ ███████ ███████ ███████
|
|
-- ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
|
-- ██ ██ ██ ██ ██ ██ ███████ ██████ ██████ ██ ██ ██ ██ ██ ███████ ███████
|
|
|
|
--- Makes a compass with a bead pointing north (+Z).
|
|
-- @param {Position} pos1 The 1st position defining the WorldEdit selection
|
|
-- @param {string} node1 Name of the node to place
|
|
-- @param {string} node2 Name of the node of the bead
|
|
function worldeditadditions.make_compass(pos1,node1,node2)
|
|
pos1 = Vector3.clone(pos1)
|
|
minetest.set_node(pos1 + Vector3.new(0,1,3), { name = node2 })
|
|
local counts = { replaced = 1 }
|
|
|
|
-- z y x is the preferred loop order (because CPU cache I'd guess, since then we're iterating linearly through the data array)
|
|
for z = -3,3 do
|
|
if z ~= 0 then
|
|
for k,x in pairs({math.floor(-3/math.abs(z)),0,math.ceil(3/math.abs(z))}) do
|
|
minetest.set_node(Vector3.new(pos1.x+x,pos1.y,pos1.z+z), {name=node1})
|
|
counts.replaced = counts.replaced + 1
|
|
end
|
|
else
|
|
for x = -3,3 do
|
|
minetest.set_node(Vector3.new(pos1.x+x,pos1.y,pos1.z), {name=node1})
|
|
counts.replaced = counts.replaced + 1
|
|
end
|
|
end
|
|
end
|
|
|
|
return true, counts.replaced
|
|
end
|