local S = minetest.get_translator("lzr_hook") if not minetest.raycast then minetest.log("error", "lzr_hook requires Minetest version 5.0 or newer") return end lzr_hook = {} local function rotate_simple(_, _, _, _, new_param2) if new_param2 % 32 > 3 then return false end end local get_pointed = dofile(minetest.get_modpath("lzr_hook").."/pointed.lua") -- Functions to choose rotation based on pointed location local insanity_2 = {xy = 1, yz = 1, zx = 1; zy = -1, yx = -1, xz = -1} -- Don't worry about this local function push_edge(normal, point) local biggest = 0 local biggest_axis local normal_axis -- Find the normal axis, and the axis of the with the -- greatest magnitude (other than the normal axis) for axis in pairs(point) do if normal[axis] ~= 0 then normal_axis = axis elseif math.abs(point[axis])>biggest then biggest = math.abs(point[axis]) biggest_axis = axis end end -- Find the third axis, which is the one to rotate around if normal_axis and biggest_axis then for axis in pairs(point) do if axis ~= normal_axis and axis ~= biggest_axis then -- Decide which direction to rotate (+ or -) return axis, insanity_2[normal_axis..biggest_axis] * math.sign(normal[normal_axis] * point[biggest_axis]) end end end return "y", 0 end local function rotate_face(normal, _) -- Find the normal axis for axis, value in pairs(normal) do if value ~= 0 then return axis, math.sign(value) end end return "y", 0 end -- Numbers taken from https://forum.minetest.net/viewtopic.php?p=73195#p73195 -- "How to rotate (clockwise) by axis from any facedir:" -- "(this will be made into a lua function)" -- 5 years later... local facedir_cycles = { x = {{12,13,14,15},{16,19,18,17},{ 0, 4,22, 8},{ 1, 5,23, 9},{ 2, 6,20,10},{ 3, 7,21,11}}, y = {{ 0, 1, 2, 3},{20,23,22,21},{ 4,13,10,19},{ 8,17, 6,15},{12, 9,18, 7},{16, 5,14,11}}, z = {{ 4, 5, 6, 7},{ 8,11,10, 9},{ 0,16,20,12},{ 1,17,21,13},{ 2,18,22,14},{ 3,19,23,15}}, } local wallmounted_cycles = { x = {0, 4, 1, 5}, y = {4, 2, 5, 3}, z = {0, 3, 1, 2}, } -- Functions to rotate a facedir/wallmounted/degrotate/4dir value around an axis by a certain amount local rotate = { -- Facedir: lower 5 bits used for direction, 0 - 23 facedir = function(param2, axis, amount) local facedir = param2 % 32 for _, cycle in ipairs(facedir_cycles[axis]) do -- Find the current facedir -- Minetest adds table.indexof, but I refuse to use it because it returns -1 rather than nil for i, fd in ipairs(cycle) do if fd == facedir then return param2 - facedir + cycle[1+(i-1 + amount) % 4] -- If only Lua didn't use 1 indexing... end end end return param2 end, -- Wallmounted: lower 3 bits used, 0 - 5 wallmounted = function(param2, axis, amount) local wallmounted = param2 % 8 for i, wm in ipairs(wallmounted_cycles[axis]) do if wm == wallmounted then return param2 - wallmounted + wallmounted_cycles[axis][1+(i-1 + amount) % 4] end end return param2 end, -- Degrotate: 0-239 degrotate = function(param2, axis, amount) return (param2 - amount) % 240 end, -- 4dir: 0-3 ["4dir"] = function(param2, axis, amount) return (param2 + amount) % 4 end } rotate.colorfacedir = rotate.facedir rotate.colorwallmounted = rotate.wallmounted local function rect(angle, radius) return math.cos(2*math.pi * angle) * radius, math.sin(2*math.pi * angle) * radius end -- Generate the hook particle effects local other_axes = {x = {"y","z"}, y = {"z","x"}, z = {"x","y"}} local function particle_ring(pos, axis, direction) local axis2, axis3 = unpack(other_axes[axis]) local particle_pos = vector.new() local particle_vel = vector.new() for i = 0, 0.999, 1/6 do particle_pos[axis3], particle_pos[axis2] = rect(i, 0.5^0.5) particle_vel[axis3], particle_vel[axis2] = rect(i - 1/4 * direction, 2) minetest.add_particle({ pos = vector.add(pos, particle_pos), velocity = particle_vel, acceleration = vector.multiply(particle_pos, -7), expirationtime = 0.25, size = 2, texture = "lzr_hook_hook.png", }) end end -- Main -- Idea: split this into 2 functions -- 1: on_use parameters -> axis/amount/etc. -- 2: param2/axis/amount/etc. -> new param2 function lzr_hook.use(itemstack, player, pointed_thing, is_right_click) if lzr_gamestate.get_state() == lzr_gamestate.LEVEL_COMPLETE then return end if pointed_thing.type ~= "node" then return end local pos = pointed_thing.under -- Check protection local player_name = player:get_player_name() if minetest.is_protected(pos, player_name) then minetest.record_protection_violation(pos, player_name) return end -- Get node info local node = minetest.get_node_or_nil(pos) if not node then return end local def = minetest.registered_nodes[node.name] if not def then return end local rotatable = minetest.get_item_group(node.name, "rotatable") local gs = lzr_gamestate.get_state() -- Node MUST have 'rotatable' group if rotatable <= 0 then return itemstack -- rotatable=3: rotatable in editor/dev mode only elseif rotatable == 3 then if not (gs == lzr_gamestate.EDITOR or gs == lzr_gamestate.DEV) then return itemstack end end -- rotatable=1: always rotatable -- Choose rotation function based on paramtype2 (facedir/wallmounted/degrotate/4dir) local rotate_function = rotate[def.paramtype2] if not rotate_function then return end -- Choose rotation axis/direction and param2 based on click type and pointed location local axis, amount local normal, point = get_pointed(player, pointed_thing) if not normal or vector.length(normal) == 0 then -- Raycast failed or player is inside selection box return end local action local control = player:get_player_control() if def.paramtype2 == "degrotate" or def.paramtype2 == "4dir" then axis, amount = push_edge(normal, point) if axis ~= "y" and is_right_click then axis = "y" action = "push_edge" elseif axis == "y" and not is_right_click then action = "rotate_face" else return end elseif is_right_click then axis, amount = rotate_face(normal, point) action = "rotate_face" else axis, amount = push_edge(normal, point) action = "push_edge" end if control.sneak then if def.paramtype2 ~= "degrotate" then amount = -amount end else if def.paramtype2 == "degrotate" then amount = amount * 10 end end local new_param2 = rotate_function(node.param2, axis, amount) -- Calculate particle position local particle_offset = vector.new() particle_offset[axis] = point[axis] -- Draw particles particle_ring(vector.add(pos, particle_offset), axis, math.sign(amount)) -- Play sound if def.sounds and def.sounds._rotate then if def.sounds._rotate then minetest.sound_play(def.sounds._rotate, {pos=pos}, true) end else minetest.sound_play({name="lzr_hook_rotate", gain=1}, {pos=pos}, true) end -- Replace node if new_param2 == node.param2 then -- no rotation was done return end node.param2 = new_param2 minetest.swap_node(pos, node) minetest.check_for_falling(pos) if def._after_rotate then def._after_rotate(pos) end end minetest.register_tool("lzr_hook:hook",{ description = S("Rotating Hook"), _tt_help = S("Punch to push edge, place to rotate face").."\n".. S("Sneak to reverse rotation direction"), inventory_image = "lzr_hook_hook.png", on_use = function(itemstack, player, pointed_thing) return lzr_hook.use(itemstack, player, pointed_thing, false) end, on_place = function(itemstack, player, pointed_thing) return lzr_hook.use(itemstack, player, pointed_thing, true) end, }) -- Legacy support minetest.register_alias("screwdriver2:screwdriver", "lzr_hook")