Модуль:Prototypes/Механика/Исследование: различия между версиями

Материал из Space Station 14 Вики
мНет описания правки
мНет описания правки
 
(не показаны 62 промежуточные версии этого же участника)
Строка 1: Строка 1:
-- Загрузка данных
local recipeData = mw.loadData("Модуль:IanComradeBot/prototypes/lathe/recipes.json/data")
local p = {}
local p = {}
-- Функция для загрузки данных исследований из JSON-файла
local function loadResearchData()
    return mw.text.jsonDecode(mw.title.new("User:IanComradeBot/prototypes/research.json"):getContent())
end
-- Таблица для перевода названий дисциплин
local disciplineMapping = {
    Arsenal = "Арсенал",
    Industrial = "Промышленность",
    Experimental = "Экспериментальное",
    CivilianServices = "Обслуживание персонала"
}
-- Таблица для цветов по уровням
local tierColors = {
    [1] = "#54d554",
    [2] = "#ed9000",
    [3] = "#d72a2a"
}


function p.main(frame)
function p.main(frame)
-- Подключение CSS файла
    local dataCache = loadResearchData()
local cssLink = frame:extensionTag('templatestyles', '', {
src = 'Шаблон:Research/styles.css'
})


local discipline = frame.args.discipline or ""
    -- Получаем ID и иконку из параметров
    local researchId = frame.args[1] or ""
    local icon = frame.args[2] or ""


-- Названия технологий
    if researchId and researchId ~= "" then
local disciplineName = ""
        local out = ""
if discipline == "Arsenal" then
disciplineName = "Арсенал"
elseif discipline == "Industrial" then
disciplineName = "Промышленность"
elseif discipline == "Experimental" then
disciplineName = "Экспериментальное"
elseif discipline == "CivilianServices" then
disciplineName = "Обслуживание персонала"
end


-- Загрузка данных из JSON
        -- Поиск исследования по ID
local data = mw.text.jsonDecode(mw.title.new("User:IanComradeBot/research prototypes.json"):getContent())
        local tech = nil
        for _, research in ipairs(dataCache) do
            if research and research.id == researchId then
                tech = research
                break
            end
        end


local out = cssLink
        if not tech then
local found = false  -- Флаг для отслеживания наличия элементов
            out = out .. '<div style="color:red;">Исследование с ID "' .. researchId .. '" не найдено.</div>'
        else
            local tierColor = tierColors[tech.tier] or "#FFFFFF"
            local disciplineName = disciplineMapping[tech.discipline] or "Неизвестная дисциплина"
            local iconPath = icon ~= "" and icon or (tech.icon and tech.icon.sprite or nil)


-- Обработка данных
            -- Формирование строки необходимых исследований
if data[discipline] then -- Проверяем, существует ли ключ для discipline
            local prerequisites = ""
for _, tech in ipairs(data[discipline]) do
            if tech.technologyPrerequisites and #tech.technologyPrerequisites > 0 then
found = true
                prerequisites = '<ul>'
-- Формирование HTML для каждой технологии
                for _, prerequisiteId in ipairs(tech.technologyPrerequisites) do
out = out .. '<div class="research" id="' .. discipline .. '">'
                    if prerequisiteId and prerequisiteId ~= "" then
out = out .. '<div class="research__images">[[Файл:' .. tech.id .. '.png|64px|центр|link=]]</div>'
                        -- Находим название исследования по ID
out = out .. '<div class="research__name">' .. tech.name .. '[[Файл:' .. discipline .. '.png|16px|link=]]</div>'
                        local prerequisiteName = ""
out = out .. '<div class="research__type">'
                        for _, research in ipairs(dataCache) do
out = out .. '<div>Уровень:  ' .. tech.tier .. ' ,</div>'
                            if research and research.id == prerequisiteId then
out = out .. '<div class="research__technology">' .. disciplineName .. '</div>'
                                prerequisiteName = research.name
out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. tech.cost .. '</span></div>'
                                break
out = out .. '</div>'
                            end
out = out .. '<div class="research__unblocks">Разблокирует:'
                        end
out = out .. '<ul>'
 
for _, recipe in ipairs(tech.recipeUnlocks) do
                        -- Если название найдено, выводим его
out = out .. frame:preprocess('<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. recipe .. '.png|' .. recipe .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. recipe .. '}}</li>')
                        if prerequisiteName ~= "" then
                            prerequisites = prerequisites .. '<li>{{#invoke:Ftl|main|translation|'.. prerequisiteName .. '}}</li>'
                        end
                    end
                end
                prerequisites = prerequisites .. '</ul>'
            end
 
            -- Формирование строки открываемых исследований
local unlocks = ""
if tech.recipeUnlocks and #tech.recipeUnlocks > 0 then
    unlocks = '<ul>'
    for _, recipeId in ipairs(tech.recipeUnlocks) do
        if recipeId and recipeId ~= "" then
            -- Ищем в recipeData объект с id == recipeId
            local newId = recipeId
            for _, rec in ipairs(recipeData) do
                if rec and rec.id == recipeId then
                    newId = rec.result or recipeId
                    break
                end
            end
            unlocks = unlocks .. '<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:'  
                .. newId .. '.png|' .. newId
                .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|'  
                .. newId .. '}}</li>'
        end
    end
    unlocks = unlocks .. '</ul>'
