Модуль:TableOfChemicals: различия между версиями
Материал из Space Station 14 Вики
мНет описания правки |
мНет описания правки |
||
Строка 15: | Строка 15: | ||
if group == nil or chemPrototype.group == group then | if group == nil or chemPrototype.group == group then | ||
templateArgs.id = chemPrototype.id | |||
templateArgs.name = chemPrototype.name | templateArgs.name = chemPrototype.name | ||
templateArgs.description = chemPrototype.desc .. " На вид " .. chemPrototype.physicalDesc .. "." | templateArgs.description = chemPrototype.desc .. " На вид " .. chemPrototype.physicalDesc .. "." | ||
templateArgs.recipes_count = tablelength(chemPrototype.recipes) | templateArgs.recipes_count = tablelength(chemPrototype.recipes) | ||
Строка 62: | Строка 62: | ||
p.fillEffectsTable = function(frame) | p.fillEffectsTable = function(frame) | ||
local | local chemPrototypeId = frame.args.id | ||
local out = "{|" -- Объявление таблицы (Условие | Эффект) | local out = "{|" -- Объявление таблицы (Условие | Эффект) | ||
local rowTemplate = "|-\n| %s || %s" -- Шаблон строки таблицы | local rowTemplate = "|-\n| %s || %s" -- Шаблон строки таблицы | ||
local effects = getEffects(chemPrototypeId) | |||
for _, effect in pairs(effects) do | for _, effect in pairs(effects) do | ||
Строка 77: | Строка 79: | ||
end | end | ||
function getEffects( | function getEffects(chemPrototypeId) | ||
local effects = {} | local effects = {} |
Версия от 20:48, 24 апреля 2024
Для документации этого модуля может быть создана страница Модуль:TableOfChemicals/doc
p = {}
local prototypes = mw.loadData("Module:Chemistry Lookup/data")
p.chem = prototypes.chem
p.react = prototypes.react
p.fillTable = function(frame)
local out = {}
local out = ""
local group = frame.args.group
local templateArgs = {}
for _, chemPrototype in pairs(p.chem) do
if group == nil or chemPrototype.group == group then
templateArgs.id = chemPrototype.id
templateArgs.name = chemPrototype.name
templateArgs.description = chemPrototype.desc .. " На вид " .. chemPrototype.physicalDesc .. "."
templateArgs.recipes_count = tablelength(chemPrototype.recipes)
local firstReact = true
for _, reactId in pairs(chemPrototype.recipes) do
local reactPrototype = p.react[reactId]
local reactants = {}
for reactantId, reactantValue in pairs(reactPrototype.reactants) do
local reactantChemData = p.chem[reactantId]
local reactantText = reactantValue.amount .. " " .. reactantChemData.name
table.insert(reactants, reactantText)
end
templateArgs.reactants = table.concat(reactants, "<br>")
local products = {}
for productId, productAmount in pairs(reactPrototype.products) do
local productChemData = p.chem[productId]
local productText = productAmount .. " " .. productChemData.name
table.insert(products, productText)
end
templateArgs.products = table.concat(products, "<br>")
templateArgs.action = "смешать"
local template = "Строка_химического_вещества"
if firstReact then
template = "Первая_строка_химического_вещества"
firstReact = false
end
out = out .. frame:expandTemplate{ title = template, args = templateArgs}
end
end
end
return out
end
p.fillEffectsTable = function(frame)
local chemPrototypeId = frame.args.id
local out = "{|" -- Объявление таблицы (Условие | Эффект)
local rowTemplate = "|-\n| %s || %s" -- Шаблон строки таблицы
local effects = getEffects(chemPrototypeId)
for _, effect in pairs(effects) do
out = attachAsNewLine(out, string.format(rowTemplate, effect.condition, effect.effect))
end
out = attachAsNewLine(out, "|}") -- Конец таблицы
mw.log(out)
return out
end
function getEffects(chemPrototypeId)
local effects = {}
local effect = {}
effect.condition = "Быть в баньке"
effect.effect = "+9 к хилке"
table.insert(effects, effect)
local effect = {}
effect.condition = "Счастье"
effect.effect = "+99 к недпоониманию окружающих"
table.insert(effects, effect)
return effects
end
function tablelength(T)
local count = 0
for _ in pairs(T) do count = count + 1 end
return count
end
function attachAsNewLine(originalStr, joinStr)
return originalStr .. "\n" .. joinStr
end
return p