« Module:Amiibo » : différence entre les versions

De Pikmin FR
fr>Fxfxfx0
Page créée avec « local p = {} p.main = function(frame) local args = frame:getParent().args local amiiboName = args['name'] or args[1] or '' local size = args['size'] or tonumber(args[2]) or 24 local section = args['section'] or amiiboName local text = args['text'] or nil -- Get the file extention; if unspecified or empty, use png. local ext = (args['ext'] or '') == '' and 'png' or string.lower(args['ext']) -- Mapping table for amiibo name patterns... »
 
fr>Fxfxfx0
Module:Amiibo
Ligne 1 : Ligne 1 :
local p = {}
local p = {}
p.main = function(frame)
p.main = function(frame)
     local args = frame:getParent().args
     local args = frame:getParent().args
Ligne 6 : Ligne 7 :
     local section = args['section'] or amiiboName
     local section = args['section'] or amiiboName
     local text = args['text'] or nil
     local text = args['text'] or nil
    -- Get the file extention; if unspecified or empty, use png.
     local ext = (args['ext'] or '') == '' and 'png' or string.lower(args['ext'])
     local ext = (args['ext'] or '') == '' and 'png' or string.lower(args['ext'])


     -- Mapping table for amiibo name patterns to image file names. Order doesn't matter.
     -- Mapping table for amiibo name patterns to image file names.
    -- Define 'text' if the display text after the icon is different to the amiibo's name.
     local amiiboMap = {
     local amiiboMap = {
    -- Splatoon 1
        -- Splatoon 1
         {pattern = "Inkling Girl (Splatoon)", imageName = "S_amiibo_Inkling Girl", text = "Inkling Girl (''Splatoon'')"},
         {pattern = "Inkling Girl (Splatoon)", imageName = "S_amiibo_Inkling Girl", text = "Inkling Girl (''Splatoon'')"},
         {pattern = "Inkling Girl (Lime Green)", imageName = "S_amiibo_Inkling Girl (Lime Green)", text = "Inkling Girl (Lime Green)"},
         {pattern = "Inkling Girl (Lime Green)", imageName = "S_amiibo_Inkling Girl (Lime Green)", text = "Inkling Girl (Lime Green)"},
Ligne 50 : Ligne 49 :
     }
     }


     -- Default to amiiboName if not found
     -- Mapping table for French names
    local amiiboFrenchNames = {
        ["Inkling Girl"] = "Fille Inkling",
        ["Inkling Girl (Lime Green)"] = "Fille inkling (vert clair)",
        ["Inkling Boy"] = "Garçon Inkling",
        ["Inkling Boy (Purple)"] = "Garçon inkling (violet)",
        ["Inkling Squid"] = "Calamar Inkling",
        ["Inkling Squid (Orange)"] = "Calamar inkling (orange)",
 
        ["Callie"] = "Ayo",
        ["Marie"] = "Oly",
        ["Inkling Boy (Purple)"] = "Garçon Inkling (Violet)",
        ["Inkling Squid (Splatoon)"] = "Calamar Inkling (Splatoon)",
        ["Callie"] = "Ayo",
        ["Inkling Girl (Lime Green)"] = "Fille Inkling (Vert citron)",
        ["Inkling Boy (Splatoon)"] = "Garçon Inkling (Splatoon)",
        ["Inkling Boy (Purple)"] = "Garçon Inkling (Violet)",
        ["Inkling Squid (Splatoon)"] = "Calamar Inkling (Splatoon)",
        ["Callie"] = "Ayo",
        ["Inkling Girl (Lime Green)"] = "Fille Inkling (Vert citron)",
        ["Inkling Boy (Splatoon)"] = "Garçon Inkling (Splatoon)",
        ["Inkling Boy (Purple)"] = "Garçon Inkling (Violet)",
        ["Inkling Squid (Splatoon)"] = "Calamar Inkling (Splatoon)",
        -- Add more mappings as needed
    }
 
     local imageName = amiiboName
     local imageName = amiiboName
     local amiiboText = nil
     local amiiboText = nil


     -- Iterate through the map to find the first matching pattern
     -- Find the corresponding English name
     for _, mapping in ipairs(amiiboMap) do
     for _, mapping in ipairs(amiiboMap) do
         if amiiboName == mapping.pattern then
         if amiiboName == mapping.pattern then
Ligne 63 : Ligne 87 :
     end
     end


     -- Construct the image link
     -- Use French name for both link text and link itself
    local frenchName = amiiboFrenchNames[amiiboName] or amiiboName
     local imageLink = string.format('[[File:%s.%s|%dx%dpx|%s|link=amiibo#%s]]',
     local imageLink = string.format('[[File:%s.%s|%dx%dpx|%s|link=amiibo#%s]]',
                                     imageName, ext, size, size, amiiboName,
                                     imageName, ext, size, size, frenchName, frenchName)
                                    section)


     local span = mw.html.create('span')
     local span = mw.html.create('span')
