Minecraft Wiki
Registre-se
Advertisement

Este módulo implementa {{Protocol version}}, {{Data version}}, e {{Protocol version/Table}}.

Os dados reais usados por este módulo são armazenados em Module:Protocol version/Versions.

Veja também[]

[ver | editar | histórico | purgar]A documentação acima é transcluída de Módulo:Protocol version/doc.
local p = {}

-- {{Protocol version}}
function p.protocol_version( f )
    local args = f
    if f == mw.getCurrentFrame() then 
        args = require( 'Módulo:ProcessArgs' ).merge( true )
    end
    local version = mw.text.trim( args[1] or '' )
    
    -- load the values from the submodule
    local version_data = mw.loadData( 'Módulo:Protocol version/Versions' ).versions[version]
    
    local category = ''
    local value
    local title = mw.title.getCurrentTitle()
    
    if version_data then
        if version_data.protocol then
    		if version_data.protocol == 'Desconhecido' then
    			value = '[[Predefinição:Versão do protocolo#Versão desconhecida|Desconhecida]]'
    			if not args.nocat and title.namespace == 0 and not title.isSubpage then
					category = '[[Categoria:Versão do protocolo desconhecida]]'
				end
    		else
    	 	value = version_data.protocol
			end
        else
            value = 'N/A'
        end
    else
        value = '[[Predefinição:Versão do protocolo#Versão desconhecida|Pendente]]'
        if not args.nocat and title.namespace == 0 and not title.isSubpage then
            category = '[[Categoria:Versão do protocolo pendente]]'
        end
    end
    return value .. category
end

-- {{Data version}}
function p.data_version( f )
    local args = f
    if f == mw.getCurrentFrame() then 
        args = require( 'Módulo:ProcessArgs' ).merge( true )
    end
    local version = mw.text.trim( args[1] or '' )
    
    -- load the values from the submodule
    local version_data = mw.loadData( 'Módulo:Protocol version/Versions' ).versions[version]
    
    local category = ''
    local value
    local title = mw.title.getCurrentTitle()
    
    if version_data then
        if version_data.data then
            if version_data.data == 'Desconhecido' then
    			value = '[[Predefinição:Versão dos dados#Versão desconhecida|Desconhecida]]'
    			if not args.nocat and title.namespace == 0 and not title.isSubpage then
					category = '[[Categoria:Versão dos dados desconhecida]]'
				end
			else
				value = version_data.data
			end
        else
            value = 'N/A'
        end
    else
        value = '[[Predefinição:Versão dos dados#Versão desconhecida|Pendente]]'
        if not args.nocat and title.namespace == 0 and not title.isSubpage then
            category = '[[Categoria:Versão dos dados pendentes]]'
        end
    end
    return value .. category
end

-- Version table ({{Protocol version/Table}})
function p.table( f )
    local args = f
    if f == mw.getCurrentFrame() then
        args = require( 'Módulo:ProcessArgs' ).merge( true )
    end
    
    local html = {}
    local groups = mw.loadData( 'Módulo:Protocol version/Versions' ).groups

    for _, group in ipairs(groups) do
    	local include = true
    	if #args ~= 0 then
    		include = nil
    		for __, name in ipairs(args) do
    			if name == group.name then
    				include = true
    				break
				end
			end
		end

		if include then
                if not args.notitle then
	            table.insert( html, "=== [[" .. group.link .. '|' .. group.name .. "]] ===\n" )
                end
	        if group.desc ~= nil then
	            table.insert( html, group.desc .. '\n')
	        end
	        table.insert( html, "<table class='wikitable sortable jquery-tablesorter'>\n" )
	        table.insert( html, '<tr>\n' )
	        table.insert( html, '<th>Versão do cliente</th>\n' )
	        table.insert( html, '<th>[[Versão do protocolo]]</th>\n' )
	        if group.has_data_versions then
	            table.insert( html, '<th>[[Versão dos dados]]</th>\n' )
	        end
	        table.insert( html, '</tr>\n' )
	
	        local num_same_protocol
	        local last_protocol = -1
	        local protocol_row
	        
	        local num_same_data
	        local last_data = -1
	        local data_row
	
	        for __, version in ipairs(group.values) do
	            table.insert( html, '<tr>' )
	            table.insert( html, '<td>[[' .. version.name .. ']]</td>\n' )
	            if version.protocol ~= last_protocol or version.force_split_protocol then
	                last_protocol = version.protocol
	                num_same_protocol = 1
	                table.insert( html, '<td style="text-align:center">' .. version.protocol .. '</td>\n' )
	                protocol_row = #html
	            else
	                num_same_protocol = num_same_protocol + 1
	                html[protocol_row] = '<td style="text-align:center" rowspan="' .. num_same_protocol .. '">' .. version.protocol .. '</td>\n'
	            end
	            if group.has_data_versions then
	                if version.data then
	                	if version.data ~= last_data then
	                		last_data = version.data
	                		num_same_data = 1
	                		table.insert( html, '<td style="text-align:center">' .. version.data .. '</td>\n' )
	                		data_row = #html
	                	else
	                		num_same_data = num_same_data + 1
	                		html[data_row] = '<td style="text-align:center" rowspan="' .. num_same_data .. '">' .. version.data .. '</td>\n'
	                	end
	                else
	                	if last_data ~= "N/A" then
	                		last_data = "N/A"
	                		num_same_data = 1
	                		table.insert( html, '<td style="text-align:center">N/A</td>\n' )
	                		data_row = #html
	                	else
	                		num_same_data = num_same_data + 1
	                		html[data_row] = '<td style="text-align:center" rowspan="' .. num_same_data .. '">' .. "N/A </td>\n"
	                	end
	                end
	            end
	            table.insert( html, '</tr>\n' )
	        end
	
	        table.insert( html, '</table>\n' )
        end
    end

    return table.concat( html )
end

return p
Advertisement