Module:Crafting: Difference between revisions

From Vintage Story Wiki
mNo edit summary
mNo edit summary
Line 35: Line 35:
local hCells = ''
local hCells = ''
for i,v in pairs(cells) do
for i,v in pairs(cells) do
local item
local item, link, image
local image
if _G.args[v] then
if _G.args[v] then
item, image = p.ingredient(_G.args[v])
item, link, image = p.ingredient(_G.args[v])
table.insert(ingredients, item)
table.insert(ingredients, item)
end
end
local str = frame:expandTemplate{title = 'Item cell', args = {i, image, _G.args[v], _G.args[v .. '_alt']} }
local str = frame:expandTemplate{title = 'Item cell', args = {i, image, link, _G.args[v .. '_alt']} }
hCells = hCells .. str
hCells = hCells .. str
end
end

Revision as of 04:22, 23 August 2022

Documentation for this module may be created at Module:Crafting/doc

local p = {}

local lang = mw.getContentLanguage():getCode()
local langVars = require( 'Module:LangVars' )
local i18n = langVars.processLang(lang)

function p.ingredient( str )
	local ingredient, link = ''
	local image = str
	local split = {}
	
	-- Checks for localized 'Any' and links to appropriate page
	if str:match(i18n.any .. '%s(.*)') then
		split = str:match(i18n.any .. '%s(.*)')
		link, image = langVars.link(split)
		ingredient = i18n.any .. ' [[' .. link .. '| ' .. split .. ']]'
	end
	
	if ingredient == '' then
		ingredient = '[[' .. langVars.link(str) .. '| ' .. str .. ']]'
	end
	
	return ingredient, link, image
end

function p.main(f)
	args = require( 'Module:ProcessArgs' ).merge( true )
	local frame = mw.getCurrentFrame()
	local cells = {'A1', 'B1', 'C1', 'A2', 'B2', 'C2', 'A3', 'B3', 'C3', 'out'}
	
	-- Inserts the item name at the key of the same name to avoid duplicates
	local items = {}
	local itemImages = {}
	local ingredients = {}
	local hCells = ''
	for i,v in pairs(cells) do
		local item, link, image
		if _G.args[v] then
			item, link, image = p.ingredient(_G.args[v])
			table.insert(ingredients, item)
		end
		local str = frame:expandTemplate{title = 'Item cell', args = {i, image, link, _G.args[v .. '_alt']} }
		hCells = hCells .. str
	end
		
	ingredients = table.concat(ingredients, ' +<br>')
		
	local background = '<td><div style="position:relative; width:170px; height:240px; background: rgb(91,76,62); background: linear-gradient(to bottom, rgba(91,76,62,1) 0px, rgba(91,76,62,0) 15px, rgba(56,43,30,0) calc(100% - 15px), rgba(56,43,30,1) 100%), linear-gradient(to left, rgba(91,76,62,1) 0px, rgba(69,52,36,1) 15px, #403529 50%, rgba(69,52,36,1) calc(100% - 15px), rgba(56,43,30,1) 100%); margin:auto;">'
	
	local notes = ''
	if args.notes then
		notes = '<th style="width:400px"><b>Notes</b></th>'
	end
	
	local header = ''
	if args.header then
		header = '<table class="wikitable mw-collapsible"> <tr><th style="width:200px"><b>Ingredients</b></th> <th><b>Crafting recipe</b></th>' .. notes .. '</tr>'
	end
	
	local body = header .. '<tr style="text-align:center;"><td>' .. ingredients .. '</td>' .. background .. hCells .. '</td>' 

	if notes ~= '' then
		body = body .. '<td style="text-align:left;">' .. args.notes .. '</td>'
	end
	
	body = body .. '</tr>'
	
	if args.footer then
		body = body .. '</table>'
	end
	
	return body
end
return p