Module:Gapnum: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>The Mol Man
No edit summary
meta>The Mol Man
No edit summary
Line 25: Line 25:


local int_part = math.floor(number)
local int_part = math.floor(number)
local frac_part = number:sub(int_part:len())
local frac_part = tostring(number):sub(tostring(int_part):len())
int_part = tostring(int_part)
int_part = tostring(int_part)

Revision as of 14:39, 5 July 2014

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

local p = {}

local getArgs

function p.main(frame)
	if not getArgs then
		getArgs = require('Module:Arguments').getArgs
	end
	local args = getArgs(frame, {wrappers = 'Template:Gaps'})
	local gap

	if args.gap then
		gap = args.gap
	else
		gap = '0.25em'
	end

	local ret_string = '<span style="white-space:nowrap">'

	local number = tonumber(args[1])
		
	if not number then
		return 'Error: parameter 1 did not parse as a number.'
	end

	local int_part = math.floor(number)
	local frac_part = tostring(number):sub(tostring(int_part):len())
	
	int_part = tostring(int_part)
	
	local int_string = ''
	while int_part:len() >= 3 do
		int_string = '<span style="margin-left:'..gap..';">'..int_part:sub(-3)..'</span>'..int_string
		int_part = int_part:sub(1,-4)
	end
	
	if int_part:len() > 0 then
		int_string = '<span style="margin-left:'..gap..';">'..int_part..'</span>'..int_string
	end
	
	ret_string = ret_string..int_string
	
	if frac_part ~= 0 then
		frac_part = tostring(frac_part)
		local frac_string = '.'
		
		-- The first group after the decimal shouldn't have a gap
		if frac_part:len() >= 3 then
			frac_string = frac_string..frac_part:sub(1,3)
			frac_part = frac_part:sub(4)
		else
			frac_string = frac_string..frac_part
			frac_part = ''
		end
		
		while frac_part:len() >= 3 do
			frac_string = frac_string..'<span style="margin-left:'..gap..';">'..frac_part:sub(1,3)..'</span>'
			frac_part = frac_part:sub(4)
		end
	
		if frac_part:len() > 0 then
			frac_string = frac_string..'<span style="margin-left:'..gap..';">'..frac_part..'</span>'
		end
		ret_string = ret_string..frac_string
	end
	
	ret_string = ret_string..'</span>'

	return ret_string
end

return p