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

Материал из Space Station 14 Вики
мНет описания правки
мНет описания правки
Строка 3: Строка 3:
-- Функция для загрузки данных исследований из JSON-файла
-- Функция для загрузки данных исследований из JSON-файла
local function loadResearchData()
local function loadResearchData()
    return mw.text.jsonDecode(mw.title.new("User:IanComradeBot/research_prototypes.json"):getContent())
return mw.text.jsonDecode(mw.title.new("User:IanComradeBot/research_prototypes.json"):getContent())
end
end


-- Функция для поиска исследования по ID
-- Функция для поиска исследования по ID
local function findResearchById(dataCache, id)
local function findResearchById(dataCache, id)
    for _, research in ipairs(dataCache) do
for _, research in ipairs(dataCache) do
        if research.id == id then
if research.id == id then
            return research
return research
        end
end
    end
end
    return nil
return nil
end
end


Строка 21: Строка 21:
-- Функция для перевода ID плат в ID машин
-- Функция для перевода ID плат в ID машин
local function translateBoardIDToMachineID(boardID)
local function translateBoardIDToMachineID(boardID)
    if machineIDCache[boardID] then
if machineIDCache[boardID] then
        return machineIDCache[boardID]
return machineIDCache[boardID]
    end
end


    local data = mw.text.jsonDecode(mw.title.new("User:IanComradeBot/entity_prototypes.json"):getContent())
local data = mw.text.jsonDecode(mw.title.new("User:IanComradeBot/entity_prototypes.json"):getContent())
    local board = data[boardID]
local board = data[boardID]
    if not board or not board.name then
if not board or not board.name then
        return nil
return nil
    end
end


    if not board.name:find("%(машинная плата%)") and not board.name:find("%(консольная плата%)") then
if not board.name:find("%(машинная плата%)") and not board.name:find("%(консольная плата%)") then
        return nil
return nil
    end
end


    local machineName = board.name:gsub(" %(машинная плата%)", ""):gsub(" %(консольная плата%)", "")
local machineName = board.name:gsub(" %(машинная плата%)", ""):gsub(" %(консольная плата%)", "")
    local excludeWords = {"Unanchored", "Debug", "Admin", "Enabled"}
local excludeWords = {"Unanchored", "Debug", "Admin", "Enabled"}


    for _, entity in pairs(data) do
for _, entity in pairs(data) do
        if entity.name == machineName then
if entity.name == machineName then
            local shouldExclude = false
local shouldExclude = false
            for _, word in ipairs(excludeWords) do
for _, word in ipairs(excludeWords) do
                if entity.id:find(word) then
if entity.id:find(word) then
                    shouldExclude = true
shouldExclude = true
                    break
break
                end
end
            end
end


            if not shouldExclude then
if not shouldExclude then
                machineIDCache[boardID] = entity.id
machineIDCache[boardID] = entity.id
                return entity.id
return entity.id
            end
end
        end
end
    end
end


    return nil
return nil
end
end


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


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


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


    local dataCache = loadResearchData()
local dataCache = loadResearchData()
    local id = frame.args.id or ""
local id = frame.args.id or ""
    local icon = frame.args.icon or ""
local icon = frame.args.icon or ""


    -- Получение кастомных рецептов
-- Получение кастомных рецептов
    local customRecipeUnlocks = {}
local customRecipeUnlocks = {}
    for i = 1, 10 do
if frame.args.customRecipeUnlocks then
        local customRecipe = frame.args["customRecipeUnlocksIndex" .. i]
-- Разделяем на несколько значений, если они переданы через пробел
        if customRecipe then
customRecipeUnlocks = mw.text.split(frame.args.customRecipeUnlocks, " ")
            table.insert(customRecipeUnlocks, customRecipe)
end
        end
    end


    local tech = findResearchById(dataCache, id)
local tech = findResearchById(dataCache, id)
    if not tech then
if not tech then
        return cssLink .. '<div style="color:red;">Исследование с ID "' .. id .. '" не найдено.</div>'
return cssLink .. '<div style="color:red;">Исследование с ID "' .. id .. '" не найдено.</div>'
    end
end


    local disciplineName = disciplineMapping[tech.discipline] or "Неизвестная дисциплина"
local disciplineName = disciplineMapping[tech.discipline] or "Неизвестная дисциплина"
    local tierColor = tierColors[tech.tier] or "#FFFFFF"
local tierColor = tierColors[tech.tier] or "#FFFFFF"


    local out = cssLink .. '<div class="research" id="' .. tech.discipline .. '">'
local out = cssLink .. '<div class="research" id="' .. tech.discipline .. '">'
    out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64x64px|центр|link=]]</div>'
out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64x64px|центр|link=]]</div>'
    out = out .. '<div class="research__name">' .. tech.name .. '[[Файл:' .. tech.discipline .. '.png|16px|link=]]</div>'
out = out .. '<div class="research__name">' .. tech.name .. '[[Файл:' .. tech.discipline .. '.png|16px|link=]]</div>'
    out = out .. '<div class="research__type">'
out = out .. '<div class="research__type">'
    out = out .. '<div>Уровень: <span style="color:' .. tierColor .. ';">' .. tech.tier .. '</span></div>'
