2020-06-13 13:23:14 +00:00
|
|
|
local function set_pos1(name, pos)
|
|
|
|
if pos ~= nil then
|
2020-06-15 12:04:42 +00:00
|
|
|
-- print("[set_pos1]", name, "("..pos.x..", "..pos.y..", "..pos.z..")")
|
2020-06-13 13:23:14 +00:00
|
|
|
worldedit.pos1[name] = pos
|
|
|
|
worldedit.mark_pos1(name)
|
2020-06-26 17:42:41 +00:00
|
|
|
worldedit.player_notify(name, "pos1 set to "..worldeditadditions.vector.tostring(pos))
|
2020-06-13 13:23:14 +00:00
|
|
|
else
|
2021-02-23 23:10:45 +00:00
|
|
|
worldedit.player_notify(name, "Error: Too far away (try raising your maxdist with //farwand maxdist <number>)")
|
2020-06-15 12:04:42 +00:00
|
|
|
-- print("[set_pos1]", name, "nil")
|
2020-06-13 13:23:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
local function set_pos2(name, pos)
|
|
|
|
if pos ~= nil then
|
2020-06-15 12:04:42 +00:00
|
|
|
-- print("[set_pos2]", name, "("..pos.x..", "..pos.y..", "..pos.z..")")
|
2020-06-13 13:23:14 +00:00
|
|
|
worldedit.pos2[name] = pos
|
|
|
|
worldedit.mark_pos2(name)
|
2020-06-26 17:42:41 +00:00
|
|
|
worldedit.player_notify(name, "pos2 set to "..worldeditadditions.vector.tostring(pos))
|
2020-06-13 13:23:14 +00:00
|
|
|
else
|
2021-02-23 23:10:45 +00:00
|
|
|
worldedit.player_notify(name, "Error: Too far away (try raising your maxdist with //farwand maxdist <number>)")
|
2020-06-15 12:04:42 +00:00
|
|
|
-- print("[set_pos2]", name, "nil")
|
2020-06-13 13:23:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function do_raycast(player)
|
|
|
|
if player == nil then return nil end
|
|
|
|
local player_name = player:get_player_name()
|
|
|
|
|
|
|
|
if worldeditadditions.farwand.player_data[player_name] == nil then
|
|
|
|
worldeditadditions.farwand.player_data[player_name] = { maxdist = 1000, skip_liquid = true }
|
|
|
|
end
|
|
|
|
|
|
|
|
local looking_pos, node_id = worldeditadditions.raycast(
|
|
|
|
player,
|
|
|
|
worldeditadditions.farwand.player_data[player_name].maxdist,
|
|
|
|
worldeditadditions.farwand.player_data[player_name].skip_liquid
|
|
|
|
)
|
|
|
|
return looking_pos, node_id
|
|
|
|
end
|
|
|
|
|
2020-06-13 01:08:03 +00:00
|
|
|
minetest.register_tool(":worldeditadditions:farwand", {
|
|
|
|
description = "WorldEditAdditions far-reaching wand",
|
|
|
|
inventory_image = "worldeditadditions_farwand.png",
|
|
|
|
|
|
|
|
on_place = function(itemstack, player, pointed_thing)
|
2020-06-13 13:23:14 +00:00
|
|
|
local name = player:get_player_name()
|
2020-06-15 12:04:42 +00:00
|
|
|
-- print("[farwand] on_place", name)
|
2020-06-13 01:08:03 +00:00
|
|
|
-- Right click when pointing at something
|
2020-06-13 13:23:14 +00:00
|
|
|
-- Pointed thing: https://rubenwardy.com/minetest_modding_book/lua_api.html#pointed_thing
|
|
|
|
local looking_pos, node_id = do_raycast(player)
|
|
|
|
set_pos2(name, looking_pos)
|
2020-06-13 01:08:03 +00:00
|
|
|
end,
|
|
|
|
|
|
|
|
on_use = function(itemstack, player, pointed_thing)
|
2020-06-13 13:23:14 +00:00
|
|
|
local name = player:get_player_name()
|
2020-06-15 12:04:42 +00:00
|
|
|
-- print("[farwand] on_use", name)
|
2020-06-13 13:23:14 +00:00
|
|
|
local looking_pos, node_id = do_raycast(player)
|
|
|
|
set_pos1(name, looking_pos)
|
2020-06-13 01:08:03 +00:00
|
|
|
-- Left click when pointing at something or nothing
|
|
|
|
end,
|
|
|
|
|
|
|
|
on_secondary_use = function(itemstack, player, pointed_thing)
|
2020-06-13 13:23:14 +00:00
|
|
|
local name = player:get_player_name()
|
2020-06-13 01:08:03 +00:00
|
|
|
-- Right click when pointing at nothing
|
2020-06-15 12:04:42 +00:00
|
|
|
-- print("[farwand] on_secondary_use", name)
|
2020-06-13 01:08:03 +00:00
|
|
|
|
2020-06-13 13:23:14 +00:00
|
|
|
local looking_pos, node_id = do_raycast(player)
|
|
|
|
set_pos2(name, looking_pos)
|
2020-06-13 01:08:03 +00:00
|
|
|
end
|
|
|
|
})
|