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

Материал из Space Station 14 Вики
мНет описания правки
мНет описания правки
 
(не показано 20 промежуточных версий этого же участника)
Строка 1: Строка 1:
local p = {}
local p = {}
-- Функция для загрузки данных плат из JSON-файла
local function loadData()
return mw.text.jsonDecode(mw.title.new("User:IanComradeBot/entity_prototypes.json"):getContent())
end


-- Функция для загрузки данных исследований из JSON-файла
-- Функция для загрузки данных исследований из JSON-файла
Строка 11: Строка 6:
end
end


-- Функция для перевода ID плат в ID машин без кэширования
-- Функция для поиска исследования по 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)
local function translateBoardIDToMachineID(boardID)
-- Загруза данных плат
if machineIDCache[boardID] then
local data = loadData()
return machineIDCache[boardID]
end


-- Поиск платы по ID
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
Строка 22: Строка 31:
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
Строка 45: Строка 49:


if not shouldExclude then
if not shouldExclude then
machineIDCache[boardID] = entity.id
return entity.id
return entity.id
end
end
Строка 52: Строка 57:
return nil
return nil
end
end
-- Таблица для перевода названий дисциплин
local disciplineMapping = {
Arsenal = "Арсенал",
Industrial = "Промышленность",
Experimental = "Экспериментальное",
CivilianServices = "Обслуживание персонала"
}
-- Таблица для цветов по уровню
local tierColors = {
[1] = "#54d554",
[2] = "#ed9000",
[3] = "#d72a2a"
}


function p.main(frame)
function p.main(frame)
Строка 59: Строка 79:
})
})


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 = frame.args.customRecipeUnlocks or nil


-- Обработка индексов для замены рецептов
-- Получение кастомных рецептов с индексами (если они есть)
local customRecipeUnlocksIndexes = {}
local customRecipeUnlocks = {}
local i = 1
for i = 1, 100 do  
local indexKey = "customRecipeUnlocksIndex" .. i
while true do
if frame.args[indexKey] then
local customIndex = frame.args["customRecipeUnlocksIndex" .. i]
table.insert(customRecipeUnlocks, frame.args[indexKey])
if not customIndex then
break
end
end
table.insert(customRecipeUnlocksIndexes, {index = i, recipe = customIndex})
i = i + 1  -- Увеличиваем индекс
end
end


-- Получение кастомных рецептов без индексации
if frame.args.customRecipeUnlocks then
local tempUnlocks = mw.text.split(frame.args.customRecipeUnlocks, " ")
for _, item in ipairs(tempUnlocks) do
table.insert(customRecipeUnlocks, item)
end
end


-- Загружаем данные исследований
local tech = findResearchById(dataCache, id)
local data = loadResearchData()
if not tech then
return cssLink .. '<div style="color:red;">Исследование с ID "' .. id .. '" не найдено.</div>'
end


local out = cssLink
local disciplineName = disciplineMapping[tech.discipline] or "Неизвестное исследование"
local found = false
local tierColor = tierColors[tech.tier] or "#FFFFFF"
local disciplineName = ""


-- Определение дисциплины и отображение исследований
-- Блок данных
for discipline, technologies in pairs(data) do
local out = cssLink .. '<div class="research" id="' .. tech.discipline .. '">'
for _, tech in ipairs(technologies) do
out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64x64px|центр|link=]]</div>'
if tech.id == id then
out = out .. '<div class="research__name">' .. tech.name .. '[[Файл:' .. tech.discipline .. '.png|16px|link=]]</div>'
found = true
out = out .. '<div class="research__type">'
disciplineName = ({
out = out .. '<div>Уровень: <span style="color:' .. tierColor .. ';">' .. tech.tier .. '</span></div>'
Arsenal = "Арсенал",
out = out .. '<div class="research__technology">' .. disciplineName .. '</div>'
Industrial = "Промышленность",
out = out .. '<div>Стоимость: <span style="color:#DA70D6;">' .. tech.cost .. '</span></div>'
Experimental = "Экспериментальное",
out = out .. '</div>'
CivilianServices = "Обслуживание персонала"
out = out .. '<div class="research__technologies">'
})[discipline]


