2019-02-16 16:45:32 +01:00
|
|
|
local m = mtimer
|
|
|
|
local f = mtimer.show_formspec
|
|
|
|
|
|
|
|
minetest.register_on_player_receive_fields(function(player, formname, fields)
|
|
|
|
local meta = player:get_meta()
|
|
|
|
local name = player:get_player_name()
|
|
|
|
|
|
|
|
|
|
|
|
-- Select what formspec to show basing on main menu button
|
|
|
|
if formname == 'mtimer:main_menu' then
|
|
|
|
if fields.set_visibility then f.set_visibility(name) end
|
2019-02-17 01:31:10 +01:00
|
|
|
if fields.set_position then f.set_position(name) end
|
2019-02-17 03:10:41 +01:00
|
|
|
if fields.set_color then f.set_color(name) end
|
2019-02-19 13:40:19 +01:00
|
|
|
if fields.timezone_offset then f.timezone_offset(name) end
|
2019-02-21 16:16:10 +01:00
|
|
|
if fields.ingame_time_format then f.ingame_time_format(name) end
|
2019-02-21 21:07:35 +01:00
|
|
|
if fields.real_world_time_format then f.real_world_time_format(name) end
|
|
|
|
if fields.session_start_time_format then
|
|
|
|
f.session_start_time_format(name)
|
|
|
|
end
|
|
|
|
if fields.session_duration_format then
|
|
|
|
f.session_duration_format(name)
|
|
|
|
end
|
2019-02-22 14:08:44 +01:00
|
|
|
if fields.timer_format then f.timer_format(name) end
|
2019-02-16 16:45:32 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- Set timer visibility
|
|
|
|
if formname == 'mtimer:set_visibility' then
|
|
|
|
local attr = m.meta.visible
|
|
|
|
if fields.visible then meta:set_string(attr.key, 'true') end
|
|
|
|
if fields.invisible then meta:set_string(attr.key, 'false') end
|
|
|
|
if fields.default then meta:set_string(attr.key, attr.default) end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-02-17 01:31:10 +01:00
|
|
|
-- Set timer position
|
|
|
|
if formname == 'mtimer:set_position' then
|
|
|
|
local attr = m.meta.position
|
|
|
|
for p,_ in pairs(fields) do
|
|
|
|
if p == 'default' then
|
|
|
|
meta:set_string(attr.key, attr.default)
|
|
|
|
elseif p:gsub('_.*', '') == 'pos' then
|
|
|
|
local new_pos = p:gsub('pos_', '')
|
|
|
|
if new_pos ~= 'xx' then meta:set_string(attr.key, new_pos) end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-02-17 03:10:41 +01:00
|
|
|
-- Set timer text color
|
|
|
|
if formname == 'mtimer:set_color' then
|
|
|
|
local attr = m.meta.color
|
|
|
|
local color = ''
|
|
|
|
|
|
|
|
if fields.color then
|
2019-02-22 15:29:08 +01:00
|
|
|
local valid = fields.color:match('^#'..('[0-9a-fA-F]'):rep(6)..'$')
|
2019-02-17 03:10:41 +01:00
|
|
|
local color = valid and fields.color or attr.default
|
|
|
|
meta:set_string(attr.key, color)
|
|
|
|
end
|
|
|
|
|
|
|
|
if fields.default then meta:set_string(attr.key, attr.default) end
|
|
|
|
if not fields.quit then mtimer.show_formspec.set_color(name) end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-02-19 13:40:19 +01:00
|
|
|
-- Configure timezone offset
|
|
|
|
if formname == 'mtimer:timezone_offset' then
|
|
|
|
local attr = m.meta.timezone_offset
|
|
|
|
local value = tonumber(fields.offset) or attr.default
|
|
|
|
if math.abs(value) > os.time() then value = 0 end
|
|
|
|
meta:set_string(attr.key, value)
|
|
|
|
if fields.default then meta:set_string(attr.key, attr.default) end
|
|
|
|
if not fields.quit then mtimer.show_formspec.timezone_offset(name) end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-02-21 16:16:10 +01:00
|
|
|
-- Set ingame time format
|
|
|
|
if formname == 'mtimer:ingame_time_format' then
|
|
|
|
local attr = m.meta.ingame_time
|
|
|
|
local value = fields.format or attr.default
|
|
|
|
meta:set_string(attr.key, value)
|
|
|
|
if fields.default then meta:set_string(attr.key, attr.default) end
|
|
|
|
if not fields.quit then mtimer.show_formspec.ingame_time_format(name)end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-02-21 21:07:35 +01:00
|
|
|
-- Set real-time format
|
|
|
|
if formname == 'mtimer:real_world_time_format' then
|
|
|
|
local attr = m.meta.real_time
|
|
|
|
local value = fields.format or attr.default
|
|
|
|
meta:set_string(attr.key, value)
|
|
|
|
if fields.default then meta:set_string(attr.key, attr.default) end
|
|
|
|
if not fields.quit then
|
|
|
|
mtimer.show_formspec.real_world_time_format(name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- Set session start time format
|
|
|
|
if formname == 'mtimer:session_start_time_format' then
|
|
|
|
local attr = m.meta.session_start_time
|
|
|
|
local value = fields.format or attr.default
|
|
|
|
meta:set_string(attr.key, value)
|
|
|
|
if fields.default then meta:set_string(attr.key, attr.default) end
|
|
|
|
if not fields.quit then
|
|
|
|
mtimer.show_formspec.session_start_time_format(name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- Set session duration format
|
|
|
|
if formname == 'mtimer:session_duration_format' then
|
|
|
|
local attr = m.meta.session_duration
|
|
|
|
local value = fields.format or attr.default
|
|
|
|
meta:set_string(attr.key, value)
|
|
|
|
if fields.default then meta:set_string(attr.key, attr.default) end
|
|
|
|
if not fields.quit then
|
|
|
|
mtimer.show_formspec.session_duration_format(name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-19 13:40:19 +01:00
|
|
|
|
2019-02-22 14:08:44 +01:00
|
|
|
-- Set timer text
|
|
|
|
if formname == 'mtimer:timer_format' then
|
|
|
|
local attr = m.meta.timer_format
|
|
|
|
local value = fields.format or attr.default
|
|
|
|
meta:set_string(attr.key, value)
|
|
|
|
if fields.default then meta:set_string(attr.key, attr.default) end
|
|
|
|
if not fields.quit then mtimer.show_formspec.timer_format(name) end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-02-22 15:29:08 +01:00
|
|
|
-- Back to menu from all formspecs and conditionally update timer
|
2019-02-18 22:02:59 +01:00
|
|
|
if fields.main_menu then f.main_menu(name) end
|
2019-02-22 15:29:08 +01:00
|
|
|
if formname ~= 'mtimer:main_menu' then mtimer.timer_update(name) end
|
2019-02-16 16:45:32 +01:00
|
|
|
|
|
|
|
end)
|