end
end
out = out .. '</ul>'
out = out .. '</div>'
out = out .. '</div>'
end
end


if not found then
            -- Шаблон для отображения блока исследования
out = out .. '<div>Нет доступных технологий.</div>'
            local templateArgs = {
end
                id = tech.id,
                icon = iconPath,
                name = tech.name,
                discipline = tech.discipline,
                tier = tech.tier,
                tierColor = tierColor,
                disciplineName = disciplineName,
                cost = tech.cost,
                unlocks = unlocks
            }
 
            -- Добавление prerequisites только если он существует
            if prerequisites ~= "" then
                templateArgs.prerequisites = prerequisites
            end


return out
            out = out .. frame:expandTemplate({
                title = 'Prototypes/Механика/Исследование',
                args = templateArgs
            })
end
        return mw.getCurrentFrame():preprocess(out)
    else
        return '<div style="color:red;">Не указан ID исследования.</div>'
    end
end
end


return p
return p

Текущая версия от 14:40, 13 февраля 2025

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

-- Загрузка данных
local recipeData = mw.loadData("Модуль:IanComradeBot/prototypes/lathe/recipes.json/data")

local p = {}

-- Функция для загрузки данных исследований из JSON-файла
local function loadResearchData()
    return mw.text.jsonDecode(mw.title.new("User:IanComradeBot/prototypes/research.json"):getContent())
end

-- Таблица для перевода названий дисциплин
local disciplineMapping = {
    Arsenal = "Арсенал",
    Industrial = "Промышленность",
    Experimental = "Экспериментальное",
    CivilianServices = "Обслуживание персонала"
}

-- Таблица для цветов по уровням
local tierColors = {
    [1] = "#54d554",
    [2] = "#ed9000",
    [3] = "#d72a2a"
}

function p.main(frame)
    local dataCache = loadResearchData()

    -- Получаем ID и иконку из параметров
    local researchId = frame.args[1] or ""
    local icon = frame.args[2] or ""

    if researchId and researchId ~= "" then
        local out = ""

        -- Поиск исследования по ID
        local tech = nil
        for _, research in ipairs(dataCache) do
            if research and research.id == researchId then
                tech = research
                break
            end
        end

        if not tech then
            out = out .. '<div style="color:red;">Исследование с ID "' .. researchId .. '" не найдено.</div>'
        else
            local tierColor = tierColors[tech.tier] or "#FFFFFF"
            local disciplineName = disciplineMapping[tech.discipline] or "Неизвестная дисциплина"
            local iconPath = icon ~= "" and icon or (tech.icon and tech.icon.sprite or nil)

            -- Формирование строки необходимых исследований
            local prerequisites = ""
            if tech.technologyPrerequisites and #tech.technologyPrerequisites > 0 then
                prerequisites = '<ul>'
                for _, prerequisiteId in ipairs(tech.technologyPrerequisites) do
                    if prerequisiteId and prerequisiteId ~= "" then 
                        -- Находим название исследования по ID
                        local prerequisiteName = ""
                        for _, research in ipairs(dataCache) do
                            if research and research.id == prerequisiteId then
                                prerequisiteName = research.name
                                break
                            end
                        end

                        -- Если название найдено, выводим его
                        if prerequisiteName ~= "" then
                            prerequisites = prerequisites .. '<li>{{#invoke:Ftl|main|translation|'.. prerequisiteName .. '}}</li>'
                        end
                    end
                end
                prerequisites = prerequisites .. '</ul>'
            end

            -- Формирование строки открываемых исследований
			local unlocks = ""
			if tech.recipeUnlocks and #tech.recipeUnlocks > 0 then
			    unlocks = '<ul>'
			    for _, recipeId in ipairs(tech.recipeUnlocks) do
			        if recipeId and recipeId ~= "" then 
			            -- Ищем в recipeData объект с id == recipeId
			            local newId = recipeId
			            for _, rec in ipairs(recipeData) do
			                if rec and rec.id == recipeId then
			                    newId = rec.result or recipeId
			                    break
			                end
			            end
			
			            unlocks = unlocks .. '<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' 
			                .. newId .. '.png|' .. newId 
			                .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' 
			                .. newId .. '}}</li>'
			        end
			    end
			    unlocks = unlocks .. '</ul>'
			end

            -- Шаблон для отображения блока исследования
            local templateArgs = {
                id = tech.id,
                icon = iconPath,
                name = tech.name,
                discipline = tech.discipline,
                tier = tech.tier,
                tierColor = tierColor,
                disciplineName = disciplineName, 
                cost = tech.cost,
                unlocks = unlocks
            }

            -- Добавление prerequisites только если он существует
            if prerequisites ~= "" then
                templateArgs.prerequisites = prerequisites
            end

            out = out .. frame:expandTemplate({
                title = 'Prototypes/Механика/Исследование',
                args = templateArgs
            })
		end
        return mw.getCurrentFrame():preprocess(out)
    else
        return '<div style="color:red;">Не указан ID исследования.</div>'
    end
end

return p