2015-01-11 22:20:57 +01:00
|
|
|
--[[
|
2015-01-12 17:46:30 +01:00
|
|
|
Map Tools: configuration handling
|
2015-01-11 22:20:57 +01:00
|
|
|
|
2019-02-25 12:16:01 +01:00
|
|
|
Copyright © 2012-2019 Hugo Locurcio and contributors.
|
2015-01-11 22:20:57 +01:00
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
--]]
|
|
|
|
|
2014-12-27 20:31:31 +01:00
|
|
|
maptools.config = {}
|
|
|
|
|
|
|
|
local function getbool_default(setting, default)
|
2019-04-03 00:14:44 +02:00
|
|
|
local value = minetest.settings:get_bool(setting)
|
2014-12-27 20:31:31 +01:00
|
|
|
if value == nil then
|
|
|
|
value = default
|
|
|
|
end
|
|
|
|
return value
|
|
|
|
end
|
|
|
|
|
|
|
|
local function setting(settingtype, name, default)
|
|
|
|
if settingtype == "bool" then
|
|
|
|
maptools.config[name] =
|
|
|
|
getbool_default("maptools." .. name, default)
|
|
|
|
else
|
|
|
|
maptools.config[name] =
|
2019-04-03 00:14:52 +02:00
|
|
|
minetest.settings:get("maptools." .. name) or default
|
2014-12-27 20:31:31 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Show Map Tools stuff in creative inventory (1 or 0):
|
|
|
|
setting("integer", "hide_from_creative_inventory", 1)
|