Module:Currency Image
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Currency Image/doc
-- Static table to map currency names to filename and available quantities
local lookup = {
['donator point'] = { filename = 'donator_points_%d.png', bins = { 1} },
['bounty hunter point'] = { filename = 'bounty_hunter_points_%d.png', bins = { 1} },
['vote point'] = { filename = 'vote_points%d.png', bins = { 1} },
['coins'] = { filename = 'Coins_%d.png', bins = { 1, 2, 3, 4, 5, 25, 100, 250, 1000, 10000 } },
['skilling point'] = { filename = 'skilling_points_%d.png', bins = { 1} },
['minigame point'] = { filename = 'minigame_points_%d.png', bins = { 1} },
['pk point'] = { filename = 'PKP_%d.png', bins = { 1} },
['minnow'] = { filename = 'Minnow_%d.png', bins = { 1, 2, 3, 4, 5 } },
['molch pearl'] = { filename = 'Molch_pearl_%d.png', bins = { 1, 2, 3, 4, 5 } },
['numulite'] = { filename = 'numulite_%d.png', bins = { 1, 2, 3, 4, 5, 25 } },
['pieces of eight'] = { filename = 'Pieces_of_eight_%d.png', bins = { 1, 2, 3 } },
['platinum tokens'] = { filename = 'Platinum_token_%d.png', bins = { 1, 2, 3, 4, 5 } },
['stardust'] = { filename = 'Stardust_%d.png', bins = { 1, 25, 75, 125, 175 } },
['survival tokens'] = { filename = 'Survival_token_%d.png', bins = { 1, 2, 3, 4, 5 } },
['trading sticks'] = { filename = 'Trading_sticks_%d.png', bins = { 1, 10, 100, 1000, 10000 } },
['tokkul'] = { filename = 'Tokkul_%d.png', bins = { 1, 2, 3, 4, 5, 25 } },
['warrior guild tokens'] = { filename = 'Warrior_guild_token_%d.png', bins = { 1, 2, 3, 4, 5 } },
}
local lookup_fixed = {
['agility arena ticket'] = {filename = 'Agility arena ticket.png'},
['archaic emblem'] = {filename = 'Archaic_emblem_(tier_1).png'},
['archery ticket'] = {filename = 'Archery_ticket.png'},
['castle wars ticket'] = {filename = 'Castle_wars_ticket.png'},
['death runes'] = {filename = 'Death_rune.png'},
['frog token'] = {filename = 'Frog token.png'},
['golden nugget'] = {filename = 'Golden_nugget.png'},
['league points'] = {filename = 'League Points.png'},
['mark of grace'] = {filename = 'Mark_of_grace.png'},
['shark'] = {filename = 'Shark.png'},
['speedrun points'] = {filename = 'Giant stopwatch.png'},
['twisted league points'] = {filename = 'Twisted League icon.png'},
['unidentified minerals'] = {filename = 'Unidentified_minerals.png'},
}
--
-- Like Module:Coins image, but for multiple currency types
--
return function(name, quantity)
quantity = mw.text.split(tostring(quantity or ''),'[,%-–]')
local q = 1
for _, v in ipairs(quantity) do
if (tonumber(v) or 0) > q then
q = tonumber(v)
end
end
name = string.lower(name or '')
local info = lookup[name]
if info == nil then
info = lookup_fixed[name]
if info == nil then
-- Unrecognized currency type
return
end
return info.filename
end
local max_q = q
for _, j in ipairs( info.bins ) do
if q >= j then
max_q = j
else
break
end
end
return string.format(info.filename, max_q)
end
--[[ DEBUG USAGE
=p('agility arena ticket', 5)
=p('coins', 500)
]]
-- If this module ever gets refactored to be able to be called directly by
-- templates, this can be exposed to self-document what is supported.
--[[
local GetSupportedCurrencyNames = function()
local supportedCurrencyNames = {}
for k, _ in pairs( lookup ) do
table.insert(supportedCurrencyNames, k)
end
for k, _ in pairs( lookup_fixed ) do
table.insert(supportedCurrencyNames, k)
end
table.sort(supportedCurrencyNames)
local supportedCurrencyNamesFormatted = table.concat(supportedCurrencyNames,"\r\n")
return supportedCurrencyNamesFormatted
end
--]]