closes #5 add better end screen

This commit is contained in:
Akbar Rahman 2021-06-05 11:52:08 +01:00
parent d5e90a1b1f
commit 155f41afc1
2 changed files with 95 additions and 2 deletions

View File

@ -8,6 +8,9 @@ const answerBHTML = document.getElementById("answer_b");
const answerCHTML = document.getElementById("answer_c");
const answerDHTML = document.getElementById("answer_d");
const bodyHTML = document.getElementsByTagName("body")[0]
const incorrectAnswersTable = document.getElementById('incorrectAnswersTable');
const correctAnswersTable = document.getElementById('correctAnswersTable');
const resultsHTML = document.getElementById("results");
const scoreHTML = document.getElementById("score");
const settingsHTML = document.getElementById("settings");
const selectorHTML = document.getElementById("region_selector");
@ -23,6 +26,34 @@ const date = new Date();
var questionList, selectorMatches, state;
var resultsChart = new Chart(
document.getElementById('resultsChart'),
{
type: 'doughnut',
data: {
labels: [],
datasets: [
{
labels: [],
data: [],
backgroundColor: [
"#ab4642",
"#dc9656",
"#f7ca88",
"#a1b56c",
"#86c1b9",
"#7cafc2",
"#ba8baf",
"#a16946"
]
}
]
},
options: {}
}
);
// set up game
function init() {
@ -42,11 +73,16 @@ function init() {
state.maxScore = questionList.length;
state.score = 0;
state.startTime = date.getTime();
state.correctAnswers = [];
state.incorrectAnswers = [];
state.userAnswer = null;
// show and hide appropriate elements
answersHTML.style.display = "";
settingsHTML.style.display = "none";
questionHTML.onclick = deinit;
incorrectAnswersTable.innerHTML = "<tr> <th> country </th> <th> capital </th> <th> your answer </th> </tr>";
correctAnswersTable.innerHTML = "<tr> <th> country </th> <th> capital </th> </tr>";
// start game
updateState();
@ -57,6 +93,7 @@ function init() {
// stop game, go back to start screen
function deinit() {
answersHTML.style.display = "none";
resultsHTML.style.display = "none";
settingsHTML.style.display = "";
questionHTML.innerHTML = "tap here or press enter to start";
scoreHTML.innerHTML = "score";
@ -100,8 +137,7 @@ function updateState() {
function updateScreen(){
scoreHTML.innerHTML = state.score + "/" + state.maxScore;
if (state.finishedGame) {
questionHTML.innerHTML = "woooooooo!! tap here or press enter to restart";
answers.style.display = "none";
displayEndScreen();
return;
}
answerAHTML.getElementsByClassName("text")[0].innerHTML = state.options[0];
@ -111,12 +147,57 @@ function updateScreen(){
questionHTML.innerHTML = `what is the capital of <span id="questionCountry">${state.question}</span>?`;
}
function displayEndScreen() {
questionHTML.innerHTML = "you did it! click here to restart";
answers.style.display = "none";
answers.style.display = "none";
state.incorrectAnswers.forEach(ans => {
var tr = document.createElement('tr');
tr.appendChild(document.createElement('td'))
tr.lastChild.innerHTML = ans.question
tr.appendChild(document.createElement('td'))
tr.lastChild.innerHTML = ans.answer
tr.appendChild(document.createElement('td'))
tr.lastChild.innerHTML = ans.options[ans.userAnswer]
incorrectAnswersTable.appendChild(tr);
})
if (state.incorrectAnswers.length <= 0)
incorrectAnswersTable.innerHTML = "no incorrect answers! go you!";
state.correctAnswers.forEach(ans => {
var tr = document.createElement('tr');
tr.appendChild(document.createElement('td'))
tr.lastChild.innerHTML = ans.question
tr.appendChild(document.createElement('td'))
tr.lastChild.innerHTML = ans.answer
correctAnswersTable.appendChild(tr);
})
if (state.correctAnswers.length <= 0)
correctAnswersTable.innerHTML = "no correct answers. better luck next time :')";
resultsChart.config.data.labels = ["correct", "incorrect"];
resultsChart.config.data.labels = ["correct", "incorrect"];
resultsChart.config.data.datasets[0].labels = ["correct", "incorrect"];
resultsChart.config.data.datasets[0].data = [state.correctAnswers.length,state.incorrectAnswers.length];
resultsChart.update();
resultsHTML.style.display = "";
}
function processClick(answer) {
if (state.finishedGame) return;
// check if answer to previous question was correct
var isAnswerCorrect = state.options[answer] == state.answer
state.score += isAnswerCorrect ? 1 : 0;
state.userAnswer = answer;
state[isAnswerCorrect ? "correctAnswers" : "incorrectAnswers"].push({
"question": state.question,
"options": state.options,
"userAnswer": state.userAnswer,
"answer": state.answer
});
state.userAnswer = null;
// change background color based on if answer was correct
bodyHTML.classList.add(isAnswerCorrect ? "correct" : "incorrect")

View File

@ -37,8 +37,20 @@
<p class="text">answer d text</p>
</div>
</div>
<div style="display: none" id="results">
<h1 id="resultsBreakdownHeader"> results breakdown </h1>
<div>
<canvas id="resultsChart"></canvas>
</div>
<h2 id="incorrectAnswersHeader"> incorrect answers </h2>
<table id="incorrectAnswersTable"> </table>
<h2 id="correctAnswersHeader"> correct answers </h2>
<table id="correctAnswersTable"> </table>
</div>
</div>
<p> built with ❤ and adequate amounts of care by <a href="https://alra.uk">alv</a></p>
<script type="text/javascript" src="countries.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script type="text/javascript" src="game.js"></script>
</body>