မဝ်ဂျူ:NumberSpell

နူ ဝဳကဳပဳဒဳယာ

Documentation for this module may be created at မဝ်ဂျူ:NumberSpell/doc

-- This module converts a number into its written English form.
-- For example, "2" becomes "two", and "79" becomes "seventy-nine".

local getArgs = require('Module:Arguments').getArgs

local p = {}

local max = 100 -- The maximum number that can be parsed.

local ones = {
	[0] = 'သုည',
	[1] = 'မွဲ',
	[2] = 'ၜါ',
	[3] = 'ပိ',
	[4] = 'ပန်',
	[5] = 'မသုန်',
	[6] = 'တရဴ',
	[7] = 'ထပှ်',
	[8] = 'ဒစာံ',
	[9] = 'ဒစိတ်'
}

local specials = {
	[10] = 'စှ်',
	[11] = 'စှ်မွဲ',
	[12] = 'စှ်ၜါ',
	[13] = 'စှ်ပိ',
	[15] = 'စှ်သုန်',
	[18] = 'စှ်ဒစာံ',
	[20] = 'ၜါစှော်',
	[30] = 'ပိစှော်',
	[40] = 'ပန်စှော်',
	[50] = 'မသုန်စှော်',
	[60] = 'တရဴစှော်',
	[70] = 'ထပှ်စှော်',
	[80] = 'ဒစာံစှော်',
	[90] = 'ဒစိတ်စှော်',
	[100] = 'ကၠမ်'
}

local formatRules = {
	{num = 90, rule = 'ဒစိတ်စှော်-%s'},
	{num = 80, rule = 'ဒစာံစှော်-%s'},
	{num = 70, rule = 'ထပှ်စှော်-%s'},
	{num = 60, rule = 'တရဴစှော်-%s'},
	{num = 50, rule = 'မသုန်စှော်-%s'},
	{num = 40, rule = 'ပန်စှော်-%s'},
	{num = 30, rule = 'ပိစှော်-%s'},
	{num = 20, rule = 'ၜါစှော်-%s'},
	{num = 10, rule = '%စှော်'}
}

function p.main(frame)
	local args = getArgs(frame)
	local num = tonumber(args[1])
	local success, result = pcall(p._main, num)
	if success then
		return result
	else
		return string.format('<strong class="error">Error: %s</strong>', result) -- "result" is the error message.
	end
	return p._main(num)
end

function p._main(num)
	if type(num) ~= 'number' or math.floor(num) ~= num or num < 0 or num > max then
		error('input must be an integer between 0 and ' .. tostring(max), 2)
	end
	-- Check for numbers from 0 to 9.
	local onesVal = ones[num]
	if onesVal then
		return onesVal
	end
	-- Check for special numbers.
	local specialVal = specials[num]
	if specialVal then
		return specialVal
	end
	-- Construct the number from its format rule.
	onesVal = ones[num % 10]
	if not onesVal then
		error('Unexpected error parsing input ' .. tostring(num))
	end
	for i, t in ipairs(formatRules) do
		if num >= t.num then
			return string.format(t.rule, onesVal)
		end
	end
	error('No format rule found for input ' .. tostring(num))
end

return p