Ligne 74 : Ligne 98 :
     span:css('display', 'inline-block')
     span:css('display', 'inline-block')
     span:wikitext(imageLink)
     span:wikitext(imageLink)
   
 
     local output = tostring(span)
     local output = tostring(span)


     -- Append additional text if not icononly
     -- Append additional text if not icononly
     if args[2] ~= 'icononly' and args[3] ~= 'icononly' then
     if args[2] ~= 'icononly' and args[3] ~= 'icononly' then
    text = text or amiiboText or amiiboName
         output = output .. ' ' .. '[[amiibo#' .. frenchName .. '|' .. frenchName .. ']]'
         output = output .. ' ' .. '[[amiibo#' .. section .. '|' .. text .. ']]'
     end
     end



Version du 2 juillet 2024 à 13:14

For use with Template:Amiibo.

Displays an inline amiibo icon with a text link.

Parameters

name Unnamed or named. The English name of the amiibo.
size Unnamed or named, optional. The numeric dimension in pixels for the maximum size of the icon. The default size is 24.
icononly Unnamed, optional. If present, the text label will be omitted.
section Named, optional. The section in the amiibo article to link to. If absent, name will be used.
text Named, optional. The link text. If absent, name will be used for all amiibo, except the Splatoon 2 series, who will exclude the numeral 2.
ext Named, optional. The file extension, e.g. jpg. Will default to png if unspecified or empty.

Examples

Markup

*{{amiibo|Inkling Boy}}
*{{amiibo|Inkling Boy (recolor)}}
*{{amiibo|Inkling Boy 2}}
*{{amiibo|Callie|48}}
*{{amiibo|Inkling Girl|icononly}}
*{{amiibo|Inkling Squid 2|48|icononly}}
*{{amiibo|Inkling Squid 2|text=The ''Splatoon 2'' series Inkling Squid}}
*{{amiibo|Inkling (Yellow)}}
*{{amiibo|Octoling (Blue)}}
*{{amiibo|Smallfry}}
*{{amiibo|Shiver}} {{amiibo|Frye}} {{amiibo|Big Man}}
*{{amiibo|Frye|ext=jpg}}

Output


local p = {}

