forked from minetest-mods/warps
Tidy up code (#1)
- Break too long lines - Use vector helper functions - Round warp positions (less data to save) - Disallow from setting warp ""
This commit is contained in:
parent
74e68db79c
commit
928c997e0b
57
init.lua
57
init.lua
@ -26,6 +26,18 @@ local function lookup_warp(name)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function round_digits(n, digits)
|
||||||
|
digits = digits or 0
|
||||||
|
|
||||||
|
local multi = math.pow(10, digits)
|
||||||
|
n = n * multi
|
||||||
|
if n > 0 then
|
||||||
|
return math.floor(n + 0.5) / multi
|
||||||
|
else
|
||||||
|
return math.ceil(n - 0.5) / multi
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
local warp = function(player, dest)
|
local warp = function(player, dest)
|
||||||
local warp = lookup_warp(dest)
|
local warp = lookup_warp(dest)
|
||||||
if not warp then
|
if not warp then
|
||||||
@ -33,7 +45,8 @@ local warp = function(player, dest)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local pos = {x = warp.x, y = warp.y, z = warp.z}
|
local pos = vector.new(warp)
|
||||||
|
pos.y = pos.y + 0.5
|
||||||
player:setpos(pos)
|
player:setpos(pos)
|
||||||
-- MT Core FIXME
|
-- MT Core FIXME
|
||||||
-- get functions don't output proper values for set!
|
-- get functions don't output proper values for set!
|
||||||
@ -54,14 +67,15 @@ do_warp_queue = function()
|
|||||||
for i = table.getn(warps_queue),1,-1 do
|
for i = table.getn(warps_queue),1,-1 do
|
||||||
local e = warps_queue[i]
|
local e = warps_queue[i]
|
||||||
if e.p:getpos() then
|
if e.p:getpos() then
|
||||||
if e.p:getpos().x == e.pos.x and e.p:getpos().y == e.pos.y and e.p:getpos().z == e.pos.z then
|
if vector.equals(e.p:getpos(), e.pos) then
|
||||||
if t > e.t then
|
if t > e.t then
|
||||||
warp(e.p, e.w)
|
warp(e.p, e.w)
|
||||||
table.remove(warps_queue, i)
|
table.remove(warps_queue, i)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
minetest.sound_stop(e.sh)
|
minetest.sound_stop(e.sh)
|
||||||
minetest.chat_send_player(e.p:get_player_name(), "You have to stand still for " .. warps_freeze .. " seconds!")
|
minetest.chat_send_player(e.p:get_player_name(),
|
||||||
|
"You have to stand still for " .. warps_freeze .. " seconds!")
|
||||||
table.remove(warps_queue, i)
|
table.remove(warps_queue, i)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -87,8 +101,7 @@ local warp_queue_add = function(player, dest)
|
|||||||
minetest.after(1, do_warp_queue)
|
minetest.after(1, do_warp_queue)
|
||||||
end
|
end
|
||||||
-- attempt to emerge the target area before the player gets there
|
-- attempt to emerge the target area before the player gets there
|
||||||
local warp = lookup_warp(dest)
|
local pos = vector.new(lookup_warp(dest))
|
||||||
local pos = {x = warp.x, y = warp.y, z = warp.z}
|
|
||||||
minetest.get_voxel_manip():read_from_map(pos, pos)
|
minetest.get_voxel_manip():read_from_map(pos, pos)
|
||||||
if not minetest.get_node_or_nil(pos) then
|
if not minetest.get_node_or_nil(pos) then
|
||||||
minetest.emerge_area(vector.subtract(pos, 80), vector.add(pos, 80))
|
minetest.emerge_area(vector.subtract(pos, 80), vector.add(pos, 80))
|
||||||
@ -104,7 +117,8 @@ local save = function ()
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
for i = 1,table.getn(warps) do
|
for i = 1,table.getn(warps) do
|
||||||
local s = warps[i].name .. " " .. warps[i].x .. " " .. warps[i].y .. " " .. warps[i].z .. " " .. warps[i].yaw .. " " .. warps[i].pitch .. "\n"
|
local s = warps[i].name .. " " .. warps[i].x .. " " .. warps[i].y .. " " ..
|
||||||
|
warps[i].z .. " " .. warps[i].yaw .. " " .. warps[i].pitch .. "\n"
|
||||||
fh:write(s)
|
fh:write(s)
|
||||||
end
|
end
|
||||||
fh:close()
|
fh:close()
|
||||||
@ -154,19 +168,33 @@ minetest.register_chatcommand("setwarp", {
|
|||||||
privs = { warp_admin = true },
|
privs = { warp_admin = true },
|
||||||
func = function(name, param)
|
func = function(name, param)
|
||||||
param = param:gsub("%W", "")
|
param = param:gsub("%W", "")
|
||||||
local h = "created"
|
if param == "" then
|
||||||
|
return false, "Cannot set warp: Name missing."
|
||||||
|
end
|
||||||
|
|
||||||
|
local h = "Created"
|
||||||
for i = 1,table.getn(warps) do
|
for i = 1,table.getn(warps) do
|
||||||
if warps[i].name == param then
|
if warps[i].name == param then
|
||||||
table.remove(warps, i)
|
table.remove(warps, i)
|
||||||
h = "changed"
|
h = "Changed"
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local player = minetest.get_player_by_name(name)
|
local player = minetest.get_player_by_name(name)
|
||||||
local pos = player:getpos()
|
local pos = vector.round(player:getpos())
|
||||||
table.insert(warps, { name = param, x = pos.x, y = pos.y, z = pos.z, yaw = player:get_look_yaw(), pitch = player:get_look_pitch() })
|
table.insert(warps, {
|
||||||
|
name = param,
|
||||||
|
x = pos.x,
|
||||||
|
y = pos.y,
|
||||||
|
z = pos.z,
|
||||||
|
yaw = round_digits(player:get_look_yaw(), 3),
|
||||||
|
pitch = round_digits(player:get_look_pitch(), 3)
|
||||||
|
})
|
||||||
save()
|
save()
|
||||||
minetest.log("action", name .. " " .. h .. " warp \"" .. param .. "\": " .. pos.x .. ", " .. pos.y .. ", " .. pos.z)
|
|
||||||
|
minetest.log("action", name .. " " .. h .. " warp \"" .. param .. "\": " ..
|
||||||
|
pos.x .. ", " .. pos.y .. ", " .. pos.z)
|
||||||
return true, h .. " warp \"" .. param .. "\""
|
return true, h .. " warp \"" .. param .. "\""
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
@ -251,15 +279,18 @@ minetest.register_node("warps:warpstone", {
|
|||||||
minetest.log("action", sender:get_player_name() .. " changed warp stone to \"" .. fields.destination .. "\"")
|
minetest.log("action", sender:get_player_name() .. " changed warp stone to \"" .. fields.destination .. "\"")
|
||||||
end,
|
end,
|
||||||
on_punch = function(pos, node, puncher, pointed_thingo)
|
on_punch = function(pos, node, puncher, pointed_thingo)
|
||||||
if puncher:get_player_control().sneak and minetest.check_player_privs(puncher:get_player_name(), {warp_admin = true}) then
|
if puncher:get_player_control().sneak and
|
||||||
|
minetest.check_player_privs(puncher:get_player_name(), {warp_admin = true}) then
|
||||||
minetest.remove_node(pos)
|
minetest.remove_node(pos)
|
||||||
minetest.chat_send_player(puncher:get_player_name(), "Warp stone removed!")
|
minetest.chat_send_player(puncher:get_player_name(), "Warp stone removed!")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
local destination = meta:get_string("warps_destination")
|
local destination = meta:get_string("warps_destination")
|
||||||
if destination == "" then
|
if destination == "" then
|
||||||
minetest.chat_send_player(puncher:get_player_name(), "Unknown warp location for this warp stone, cannot warp!")
|
minetest.chat_send_player(puncher:get_player_name(),
|
||||||
|
"Unknown warp location for this warp stone, cannot warp!")
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
warp_queue_add(puncher, destination)
|
warp_queue_add(puncher, destination)
|
||||||
|
Loading…
Reference in New Issue
Block a user