Compare commits

..

No commits in common. "7c9d161719cba280d6df685d1a8549427e6df340" and "926c748eeae7c6d45e73277a4954af655589c7d3" have entirely different histories.

2 changed files with 238 additions and 1227 deletions

File diff suppressed because it is too large Load Diff

View File

@ -39,6 +39,8 @@ function stopNotePlaying() {
$("#beepLamp").removeClass("lamp-on") $("#beepLamp").removeClass("lamp-on")
} }
function sleep(ms) { function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms)); return new Promise(resolve => setTimeout(resolve, ms));
} }
@ -135,11 +137,6 @@ function getRandomWord() {
return EASY_WORDS[randomIndex]; return EASY_WORDS[randomIndex];
} }
function getRandomMorseWord() {
const randomIndex = Math.floor(Math.random() * MORSE_WORDS.length);
return MORSE_WORDS[randomIndex];
}
function getRandomEasyWords() { function getRandomEasyWords() {
const totalLength = Math.floor(Math.random() * 3) + 2; const totalLength = Math.floor(Math.random() * 3) + 2;
let finalSentence = '' let finalSentence = ''
@ -152,11 +149,11 @@ function getRandomEasyWords() {
return finalSentence; return finalSentence;
} }
function getRandomMorseWords() { function getRandomWords() {
const totalLength = Math.floor(Math.random() * 4) + 2; const totalLength = Math.floor(Math.random() * 4) + 2;
let finalSentence = '' let finalSentence = ''
for (let i = 0; i < totalLength; i++) { for (let i = 0; i < totalLength; i++) {
finalSentence += MORSE_WORDS[Math.floor(Math.random() * MORSE_WORDS.length)]; finalSentence += ALL_WORDS[Math.floor(Math.random() * ALL_WORDS.length)];
if (i < totalLength - 1) { if (i < totalLength - 1) {
finalSentence += ' '; finalSentence += ' ';
} }
@ -225,12 +222,6 @@ function getTarget() {
case 'hard': case 'hard':
target = getRandomEasyWords(); target = getRandomEasyWords();
break; break;
case 'morse-easy':
target = getRandomMorseWord();
break;
case 'morse-hard':
target = getRandomMorseWords();
break;
default: default:
target = getRandomWords(); target = getRandomWords();
break; break;
@ -688,4 +679,4 @@ var initializeAudioOnTouch = function() {
} }
document.removeEventListener('touchend', initializeAudioOnTouch); document.removeEventListener('touchend', initializeAudioOnTouch);
} }
document.addEventListener('touchend', initializeAudioOnTouch); document.addEventListener('touchend', initializeAudioOnTouch);