mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
Create setting_handler.lua
This commit is contained in:
parent
daad494c7e
commit
16afb9eddc
1 changed files with 42 additions and 0 deletions
42
worldeditadditions_core/utils/setting_handler.lua
Normal file
42
worldeditadditions_core/utils/setting_handler.lua
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
--- A wrapper to simultaniously handle global and world settings.
|
||||||
|
|
||||||
|
-- Initialize settings container
|
||||||
|
local weac = worldeditadditions_core
|
||||||
|
weac.settings = {}
|
||||||
|
|
||||||
|
-- Initialize wea world folder if not already existing
|
||||||
|
local path = minetest.get_worldpath() .. "/worldeditadditions"
|
||||||
|
minetest.mkdir(path)
|
||||||
|
|
||||||
|
-- @class
|
||||||
|
local setting_handler = {}
|
||||||
|
|
||||||
|
--- Reads world settings into WEA core settings object
|
||||||
|
setting_handler.read = function()
|
||||||
|
local file, err = io.open(path .. "/settings.conf", "rb")
|
||||||
|
if err then return false end
|
||||||
|
-- Split by newline
|
||||||
|
local settings = wea_c.split(file.read(),"[\n\r]+")
|
||||||
|
end
|
||||||
|
|
||||||
|
--- Write setting to world settings
|
||||||
|
setting_handler.write = function(setting, state)
|
||||||
|
local writer, err = io.open(path .. "/settings.conf", "ab")
|
||||||
|
if not writer then
|
||||||
|
return false
|
||||||
|
elseif setting == "" and not state then
|
||||||
|
writer:write("")
|
||||||
|
else
|
||||||
|
writer:write("worldeditadditions_" .. setting .. " = " .. state .. "\n")
|
||||||
|
end
|
||||||
|
writer:flush()
|
||||||
|
writer:close()
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Test for world settings and generate file if none
|
||||||
|
if not setting_handler.read() then
|
||||||
|
setting_handler.write("")
|
||||||
|
end
|
||||||
|
|
||||||
|
return setting_handler
|
Loading…
Reference in a new issue