Compare commits
No commits in common. '5115aedcb735a319330bf4730fe562f1caac53b7' and 'dc59ab7abf60ceb28ba7ed1b6e6f883565673a13' have entirely different histories.
5115aedcb7
...
dc59ab7abf
6 changed files with 32 additions and 208 deletions
@ -1,37 +0,0 @@ |
|||||||
local nodecore |
|
||||||
= nodecore |
|
||||||
|
|
||||||
local LABEL_ROTATION_HINT = "rotation hint" |
|
||||||
|
|
||||||
local TEX_ROTATE_FACE = "nc_extended_rotating_hud_rotate_face.png" |
|
||||||
local TEX_ROTATE_EDGE = "nc_extended_rotating_hud_rotate_edge.png" |
|
||||||
|
|
||||||
local hud = {} |
|
||||||
|
|
||||||
local function crosshair_hud_element(texture) |
|
||||||
return { |
|
||||||
label = LABEL_ROTATION_HINT, |
|
||||||
hud_elem_type = "image", |
|
||||||
text = texture, |
|
||||||
position = { x = 0.5, y = 0.5 }, |
|
||||||
offset = { x = 0, y = 0 }, |
|
||||||
alignment = { x = 0, y = 0 }, |
|
||||||
scale = { x = 1, y = 1 }, |
|
||||||
quick = true |
|
||||||
} |
|
||||||
end |
|
||||||
|
|
||||||
local function update_player_hud(player, state) |
|
||||||
local mode = state and state.mode |
|
||||||
if mode == "face" then |
|
||||||
local texture = TEX_ROTATE_FACE |
|
||||||
if state.invert then texture = texture .. "^[transformFX" end |
|
||||||
texture = texture .. "^[opacity:" .. 192 |
|
||||||
nodecore.hud_set(player, crosshair_hud_element(texture)) |
|
||||||
else |
|
||||||
nodecore.hud_set(player, { label = LABEL_ROTATION_HINT, ttl = 0 }) |
|
||||||
end |
|
||||||
end |
|
||||||
hud.update_player_hud = update_player_hud |
|
||||||
|
|
||||||
return hud |
|
@ -1,66 +1,20 @@ |
|||||||
local minetest, vector, nodecore, include |
local minetest, vector, include |
||||||
= minetest, vector, nodecore, include |
= minetest, vector, include |
||||||
|
|
||||||
local hud = include("hud") |
|
||||||
local rotate = include("rotate") |
|
||||||
local utility = include("utility") |
|
||||||
|
|
||||||
-- TODO: Add crosshair indicators for rotating around edges. |
|
||||||
-- TODO: Register only the nodes that should be rotatable. |
|
||||||
-- TODO: Replace `on_rightclick` of intended nodes. |
|
||||||
-- TODO: Add some more comments. |
|
||||||
|
|
||||||
-- Distance at which we want to rotate by "pushing" on an edge. |
|
||||||
local EDGE_DISTANCE = 1.5 / 16 -- 1.5 texels (at 16² texture resolution) |
|
||||||
|
|
||||||
local rotating_state = {} |
|
||||||
|
|
||||||
nodecore.register_playerstep({ |
|
||||||
label = "extended rotating update", |
|
||||||
action = function(player, player_data) |
|
||||||
local name = player:get_player_name() |
|
||||||
local state = {}; rotating_state[name] = state |
|
||||||
|
|
||||||
local pointed_thing = player_data.raycast() |
|
||||||
if (not pointed_thing) or pointed_thing.type ~= "node" then return nil end |
|
||||||
|
|
||||||
state.pos = pointed_thing.under |
|
||||||
state.node = minetest.get_node(state.pos) |
|
||||||
if not rotate.is_rotatable(state.node) then return end |
|
||||||
|
|
||||||
if vector.equals(pointed_thing.above, pointed_thing.under) then return end |
|
||||||
state.face = pointed_thing.above - pointed_thing.under |
|
||||||
|
|
||||||
local edge, distance = utility.find_closest_edge(state.node, pointed_thing) |
|
||||||
if edge and distance > EDGE_DISTANCE then |
|
||||||
state.axis = state.face |
|
||||||
state.mode = "face" |
|
||||||
else |
|
||||||
state.axis = state.face:cross(edge):normalize():round() |
|
||||||
state.mode = "edge" |
|
||||||
end |
|
||||||
|
|
||||||
state.invert = player:get_player_control().sneak |
|
||||||
hud.update_player_hud(player, state) |
|
||||||
end, |
|
||||||
}) |
|
||||||
|
|
||||||
minetest.register_on_leaveplayer(function(player) |
|
||||||
local name = player:get_player_name() |
|
||||||
rotating_state[name] = nil |
|
||||||
end) |
|
||||||
|
|
||||||
|
local rotate = include("rotate") |
||||||
|
|
||||||
minetest.register_on_punchnode(function(pos, node, puncher, pointed_thing) |
minetest.register_on_punchnode(function(pos, node, puncher, pointed_thing) |
||||||
if not minetest.is_player(puncher) then return end |
local def = minetest.registered_nodes[node.name] |
||||||
local name = puncher:get_player_name() |
if def.paramtype2 ~= "facedir" then return end |
||||||
local state = rotating_state[name] |
|
||||||
if not state then return end |
-- Vector that points away from the punched face. |
||||||
|
if (not pointed_thing.above) or (not pointed_thing.under) then return end |
||||||
|
local axis = vector.subtract(pointed_thing.above, pointed_thing.under) |
||||||
|
|
||||||
-- Make sure we're still the same node that we raycasted in `playerstep`. |
-- Rotate clockwise by default. |
||||||
if not vector.equals(pos, state.pos) then return end |
local degrees = -90 |
||||||
if node.name ~= state.node.name or node.param2 ~= state.node.param2 then return end |
-- If player is sneaking, reverse the rotation. |
||||||
|
if minetest.is_player(puncher) and puncher:get_player_control().sneak then degrees = -degrees end |
||||||
|
|
||||||
local degrees = state.invert and 90 or -90 |
rotate.rotate_node(pos, node, axis, degrees) |
||||||
rotate.rotate_node(state.pos, state.node, state.axis, degrees) |
|
||||||
end) |
end) |
||||||
|
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 4.9 KiB |
@ -1,67 +1,16 @@ |
|||||||
|
local ipairs, tostring |
||||||
|
= ipairs, tostring |
||||||
|
|
||||||
local math_abs, math_sign |
local minetest |
||||||
= math.abs, math.sign |
= minetest |
||||||
local minetest, vector, include |
|
||||||
= minetest, vector, include |
|
||||||
|
|
||||||
local rotate = include("rotate") |
|
||||||
|
|
||||||
local utility = {} |
local utility = {} |
||||||
|
|
||||||
-- Default selection boxes for a node that doesn't have one them explicitly. |
local function debug_tell(...) |
||||||
local DEFAULT_SELECTION_BOX = { min = vector.new(-0.5, -0.5, -0.5), |
local text = "" |
||||||
max = vector.new( 0.5, 0.5, 0.5) } |
for _, v in ipairs({...}) do text = text .. tostring(v) end |
||||||
|
minetest.chat_send_all(text) |
||||||
-- Gets the active `selection_box` for the specified `node` which |
|
||||||
-- has a `paramtype2` of `facedir`, based on its `param2` value. |
|
||||||
local function get_node_active_selection_box(node) |
|
||||||
local def = minetest.registered_nodes[node.name] |
|
||||||
local box = def.selection_box and def.selection_box.fixed |
|
||||||
-- No need to rotate the default selection box. |
|
||||||
if not box then return DEFAULT_SELECTION_BOX end |
|
||||||
-- If node definition specifies multiple selection boxes, just pick the first (for now). |
|
||||||
if type(box[1]) == "table" then box = box[1] end |
|
||||||
-- Transform the `{ x1, y1, z1, x2, y2, z2 }` box to a `{ min, max }` one. |
|
||||||
box = { min = vector.new(box[1], box[2], box[3]), |
|
||||||
max = vector.new(box[4], box[5], box[6]) } |
|
||||||
-- Rotate the box to face `facedir`. |
|
||||||
rotate.rotate_box_by_facedir(box, node.param2) |
|
||||||
return box |
|
||||||
end |
|
||||||
|
|
||||||
-- Finds the closest edge of the node the player is looking at as |
|
||||||
-- a vector pointing away from the center, and the distance to it. |
|
||||||
local function find_closest_edge(node, pointed_thing) |
|
||||||
-- For this math to work, we assume that selection box is centered. |
|
||||||
local max = get_node_active_selection_box(node).max |
|
||||||
-- Point relative to the collision box we're pointing at. |
|
||||||
local point = pointed_thing.intersection_point - pointed_thing.under |
|
||||||
|
|
||||||
-- Find the edge we're closest to. |
|
||||||
local vec = vector.zero() |
|
||||||
if math_abs(point.y / point.x) > max.x / max.y then |
|
||||||
vec.y = math_sign(point.y) |
|
||||||
if math_abs(point.z / point.x) > max.x / max.z |
|
||||||
then vec.z = math_sign(point.z) |
|
||||||
else vec.x = math_sign(point.x) |
|
||||||
end |
|
||||||
else |
|
||||||
vec.x = math_sign(point.x) |
|
||||||
if math_abs(point.z / point.y) > max.y / max.z |
|
||||||
then vec.z = math_sign(point.z) |
|
||||||
else vec.y = math_sign(point.y) |
|
||||||
end |
|
||||||
end |
|
||||||
|
|
||||||
local d = 1 |
|
||||||
local v = max - point:multiply(vec):apply(math_abs) |
|
||||||
local EPSILON = tonumber("1.19e-07") |
|
||||||
if math_abs(v.x) > EPSILON and v.x < d then d = v.x end |
|
||||||
if math_abs(v.y) > EPSILON and v.y < d then d = v.y end |
|
||||||
if math_abs(v.z) > EPSILON and v.z < d then d = v.z end |
|
||||||
|
|
||||||
return vec, d |
|
||||||
end |
end |
||||||
utility.find_closest_edge = find_closest_edge |
utility.debug_tell = debug_tell |
||||||
|
|
||||||
return utility |
return utility |
||||||
|
Loading…
Reference in new issue