mirror of
https://gitlab.com/4w/mtimer.git
synced 2024-11-24 16:23:44 +01:00
39 lines
1.3 KiB
Lua
39 lines
1.3 KiB
Lua
local modpath = minetest.get_modpath('mtimer')..DIR_DELIM
|
|
local syspath = modpath..'system'..DIR_DELIM
|
|
|
|
|
|
mtimer = {
|
|
translator = minetest.get_translator('mtimer'),
|
|
show_formspec = {},
|
|
meta = {
|
|
visible = { key = 'mtimer:visible', default = 'true' },
|
|
position = { key = 'mtimer:position', default = 'bl' },
|
|
color = { key = 'mtimer:color', default = '#ffffffFF' },
|
|
timezone_offset = { key = 'mtimer:timezone_offset', default = '0' },
|
|
ingame_time = {key='mtimer:ingame_time_format',default='{24h}:{min}'},
|
|
real_time = { key='mtimer:real_time_format', default='{24h}:{min}' },
|
|
session_start_time = {
|
|
key = 'mtimer:session_start_time_format',
|
|
default = '{isodate}T{isotime}'
|
|
},
|
|
session_duration = {
|
|
key = 'mtimer:session_duration_format',
|
|
default = '{hours}:{minutes}'
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-- Load formspec functionality
|
|
dofile(syspath..'formspec'..DIR_DELIM..'formspec_helpers.lua')
|
|
dofile(syspath..'formspec'..DIR_DELIM..'real_time_universal.lua')
|
|
dofile(syspath..'formspec'..DIR_DELIM..'formspec_creation.lua')
|
|
|
|
-- Load system
|
|
dofile(syspath..'chat_command.lua')
|
|
dofile(syspath..'timer_update.lua')
|
|
dofile(syspath..'on_receive_fields.lua')
|
|
dofile(syspath..'on_joinplayer.lua')
|
|
dofile(syspath..'get_times.lua')
|
|
|