-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
293 lines (252 loc) · 8.21 KB
/
Copy pathscript.js
File metadata and controls
293 lines (252 loc) · 8.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
// 'use strict';
let operand1, operand2, operator, result, score, interval, highScore;
const nextButton = document.getElementById('next-button');
const input = document.getElementById('input-field');
//generate random operand and operator
function generateQuestion() {
operand1 = Math.floor(Math.random() * 10) + 1;
operand2 = Math.floor(Math.random() * 10) + 1;
operator = Math.floor(Math.random() * 4);
switch (operator) {
case 0:
operator = '+';
result = operand1 + operand2;
break;
case 1:
operator = '-';
do {
operand2 = Math.floor(Math.random() * 10) + 1;
if (operand1 >= operand2) {
result = operand1 - operand2;
} else {
operand1 =
operand2 + Math.floor(Math.random() * (10 - operand2 + 1)) + 1;
result = operand1 - operand2;
}
} while (result === 0);
break;
case 2:
operator = '*';
result = operand1 * operand2;
if (result > 100) {
result = operand1 + operand2;
}
break;
case 3:
operator = '/';
result = operand1 / operand2;
if (result % 1 !== 0 || result < 0) {
result = operand1 + operand2;
operator = '+';
}
break;
}
document.getElementById('question').innerHTML =
operand1 + ' ' + operator + ' ' + operand2 + ' = ';
}
const displayMessage = function (message) {
document.querySelector('.message').textContent = message;
};
//color pop
function flashColor(color) {
document.body.style.backgroundColor = color;
setTimeout(() => {
document.body.style.backgroundColor = '#011627';
}, 500);
}
//highscore
let gameEnded = false;
// Save the high score to local storage
function setHighScore(score) {
localStorage.setItem('highScore', score);
}
// Get the high score from local storage
function getHighScore() {
return localStorage.getItem('highScore');
}
function updateHighScore(score) {
if (!gameEnded) {
return;
}
let highScore = getHighScore();
if (score > highScore) {
setHighScore(score);
document.getElementById('high-score').innerHTML = score;
}
}
let soundPlayed = false;
function endGame() {
// Check if the game has already ended
if (gameEnded) {
return;
}
gameEnded = true;
const score = parseInt(
document.getElementById('score').textContent.split(': ')[1]
);
const message = `Hurray! Your final score is ${score}.`;
displayMessage(message);
document.querySelector('body').style.backgroundColor = 'darkgreen';
// Play the sound effect if it hasn't been played yet
const sound = new Audio('./sound/hurray.wav');
sound.play();
// Update the score display
document.getElementById('score').textContent = message;
}
// retrieve the high score at the start of each new game
let startingScore = getHighScore();
if (startingScore === null) {
startingScore = 0;
} else {
startingScore = Number(startingScore);
}
//Read Out Results
const SpeechSynthesisUtterance =
window.speechSynthesis.SpeechSynthesisUtterance;
function speak(text) {
const utterance = new SpeechSynthesisUtterance(text);
window.speechSynthesis.speak(utterance);
}
let speech = new window.SpeechSynthesisUtterance();
// Get the list of available voices
let voices = window.speechSynthesis.getVoices();
// Find the index of the desired voice in the list of voices
let femaleVoiceIndex = voices.findIndex(
voice => voice.name === 'Google UK English Female'
);
// Set the voice using its index
speech.voice = voices[femaleVoiceIndex];
//check user input
let incorrectAnswers = 0;
function checkAnswer() {
document.getElementById('high-score').innerHTML = startingScore;
let time = parseInt(
document.getElementById('timer').innerHTML.split(' ')[2].split('s')[0]
);
if (time === 0) {
displayMessage('⌛Time is up! You can no longer answer questions.');
document.querySelector('body').style.bacgroundColor = 'darkred';
// Update high score after game ends
speech.voice = voices[femaleVoiceIndex];
speech.text = 'Time is up! You can no longer answer questions.';
speech.lang = 'en-US';
speech.rate = 3;
speechSynthesis.speak(speech);
endGame();
return;
}
let answer = parseInt(document.getElementById('answer').value);
highScore = getHighScore(score);
document.getElementById('high-score').innerHTML = highScore;
if (!answer || !Number(answer)) {
displayMessage('⛔No number! Insert a Number');
flashColor('#333');
speech.voice = voices[femaleVoiceIndex];
speech.text = 'No number! Insert a Number';
speech.lang = 'en-US';
speech.rate = 3;
speechSynthesis.speak(speech);
return;
}
if (answer === result) {
score += 2;
document.getElementById('score').innerHTML = 'Score: ' + score;
displayMessage('👏Correct, Keep going!');
flashColor('green');
generateQuestion();
document.getElementById('answer').value = '';
document.getElementById('answer').focus();
// updateHighScore(score);
speech.voice = voices[femaleVoiceIndex];
speech.voiceURI = 'Google UK English Female';
speech.text = 'Correct, Keep going!';
speech.lang = 'en-US';
speech.rate = 3;
speechSynthesis.speak(speech);
} else {
incorrectAnswers++;
document.getElementById('tries').innerHTML =
'Tries left: ' + (3 - incorrectAnswers);
flashColor('darkred');
displayMessage('☹🤦♂️ Oops, try again!');
speech.voice = voices[femaleVoiceIndex];
speech.text = 'Oops, try again';
speech.lang = 'en-US';
speech.rate = 3;
speechSynthesis.speak(speech);
if (incorrectAnswers >= 3) {
if (incorrectAnswers >= 3) {
clearInterval(interval);
document.getElementById('tries').innerHTML =
'You have exceeded the maximum number of allowed incorrect answers. ';
displayMessage('💥You Lost the game.');
// Update high score after game ends
document.querySelector('body').style.backgroundColor = 'darkred';
// updateHighScore(score);
endGame();
updateHighScore(score);
speech.voice = voices[femaleVoiceIndex];
speech.text = 'You Lost the game';
speech.lang = 'en-Us';
speech.rate = 3;
speechSynthesis.speak(speech);
return;
}
return;
}
}
}
//start timer
function startTimer() {
score = 0;
document.getElementById('timer').innerHTML = 'Time remaining: 60s';
interval = setInterval(function () {
let time = parseInt(
document.getElementById('timer').innerHTML.split(' ')[2].split('s')[0]
);
if (time === 0) {
clearInterval(interval);
displayMessage('⌛Time is up! Your score is ' + score);
document.querySelector('body').style.backgroundColor = 'darkred';
updateHighScore(score);
document.getElementById('high-score').innerHTML = score;
speech.voice = voices[femaleVoiceIndex];
speech.text = 'Time is up! Your score is ' + score;
speech.lang = 'en-US';
speech.rate = 3;
speechSynthesis.speak(speech);
endGame();
// Update high score after game ends
} else {
document.getElementById('timer').innerHTML =
'Time remaining: ' + (time - 1) + 's';
}
}, 1000);
generateQuestion();
}
setTimeout(function () {
document.querySelector('#timer').style.color = 'darkred';
}, 50400);
//Basic styling from dom
document.getElementById('question').style.display = 'inline-flex';
document.getElementById('question').style.justifyContent = 'center';
document.getElementById('question').style.alignItems = 'center';
operand1 = document.createElement('div');
operand1.style.padding = '0 10px';
operand1.innerHTML = operand1;
operator = document.createElement('div');
operator.style.padding = '0 10px';
operator.innerHTML = operator;
operand2 = document.createElement('div');
operand2.style.padding = '0 10px';
operand2.innerHTML = operand2;
document.getElementById('question').innerHTML = '';
document.getElementById('question').appendChild(operand1);
document.getElementById('question').appendChild(operator);
document.getElementById('question').appendChild(operand2);
document.getElementById('question').innerHTML += ' = ';
// //Make enter button perform same task as next button
//refresh game
function refresh() {
window.location.reload('Refresh');
}