Module:Percentage: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>Frietjes
No edit summary
meta>Frietjes
No edit summary
Line 33: Line 33:
end
end
if pad ~= '' then
if pad ~= '' then
return skey .. rnd(pct, prec) .. suffix .. ' (' .. pct .. ' and ' .. prec .. ')'
return skey .. rnd(pct, prec) .. suffix
end
end
Line 48: Line 48:
tonumber(frame.args[1]) or 0,
tonumber(frame.args[1]) or 0,
tonumber(frame.args[2]) or 100,
tonumber(frame.args[2]) or 100,
tonumber(frame.args[3] or frame.args['pad']) or 0,
tonumber(frame.args[3]) or tonumber(frame.args['pad']) or 0,
frame.args['%'] or '%', frame.args['pad'] or '',
frame.args['%'] or '%', frame.args['pad'] or '',
frame.args['sigfig'] or ''
frame.args['sigfig'] or ''
)
) .. ' (' .. (tonumber(frame.args[3]) or tonumber(frame.args['pad']) or 0) .. ')'
end
end


return p
return p

Revision as of 14:20, 20 October 2019

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

--
-- This module implements [[Template:Percentage]]
--
local p = {}

local math_module = require( "Module:Math" )
local precision = math_module._precision
local sortkey = require( "Module:Sortkey" )

local function rnd(num, digits)
	-- This function implements {{rnd}}
	return math_module._precision_format(tostring(num), digits)
end

local function oom(num)
	-- This function implements {{order of magnitude}}
	return math_module._order(tostring(num))
end

function percentage(n1, n2, prec, suffix, pad, sigfig)
	local pct = 100*n1/n2
	skey = '<span data-sort-value="'
			.. sortkey._sortKeyForNumber(pct) .. '♠" style="display:none"></span>'

	-- prec = math.floor(prec)

	if sigfig ~= '' then
		if pct ~= 0 then
			return skey .. rnd(pct, tonumber(sigfig) - oom(pct) - 1) .. suffix
		else
			return skey .. rnd(pct, tonumber(sigfig) - 3) .. suffix
		end
	end
	if pad ~= '' then
		return skey .. rnd(pct, prec) .. suffix
	end
	
	prec = (prec < 0) and 0 or prec
	if pct ~= 0 then
		pct = ((pct < 0) and -1 or 1)*math.floor(math.abs(pct * 10^prec) + 0.5) / 10^prec
	end
	
	return skey .. pct .. suffix
end

function p.main(frame)
	return percentage(
		tonumber(frame.args[1]) or 0,
		tonumber(frame.args[2]) or 100,
		tonumber(frame.args[3]) or tonumber(frame.args['pad']) or 0,
		frame.args['%'] or '%', frame.args['pad'] or '',
		frame.args['sigfig'] or ''
		) .. ' (' .. (tonumber(frame.args[3]) or tonumber(frame.args['pad']) or 0) .. ')'
end

return p