p.main = function(frame)
    local args = frame:getParent().args
    local amiiboName = args['name'] or args[1] or ''
    local size = args['size'] or tonumber(args[2]) or 24
    local section = args['section'] or amiiboName
    local text = args['text'] or nil
    local ext = (args['ext'] or '') == '' and 'png' or string.lower(args['ext'])

    -- Mapping table for amiibo name patterns to image file names.
    local amiiboMap = {
        -- Splatoon 1
        {pattern = "Inkling Girl (Splatoon)", imageName = "S_amiibo_Inkling Girl", text = "Inkling Girl (''Splatoon'')"},
        {pattern = "Inkling Girl (Lime Green)", imageName = "S_amiibo_Inkling Girl (Lime Green)", text = "Inkling Girl (Lime Green)"},
        {pattern = "Inkling Girl (recolor)", imageName = "S_amiibo_Inkling Girl (Lime Green)", text = "Inkling Girl (Lime Green)"},
        {pattern = "Inkling Girl", imageName = "S_amiibo_Inkling Girl", text = "Inkling Girl (''Splatoon'')"},
        {pattern = "Inkling Boy (Splatoon)", imageName = "S_amiibo_Inkling Boy", text = "Inkling Boy (''Splatoon'')"},
        {pattern = "Inkling Boy (Purple)", imageName = "S_amiibo_Inkling Boy (Purple)", text = "Inkling Boy (Purple)"},
        {pattern = "Inkling Boy (recolor)", imageName = "S_amiibo_Inkling Boy (Purple)", text = "Inkling Boy (Purple)"},
        {pattern = "Inkling Boy", imageName = "S_amiibo_Inkling Boy", text = "Inkling Boy (''Splatoon'')"},
        {pattern = "Inkling Squid (Splatoon)", imageName = "S_amiibo_Inkling Squid", text = "Inkling Squid (''Splatoon'')"},
        {pattern = "Inkling Squid (Orange)", imageName = "S_amiibo_Inkling Squid (Orange)", text = "Inkling Squid (Orange)"},
        {pattern = "Inkling Squid (recolor)", imageName = "S_amiibo_Inkling Squid (Orange)", text = "Inkling Squid (Orange)"},
        {pattern = "Inkling Squid", imageName = "S_amiibo_Inkling Squid", text = "Inkling Squid (''Splatoon'')"},
        {pattern = "Callie", imageName = "S_amiibo_Callie"},
        {pattern = "Marie", imageName = "S_amiibo_Marie"},
        -- Splatoon 2
        {pattern = "Inkling Girl (Splatoon 2)", imageName = "S2_amiibo_Inkling Girl", text = "Inkling Girl (''Splatoon 2'')"},
        {pattern = "Inkling Girl 2", imageName = "S2_amiibo_Inkling Girl", text = "Inkling Girl (''Splatoon 2'')"},
        {pattern = "Inkling Boy (Splatoon 2)", imageName = "S2_amiibo_Inkling Boy", text = "Inkling Boy (''Splatoon 2'')"},
        {pattern = "Inkling Boy 2", imageName = "S2_amiibo_Inkling Boy", text = "Inkling Boy (''Splatoon 2'')"},
        {pattern = "Inkling Squid (Splatoon 2)", imageName = "S2_amiibo_Inkling Squid", text = "Inkling Squid (''Splatoon 2'')"},
        {pattern = "Inkling Squid 2", imageName = "S2_amiibo_Inkling Squid", text = "Inkling Squid (''Splatoon 2'')"},
        {pattern = "Octoling Girl", imageName = "S2_amiibo_Octoling Girl"},
        {pattern = "Octoling Boy", imageName = "S2_amiibo_Octoling Boy"},
        {pattern = "Octoling Octopus", imageName = "S2_amiibo_Octoling Octopus"},
        {pattern = "Marina", imageName = "S2_amiibo_Marina"},
        {pattern = "Pearl", imageName = "S2_amiibo_Pearl"},
        -- Splatoon 3
        {pattern = "Inkling (Yellow)", imageName = "S3_amiibo_Inkling (Yellow)", text = "Inkling (''Splatoon 3'')"},
        {pattern = "Octoling (Blue)", imageName = "S3_amiibo_Octoling (Blue)", text = "Octoling (''Splatoon 3'')"},
        {pattern = "Smallfry", imageName = "S3_amiibo_Smallfry"},
        {pattern = "Shiver", imageName = "S3_amiibo_Shiver"},
        {pattern = "Frye", imageName = "S3_amiibo_Frye"},
        {pattern = "Big Man", imageName = "S3_amiibo_Big Man"},
        -- Others
        {pattern = "Inkling Girl (Super Smash Bros. Ultimate)", imageName = "SSBU_amiibo_Inkling Girl", text = "Inkling Girl (''Super Smash Bros. Ultimate'')"}
    }

    -- Mapping table for French names
    local amiiboFrenchNames = {
        ["Inkling Girl"] = "Fille Inkling",
        ["Inkling Girl (Lime Green)"] = "Fille inkling (vert clair)",
        ["Inkling Boy"] = "Garçon Inkling",
        ["Inkling Boy (Purple)"] = "Garçon inkling (violet)",
        ["Inkling Squid"] = "Calamar Inkling",
        ["Inkling Squid (Orange)"] = "Calamar inkling (orange)",

        ["Callie"] = "Ayo",
        ["Marie"] = "Oly",
        ["Inkling Boy (Purple)"] = "Garçon Inkling (Violet)",
        ["Inkling Squid (Splatoon)"] = "Calamar Inkling (Splatoon)",
        ["Callie"] = "Ayo",
        ["Inkling Girl (Lime Green)"] = "Fille Inkling (Vert citron)",
        ["Inkling Boy (Splatoon)"] = "Garçon Inkling (Splatoon)",
        ["Inkling Boy (Purple)"] = "Garçon Inkling (Violet)",
        ["Inkling Squid (Splatoon)"] = "Calamar Inkling (Splatoon)",
        ["Callie"] = "Ayo",
        ["Inkling Girl (Lime Green)"] = "Fille Inkling (Vert citron)",
        ["Inkling Boy (Splatoon)"] = "Garçon Inkling (Splatoon)",
        ["Inkling Boy (Purple)"] = "Garçon Inkling (Violet)",
        ["Inkling Squid (Splatoon)"] = "Calamar Inkling (Splatoon)",
        -- Add more mappings as needed
    }

    local imageName = amiiboName
    local amiiboText = nil

    -- Find the corresponding English name
    for _, mapping in ipairs(amiiboMap) do
        if amiiboName == mapping.pattern then
            imageName = mapping.imageName
            amiiboText = mapping.text
            break
        end
    end

    -- Use French name for both link text and link itself
    local frenchName = amiiboFrenchNames[amiiboName] or amiiboName
    local imageLink = string.format('[[File:%s.%s|%dx%dpx|%s|link=amiibo#%s]]',
                                    imageName, ext, size, size, frenchName, frenchName)

    local span = mw.html.create('span')
    span:css('width', size .. 'px')
    span:css('height', size .. 'px')
    span:css('text-align', 'center')
    span:css('display', 'inline-block')
    span:wikitext(imageLink)

    local output = tostring(span)

    -- Append additional text if not icononly
    if args[2] ~= 'icononly' and args[3] ~= 'icononly' then
        output = output .. ' ' .. '[[amiibo#' .. frenchName .. '|' .. frenchName .. ']]'
    end

    return output
end

return p