Minetest-WorldEditAdditions/worldeditadditions_farwand/lib/farwand.lua

70 lines
2.4 KiB
Lua
Raw Normal View History

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)
worldedit.player_notify(name, "pos1 set to "..worldeditadditions.vector.tostring(pos))
2020-06-13 13:23:14 +00:00
else
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)
worldedit.player_notify(name, "pos2 set to "..worldeditadditions.vector.tostring(pos))
2020-06-13 13:23:14 +00:00
else
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
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)
-- 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)
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)
-- 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()
-- Right click when pointing at nothing
2020-06-15 12:04:42 +00:00
-- print("[farwand] on_secondary_use", name)
2020-06-13 13:23:14 +00:00
local looking_pos, node_id = do_raycast(player)
set_pos2(name, looking_pos)
end
})