Module:Rates: Difference between revisions

From Ephinea PSO Wiki
mNo edit summary
mNo edit summary
Line 24: Line 24:
   end
   end
   if fmt == "f" then
   if fmt == "f" then
    local num, den
    if string.find(rate, "/") ~= nil then
      num, den = string.match(rate, "%f/%f")
    else
      num = rate
      den = 1
    end
    rate = num / den
     if wholeFractions[rate] == nil then
     if wholeFractions[rate] == nil then
       if rate < 10 then
       if rate < 10 then
Line 45: Line 53:


function p.displayRate(frame)
function p.displayRate(frame)
   local rate = tonumber(frame.args[1])
   local rate = frame.args[1]
   local fmt = frame.args[2]
   local fmt = frame.args[2]
   local digits = frame.args[3]
   local digits = frame.args[3]
   local out = ""
   local out = ""
   if fmt == "f" then
   if fmt == "f" then
   out = out .. fmtRate(1/rate, "f", digits)
   out = out .. fmtRate(rate, "f", digits)
   elseif fmt == "p" then
   elseif fmt == "p" then
     out = out .. fmtRate(rate*100, "p")
     out = out .. fmtRate(rate, "p")
   elseif fmt == "n" then
   elseif fmt == "n" then
     out = out .. fmtRate(1/rate, "f", 2) .. " (" .. fmtRate(rate*100, "p") .. ")"
     out = out .. fmtRate(rate, "f", 2) .. " (" .. fmtRate(rate, "p") .. ")"
   end
   end
   return out
   return out

Revision as of 22:48, 30 April 2023

Documentation for this module may be created at Module:Rates/doc

local p = {}

local wholeFractions =
{
  [0.9] = "9/10",
  [0.88] = "22/25",
  [0.875] = "7/8",
  [0.85] = "17/20",
  [0.8] = "4/5",
  [0.6] = "3/5",
  [0.5625] = "9/16",
  [0.55] = "9/20",
  [0.5] = "1/2"
}

function p.calcRate(frame)
  return frame.args[1]*frame.args[2]
end

local function fmtRate(rate, fmt, digits)
  local out = ""
  if digits == nil then
    digits = 0
  end
  if fmt == "f" then
    local num, den
    if string.find(rate, "/") ~= nil then
      num, den = string.match(rate, "%f/%f")
    else
      num = rate
      den = 1
    end
    rate = num / den
    if wholeFractions[rate] == nil then
      if rate < 10 then
        digits = math.max(digits, 2)
      elseif rate < 100 then
        digits = math.max(digits, 1)
      else
        digits = math.max(digits, 0)
      end
      out = out .. string.format("%s", string.format(" %." .. digits .. "f", rate)):gsub("%.?0+$", "")
    else
      out = out .. wholeFractions[rate]
    end
    return out
  elseif fmt == "p" then
    rate = string.format("%s%%", string.format("%f", string.format(" %.5f", rate)):gsub("%.?0+$", ""))
    out = out .. rate
    return out
  end
end

function p.displayRate(frame)
  local rate = frame.args[1]
  local fmt = frame.args[2]
  local digits = frame.args[3]
  local out = ""
  if fmt == "f" then
  	out = out .. fmtRate(rate, "f", digits)
  elseif fmt == "p" then
    out = out .. fmtRate(rate, "p")
  elseif fmt == "n" then
    out = out .. fmtRate(rate, "f", 2) .. " (" .. fmtRate(rate, "p") .. ")"
  end
  return out
end

return p