mesecons_x/mesecons_autotools/book/file.lua
Deet Mit 68aadf9953 fix
2020-09-04 16:21:35 +02:00

48 lines
1.2 KiB
Lua

mesecons_autotools.rand = PcgRandom(2);
function generate_file_name(user)
local days = minetest.get_day_count()
local sec = minetest.get_gametime()
local rand = math.abs(mesecons_autotools.rand:next())
local file = "circuit-"..user.."-"..sec.."-" .. rand
return file
end
local path = minetest.get_worldpath() .. "/circuits/"
function save_table_to_file(filename,tab)
minetest.mkdir(path)
local file, err = io.open(path .. filename, "wb")
if err ~= nil then
-- player_notify(name, "Could not save file to \"" .. filename .. "\"")
print ("mesecons_autotools: ERROR: file save error")
return
end
local result = minetest.serialize(tab)
file:write(result)
file:flush()
file:close()
end
function read_table_from_file(filename)
minetest.mkdir(path)
local file, err = io.open(path .. filename, "rb")
if err ~= nil then
-- notify
print ("mesecons_autotools: ERROR: file read error")
return nil
end
local value = file:read("*a")
file:close()
local tab = minetest.deserialize(value)
return tab
end