Модуль:Обжиг — различия между версиями
Материал из Hilarious Wiki
MailGik (обсуждение | вклад) |
MailGik (обсуждение | вклад) |
||
Строка 1: | Строка 1: | ||
local p = {} | local p = {} | ||
+ | local slot = require( [[Модуль:Инвентарный слот]] ) | ||
+ | local getParts = slot.getParts | ||
+ | local prefixes = slot.prefixes | ||
+ | |||
+ | -- Сервисная функция | ||
+ | local function prefixedLink( name, mod ) | ||
+ | local prefix = '' | ||
+ | for _, thisPrefix in pairs( prefixes ) do | ||
+ | if mw.ustring.find(name, '^' .. thisPrefix .. ' ' ) then | ||
+ | prefix = thisPrefix .. ' ' | ||
+ | name = mw.ustring.gsub(name, '^' .. prefix, '' ) | ||
+ | break | ||
+ | end | ||
+ | end | ||
+ | |||
+ | local page = '' | ||
+ | if mod and mod ~= '' then | ||
+ | page = mod .. '/' | ||
+ | end | ||
+ | |||
+ | return prefix .. '[[' .. page .. name .. '|' .. name .. ']]' | ||
+ | end | ||
+ | |||
function p.table( f ) | function p.table( f ) | ||
local args = f | local args = f | ||
if f == mw.getCurrentFrame() then | if f == mw.getCurrentFrame() then | ||
− | args = | + | args = require( 'Модуль:ProcessArgs' ).merge() |
else | else | ||
f = mw.getCurrentFrame() | f = mw.getCurrentFrame() | ||
end | end | ||
− | |||
-- Начинать таблицу при необходимости | -- Начинать таблицу при необходимости | ||
Строка 54: | Строка 76: | ||
end | end | ||
local process = ' [[Обжиг|Процесс]]' | local process = ' [[Обжиг|Процесс]]' | ||
− | if args["Прогресс"] and args[" | + | if args["Прогресс"] and args["Мод"] then |
− | process=' Процесс | + | process=' Процесс' |
end | end | ||
header = table.concat( { | header = table.concat( { | ||
Строка 68: | Строка 90: | ||
local fuel = args["топливо"] or '' | local fuel = args["топливо"] or '' | ||
if fuel == '' then | if fuel == '' then | ||
− | fuel = 'Любое топливо' | + | fuel = 'v:Любое топливо' |
end | end | ||
-- Ячейка с названием | -- Ячейка с названием | ||
local nameCell | local nameCell | ||
− | if args["название"] or '' ~= '' then | + | if f:callParserFunction( '#dplvar', 'smeltingname' ) == '1' then |
− | + | if args["название"] or '' ~= '' then | |
− | + | nameCell = args["название"] | |
− | + | else | |
− | + | local names = {} | |
− | + | local links = {} | |
− | + | for v in mw.text.gsplit( args[2] or '', '%s*;%s*' ) do | |
− | + | parts = getParts( v, args["Мод"] ) | |
− | + | parts["мод"] = parts["мод"] or '' | |
− | + | if not names[parts["мод"] .. ':' .. parts.name] then | |
− | + | table.insert( links, prefixedLink( parts.name, parts["мод"] ) ) | |
+ | names[parts["мод"] .. ':' .. parts.name] = 1 | ||
end | end | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
end | end | ||
+ | |||
+ | nameCell = table.concat( links, ' или<br>' ) | ||
end | end | ||
− | |||
− | |||
end | end | ||
Строка 115: | Строка 131: | ||
end | end | ||
for item in mw.text.gsplit( v, '%s*;%s*' ) do | for item in mw.text.gsplit( v, '%s*;%s*' ) do | ||
− | local parts = getParts( item ) | + | local parts = getParts( item, args["Мод"] ) |
if parts.name ~= '' and not ingredients[parts.name] and ( k == 2 or k == 1 and v ~= fuel ) then | if parts.name ~= '' and not ingredients[parts.name] and ( k == 2 or k == 1 and v ~= fuel ) then | ||
local link = '' | local link = '' | ||
Строка 127: | Строка 143: | ||
if parts.name:find( '^Люб' ) then | if parts.name:find( '^Люб' ) then | ||
+ | if parts["мод"] then | ||
+ | link = parts["мод"] .. '/' .. mw.ustring.gsub( mw.ustring.sub( parts.name, 7 ), "^%l", mw.ustring.upper ) .. '|' | ||
+ | end | ||
table.insert( ingredientsCell, separator .. mw.ustring.sub( parts.name, 0, 6 ) .. '[[' .. link .. mw.ustring.sub( parts.name, 6 ) .. ']]' ) | table.insert( ingredientsCell, separator .. mw.ustring.sub( parts.name, 0, 6 ) .. '[[' .. link .. mw.ustring.sub( parts.name, 6 ) .. ']]' ) | ||
else | else | ||
Строка 142: | Строка 161: | ||
-- Остальные аргументы | -- Остальные аргументы | ||
− | + | local newArgs = { | |
["Ресурс"] = args[1], | ["Ресурс"] = args[1], | ||
["Выход"] = args[2], | ["Выход"] = args[2], | ||
Строка 152: | Строка 171: | ||
["Прогресс"] = args["Прогресс"], | ["Прогресс"] = args["Прогресс"], | ||
["Расход"] = args["Расход"] | ["Расход"] = args["Расход"] | ||
− | + | } | |
− | |||
− | |||
-- Ячейка с рецептом | -- Ячейка с рецептом |
Версия 22:51, 14 августа 2016
Этот модуль реализует {{обжиг}}.
Зависимости
Смотрите также
Расположенная выше документация включена из Модуль:Обжиг/док.
local p = {}
local slot = require( [[Модуль:Инвентарный слот]] )
local getParts = slot.getParts
local prefixes = slot.prefixes
-- Сервисная функция
local function prefixedLink( name, mod )
local prefix = ''
for _, thisPrefix in pairs( prefixes ) do
if mw.ustring.find(name, '^' .. thisPrefix .. ' ' ) then
prefix = thisPrefix .. ' '
name = mw.ustring.gsub(name, '^' .. prefix, '' )
break
end
end
local page = ''
if mod and mod ~= '' then
page = mod .. '/'
end
return prefix .. '[[' .. page .. name .. '|' .. name .. ']]'
end
function p.table( f )
local args = f
if f == mw.getCurrentFrame() then
args = require( 'Модуль:ProcessArgs' ).merge()
else
f = mw.getCurrentFrame()
end
-- Начинать таблицу при необходимости
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
local process = ' [[Обжиг|Процесс]]'
if args["Прогресс"] and args["Мод"] then
process=' Процесс'
end
header = table.concat( {
' {| class="wikitable ' .. class .. '" data-description="Процесс"',
'! ' .. name .. 'Ингредиенты !! ' .. recipeClass .. process .. 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 = 'v:Любое топливо'
end
-- Ячейка с названием
local nameCell
if f:callParserFunction( '#dplvar', 'smeltingname' ) == '1' then
if args["название"] or '' ~= '' then
nameCell = args["название"]
else
local names = {}
local links = {}
for v in mw.text.gsplit( args[2] or '', '%s*;%s*' ) do
parts = getParts( v, args["Мод"] )
parts["мод"] = parts["мод"] or ''
if not names[parts["мод"] .. ':' .. parts.name] then
table.insert( links, prefixedLink( parts.name, parts["мод"] ) )
names[parts["мод"] .. ':' .. parts.name] = 1
end
end
nameCell = table.concat( links, ' или<br>' )
end
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 = ' +<br>\n'
end
for item in mw.text.gsplit( v, '%s*;%s*' ) do
local parts = getParts( item, args["Мод"] )
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 = ' или<br>\n'
end
if parts["мод"] then
link = parts["мод"] .. '/' .. parts.name .. '|'
end
if parts.name:find( '^Люб' ) then
if parts["мод"] then
link = parts["мод"] .. '/' .. mw.ustring.gsub( mw.ustring.sub( parts.name, 7 ), "^%l", mw.ustring.upper ) .. '|'
end
table.insert( ingredientsCell, separator .. mw.ustring.sub( parts.name, 0, 6 ) .. '[[' .. link .. mw.ustring.sub( parts.name, 6 ) .. ']]' )
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["тНазв"],
["Мод"] = 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