Модуль:Code/Формат/Время: различия между версиями

Материал из Space Station 14 Вики
Нет описания правки
мНет описания правки
 
Строка 51: Строка 51:
function p.main(frame)
function p.main(frame)
     local args = frame.args[1]
     local args = frame.args[1]
     local time = parse_timespan(time)
     local time = parse_timespan(args)
     return format_time(time)
     return format_time(time)
end
end


return p
return p

Текущая версия от 16:45, 10 ноября 2025

Для документации этого модуля может быть создана страница Модуль:Code/Формат/Время/doc

local p = {}

local function parse_timespan(str)
    if not str then return 0 end
    str = str:match("^%s*(.-)%s*$")

    local number = tonumber(str)
    if number then return number end

    if #str <= 1 then return 0 end

    local value = tonumber(str:sub(1, -2))
    local unit = str:sub(-1):lower()

    if not value then return 0 end

    if unit == "s" then
        return value
    elseif unit == "m" then
        return value * 60
    elseif unit == "h" then
        return value * 3600
    else
        return 0
    end
end

-- Форматирование в "X час. Y мин. Z сек."
local function format_time(value)
    local total_seconds = math.floor(value)

    local hours = math.floor(total_seconds / 3600)
    local minutes = math.floor((total_seconds % 3600) / 60)
    local seconds = total_seconds % 60

    local parts = {}

    if hours > 0 then
        table.insert(parts, hours .. " час.")
    end
    if minutes > 0 then
        table.insert(parts, minutes .. " мин.")
    end
    if seconds > 0 or #parts == 0 then
        table.insert(parts, seconds .. " сек.")
    end

    return table.concat(parts, " ")
end

function p.main(frame)
    local args = frame.args[1]
    local time = parse_timespan(args)
    return format_time(time)
end

return p