local tierColor = ({
-- Блок необходимых технологий для открытия исследования
[1] = "#54d554",
if tech.technologyPrerequisites and #tech.technologyPrerequisites > 0 then
[2] = "#ed9000",
out = out .. '<div class="research__technologies-prerequisites">Необходимые исследования:'
[3] = "#d72a2a"
})[tech.tier]
for _, prerequisiteId in ipairs(tech.technologyPrerequisites) do
local prerequisiteTech = findResearchById(dataCache, prerequisiteId)
out = out .. '<span> ' .. prerequisiteTech.name .. '</span>'
end
out = out .. '</div>'
end


out = out .. '<div class="research" id="' .. discipline .. '">'
-- Блок открываемых технологий
out = out .. '<div class="research__images">[[Файл:' .. icon .. '.png|64x64px|центр|link=]]</div>'
out = out .. '<div class="research__technologies-unblocks">Разблокирует:'
out = out .. '<div class="research__name">' .. tech.name .. '[[Файл:' .. discipline .. '.png|16px|link=]]</div>'
out = out .. '<ul>'
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>'


-- Используем кастомные recipeUnlocks или значения из json файла
local recipeUnlocks = customRecipeUnlocks
local recipeUnlocks = customRecipeUnlocks and mw.text.split(customRecipeUnlocks, " ") or tech.recipeUnlocks
if #customRecipeUnlocks == 0 then
recipeUnlocks = tech.recipeUnlocks
end


-- Замена рецептов по индексам
for _, recipe in ipairs(recipeUnlocks) do
for _, customIndex in ipairs(customRecipeUnlocksIndexes) do
local machineID = translateBoardIDToMachineID(recipe) or recipe
if recipeUnlocks[customIndex.index] then
out = out .. frame:preprocess('<li>{{#invoke:Entity Lookup|createimagetooltip|Файл:' .. machineID .. '.png|' .. machineID .. '|Мета=32x32px,link=}} {{#invoke:Entity Lookup|getname|' .. machineID .. '}}</li>')
recipeUnlocks[customIndex.index] = customIndex.recipe
end
end
end


for _, recipe in ipairs(recipeUnlocks) do
out = out .. '</ul>'
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>')
out = out .. '</div>'
end
out = out .. '</div>'
 
out = out .. '</ul>'
out = out .. '</div>'
out = out .. '</div>'
end
end
end
 
if not found then
out = out .. '<div style="color:red;">Нет доступных исследований.</div>'
end


return out
return out

Текущая версия от 13:38, 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 = {}
	for i = 1, 100 do 
		local indexKey = "customRecipeUnlocksIndex" .. i
		if frame.args[indexKey] then
			table.insert(customRecipeUnlocks, frame.args[indexKey])
		end
	end

	-- Получение кастомных рецептов без индексации
	if frame.args.customRecipeUnlocks then
		local tempUnlocks = mw.text.split(frame.args.customRecipeUnlocks, " ")
		for _, item in ipairs(tempUnlocks) do
			table.insert(customRecipeUnlocks, item)
		end
	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__technologies">'

	-- Блок необходимых технологий для открытия исследования
	if tech.technologyPrerequisites and #tech.technologyPrerequisites > 0 then
		out = out .. '<div class="research__technologies-prerequisites">Необходимые исследования:'
		
		for _, prerequisiteId in ipairs(tech.technologyPrerequisites) do
			local prerequisiteTech = findResearchById(dataCache, prerequisiteId)
			
			out = out .. '<span> ' .. prerequisiteTech.name .. '</span>'
		end
	
		out = out .. '</div>'
	end

	-- Блок открываемых технологий
	out = out .. '<div class="research__technologies-unblocks">Разблокирует:'
	out = out .. '<ul>'

	local recipeUnlocks = customRecipeUnlocks
	if #customRecipeUnlocks == 0 then
		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>'
	out = out .. '</div>'

	return out
end

return p