From b332a31d4886d5699575c933627c91f659ab45b8 Mon Sep 17 00:00:00 2001 From: orwell96 Date: Tue, 18 Dec 2018 11:56:48 +0100 Subject: Make track protection radius configurable --- advtrains/protection.lua | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'advtrains/protection.lua') diff --git a/advtrains/protection.lua b/advtrains/protection.lua index 1ea4957..7474977 100644 --- a/advtrains/protection.lua +++ b/advtrains/protection.lua @@ -28,6 +28,14 @@ minetest.register_privilege("railway_operator", { -- there is a configuration option "allow_build_only_owner". If this is active, a player having track_builder can only build rails and operate signals/turnouts in an area explicitly belonging to him -- (checked using a dummy player called "*dummy*" (which is not an allowed player name)) + +-- Protection ranges +local npr_r = tonumber(minetest.settings:get("advtrains_prot_range_side")) or 1 +local npr_vr = tonumber(minetest.settings:get("advtrains_prot_range_up")) or 3 +local npr_vrd = tonumber(minetest.settings:get("advtrains_prot_range_down")) or 1 + +local boo = minetest.settings:get_bool("advtrains_allow_build_to_owner") + --[[ Protection/privilege concept: Tracks: @@ -59,8 +67,6 @@ Wagon coupling: ]]-- -local boo = minetest.settings:get_bool("advtrains_allow_build_to_owner") - -- temporarily prevent scanning for neighboring rail nodes recursively local nocheck @@ -92,10 +98,9 @@ minetest.is_protected = function(pos, pname) return not advtrains.check_track_protection(pos, pname, nil, false) end - local r, vr = 1, 3 local nodes = minetest.find_nodes_in_area( - {x = pos.x - r, y = pos.y - vr, z = pos.z - r}, - {x = pos.x + r, y = pos.y + 1, z = pos.z + r}, + {x = pos.x - npr_r, y = pos.y - npr_vr, z = pos.z - npr_r}, + {x = pos.x + npr_r, y = pos.y + npr_vrd, z = pos.z + npr_r}, {"group:advtrains_track"}) for _,npos in ipairs(nodes) do if not advtrains.check_track_protection(npos, pname, pos) then -- cgit v1.2.3