Module:Percentage: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>Bradv
m Changed protection level for "Module:Percentage": Highly visible template, match with Template:Percentage ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite))
meta>Frietjes
No edit summary
Line 18: Line 18:
end
end


function percentage(n1, n2, prec, suffix, pad, sigfig)
local function fmtout(num,snote)
if snote then
return nonscinote(num)
else
return num
end
end
 
local function nonscinote(num)
-- This function undoes scientific notation
local a,b,c,d = mw.ustring.match(num or '', '^%s*(%d)%.(%d+)<span[^<>]*>×</span>10<sup>([%-−]?)(%d)</sup>%s*$')
if tonumber(d) then
if c ~= '' then
return '0.' .. mw.ustring.rep('0', tonumber(d) - 1) .. a .. b
else
return a .. mw.ustring.sub(b .. mw.ustring.rep('0', tonumber(d) ), 1, tonumber(d))
end
end
return num
end
 
function percentage(n1, n2, prec, suffix, pad, sigfig, sn)
local pct = 100*n1/n2
local pct = 100*n1/n2
skey = '<span data-sort-value="'
skey = '<span data-sort-value="'
Line 27: Line 48:
if sigfig ~= '' then
if sigfig ~= '' then
if pct ~= 0 then
if pct ~= 0 then
return skey .. rnd(pct, tonumber(sigfig) - oom(pct) - 1) .. suffix
return skey .. fmtout(rnd(pct, tonumber(sigfig) - oom(pct) - 1), sn) .. suffix
else
else
return skey .. rnd(pct, tonumber(sigfig) - 3) .. suffix
return skey .. fmtout(rnd(pct, tonumber(sigfig) - 3), sn) .. suffix
end
end
end
end
if pad ~= '' then
if pad ~= '' then
return skey .. rnd(pct, prec) .. suffix
return skey .. fmtout(rnd(pct, prec), sn) .. suffix
end
end
Line 41: Line 62:
end
end
return skey .. pct .. suffix
return skey .. fmtout(pct, sn) .. suffix
end
end


Line 50: Line 71:
tonumber(frame.args[3]) or tonumber(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 '',
(frame.args['nonscinote'] or '') == 'y'
)
)
end
end


return p
return p

Revision as of 14:35, 8 December 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

local function fmtout(num,snote)
	if snote then
		return nonscinote(num)
	else
		return num
	end
end

local function nonscinote(num)
	-- This function undoes scientific notation
	local a,b,c,d = mw.ustring.match(num or '', '^%s*(%d)%.(%d+)<span[^<>]*>×</span>10<sup>([%-−]?)(%d)</sup>%s*$')
	if tonumber(d) then
		if c ~= '' then
			return '0.' .. mw.ustring.rep('0', tonumber(d) - 1) .. a .. b
		else
			return a .. mw.ustring.sub(b .. mw.ustring.rep('0', tonumber(d) ), 1, tonumber(d))
		end
	end
	return num
end

function percentage(n1, n2, prec, suffix, pad, sigfig, sn)
	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 .. fmtout(rnd(pct, tonumber(sigfig) - oom(pct) - 1), sn) .. suffix
		else
			return skey .. fmtout(rnd(pct, tonumber(sigfig) - 3), sn) .. suffix
		end
	end
	if pad ~= '' then
		return skey .. fmtout(rnd(pct, prec), sn) .. 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 .. fmtout(pct, sn) .. 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 '',
		(frame.args['nonscinote'] or '') == 'y'
		)
end

return p