1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-21 13:39:09 +00:00

(svn r21215) -Codechange: store the plural form in the plural (choice) lists

This commit is contained in:
rubidium
2010-11-16 21:01:56 +00:00
parent c96cb9ce37
commit ebf7b915b0
2 changed files with 11 additions and 3 deletions

View File

@@ -375,12 +375,18 @@ static char *FormatGenericCurrency(char *buff, const CurrencySpec *spec, Money n
return buff;
}
static int DeterminePluralForm(int64 count)
/**
* Determine the "plural" index given a plural form and a number.
* @param count The number to get the plural index of.
* @param plural_form The plural form we want an index for.
* @return The plural index for the given form.
*/
static int DeterminePluralForm(int64 count, int plural_form)
{
/* The absolute value determines plurality */
uint64 n = abs(count);
switch (_langpack->plural_form) {
switch (plural_form) {
default:
NOT_REACHED();
@@ -875,8 +881,9 @@ static char *FormatString(char *buff, const char *str, int64 *argv, uint casei,
break;
case SCC_PLURAL_LIST: { // {P}
int plural_form = *str++; // contains the plural form for this string
int64 v = argv_orig[(byte)*str++]; // contains the number that determines plural
str = ParseStringChoice(str, DeterminePluralForm(v), &buff, last);
str = ParseStringChoice(str, DeterminePluralForm(v, plural_form), &buff, last);
break;
}