Warning.png

Поддержка Wiki прекращена, она доступна в режиме архива. Информация в ней устарела и может быть неактуальной.

Изменения

Перейти к: навигация, поиск

Модуль:Обжиг

5420 байтов добавлено, 11:35, 12 августа 2016
Новая страница: «local p = {} function p.table( f ) local args = f if f == mw.getCurrentFrame() then args = f:getParent().args else f = mw.getCurrentFrame() end local get…»
local p = {}
function p.table( f )
local args = f
if f == mw.getCurrentFrame() then
args = f:getParent().args
else
f = mw.getCurrentFrame()
end
local getParts = require( 'Модуль:Инвентарный слот' ).getParts

-- Начинать таблицу при необходимости
local multirow = f:callParserFunction( '#dplvar', 'multirow' )
if multirow ~= '1' then
multirow = nil
end
local head = args["глава"] or ''
if multirow then
head = ''
elseif head ~= '' then
multirow = 1
f:callParserFunction( '#dplvar:set', 'multirow', '1' )
else
head = 1
end

-- Заканчивать таблицу при необходимости
local foot = args["подвал"] or ''
if multirow then
if foot ~= '' then
multirow = nil
f:callParserFunction( '#dplvar:set', 'multirow', '0' )
end
else
foot = 1
end

local header = ''
if head ~= '' then
local name = ''
local description = ''
if args["показатьимя"] == '1' or multirow and args["показатьимя"] ~= '0' then
name = 'Название !! '
f:callParserFunction( '#dplvar:set', 'smeltingname', '1' )
end
if args["показатьописание"] == '1' then
description = ' !! class="unsortable" | Описание'
f:callParserFunction( '#dplvar:set', 'smeltingdescription', '1' )
end
local class = args["класс"] or ''
local recipeClass = ''
if multirow then
class = 'sortable collapsible ' .. class
recipeClass = 'class="unsortable" |'
end
header = table.concat( {
' {| class="wikitable ' .. class .. '" data-description="Рецепты плавки"',
'! ' .. name .. 'Ингредиенты !! ' .. recipeClass .. ' Рецепты [[Обжиг|плавки]]' .. description,
'|-'
}, '\n' )
end

local input = mw.text.trim( args[1] or '' )
local output = mw.text.trim( args[2] or '' )
local fuel = args["топливо"] or ''
if fuel == '' then
fuel = 'Любое топливо'
end

-- Ячейка с названием
local nameCell
if args["название"] or '' ~= '' then
nameCell = args["название"]
elseif multirow or f:callParserFunction( '#dplvar', 'smeltingname' ) == '1' then
local names = {}
local links = {}
for v in mw.text.gsplit( args["выход"] or '', '%s*;%s*' ) do
parts = getParts( v )
if not names[( parts.mod or '' ) .. parts.name] then
local link = ''
if parts.mod then
link = parts.mod .. '/' .. parts.name .. '|'
end

if parts.name:find( ' ' ) then
table.insert( links, 'Любое [[' .. link .. parts.name:sub( 4 ) .. ']]' )
else
table.insert( links, '[[' .. link .. parts.name .. ']]' )
end
names[( parts.mod or '' ) .. parts.name] = 1
end
end

nameCell = table.concat( links, '&nbsp;или<br>' )
end

if nameCell and args["запланированное"] then
nameCell = nameCell .. '<br>([[' .. args["запланированное"] .. ']])'
end

-- Ингредиенты с ячейкой
local ingredientsCell
if args["ингредиенты"] or '' ~= '' then
ingredientsCell = args["ингредиенты"]
else
ingredientsCell = {}
local ingredients = {}
for k, v in ipairs{ input, fuel } do
local separator = ''
if k == 2 and next( ingredients ) then
separator = '&nbsp;+<br>\n'
end
for item in mw.text.gsplit( v, '%s*;%s*' ) do
local parts = getParts( item )
if parts.name ~= '' and not ingredients[parts.name] and ( k == 2 or k == 1 and v ~= fuel ) then
local link = ''
if separator == '' and next( ingredients ) then
separator = '&nbsp;или<br>\n'
end

if parts.mod then
link = parts.mod .. '/' .. parts.name .. '|'
end

if parts.name:find( ' ' ) then
table.insert( ingredientsCell, separator .. 'Любое [[' .. link .. parts.name:sub( 4 ) .. ']]' )
else
table.insert( ingredientsCell, separator .. '[[' .. link .. parts.name .. ']]' )
end
separator = ''

ingredients[parts.name] = 1
end
end
end

ingredientsCell = table.concat( ingredientsCell )
end

-- Остальные аргументы
local newArgs = {
["Ресурс"] = args[1],
["Выход"] = args[2],
["Топливо"] = fuel,
["РНазв"] = args["рНазв"],
["ВНазв"] = args["вНазв"],
["ТНазв"] = args["тНазв"]
}

-- Ячейка с рецептом
local recipeCell = require( 'Модуль:Интерфейс' ).furnace( newArgs )

local row = {
'\n' .. ingredientsCell,
'style="padding:1px" |\n' .. recipeCell
}
if nameCell then
table.insert( row, 1, nameCell )
end
if f:callParserFunction( '#dplvar', 'smeltingdescription' ) == '1' then
table.insert( row, args["описание"] or '' )
end
row = table.concat( row, '\n|' )

if nameCell then
row = '!\n' .. row
else
row = '|\n' .. row
end

local footer = ''
if foot ~= '' then
footer = '|}'
f:callParserFunction( '#dplvar:set', 'smeltingname', '0', 'smeltingdescription', '0' )
end

local title = mw.title.getCurrentTitle()
local category = ''
if args["запланированное"] and args["некат"] ~= '1' and title.namespace == 0 and not title.isSubpage then
category = '[[Категория:Запланированное]]'
end

return header .. '\n' .. row .. '\n|-\n' .. footer .. category
end
return p

Навигация