Module:Collection/Affichage : Différence entre versions

De X-Wing - Le wiki des figurines
Aller à : navigation, rechercher
(Page créée avec « local p = {} local Vaisseau = mw.loadData('Module:Collection/Vaisseau') function p.affichageVaisseauListe(vaissCollecTab, affIfZero) retour = "" for k, v in pair... »)
 
Ligne 1 : Ligne 1 :
 
local p = {}
 
local p = {}
  
 +
local Boite = mw.loadData('Module:Collection/Boite')
 
local Vaisseau = mw.loadData('Module:Collection/Vaisseau')
 
local Vaisseau = mw.loadData('Module:Collection/Vaisseau')
 +
 +
local Faction = {}
 +
Faction["Alliance rebelle"] = {
 +
        nom = "Alliance rebelle",
 +
        icone = "[[Fichier:Logo_alliance_rebelle.png]]",
 +
}
 +
Faction["Racails et scélérats"] = {
 +
        nom = "Racails et scélérats",
 +
        icone = "[[Fichier:Logo_empire.png]]",
 +
}
 +
Faction["Racails et scélérats"] = {
 +
        nom = "Racails et scélérats",
 +
        icone = "[[Fichier:Logo_racaille.png]]",
 +
}
 +
Faction["Racails et scélérats"] = {
 +
        nom = "Racails et scélérats",
 +
        icone = "[[Fichier:Logo_resistance.png]]",
 +
}
 +
Faction["Racails et scélérats"] = {
 +
        nom = "Racails et scélérats",
 +
        icone = "[[Fichier:Logo_premier_ordre.png]]",
 +
}
  
 
function p.affichageVaisseauListe(vaissCollecTab, affIfZero)
 
function p.affichageVaisseauListe(vaissCollecTab, affIfZero)
Ligne 11 : Ligne 34 :
 
             end
 
             end
 
         end
 
         end
 +
    end
 +
 +
    return retour
 +
end
 +
 +
function p.affichageVaisseauByFaction(vaissCollecTab, affIfZero)
 +
    retour = ""
 +
    for kFac, vFac in pairs (Faction) do
 +
        affLogoFac = false
 +
        for kVai, vVai in pairs (vaissCollecTab) do
 +
            if ((v ~= 0) or (affIfZero == "true")) and (Vaisseau[k].factiondefaut == vFac.nom) then
 +
                if affLogoFac == false then
 +
                    affLogoFac = true
 +
                    retour = retour .. vFac.icone .." "
 +
                end
 +
                if Vaisseau[k] ~= nil then
 +
                    retour = retour .. Vaisseau[k].icone .. " x " .. v .. " "
 +
                end
 +
            end
 +
        end
 +
        retour = retour .. "\n"
 
     end
 
     end
  

Version du 19 janvier 2018 à 13:57

La documentation pour ce module peut être créée à Module:Collection/Affichage/doc

local p = {}

local Boite = mw.loadData('Module:Collection/Boite')
local Vaisseau = mw.loadData('Module:Collection/Vaisseau')

local Faction = {}
Faction["Alliance rebelle"] = {
        nom = "Alliance rebelle",
        icone = "[[Fichier:Logo_alliance_rebelle.png]]",
}
Faction["Racails et scélérats"] = {
        nom = "Racails et scélérats",
        icone = "[[Fichier:Logo_empire.png]]",
}
Faction["Racails et scélérats"] = {
        nom = "Racails et scélérats",
        icone = "[[Fichier:Logo_racaille.png]]",
}
Faction["Racails et scélérats"] = {
        nom = "Racails et scélérats",
        icone = "[[Fichier:Logo_resistance.png]]",
}
Faction["Racails et scélérats"] = {
        nom = "Racails et scélérats",
        icone = "[[Fichier:Logo_premier_ordre.png]]",
}

function p.affichageVaisseauListe(vaissCollecTab, affIfZero)
    retour = ""
    for k, v in pairs (vaissCollecTab) do
        if (v ~= 0) or (affIfZero == "true") then
            if Vaisseau[k] ~= nil then
                retour = retour .. "* " .. Vaisseau[k].lien .. " x " .. v .. "\n"
            end
        end
    end

    return retour
end

function p.affichageVaisseauByFaction(vaissCollecTab, affIfZero)
    retour = ""
    for kFac, vFac in pairs (Faction) do
        affLogoFac = false
        for kVai, vVai in pairs (vaissCollecTab) do
            if ((v ~= 0) or (affIfZero == "true")) and (Vaisseau[k].factiondefaut == vFac.nom) then
                if affLogoFac == false then
                    affLogoFac = true
                    retour = retour .. vFac.icone .." "
                end
                if Vaisseau[k] ~= nil then
                    retour = retour .. Vaisseau[k].icone .. " x " .. v .. " "
                end
            end
        end
        retour = retour .. "\n"
    end

    return retour
end

return p