areas/settings.lua

44 lines
1.3 KiB
Lua
Raw Permalink Normal View History

local world_path = minetest.get_worldpath()
2013-09-03 01:16:14 +02:00
areas.config = {}
local function setting(tp, name, default)
local full_name = "areas."..name
local value
if tp == "boolean" then
value = minetest.setting_getbool(full_name)
elseif tp == "string" then
value = minetest.setting_get(full_name)
elseif tp == "position" then
value = minetest.setting_get_pos(full_name)
elseif tp == "number" then
value = tonumber(minetest.setting_get(full_name))
else
error("Invalid setting type!")
end
2013-09-03 01:16:14 +02:00
if value == nil then
value = default
end
areas.config[name] = value
2013-09-03 01:16:14 +02:00
end
--------------
-- Settings --
--------------
2013-09-03 01:16:14 +02:00
setting("string", "filename", world_path.."/areas.dat")
2013-09-03 01:16:14 +02:00
-- Allow players with a privilege create their own areas
-- within the maximum size and number.
2016-08-23 15:43:33 +02:00
setting("boolean", "self_protection", false)
setting("string", "self_protection_privilege", "interact")
2016-08-23 15:43:33 +02:00
setting("position", "self_protection_max_size", {x=64, y=128, z=64})
setting("number", "self_protection_max_areas", 4)
-- For players with the areas_high_limit privilege.
setting("position", "self_protection_max_size_high", {x=512, y=512, z=512})
setting("number", "self_protection_max_areas_high", 32)
2013-09-03 01:16:14 +02:00
-- legacy_table (owner_defs) compatibility. Untested and has known issues.
setting("boolean", "legacy_table", false)
2013-09-03 01:16:14 +02:00