--saved state for each player local gui_nodename1 = {} --mapping of player names to node names (arbitrary strings may also appear as values) local gui_nodename2 = {} --mapping of player names to node names (arbitrary strings may also appear as values) local gui_axis = {} --mapping of player names to axes (one of 1, 2, 3, or 4, representing the axes in the `axis_indices` table below) local gui_distance1 = {} --mapping of player names to a distance, usually side length (arbitrary strings may also appear as values) local gui_distance2 = {} --mapping of player names to a distance, usually radius (arbitrary strings may also appear as values) local gui_distance3 = {} --mapping of player names to a distance, usually spacing (arbitrary strings may also appear as values) local gui_formspec = {} --mapping of player names to formspecs (arbitrary strings may also appear as values) --set default values setmetatable(gui_nodename1, {__index = function () return "Cobblestone" end}) setmetatable(gui_nodename2, {__index = function () return "Stone" end}) setmetatable(gui_axis, {__index = function () return 4 end}) setmetatable(gui_distance1, {__index = function () return "10" end}) setmetatable(gui_distance2, {__index = function () return "5" end}) setmetatable(gui_distance3, {__index = function () return "2" end}) setmetatable(gui_formspec, {__index = function () return "" end}) local axis_indices = {["X axis"]=1, ["Y axis"]=2, ["Z axis"]=3, ["Look direction"]=4} local axis_values = {"x", "y", "z", "?"} setmetatable(axis_indices, {__index = function () return 4 end}) setmetatable(axis_values, {__index = function () return "?" end}) --given multiple sets of privileges, produces a single set of privs that would have the same effect as requiring all of them at the same time local combine_privs = function(...) local result = {} for i, privs in ipairs({...}) do for name, value in pairs(privs) do if result[name] ~= nil and result[name] ~= value then --the priv must be both true and false, which can never happen return {__fake_priv_that_nobody_has__=true} --priviledge table that can never be satisfied end result[name] = value end end return result end worldedit.register_gui_function("worldedit_gui_about", { name = "About", privs = minetest.chatcommands["/about"].privs, on_select = function(name) minetest.chatcommands["/about"].func(name, "") end, }) worldedit.register_gui_function("worldedit_gui_inspect", { name = "Toggle Inspect", privs = minetest.chatcommands["/inspect"].privs, on_select = function(name) minetest.chatcommands["/inspect"].func(name, worldedit.inspect[name] and "disable" or "enable") end, }) worldedit.register_gui_function("worldedit_gui_region", { name = "Get/Set Region", privs = combine_privs(minetest.chatcommands["/p"].privs, minetest.chatcommands["/pos1"].privs, minetest.chatcommands["/pos2"].privs, minetest.chatcommands["/reset"].privs, minetest.chatcommands["/mark"].privs, minetest.chatcommands["/unmark"].privs, minetest.chatcommands["/volume"].privs, minetest.chatcommands["/fixedpos"].privs), get_formspec = function(name) local pos1, pos2 = worldedit.pos1[name], worldedit.pos2[name] return "size[9,7]" .. worldedit.get_formspec_header("worldedit_gui_region") .. "button_exit[0,1;3,0.8;worldedit_gui_p_get;Get Positions]" .. "button_exit[3,1;3,0.8;worldedit_gui_p_set1;Choose Position 1]" .. "button_exit[6,1;3,0.8;worldedit_gui_p_set2;Choose Position 2]" .. "button_exit[0,2;3,0.8;worldedit_gui_pos1;Position 1 Here]" .. "button_exit[3,2;3,0.8;worldedit_gui_pos2;Position 2 Here]" .. "button_exit[6,2;3,0.8;worldedit_gui_reset;Reset Region]" .. "button_exit[0,3;3,0.8;worldedit_gui_mark;Mark Region]" .. "button_exit[3,3;3,0.8;worldedit_gui_unmark;Unmark Region]" .. "button_exit[6,3;3,0.8;worldedit_gui_volume;Region Volume]" .. "label[0,4.7;Position 1]" .. string.format("field[2,5;1.5,0.8;worldedit_gui_fixedpos_pos1x;X ;%s]", pos1 and pos1.x or "") .. string.format("field[3.5,5;1.5,0.8;worldedit_gui_fixedpos_pos1y;Y ;%s]", pos1 and pos1.y or "") .. string.format("field[5,5;1.5,0.8;worldedit_gui_fixedpos_pos1z;Z ;%s]", pos1 and pos1.z or "") .. "button_exit[6.5,4.68;2.5,0.8;worldedit_gui_fixed_pos1_submit;Set Position 1]" .. "label[0,6.2;Position 2]" .. string.format("field[2,6.5;1.5,0.8;worldedit_gui_fixedpos_pos2x;X ;%s]", pos2 and pos2.x or "") .. string.format("field[3.5,6.5;1.5,0.8;worldedit_gui_fixedpos_pos2y;Y ;%s]", pos2 and pos2.y or "") .. string.format("field[5,6.5;1.5,0.8;worldedit_gui_fixedpos_pos2z;Z ;%s]", pos2 and pos2.z or "") .. "button_exit[6.5,6.18;2.5,0.8;worldedit_gui_fixed_pos2_submit;Set Position 2]" end, }) worldedit.register_gui_handler("worldedit_gui_region", function(name, fields) if fields.worldedit_gui_p_get then minetest.chatcommands["/p"].func(name, "get") return true elseif fields.worldedit_gui_p_set1 then minetest.chatcommands["/p"].func(name, "set1") return true elseif fields.worldedit_gui_p_set2 then minetest.chatcommands["/p"].func(name, "set2") return true elseif fields.worldedit_gui_pos1 then minetest.chatcommands["/pos1"].func(name, "") worldedit.show_page(name, "worldedit_gui_region") return true elseif fields.worldedit_gui_pos2 then minetest.chatcommands["/pos2"].func(name, "") worldedit.show_page(name, "worldedit_gui_region") return true elseif fields.worldedit_gui_reset then minetest.chatcommands["/reset"].func(name, "") worldedit.show_page(name, "worldedit_gui_region") return true elseif fields.worldedit_gui_mark then minetest.chatcommands["/mark"].func(name, "") worldedit.show_page(name, "worldedit_gui_region") return true elseif fields.worldedit_gui_unmark then minetest.chatcommands["/unmark"].func(name, "") worldedit.show_page(name, "worldedit_gui_region") return true elseif fields.worldedit_gui_volume then minetest.chatcommands["/volume"].func(name, "") worldedit.show_page(name, "worldedit_gui_region") return true elseif fields.worldedit_gui_fixedpos_pos1_submit then minetest.chatcommands["/fixedpos"].func(name, string.format("set1 %s %s %s", tostring(fields.worldedit_gui_fixedpos_pos1x), tostring(fields.worldedit_gui_fixedpos_pos1y), tostring(fields.worldedit_gui_fixedpos_pos1z))) worldedit.show_page(name, "worldedit_gui_region") return true elseif fields.worldedit_gui_fixedpos_pos2_submit then minetest.chatcommands["/fixedpos"].func(name, string.format("set2 %s %s %s", tostring(fields.worldedit_gui_fixedpos_pos2x), tostring(fields.worldedit_gui_fixedpos_pos2y), tostring(fields.worldedit_gui_fixedpos_pos2z))) worldedit.show_page(name, "worldedit_gui_region") return true end return false end) worldedit.register_gui_function("worldedit_gui_set", { name = "Set Nodes", privs = minetest.chatcommands["/set"].privs, get_formspec = function(name) local node = gui_nodename1[name] local nodename = worldedit.normalize_nodename(node) return "size[6.5,3]" .. worldedit.get_formspec_header("worldedit_gui_set") .. string.format("field[0.5,1.5;4,0.8;worldedit_gui_set_node;Name;%s]", minetest.formspec_escape(node)) .. "button[4,1.18;1.5,0.8;worldedit_gui_set_search;Search]" .. (nodename and string.format("item_image[5.5,1.1;1,1;%s]", nodename) or "image[5.5,1.1;1,1;unknown_node.png]") .. "button_exit[0,2.5;3,0.8;worldedit_gui_set_submit;Set Nodes]" end, }) worldedit.register_gui_handler("worldedit_gui_set", function(name, fields) if fields.worldedit_gui_set_search or fields.worldedit_gui_set_submit then gui_nodename1[name] = tostring(fields.worldedit_gui_set_node) worldedit.show_page(name, "worldedit_gui_set") if fields.worldedit_gui_set_submit then minetest.chatcommands["/set"].func(name, gui_nodename1[name]) end return true end return false end) worldedit.register_gui_function("worldedit_gui_replace", { name = "Replace Nodes", privs = combine_privs(minetest.chatcommands["/replace"].privs, minetest.chatcommands["/replaceinverse"].privs), get_formspec = function(name) local search, replace = gui_nodename1[name], gui_nodename2[name] local search_nodename, replace_nodename = worldedit.normalize_nodename(search), worldedit.normalize_nodename(replace) return "size[6.5,4]" .. worldedit.get_formspec_header("worldedit_gui_replace") .. string.format("field[0.5,1.5;4,0.8;worldedit_gui_replace_search;Name;%s]", minetest.formspec_escape(search)) .. "button[4,1.18;1.5,0.8;worldedit_gui_replace_search_search;Search]" .. (search_nodename and string.format("item_image[5.5,1.1;1,1;%s]", search_nodename) or "image[5.5,1.1;1,1;unknown_node.png]") .. string.format("field[0.5,2.5;4,0.8;worldedit_gui_replace_replace;Name;%s]", minetest.formspec_escape(replace)) .. "button[4,2.18;1.5,0.8;worldedit_gui_replace_replace_search;Search]" .. (replace_nodename and string.format("item_image[5.5,2.1;1,1;%s]", replace_nodename) or "image[5.5,2.1;1,1;unknown_node.png]") .. "button_exit[0,3.5;3,0.8;worldedit_gui_replace_submit;Replace Nodes]" .. "button_exit[3.5,3.5;3,0.8;worldedit_gui_replace_submit_inverse;Replace Inverse]" end, }) worldedit.register_gui_handler("worldedit_gui_replace", function(name, fields) if fields.worldedit_gui_replace_search_search or fields.worldedit_gui_replace_replace_search or fields.worldedit_gui_replace_submit or fields.worldedit_gui_replace_submit_inverse then gui_nodename1[name] = tostring(fields.worldedit_gui_replace_search) gui_nodename2[name] = tostring(fields.worldedit_gui_replace_replace) worldedit.show_page(name, "worldedit_gui_replace") if fields.worldedit_gui_replace_submit then minetest.chatcommands["/replace"].func(name, string.format("%s %s", gui_nodename1[name], gui_nodename2[name])) elseif fields.worldedit_gui_replace_submit_inverse then minetest.chatcommands["/replaceinverse"].func(name, string.format("%s %s", gui_nodename1[name], gui_nodename2[name])) end return true end return false end) worldedit.register_gui_function("worldedit_gui_sphere_dome", { name = "Sphere/Dome", privs = combine_privs(minetest.chatcommands["/hollowsphere"].privs, minetest.chatcommands["/sphere"].privs, minetest.chatcommands["/hollowdome"].privs, minetest.chatcommands["/dome"].privs), get_formspec = function(name) local node, radius = gui_nodename1[name], gui_distance2[name] local nodename = worldedit.normalize_nodename(node) return "size[6.5,5]" .. worldedit.get_formspec_header("worldedit_gui_sphere_dome") .. string.format("field[0.5,1.5;4,0.8;worldedit_gui_sphere_dome_node;Name;%s]", minetest.formspec_escape(node)) .. "button[4,1.18;1.5,0.8;worldedit_gui_sphere_dome_search;Search]" .. (nodename and string.format("item_image[5.5,1.1;1,1;%s]", nodename) or "image[5.5,1.1;1,1;unknown_node.png]") .. string.format("field[0.5,2.5;4,0.8;worldedit_gui_sphere_dome_radius;Radius;%s]", minetest.formspec_escape(radius)) .. "button_exit[0,3.5;3,0.8;worldedit_gui_sphere_dome_submit_hollow;Hollow Sphere]" .. "button_exit[3.5,3.5;3,0.8;worldedit_gui_sphere_dome_submit_solid;Solid Sphere]" .. "button_exit[0,4.5;3,0.8;worldedit_gui_sphere_dome_submit_hollow_dome;Hollow Dome]" .. "button_exit[3.5,4.5;3,0.8;worldedit_gui_sphere_dome_submit_solid_dome;Solid Dome]" end, }) worldedit.register_gui_handler("worldedit_gui_sphere_dome", function(name, fields) if fields.worldedit_gui_sphere_dome_search or fields.worldedit_gui_sphere_dome_submit_hollow or fields.worldedit_gui_sphere_dome_submit_solid or fields.worldedit_gui_sphere_dome_submit_hollow_dome or fields.worldedit_gui_sphere_dome_submit_solid_dome then gui_nodename1[name] = tostring(fields.worldedit_gui_sphere_dome_node) gui_distance2[name] = tostring(fields.worldedit_gui_sphere_dome_radius) worldedit.show_page(name, "worldedit_gui_sphere_dome") if fields.worldedit_gui_sphere_dome_submit_hollow then minetest.chatcommands["/hollowsphere"].func(name, string.format("%s %s", gui_distance2[name], gui_nodename1[name])) elseif fields.worldedit_gui_sphere_dome_submit_solid then minetest.chatcommands["/sphere"].func(name, string.format("%s %s", gui_distance2[name], gui_nodename1[name])) elseif fields.worldedit_gui_sphere_dome_submit_hollow_dome then minetest.chatcommands["/hollowdome"].func(name, string.format("%s %s", gui_distance2[name], gui_nodename1[name])) elseif fields.worldedit_gui_sphere_dome_submit_solid_dome then minetest.chatcommands["/dome"].func(name, string.format("%s %s", gui_distance2[name], gui_nodename1[name])) end return true end return false end) worldedit.register_gui_function("worldedit_gui_cylinder", { name = "Cylinder", privs = combine_privs(minetest.chatcommands["/hollowcylinder"].privs, minetest.chatcommands["/cylinder"].privs), get_formspec = function(name) local node, axis, length, radius = gui_nodename1[name], gui_axis[name], gui_distance1[name], gui_distance2[name] local nodename = worldedit.normalize_nodename(node) return "size[6.5,5]" .. worldedit.get_formspec_header("worldedit_gui_cylinder") .. string.format("field[0.5,1.5;4,0.8;worldedit_gui_cylinder_node;Name;%s]", minetest.formspec_escape(node)) .. "button[4,1.18;1.5,0.8;worldedit_gui_cylinder_search;Search]" .. (nodename and string.format("item_image[5.5,1.1;1,1;%s]", nodename) or "image[5.5,1.1;1,1;unknown_node.png]") .. string.format("field[0.5,2.5;4,0.8;worldedit_gui_cylinder_length;Length;%s]", minetest.formspec_escape(length)) .. string.format("dropdown[4,2.18;2.5;worldedit_gui_cylinder_axis;X axis,Y axis,Z axis,Look direction;%d]", axis) .. string.format("field[0.5,3.5;4,0.8;worldedit_gui_cylinder_radius;Radius;%s]", minetest.formspec_escape(radius)) .. "button_exit[0,4.5;3,0.8;worldedit_gui_cylinder_submit_hollow;Hollow Cylinder]" .. "button_exit[3.5,4.5;3,0.8;worldedit_gui_cylinder_submit_solid;Solid Cylinder]" end, }) worldedit.register_gui_handler("worldedit_gui_cylinder", function(name, fields) if fields.worldedit_gui_cylinder_search or fields.worldedit_gui_cylinder_submit_hollow or fields.worldedit_gui_cylinder_submit_solid then gui_nodename1[name] = tostring(fields.worldedit_gui_cylinder_node) gui_axis[name] = axis_indices[fields.worldedit_gui_cylinder_axis] gui_distance1[name] = tostring(fields.worldedit_gui_cylinder_length) gui_distance2[name] = tostring(fields.worldedit_gui_cylinder_radius) worldedit.show_page(name, "worldedit_gui_cylinder") if fields.worldedit_gui_cylinder_submit_hollow then minetest.chatcommands["/hollowcylinder"].func(name, string.format("%s %s %s %s", axis_values[gui_axis[name]], gui_distance1[name], gui_distance2[name], gui_nodename1[name])) elseif fields.worldedit_gui_cylinder_submit_solid then minetest.chatcommands["/cylinder"].func(name, string.format("%s %s %s %s", axis_values[gui_axis[name]], gui_distance1[name], gui_distance2[name], gui_nodename1[name])) end return true end return false end) worldedit.register_gui_function("worldedit_gui_pyramid", { name = "Pyramid", privs = minetest.chatcommands["/pyramid"].privs, get_formspec = function(name) local node, axis, length = gui_nodename1[name], gui_axis[name], gui_distance1[name] local nodename = worldedit.normalize_nodename(node) return "size[6.5,4]" .. worldedit.get_formspec_header("worldedit_gui_pyramid") .. string.format("field[0.5,1.5;4,0.8;worldedit_gui_pyramid_node;Name;%s]", minetest.formspec_escape(node)) .. "button[4,1.18;1.5,0.8;worldedit_gui_pyramid_search;Search]" .. (nodename and string.format("item_image[5.5,1.1;1,1;%s]", nodename) or "image[5.5,1.1;1,1;unknown_node.png]") .. string.format("field[0.5,2.5;4,0.8;worldedit_gui_pyramid_length;Length;%s]", minetest.formspec_escape(length)) .. string.format("dropdown[4,2.18;2.5;worldedit_gui_pyramid_axis;X axis,Y axis,Z axis,Look direction;%d]", axis) .. "button_exit[0,3.5;3,0.8;worldedit_gui_pyramid_submit;Pyramid]" end, }) worldedit.register_gui_handler("worldedit_gui_pyramid", function(name, fields) if fields.worldedit_gui_pyramid_search or fields.worldedit_gui_pyramid_submit then gui_nodename1[name] = tostring(fields.worldedit_gui_pyramid_node) gui_axis[name] = axis_indices[fields.worldedit_gui_pyramid_axis] gui_distance1[name] = tostring(fields.worldedit_gui_pyramid_length) worldedit.show_page(name, "worldedit_gui_pyramid") if fields.worldedit_gui_pyramid_submit then minetest.chatcommands["/pyramid"].func(name, string.format("%s %s %s", axis_values[gui_axis[name]], gui_distance1[name], gui_nodename1[name])) end return true end return false end) worldedit.register_gui_function("worldedit_gui_spiral", { name = "Spiral", privs = minetest.chatcommands["/spiral"].privs, get_formspec = function(name) local node, length, height, space = gui_nodename1[name], gui_distance1[name], gui_distance2[name], gui_distance3[name] local nodename = worldedit.normalize_nodename(node) return "size[6.5,6]" .. worldedit.get_formspec_header("worldedit_gui_spiral") .. string.format("field[0.5,1.5;4,0.8;worldedit_gui_spiral_node;Name;%s]", minetest.formspec_escape(node)) .. "button[4,1.18;1.5,0.8;worldedit_gui_spiral_search;Search]" .. (nodename and string.format("item_image[5.5,1.1;1,1;%s]", nodename) or "image[5.5,1.1;1,1;unknown_node.png]") .. string.format("field[0.5,2.5;4,0.8;worldedit_gui_spiral_length;Side Length;%s]", minetest.formspec_escape(length)) .. string.format("field[0.5,3.5;4,0.8;worldedit_gui_spiral_height;Height;%s]", minetest.formspec_escape(height)) .. string.format("field[0.5,4.5;4,0.8;worldedit_gui_spiral_space;Wall Spacing;%s]", minetest.formspec_escape(space)) .. "button_exit[0,5.5;3,0.8;worldedit_gui_spiral_submit;Spiral]" end, }) worldedit.register_gui_handler("worldedit_gui_spiral", function(name, fields) if fields.worldedit_gui_spiral_search or fields.worldedit_gui_spiral_submit then gui_nodename1[name] = fields.worldedit_gui_spiral_node gui_distance1[name] = tostring(fields.worldedit_gui_spiral_length) gui_distance2[name] = tostring(fields.worldedit_gui_spiral_height) gui_distance3[name] = tostring(fields.worldedit_gui_spiral_space) worldedit.show_page(name, "worldedit_gui_spiral") if fields.worldedit_gui_spiral_submit then minetest.chatcommands["/spiral"].func(name, string.format("%s %s %s %s", gui_distance1[name], gui_distance2[name], gui_distance3[name], gui_nodename1[name])) end return true end return false end) worldedit.register_gui_function("worldedit_gui_copy_move", { name = "Copy/Move", privs = combine_privs(minetest.chatcommands["/copy"].privs, minetest.chatcommands["/move"].privs), get_formspec = function(name) local axis = gui_axis[name] or 4 local amount = gui_distance1[name] or "10" return "size[6.5,3]" .. worldedit.get_formspec_header("worldedit_gui_copy_move") .. string.format("field[0.5,1.5;4,0.8;worldedit_gui_copy_move_amount;Amount;%s]", minetest.formspec_escape(amount)) .. string.format("dropdown[4,1.18;2.5;worldedit_gui_copy_move_axis;X axis,Y axis,Z axis,Look direction;%d]", axis) .. "button_exit[0,2.5;3,0.8;worldedit_gui_copy_move_copy;Copy Region]" .. "button_exit[3.5,2.5;3,0.8;worldedit_gui_copy_move_move;Move Region]" end, }) worldedit.register_gui_handler("worldedit_gui_copy_move", function(name, fields) if fields.worldedit_gui_copy_move_copy or fields.worldedit_gui_copy_move_move then gui_axis[name] = axis_indices[fields.worldedit_gui_cylinder_axis] or 4 gui_distance1[name] = tostring(fields.worldedit_gui_copy_move_amount) worldedit.show_page(name, "worldedit_gui_copy_move") if fields.worldedit_gui_copy_move_copy then minetest.chatcommands["/copy"].func(name, string.format("%s %s", axis_values[gui_axis[name]], gui_distance1[name])) else --fields.worldedit_gui_copy_move_move minetest.chatcommands["/move"].func(name, string.format("%s %s", axis_values[gui_axis[name]], gui_distance1[name])) end return true end return false end) worldedit.register_gui_function("worldedit_gui_formspec_tester", { name = "Formspec Tester", get_formspec = function(name) local value = gui_formspec[name] or "" return "size[8,6.5]" .. worldedit.get_formspec_header("worldedit_gui_formspec_tester") .. string.format("textarea[0.5,1;7.5,5.5;worldedit_gui_formspec_tester_value;Formspec Code;%s]", minetest.formspec_escape(value)) .. "button_exit[0,6;3,0.8;worldedit_gui_formspec_tester_show;Show Formspec]" end, }) worldedit.register_gui_handler("worldedit_gui_formspec_tester", function(name, fields) if fields.worldedit_gui_formspec_tester_show then gui_formspec[name] = fields.worldedit_gui_formspec_tester_value or "" worldedit.show_page(name, "worldedit_gui_formspec_tester") minetest.show_formspec(name, "worldedit:formspec_tester", gui_formspec[name]) return true end return false end) --wip: those other commands --wip: Run Lua and Lua Transform