pick_and_place-cd2025/create_tool.lua
2024-03-07 07:47:10 +01:00

35 lines
1.1 KiB
Lua

function pick_and_place.create_tool(pos1, pos2, name)
local size = vector.add(vector.subtract(pos2, pos1), 1)
local tool = ItemStack("pick_and_place:place 1")
local tool_meta = tool:get_meta()
tool_meta:set_string("size", minetest.pos_to_string(size))
-- serialize schematic
local schematic = pick_and_place.serialize(pos1, pos2)
tool_meta:set_string("schematic", schematic)
-- set name
tool_meta:set_string("name", name)
-- add rotation info (with respect to original in-world build)
tool_meta:set_int("rotation", 0)
-- update description
pick_and_place.update_placement_tool_description(tool_meta)
return tool
end
function pick_and_place.update_placement_tool_description(tool_meta)
local name = tool_meta:get_string("name")
local size_str = tool_meta:get_string("size")
local schematic = tool_meta:get_string("schematic")
local rotation = tool_meta:get_int("rotation")
local desc = string.format(
"Placement tool '%s' (%d bytes, rotation: %d°, size: %s)",
name or "", #schematic, rotation, size_str
)
tool_meta:set_string("description", desc)
end