pashto-grammar/src/lib/game-utils.ts

60 lines
1.7 KiB
TypeScript
Raw Normal View History

2021-09-03 12:05:05 +00:00
import {
removeAccents,
hasAccents,
Types as T,
standardizePashto,
standardizePhonetics,
flattenLengths,
2021-09-03 12:05:05 +00:00
} from "@lingdocs/pashto-inflector";
2021-08-31 16:33:44 +00:00
export function makeRandomQs<Q>(
amount: number,
makeQuestion: () => Q
): () => QuestionGenerator<Q> {
function makeProgress(i: number, total: number): Progress {
return { current: i + 1, total };
}
return function* () {
for (let i = 0; i < amount; i++) {
yield {
progress: makeProgress(i, amount),
question: makeQuestion(),
};
}
}
}
export function getPercentageDone(progress: Progress): number {
return Math.round(
(progress.current / (progress.total + 1)) * 100
);
}
export function makeProgress(i: number, total: number): Progress {
return { current: i + 1, total };
2021-09-03 12:05:05 +00:00
}
/**
* Says if an input written in phonetics by the user is correct/the same as a given answer
*
* The user is allowed to leave out the accents, but if they include them they must be the same as the answer
*
* @param input - the answer given by the user in phonetics
* @param answer - the correct answer in phonetics
*/
export function compareF(input: string, answer: string): boolean {
return input === (hasAccents(input) ? answer : removeAccents(answer));
}
export function comparePs(input: string, answer: T.SingleOrLengthOpts<T.PsString | T.PsString[]>): boolean {
if ("long" in answer) {
return comparePs(input, flattenLengths(answer))
}
if (Array.isArray(answer)) {
return answer.some(a => comparePs(input, a));
}
2022-08-30 15:08:17 +00:00
const stand = standardizePhonetics(
standardizePashto(input)
).trim();
return stand === answer.p || compareF(stand, answer.f);
2021-08-31 16:33:44 +00:00
}