2020-08-16 00:13:24 +02:00
|
|
|
|
local S = mtimer.translator
|
|
|
|
|
local worldpath = minetest.get_worldpath()..DIR_DELIM
|
|
|
|
|
local worldconfig = Settings(worldpath..DIR_DELIM..'_mtimer.conf')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Set an option in mtimer.meta configuration table.
|
|
|
|
|
--
|
|
|
|
|
-- The function takes an unprefixed key name and tries to get this key’s
|
|
|
|
|
-- configuration option and sets the table entry with that option and the
|
|
|
|
|
-- meta key name for that key. Because the meta settings system only allows
|
|
|
|
|
-- to write strings all values are converted to strings.
|
|
|
|
|
--
|
|
|
|
|
-- set('my_cool_key', 1337)
|
|
|
|
|
--
|
|
|
|
|
-- This setting creates the following table entry:
|
|
|
|
|
--
|
|
|
|
|
-- mtimer.meta.my_cool_key = {
|
|
|
|
|
-- key = 'mtimer:my_cool_key',
|
|
|
|
|
-- default = '1337'
|
|
|
|
|
-- }
|
|
|
|
|
--
|
|
|
|
|
-- The default value is searched in the following order When the setting is
|
|
|
|
|
-- not found in any of the locations an empty string is used
|
|
|
|
|
--
|
|
|
|
|
-- 1. Standard `minetest.conf` file that is used for the server
|
|
|
|
|
-- 2. `_mtimer.conf` in the loaded world’s directory
|
|
|
|
|
-- 3. Provided default value when calling the function
|
2020-08-17 16:46:50 +02:00
|
|
|
|
--
|
2021-04-02 10:54:49 +02:00
|
|
|
|
-- If the value `return_only` is set then the function does only return the
|
|
|
|
|
-- determined value instead of writing the meta table entry.
|
|
|
|
|
--
|
|
|
|
|
-- If `replace` is a key-value table then occurrences of the key in a special
|
|
|
|
|
-- variable in the configuration value are replaced.
|
|
|
|
|
--
|
|
|
|
|
-- replace = {
|
|
|
|
|
-- foobar = 'My Foobar Value'
|
|
|
|
|
-- }
|
|
|
|
|
--
|
|
|
|
|
-- This example searches for all variables `{_foobar}` and replaces them with
|
|
|
|
|
-- `'My Foobar Value'`. Note the underscore. The underscore prevents confusion
|
|
|
|
|
-- with timer-related variables.
|
|
|
|
|
--
|
2020-08-17 16:46:50 +02:00
|
|
|
|
-- @param key_name The unprefixed name of the key to get
|
|
|
|
|
-- @param default_value What to return when the configuration option is missing
|
2021-04-02 10:54:49 +02:00
|
|
|
|
-- @param return_only Only return the configuration value and do nothing
|
|
|
|
|
-- @param replace A replacement table as described
|
2020-08-17 16:46:50 +02:00
|
|
|
|
-- @return string Either the configuration option’s value or an empty string
|
2021-04-02 10:54:49 +02:00
|
|
|
|
local set = function (key_name, default_value, return_only, replace)
|
2020-08-16 00:13:24 +02:00
|
|
|
|
local meta_key = 'mtimer:'..key_name
|
|
|
|
|
local config_option = 'mtimer_'..key_name
|
|
|
|
|
local value = default_value
|
|
|
|
|
|
2021-04-02 10:54:49 +02:00
|
|
|
|
-- Get the setting from one of the possible locations
|
|
|
|
|
local global_setting = minetest.settings:get(config_option)
|
|
|
|
|
local world_setting = worldconfig:get(config_option)
|
|
|
|
|
|
|
|
|
|
-- Define value
|
|
|
|
|
value = world_setting or global_setting or default_value or ''
|
|
|
|
|
if type(replace) == 'table' then value=value:gsub('{_([^}]*)}',replace) end
|
2020-08-16 00:13:24 +02:00
|
|
|
|
|
2021-04-02 10:54:49 +02:00
|
|
|
|
-- Return or store value
|
|
|
|
|
if return_only == true then return tostring(value) end
|
|
|
|
|
mtimer.meta[key_name] = { key = meta_key, default = tostring(value) }
|
2020-08-16 00:13:24 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
2021-04-02 10:54:49 +02:00
|
|
|
|
-- Set HUD element offset table using the custom values
|
|
|
|
|
set('hud_element_offset', minetest.serialize({
|
|
|
|
|
x = set('hud_element_offset_x', 0, true),
|
|
|
|
|
y = set('hud_element_offset_y', 0, true)
|
|
|
|
|
}))
|
|
|
|
|
|
2022-01-30 21:53:28 +01:00
|
|
|
|
|
2020-08-16 00:13:24 +02:00
|
|
|
|
-- Display settings
|
|
|
|
|
set('color', '#ffffff')
|
2021-10-09 04:36:43 +02:00
|
|
|
|
set('hud_element_scale', 1)
|
2020-08-16 00:13:24 +02:00
|
|
|
|
set('position', 'bl')
|
|
|
|
|
set('timezone_offset', 0)
|
|
|
|
|
set('visible', true)
|
|
|
|
|
|
2021-02-11 21:49:26 +01:00
|
|
|
|
|
2020-08-16 00:13:24 +02:00
|
|
|
|
-- Formatting settings
|
|
|
|
|
set('host_time_format', '{24h}:{min} ({isodate})')
|
|
|
|
|
set('ingame_time_format', '{24h}:{min}')
|
|
|
|
|
set('real_time_format', '{24h}:{min} ({isodate})')
|
|
|
|
|
set('session_duration_format', '{hours}:{minutes}')
|
|
|
|
|
set('session_start_time_format', '{isodate}T{isotime}')
|
|
|
|
|
|
2021-02-11 21:49:26 +01:00
|
|
|
|
|
|
|
|
|
-- Custom timer settings
|
|
|
|
|
--
|
|
|
|
|
-- `timer_mode` can be one of the following:
|
|
|
|
|
--
|
|
|
|
|
-- 'countdown': Counting backwards from the calculated starting point to the
|
|
|
|
|
-- `start_timestamp` value. The starting point is calculated
|
|
|
|
|
-- using the input values and `start_timestamp`.
|
|
|
|
|
--
|
|
|
|
|
-- 'timer': Counting up from the `start_timestamp` value to the calculated
|
|
|
|
|
-- target. The target is calculated by the `start_timestamp` and the
|
|
|
|
|
-- given `input_values`.
|
|
|
|
|
--
|
|
|
|
|
-- 'continuous': The timer shows the difference between the current timestamp
|
|
|
|
|
-- and the stored `start_timestamp`. Here the `target_message`
|
|
|
|
|
-- is ignored and will never be shown.
|
|
|
|
|
set('custom_timer_settings', minetest.serialize({
|
2021-04-02 10:54:49 +02:00
|
|
|
|
values = {
|
|
|
|
|
days = tonumber(set('custom_timer_value_days', 0, true)),
|
|
|
|
|
hours = tonumber(set('custom_timer_value_hours', 0, true)),
|
|
|
|
|
minutes = tonumber(set('custom_timer_value_minutes', 0, true)),
|
|
|
|
|
seconds = tonumber(set('custom_timer_value_seconds', 0, true))
|
|
|
|
|
},
|
2021-02-11 21:49:26 +01:00
|
|
|
|
start_timestamp = 0,
|
2021-02-12 12:02:23 +01:00
|
|
|
|
format = {
|
2021-04-02 10:54:49 +02:00
|
|
|
|
running = set('custom_timer_running_format', 'd: {days}, h: {hours}, m: {minutes}, s: {seconds}', true),
|
|
|
|
|
stopped = set('custom_timer_stopped_format', S('The timer is stopped'), true),
|
|
|
|
|
finished = set('custom_timer_finished_format', S('The timer has finished'), true)
|
2021-02-12 12:02:23 +01:00
|
|
|
|
},
|
2021-04-02 10:54:49 +02:00
|
|
|
|
timer_mode = set('custom_timer_mode', 'countdown', true),
|
2021-02-11 21:49:26 +01:00
|
|
|
|
running = false
|
2021-04-02 10:54:49 +02:00
|
|
|
|
}))
|
2021-02-11 21:49:26 +01:00
|
|
|
|
|
|
|
|
|
|
2020-08-16 00:13:24 +02:00
|
|
|
|
-- Timer display format (the HUD element’s content)
|
|
|
|
|
set('timer_format', table.concat({
|
|
|
|
|
S('Current Date: @1', '{rd}'),
|
|
|
|
|
S('Ingame Time: @1', '{it}'),
|
|
|
|
|
S('Session Start: @1', '{st}'),
|
2021-02-12 20:23:40 +01:00
|
|
|
|
S('Session Duration: @1', '{sd}')
|
2021-04-02 10:54:49 +02:00
|
|
|
|
}, '{_n}'), false, { n = '\n' })
|
2021-12-10 08:35:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Hard reset indicator
|
|
|
|
|
set('hard_reset_everything', 'false')
|