out = out .. '<div>Уровень: <span style="color:' .. tierColor .. ';">' .. tech.tier .. '</span></div>'
    out = out .. '<div class="research__technology">' .. disciplineName .. '</div>'
out = out .. '<div class="research__technology">' .. disciplineName .. '</div>'
    out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. tech.cost .. '</span></div>'
out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. tech.cost .. '</span></div>'
    out = out .. '</div>'
out = out .. '</div>'
    out = out .. '<div class="research__unblocks">Разблокирует:'
out = out .. '<div class="research__unblocks">Разблокирует:'
    out = out .. '<ul>'
out = out .. '<ul>'


    -- Использование кастомных или стандартных рецептов
-- Используем кастомные рецепты, если они есть
    local recipeUnlocks = #customRecipeUnlocks > 0 and customRecipeUnlocks or tech.recipeUnlocks
local recipeUnlocks = customRecipeUnlocks
    for _, recipe in ipairs(recipeUnlocks) do
if #customRecipeUnlocks == 0 then
        local machineID = translateBoardIDToMachineID(recipe) or recipe
-- Если кастомных рецептов нет, используем стандартные из JSON
        out = out .. frame:preprocess('<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. machineID .. '.png|' .. machineID .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. machineID .. '}}</li>')
recipeUnlocks = tech.recipeUnlocks
    end
end


    out = out .. '</ul>'
for _, recipe in ipairs(recipeUnlocks) do
    out = out .. '</div>'
local machineID = translateBoardIDToMachineID(recipe) or recipe
    out = out .. '</div>'
out = out .. frame:preprocess('<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. machineID .. '.png|' .. machineID .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. machineID .. '}}</li>')
end


    return out
out = out .. '</ul>'
out = out .. '</div>'
out = out .. '</div>'
 
return out
end
end


return p
return p

Версия от 12:10, 21 ноября 2024

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

local p = {}

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

-- Функция для поиска исследования по ID
local function findResearchById(dataCache, id)
	for _, research in ipairs(dataCache) do
		if research.id == id then
			return research
		end
	end
	return nil
end

-- Кэш для ID машин
local machineIDCache = {}

-- Функция для перевода ID плат в ID машин
local function translateBoardIDToMachineID(boardID)
	if machineIDCache[boardID] then
		return machineIDCache[boardID]
	end

	local data = mw.text.jsonDecode(mw.title.new("User:IanComradeBot/entity_prototypes.json"):getContent())
	local board = data[boardID]
	if not board or not board.name then
		return nil
	end

	if not board.name:find("%(машинная плата%)") and not board.name:find("%(консольная плата%)") then
		return nil
	end

	local machineName = board.name:gsub(" %(машинная плата%)", ""):gsub(" %(консольная плата%)", "")
	local excludeWords = {"Unanchored", "Debug", "Admin", "Enabled"}

	for _, entity in pairs(data) do
		if entity.name == machineName then
			local shouldExclude = false
			for _, word in ipairs(excludeWords) do
				if entity.id:find(word) then
					shouldExclude = true
					break
				end
			end

			if not shouldExclude then
				machineIDCache[boardID] = entity.id
				return entity.id
			end
		end
	end

	return nil
end

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

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

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

	local dataCache = loadResearchData()
	local id = frame.args.id or ""
	local icon = frame.args.icon or ""

	-- Получение кастомных рецептов
	local customRecipeUnlocks = {}
	if frame.args.customRecipeUnlocks then
		-- Разделяем на несколько значений, если они переданы через пробел
		customRecipeUnlocks = mw.text.split(frame.args.customRecipeUnlocks, " ")
	end

	local tech = findResearchById(dataCache, id)
	if not tech then
		return cssLink .. '<div style="color:red;">Исследование с ID "' .. id .. '" не найдено.</div>'
	end

	local disciplineName = disciplineMapping[tech.discipline] or "Неизвестная дисциплина"
	local tierColor = tierColors[tech.tier] or "#FFFFFF"

	local out = cssLink .. '<div class="research" id="' .. tech.discipline .. '">'
	out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64x64px|центр|link=]]</div>'
	out = out .. '<div class="research__name">' .. tech.name .. '[[Файл:' .. tech.discipline .. '.png|16px|link=]]</div>'
	out = out .. '<div class="research__type">'
	out = out .. '<div>Уровень: <span style="color:' .. tierColor .. ';">' .. tech.tier .. '</span></div>'
	out = out .. '<div class="research__technology">' .. disciplineName .. '</div>'
	out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. tech.cost .. '</span></div>'
	out = out .. '</div>'
	out = out .. '<div class="research__unblocks">Разблокирует:'
	out = out .. '<ul>'

	-- Используем кастомные рецепты, если они есть
	local recipeUnlocks = customRecipeUnlocks
	if #customRecipeUnlocks == 0 then
		-- Если кастомных рецептов нет, используем стандартные из JSON
		recipeUnlocks = tech.recipeUnlocks
	end

	for _, recipe in ipairs(recipeUnlocks) do
		local machineID = translateBoardIDToMachineID(recipe) or recipe
		out = out .. frame:preprocess('<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. machineID .. '.png|' .. machineID .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. machineID .. '}}</li>')
	end

	out = out .. '</ul>'
	out = out .. '</div>'
	out = out .. '</div>'

	return out
end

return p