×
Einen neuen Artikel erstellen
Schreibe den Seitennamen hierhin:
Wir haben derzeit 9.055 Artikel auf Vaultpedia. Gib deinen Artikelnamen oberhalb von oder klicke auf einen der unten stehenden Titel und beginne zu schreiben! ein



    Vaultpedia
    9.055Artikel

    Modul:Games: Unterschied zwischen den Versionen

    Tritt unserem Discord bei und informiere dich auf unserem Twitter-Kanal über die aktuellsten Themen rund um Fallout!
    Donnerkiesel (Diskussion | Beiträge)
    Die Seite wurde neu angelegt: „--<nowiki> local p = {} local games = { ["AR"] = "All Roads", ["D20"] = "Fallout Pen & Paper d20", ["FB"] = "Fallout Bible", ["FBG"] = "Fallo…“
     
    Donnerkiesel (Diskussion | Beiträge)
    KKeine Bearbeitungszusammenfassung
    Zeile 3: Zeile 3:
    local p = {}
    local p = {}


    local games = {
    local game = {
         ["AR"] = "All Roads",
         ["AR"] = "All Roads",
         ["D20"] = "Fallout Pen & Paper d20",
         ["D20"] = "Fallout Pen & Paper d20",
    Zeile 56: Zeile 56:
    -- look up short title without disambig
    -- look up short title without disambig
    function stitle(game)
    function stitle(game)
         local result = games[game]
         local result = game[game]
         if game ~= "FILM" then
         if game ~= "FILM" then
             result = result:gsub('%s%(.*', '')
             result = result:gsub('%s%(.*', '')
    Zeile 80: Zeile 80:
                 result = ''
                 result = ''
             else
             else
                 result = result .. '[[' .. games[game] .. '|' .. stitle(game) .. ']]'
                 result = result .. '[[' .. game[game] .. '|' .. stitle(game) .. ']]'
                 if n ~= #game_list then
                 if n ~= #game_list then
                     result = result .. '<br/>'
                     result = result .. '<br/>'
    Zeile 118: Zeile 118:
                     link = stitle(game) .. ' ' .. frame.args[2]
                     link = stitle(game) .. ' ' .. frame.args[2]
                 else
                 else
                     link = games[game]
                     link = game[game]
                 end
                 end
                 local text = stitle(game)
                 local text = stitle(game)

    Version vom 25. September 2019, 10:47 Uhr

    Die Dokumentation für dieses Modul kann unter Modul:Games/Doku erstellt werden

    --<nowiki>
    
    local p = {}
    
    local game = {
        ["AR"] = "All Roads",
        ["D20"] = "Fallout Pen & Paper d20",
        ["FB"] = "Fallout Bible",
        ["FBG"] = "Fallout: Das Brettspiel",
        ["FBGNC"] = "Fallout: Neu-Kalifornien",
        ["FILM"] = "Fallout (Film)",
        ["FNV"] = "Fallout: New Vegas",
        ["FNVGRA"] = "Gun Runners' Arsenal",
        ["FNVDM"] = "Dead Money",
        ["FNVHH"] = "Honest Hearts",
        ["FNVOWB"] = "Old World Blues (Add-On)",
        ["FNVLR"] = "Lonesome Road (Add-On)",
        ["FO1"] = "Fallout",
        ["FO2"] = "Fallout 2",
        ["FO3"] = "Fallout 3",
        ["FO3OA"] = "Operation: Anchorage (Add-On)",
        ["FO3TP"] = "The Pitt (Add-On)",
        ["FO3BS"] = "Broken Steel",
        ["FO3PL"] = "Point Lookout (Add-On)",
        ["FO3MZ"] = "Mothership Zeta (Add-On)",
        ["FO4"] = "Fallout 4",
        ["FO4AUT"] = "Automatron (Add-On)",
        ["FO4WW"] = "Wasteland Workshop",
        ["FO4FH"] = "Far Harbor (Add-On)",
        ["FO4CW"] = "Contraptions Workshop",
        ["FO4VW"] = "Vault-Tec Workshop",
        ["FO4NW"] = "Nuka-World (Add-On)",
        ["FO4VR"] = "Fallout 4 VR",
        ["FO4CC"] = "Creation Club",
        ["FO76"] = "Fallout 76",
        ["FO76WA"] = "Wild Appalachia",
        ["FO76NW"] = "Nuclear Winter",
        ["FO76WL"] = "Wastelanders",
        ["FOBOS"] = "Fallout: Brotherhood of Steel",
        ["FOBOS2"] = "Fallout: Brotherhood of Steel 2",
        ["FOS"] = "Fallout Shelter",
        ["FOT"] = "Fallout Tactics",
        ["FOT2"] = "Fallout Tactics 2",
        ["FOW"] = "Fallout: Warfare",
        ["FOX"] = "Fallout Extreme",
        ["FWW"] = "Fallout: Wasteland Warfare",
        ["JES"] = "J.E. Sawyer's Fallout RPG",
        ["LH"] = "Lionheart",
        ["PA"] = "One Man, and a Crate of Puppets",
        ["PV13"] = "Project V13",
        ["TAR"] = "Project V13",
        ["TORN"] = "TORN",
        ["VB"] = "Van Buren",
    }
    
    -- look up short title without disambig
    function stitle(game)
        local result = game[game]
        if game ~= "FILM" then
            result = result:gsub('%s%(.*', '')
        end
        return result
    end
    
    -- ====================
    -- This function, links, is for ordinary links within the body of
    -- an infobox.  So if all you want returned is [[Fallout 4]], then
    -- use the syntax:
    --        {{#invoke:Games|links|{{{games|}}}}}
    -- specifying a second argument returns the text in italics:
    --        {{#invoke:Games|links|{{{games|}}}|1}}
    -- ====================
    
    function p.links(frame)
        local result = ''
     
        local game_list = mw.text.split(frame.args[1], "%s*,%s*") 
        for n, game in ipairs(game_list) do
            if game:lower() == "none" then
                result = ''
            else
                result = result .. '[[' .. game[game] .. '|' .. stitle(game) .. ']]'
                if n ~= #game_list then
                    result = result .. '<br/>'
                end
            end
        end
     
        if (frame.args[2] and result ~= '') then
            return "''" .. result .. "''"
        else
          return result
        end
    end
    
    -- ====================
    --  This function, title, generically generates links for the supertitle.
    --  Either just to the game page itself or to a more specific page.
    --
    --  {{#invoke:Games|title|FO4}} gives just [[Fallout 4|Fallout 4]]
    --  {{#invoke:Games|title|FO4|weapons}} results in [[Fallout 4 weapons|Fallout 4]]
    --  {{#invoke:Games|title|FO4|weapons|weapon}} results in [[Fallout 4 weapons|Fallout 4 weapon]]
    -- ====================
    
    function p.title(frame)
        local result = ''
     
        local game_list = mw.text.split(frame.args[1], "%s*,%s*") 
        for n, game in ipairs(game_list) do
            if game:lower() == "none" then
                result = 'Nur erwähnt'
                if frame.args[3] then
                    result = result .. ' ' .. frame.args[3]
                end
            else
                local link
                if frame.args[2] then
                    link = stitle(game) .. ' ' .. frame.args[2]
                else
                    link = game[game]
                end
                local text = stitle(game)
                if frame.args[3] and n == #game_list then
                    text = text .. ' ' .. frame.args[3]
                end 
                result = result .. '[[' .. link .. '|' .. text .. ']]'
                if n ~= #game_list then
                    result = result .. ' / '
                end
            end
        end
     
        return result
    end
    
    
    return p
    
    --</nowiki>