Added format_time

This commit is contained in:
Cooldude2606
2019-03-24 16:58:20 +00:00
parent 7c4210f8b4
commit 6f6a1732ce
4 changed files with 114 additions and 3 deletions

View File

@@ -135,4 +135,66 @@ function Public.ext_require(path,...)
return Public.extract_keys(rtn,...)
end
--- Formats ticks into a time format - this is alot of work and will do later
-- time denominations: D,H,M,S,T days,hours,minutes,seconds,ticks
-- time prefixes (minutes as example): %m,%m,%M,%MM just the value, value with short tag, value with long tag
-- adding a number after the prefix AND denomination will show that many decimal palaces
-- examples: '%H %M' => '0H 0M'; '%MM and %SS3' => '0 Minutes and 0.000 Seconds'
function Public.format_time(ticks,format)
local has_days, has_hours, has_minutes, has_seconds, has_ticks = false,false,false,false,false
local max_days, max_hours = ticks/5184000, ticks/216000
local max_minutes, max_seconds, max_ticks = ticks/3600, ticks/60, ticks
local days, hours = max_days, max_hours-math.floor(max_days)*5184000
local minutes, seconds = max_minutes-math.floor(max_hours)*216000, max_seconds-math.floor(max_minutes)*3600
local tags = {}
return 'Use format_time_simple currently WIP'
end
--- Formats tick into a time format, this format is predefined to either H:M:S; HH MM SS or H Hours M Minutes S seconds
-- seconds are not required to be shown with option show_seconds = false, true to show them, default false
-- show_sub_seconds will show three decimal places for the seconds
-- long_format will use words rather than letters
-- tagged is default to true when false it will remove all letters and use :
-- @tparam ticks number the number of ticks that represents a time
-- @tparam options table a table of options to use for the format
function Public.format_time_simple(ticks,options)
-- Sets up the options
options = {
show_seconds = options.show_seconds or false,
show_sub_seconds = options.show_sub_seconds or false,
long_format = options.long_format or false,
tagged = options.tagged or true
}
-- Basic numbers that are used in calculations
local max_hours, max_minutes, max_seconds = ticks/216000, ticks/3600, ticks/60
local hours, minutes, seconds = max_hours, max_minutes-math.floor(max_hours)*216000, max_seconds-math.floor(max_minutes)*3600
-- Format options
local suffix = 'time-format.short-'
if options.long_format then
suffix = 'time-format.long-'
end
local div = 'time-format.simple-format-tagged'
if options.tagged then
div = 'time-format.simple-format-div'
suffix = false
end
-- The returned numbers in the right format
local rtn_hours, rtn_minutes, rtn_seconds = math.floor(hours), math.floor(minutes), math.floor(seconds)
if suffix then
rtn_hours = {suffix..'hours',rtn_hours}
rtn_minutes = {suffix..'minutes',rtn_minutes}
if options.show_sub_seconds then
rtn_seconds = {suffix..'seconds',string.format('%d03',seconds)}
else
rtn_seconds = {suffix..'seconds',rtn_seconds}
end
end
-- The final return is construed
local rtn = {div,rtn_hours,rtn_minutes}
if options.show_seconds then
rtn = {div,rtn,rtn_seconds}
end
return rtn
end
return Public