Minecraft Wiki
Registrieren
Advertisement
[Lesen | Bearbeiten | Versionen | Aktualisieren]Buch und Feder DokumentationSpringe zum Quelltext ↴Lua logo Zum Gebrauch von Lua-Modulen siehe die Modul-Hilfe.

Das Modul Infobox stellt die Funktion infobox zur Verfügung, die zur Darstellung von Steckbriefen dient.

Aufruf

Die Parameter des Aufrufers werden automatisch übergeben. Das sind:

für {{#invoke: Infobox|infobox}} siehe Vorlage:Infobox

Anwendung

Liste der Vorlagen, die dieses Modul verwenden


local p = {}
function p.infobox( f )
	local args = require( 'Modul:ParameterUmwandeln' ).merge( true )
	local titleObject = mw.title.getCurrentTitle()
	local title = args.title or titleObject.baseText
	local headerArea = ''
	
	local imageArea = args.imagearea
	local groupCount = {}
	local groupImgList = {}
	if not imageArea and imageArea ~= 'none' then
		local images = {}
		local invImages = {}
		local defaultImageSize = args.defaultimagesize or '160px'
		local defaultImageClass = args.defaultimageclass
		args.image1 = args.image1 or args.image or 'title'
		args.image1size = args.image1size or args.imagesize
		args.image1class = args.image1class or args.imageclass
		args.invimage1 = args.invimage1 or args.invimage or 'title'
		args.group1 = args.group1 or args.group
		args.group1size = args.group1size or args.groupsize
		args.group1class = args.group1class or args.groupclass
		
		local imgCount = {}
		local invImgCount = {}
		for k, v in pairs( args ) do
			if type( k ) == 'string' then
				local image, num = k:match( '^(image)(%d+)$' )
				local invImage, invNum = k:match( '^(invimage)(%d+)$' )
				local group, groupNum = k:match( '^(group)(%d+)$' )
				local groupImg, groupImgNum = k:match( '^(%d+)-(%d+)$' )
				if v:lower() ~= 'none' then
					if image then
						table.insert( imgCount, tonumber( num ) )
					elseif invImage then
						table.insert( invImgCount, tonumber( invNum ) )
					elseif group then
						table.insert( groupCount, tonumber( groupNum ) )
						if not groupImgList['group' .. groupNum] then
							groupImgList['group' .. groupNum] = {}
						end
					elseif groupImg then
						if not groupImgList['group' .. groupImg] then
							groupImgList['group' .. groupImg] = {}
						end
						table.insert( groupImgList['group' .. groupImg], tonumber( groupImgNum ) )
					end
				end
			end
		end
		
		table.sort( imgCount )
		local animate
		for k, v in ipairs( imgCount ) do
			local image = args['image' .. v]
			local size = args['image' .. v .. 'size'] or defaultImageSize
			local class = args['image' .. v .. 'class'] or defaultImageClass
			
			if image == 'title' then
				local imageTitle = mw.title.new( 'Media:' .. title .. '.png' )
				if #groupCount == 0 and imageTitle and imageTitle.exists then
					image = '[[Datei:' .. title .. '.png|' .. size .. '|class=' .. ( class or '' ) .. ']]'
				elseif titleObject.namespace == 0 then
					image = '[[Datei:No image.svg|' .. size .. '|link=Datei:' .. title .. '.png|' .. title .. '.png hochladen]]'
				else
					image = '[[Datei:No image.svg|' .. size .. '|link=]]'
				end
			elseif image:match( ';' ) then
				if not animate then
					animate = require( 'Modul:Animation' ).animate
				end
				image = animate{ image, size, '', class }
			else
				image = '[[Datei:' .. image .. '|' .. size .. '|class=' .. ( class or '' ) .. ']]'
			end
			
			table.insert( images, '<div>' .. image .. '</div>' )
		end
		images = table.concat( images, '\n' )
		
		if #invImgCount > 0 then
			table.sort( invImgCount )
			local slot
			local invIds = mw.loadData( 'Modul:InvSprite' ).ids
			local invAliases = mw.loadData( 'Modul:Inventar slot/Aliases' )
			for k, v in ipairs( invImgCount ) do
				local image = args['invimage' .. v]
				if image == 'title' then
					if invIds[title] or invAliases[title] then
						image = title
					else
						image = false
					end
				end
				
				if image == '----' then
					table.insert( invImages, '</div><div style="padding-top:.5em">' )
				elseif image then
					if not slot then
						slot = require( 'Modul:Inventar slot' ).slot
					end
					table.insert( invImages, slot{ image, link = 'none' } )
				end
			end
			
			if #invImages > 0 then
				invImages = '<div class="infobox-invimages">' .. table.concat( invImages, '' ) .. '</div>'
			else
				invImages = ''
			end
		else
			invImages = ''
		end
		
		if images ~= '' or invImages ~= '' then
			imageArea = images .. '\n' .. invImages
		else
			imageArea = 'none'
		end
	end
	
		if #groupCount > 0 then
			table.sort( groupCount )
			local tabber = {}
			for k, v in ipairs( groupCount ) do
				local group = args['group' .. v]
				local groupSize = args['group' .. v .. 'size'] or defaultImageSize
				local groupClass = args['group' .. v .. 'class'] or defaultImageClass
				local groupImages = {}
				
				table.sort( groupImgList['group' .. v] )
				for _, w in ipairs( groupImgList['group' .. v] ) do
					local image = args[v .. '-' .. w]
					local size = args[v .. '-' .. w .. 'size'] or groupSize
					local class = args[v .. '-' .. w .. 'class'] or groupClass
					
					if image:match( ';' ) then
						if not animate then
							animate = require( 'Module:Animate' ).animate
						end
						image = animate{ image, size, '', class }
					else
						image = '[[Datei:' .. image .. '|' .. size .. '|class=' .. ( class or '' ) .. ']]'
					end
					
					table.insert( groupImages, '<div>' .. image .. '</div>' )
				end
				
				table.insert( tabber, '|-|' .. group .. '=\n' .. table.concat( groupImages, '\n' ) )
			end
			table.insert( images, '<div>' .. f:extensionTag( 'tabber', table.concat( tabber, '\n' ) ) .. '</div>' )
		else
			local seed = math.randomseed( os.time() + os.clock() * 1000000000 )
			imageArea = imageArea .. '\n<div class="nomobile mobileonly">' .. f:callParserFunction( '#dpl', { '',
				['debug'] = 5, ['randomseed'] = seed, randomcount = 3, category = 'Block|Gegenstand', include = '*'
			} ) .. '</div>'
		end
		
	if imageArea and imageArea ~= 'none' then
		imageArea = '<div class="infobox-imagearea animated-container">' .. imageArea .. '</div>'
	else
		local groupArea = args.grouparea
		if groupArea then
			imageArea = groupArea
		else
			imageArea = ''
		end
	end
	
	local extraText = args.extratext
	
	if extraText and extraText ~= 'none' then
		extraText = '<div class="infobox-extratext">'.. extraText ..'</div>'
	else
		extraText = ''
	end
	
	headerArea = imageArea.. '' ..extraText
	local footer = args.footer
	if footer then
		footer = '| class="infobox-footer" colspan="2" | ' .. footer
	end
	
	local classes = 'infobox-rows'
	local collapse = ''
	if args.collapsible and args.collapsible ~= '' then
		classes = classes .. ' collapsible collapsed'
		collapse = '! colspan=2 class="infobox-collapse" |\n|-'
	end
	
	local html = {
		'<div class="notaninfobox">',
			'<div class="infobox-title mcwiki-header">' .. title .. '</div>',
			headerArea,
			'{| class="' .. classes .. '" cellspacing="1" cellpadding="4"',
			collapse,
			'|-',
			args.rows or '',
			footer or '',
			'|}',
		'</div>'
	}
	
	return table.concat( html, '\n' )
end

return p
Advertisement