1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import { Grammar } from '../../rule_engine/grammar.js';
- import { NUMBERS as NUMB } from '../messages.js';
- function hundredsToWords_(num) {
- let n = num % 1000;
- let str = '';
- str += NUMBERS.ones[Math.floor(n / 100)]
- ? NUMBERS.ones[Math.floor(n / 100)] + NUMBERS.numSep + 'cento'
- : '';
- n = n % 100;
- if (n) {
- str += str ? NUMBERS.numSep : '';
- const ones = NUMBERS.ones[n];
- if (ones) {
- str += ones;
- }
- else {
- let tens = NUMBERS.tens[Math.floor(n / 10)];
- const rest = n % 10;
- if (rest === 1 || rest === 8) {
- tens = tens.slice(0, -1);
- }
- str += tens;
- str += rest ? NUMBERS.numSep + NUMBERS.ones[n % 10] : '';
- }
- }
- return str;
- }
- function numberToWords(num) {
- if (num === 0) {
- return NUMBERS.zero;
- }
- if (num >= Math.pow(10, 36)) {
- return num.toString();
- }
- if (num === 1 && Grammar.getInstance().getParameter('fraction')) {
- return 'un';
- }
- let pos = 0;
- let str = '';
- while (num > 0) {
- const hundreds = num % 1000;
- if (hundreds) {
- str =
- hundredsToWords_(num % 1000) +
- (pos ? '-' + NUMBERS.large[pos] + '-' : '') +
- str;
- }
- num = Math.floor(num / 1000);
- pos++;
- }
- return str.replace(/-$/, '');
- }
- function numberToOrdinal(num, plural) {
- if (num === 2) {
- return plural ? 'mezzi' : 'mezzo';
- }
- const ordinal = wordOrdinal(num);
- if (!plural) {
- return ordinal;
- }
- const gender = ordinal.match(/o$/) ? 'i' : 'e';
- return ordinal.slice(0, -1) + gender;
- }
- function wordOrdinal(num) {
- const gender = Grammar.getInstance().getParameter('gender');
- const postfix = gender === 'm' ? 'o' : 'a';
- let ordinal = NUMBERS.special.onesOrdinals[num];
- if (ordinal) {
- return ordinal.slice(0, -1) + postfix;
- }
- ordinal = numberToWords(num);
- return ordinal.slice(0, -1) + 'esim' + postfix;
- }
- function numericOrdinal(num) {
- const gender = Grammar.getInstance().getParameter('gender');
- return num.toString() + (gender === 'm' ? 'o' : 'a');
- }
- export const NUMBERS = NUMB({
- wordOrdinal: wordOrdinal,
- numericOrdinal: numericOrdinal,
- numberToWords: numberToWords,
- numberToOrdinal: numberToOrdinal
- });
|