MoreMesecons/moremesecons_teleporter/init.lua

89 lines
2.8 KiB
Lua
Raw Normal View History

local teleporters = {}
2015-09-02 12:46:07 +02:00
local teleporters_rids = {}
local register = function(pos)
2015-09-02 12:46:07 +02:00
local RID = vector.get_data_from_pos(teleporters_rids, pos.z,pos.y,pos.x)
if not RID then
table.insert(teleporters, pos)
2015-09-02 12:46:07 +02:00
vector.set_data_to_pos(teleporters_rids, pos.z,pos.y,pos.x, #teleporters)
end
end
local teleport_nearest = function(pos)
local MAX_DISTANCE = 50
-- Search the nearest player
local nearest = nil
local min_distance = math.huge
local players = minetest.get_connected_players()
for index, player in pairs(players) do
local distance = vector.distance(pos, player:getpos())
if distance < min_distance then
min_distance = distance
nearest = player
end
end
-- Search other teleporter and teleport
if not minetest.registered_nodes["moremesecons_teleporter:teleporter"] then return end
local newpos = {}
for i = 1, #teleporters do
if minetest.get_node(teleporters[i]).name == "moremesecons_teleporter:teleporter" then
if teleporters[i].y == pos.y and teleporters[i].x == pos.x and teleporters[i].z ~= pos.z then
newpos = {x=teleporters[i].x, y=teleporters[i].y+1, z=teleporters[i].z}
elseif teleporters[i].z == pos.z and teleporters[i].x == pos.x and teleporters[i].y ~= pos.y then
newpos = {x=teleporters[i].x, y=teleporters[i].y+1, z=teleporters[i].z}
elseif teleporters[i].z == pos.z and teleporters[i].y == pos.y and teleporters[i].x ~= pos.x then
newpos = {x=teleporters[i].x, y=teleporters[i].y+1, z=teleporters[i].z}
end
end
end
if newpos.x then
if vector.distance(newpos, nearest:getpos()) > MAX_DISTANCE then newpos = {} end -- If the is another teleporter BUT too far, delete newpos.
end
if not newpos.x then
newpos = {x=pos.x, y=pos.y+1, z=pos.z} -- If newpos doesn't exist, teleport on the actual teleporter.
end
nearest:moveto(newpos)
minetest.log("action", "Player "..nearest:get_player_name().." was teleport with a MoreMesecons Teleporter.")
end
minetest.register_craft({
2015-08-29 12:33:03 +02:00
output = "moremesecons_teleporter:teleporter 2",
recipe = {{"default:diamond","default:stick","default:mese"}}
})
minetest.register_node("moremesecons_teleporter:teleporter", {
2015-08-30 11:49:32 +02:00
tiles = {"moremesecons_teleporter.png"},
paramtype = "light",
walkable = true,
groups = {cracky=3},
description="Teleporter",
mesecons = {effector = {
state = mesecon.state.off,
action_on = teleport_nearest
}},
sounds = default.node_sound_stone_defaults(),
on_construct = function(pos)
register(pos)
end,
on_destruct = function(pos)
2015-09-02 12:46:07 +02:00
local RID = vector.get_data_from_pos(teleporters_rids, pos.z,pos.y,pos.x)
if RID then
table.remove(teleporters, RID)
2015-09-02 12:46:07 +02:00
vector.remove_data_from_pos(teleporters_rids, pos.z,pos.y,pos.x)
end
end,
})
minetest.register_abm({
nodenames = {"moremesecons_teleporter:teleporter"},
interval=1,
chance=1,
action = function(pos)
register(pos)
end
})