Module:GatheringEfficiency

De ARK Wiki
Aller à la navigation Aller à la recherche
Template-info.png Documentation

local p = {}
function p.GatheringEfficiency( f )
  local dlclink = require('Module:DLCLink').link
  local args = f:getParent().args
  local rows, num, rating =  {}, 0, ''

  for item,eff in spairs(args) do
    if item ~= 'note' and string.match(item, '_auto$') == nil then
      rating = 'data-sort-value="0" | ?'
      if tonumber(eff) ~= nil then
        num = tonumber(eff)
        if num > 0 and num < 6 then
          rating = 'data-sort-value="'..num..'" | '..string.rep('★',num)..string.rep('☆',5-num)
        end
      end
      if args[item..'_auto'] ~= nil and string.lower(args[item..'_auto']) == 'yes' then
        rating = rating..'<br><small><i>Récolte autonome</i></small>[[Catégorie:Créatures qui récoltent de manière autonome]]'
      end
      table.insert(rows, '|-\n| [[File:'..string.gsub(item, '[:/]', ' ')..'.png|30px|link='..item..']] '..dlclink(item)..'\n|'..rating)
    end
  end
  local noteRow = ''
  if args.note ~= nil and string.len(args.note) > 0 then
    noteRow = '\n|-\n! colspan="2" align="left" style="font-weight:normal;font-size:0.8em" | <i>'..args.note..'</i>'
  end
   return '{| class="wikitable sortable" cellspacing="0"\n|-\n! Ressource\n! Efficacité\n'..table.concat(rows,'\n')..noteRow..'\n|}'
end

function spairs(t)
  -- collect the keys
  local keys = {}
  for k in pairs(t) do keys[#keys+1] = k end

  -- if order function given, sort by it by passing the table and keys a, b,
  table.sort(keys, function(a,b) return (tonumber(t[a]) ~= nil and (tonumber(t[b]) == nil or t[b] < t[a])) end)

  -- return the iterator function
  local i = 0
  return function()
    i = i + 1
    if keys[i] then
      return keys[i], t[keys[i]]
    end
  end
end

return p