Модуль:ArmorStats: различия между версиями

Материал из Space Station 14 Вики
Нет описания правки
Нет описания правки
Строка 12: Строка 12:


function p.templateCells(frame)
function p.templateCells(frame)
     local color = frame.args.color or ""  -- Цвет фона первой ячейки
     local args = frame.args
     local anchorName = frame.args.anchorName or "" -- Название якоря
    local class = args.class or "custom-class"  -- Класс для обертывающего <div>
     local image = frame.args.image or "" -- Путь к изображению предмета
 
     local itemId = frame.args.itemId or "" -- ID предмета
    -- Получаем все аргументы для формирования содержимого таблицы
   
    local color = args.color or ""
     local protBlunt = frame.args.protBlunt or "-" -- Ударный
     local anchorName = args.anchorName or ""
     local protSlash = frame.args.protSlash or "-" -- Режущий
     local image = args.image or ""
     local protPiercing = frame.args.protPiercing or "-" -- Колющий
     local itemId = args.itemId or ""
     local protHeat = frame.args.protHeat or "-" -- Высокотемпературный
     local protBlunt = args.protBlunt or "-"
     local protRadiation = frame.args.protRadiation or "-" -- Кислотный
     local protSlash = args.protSlash or "-"
     local protCaustic = frame.args.protCaustic or "-" -- Радиационный
     local protPiercing = args.protPiercing or "-"
     local protExplosion = frame.args.protExplosion or "-" -- Взрывной
     local protHeat = args.protHeat or "-"
   
     local protRadiation = args.protRadiation or "-"
     local description = frame.args.description or "" -- Описание
     local protCaustic = args.protCaustic or "-"
     local location = frame.args.location or "" -- Местонахождение
     local protExplosion = args.protExplosion or "-"
     local backgroundColor = frame.args.backgroundColor or "" -- Цвет фона для всех ячеек, кроме первой
     local description = args.description or ""
    local divClass = frame.args.divClass or "" -- Класс для элемента <div>
     local location = args.location or ""
     local backgroundColor = args.backgroundColor or ""


     -- Вызов функции из модуля Entity Lookup для создания image tooltip
     -- Вызов функции из модуля Entity Lookup для создания image tooltip
Строка 57: Строка 58:
     out = out .. '|style="background-color: ' .. backgroundColor .. '"|\n' .. location .. '\n|-'
     out = out .. '|style="background-color: ' .. backgroundColor .. '"|\n' .. location .. '\n|-'


     -- Обернуть весь выходной код в элемент <div> с заданным классом
     -- Обертываем результат в <div> с заданным классом
     return '<div class="' .. divClass .. '">' .. out .. '</div>'
     local wrappedOut = '<div class="' .. class .. '">' .. out .. '</div>'
 
    return wrappedOut
end
end


return p
return p

Версия от 18:55, 8 июля 2024

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

local p = {}

-- Функция для изменения яркости цвета (уменьшение на 20%)
local function darkenColor(color)
    -- Уменьшаем каждую компоненту RGB на 20%
    local r = math.floor(tonumber(color:sub(2, 3), 16) * 0.8)
    local g = math.floor(tonumber(color:sub(4, 5), 16) * 0.8)
    local b = math.floor(tonumber(color:sub(6, 7), 16) * 0.8)
    -- Собираем новый цвет
    return string.format("#%02x%02x%02x", r, g, b)
end

function p.templateCells(frame)
    local args = frame.args
    local class = args.class or "custom-class"  -- Класс для обертывающего <div>

    -- Получаем все аргументы для формирования содержимого таблицы
    local color = args.color or ""
    local anchorName = args.anchorName or ""
    local image = args.image or ""
    local itemId = args.itemId or ""
    local protBlunt = args.protBlunt or "-"
    local protSlash = args.protSlash or "-"
    local protPiercing = args.protPiercing or "-"
    local protHeat = args.protHeat or "-"
    local protRadiation = args.protRadiation or "-"
    local protCaustic = args.protCaustic or "-"
    local protExplosion = args.protExplosion or "-"
    local description = args.description or ""
    local location = args.location or ""
    local backgroundColor = args.backgroundColor or ""

    -- Вызов функции из модуля Entity Lookup для создания image tooltip
    local imageTooltip = frame:preprocess('{{#invoke:Entity Lookup|createimagetooltip|File:' .. image .. '|' .. itemId .. '|Мета=64x64px}}')

    -- Вызов функции из модуля Entity Lookup для получения имени элемента
    local itemName = frame:preprocess('{{#invoke:Entity Lookup|getname|' .. itemId .. '}}')

    -- Обработка шаблона Anchor с помощью frame:preprocess
    local anchor = frame:preprocess('{{Anchor|' .. anchorName .. '}}')

    -- Вычисляем цвет рамки (чуть темнее заданного цвета)
    local borderColor = darkenColor(color)

    -- Формирование строк для ячеек таблицы
    local out = ""
    out = out .. '!style="background-color: ' .. color .. ';border-top: 1px solid ' .. borderColor .. ';border-bottom: 1px solid ' .. borderColor .. ';border-left: 2px solid ' .. borderColor .. ';"|' .. anchor 
    out = out .. imageTooltip
    out = out .. '<br>' .. itemName .. '\n'
    out = out .. '|style="font-weight:bold;color: crimson;background-color: ' .. backgroundColor .. '"|' .. protBlunt .. '\n'
    out = out .. '|style="font-weight:bold;color: indianred;background-color: ' .. backgroundColor .. '"|' .. protSlash .. '\n'
    out = out .. '|style="font-weight:bold;color: darksalmon;background-color: ' .. backgroundColor .. '"|' .. protPiercing .. '\n'
    out = out .. '|style="font-weight:bold;color: orange;background-color: ' .. backgroundColor .. '"|' .. protHeat .. '\n'
    out = out .. '|style="font-weight:bold;color: plum;background-color: ' .. backgroundColor .. '"|' .. protRadiation .. '\n'
    out = out .. '|style="font-weight:bold;color: limegreen;background-color: ' .. backgroundColor .. '"|' .. protCaustic .. '\n'
    out = out .. '|style="font-weight:bold;color: tan;background-color: ' .. backgroundColor .. '"|' .. protExplosion .. '\n'
    out = out .. '|style="background-color: ' .. backgroundColor .. '"|\n' .. description .. '\n'
    out = out .. '|style="background-color: ' .. backgroundColor .. '"|\n' .. location .. '\n|-'

    -- Обертываем результат в <div> с заданным классом
    local wrappedOut = '<div class="' .. class .. '">' .. out .. '</div>'

    return wrappedOut
end

return p