-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory-game.js
156 lines (112 loc) · 3.93 KB
/
memory-game.js
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
"use strict";
document.getElementById('start-btn').addEventListener('click', resetBoard);
const FOUND_MATCH_WAIT_MSECS = 1000;
const COLORS = [
"red", "blue", "green", "orange", "purple", "yellow",
"red", "blue", "green", "orange", "purple", "yellow"
];
let revealed = [];
let winScore = 6;
let pairs = 0;
let guesses = 0;
const colors = shuffle(COLORS);
/** Shuffle array items in-place and return shuffled array. */
function shuffle(items) {
// This algorithm does a "perfect shuffle", where there won't be any
// statistical bias in the shuffle (many naive attempts to shuffle end up not
// be a fair shuffle). This is called the Fisher-Yates shuffle algorithm; if
// you're interested, you can learn about it, but it's not important.
for (let i = items.length - 1; i > 0; i--) {
// generate a random index between 0 and i
let j = Math.floor(Math.random() * i);
// swap item at i <-> item at j
[items[i], items[j]] = [items[j], items[i]];
}
return items;
}
/** Create card for every color in colors (each will appear twice)
*
* Each div DOM element will have:
* - a class with the value of the color
* - a click event listener for each card to handleCardClick
*/
function createCards(colors) {
const gameBoard = document.getElementById("game");
for (let color of colors) {
let card = document.createElement('div');
card.classList.add(color);
card.classList.add('card-down');
card.addEventListener('click', handleCardClick);
gameBoard.appendChild(card);
}
}
/** Flip a card face-up. */
function flipCard(card) {
card.classList.remove('card-down')
card.removeEventListener('click', handleCardClick);
}
/** Flip a card face-down. */
function unFlipCard(card) {
card.classList.add('card-down');
card.addEventListener('click', handleCardClick);
}
function handleCardClick(evt) {
let card = evt.target; // target element --> this is what triggered the event, the DOM element that sas clicked
flipCard(card);
revealed.push(card);
if (revealed.length === 2) {
guesses++
score.innerText = `Guesses: ${guesses}`;
//remove event listeners so no other cards can be clicked
let unrevealed = document.getElementsByClassName('card-down')
for (let cards of unrevealed) {
cards.removeEventListener('click', handleCardClick);
}
setTimeout(pairCheck, 1000);
}
}
function pairCheck() {
if (String(revealed[0].classList) === String(revealed[1].classList)) { // pair
pairs++
if (pairs === winScore) { // winner
let header = document.querySelector('h1');
let h3 = document.querySelector('h3');
let h4 = document.querySelector('h4')
let score = document.getElementById('score');
header.innerText = 'All Pairs Found! Congrats :)';
if (guesses === 6) {
h3.innerText = `You played a perfect game! Woah!`;
} else {
h3.innerText = `Try to win with less than ${guesses} guesses next time!`;
}
h4.innerText = 'Hit "New Game" to try again';
score.style.backgroundColor = 'white';
}
} else { // not pair
unFlipCard(revealed[0]);
unFlipCard(revealed[1]);
}
revealed = [];
let unrevealed = document.getElementsByClassName('card-down');
for (let cards of unrevealed) {
cards.addEventListener('click', handleCardClick);
}
}
// resets our game, removes our current cards from the game table
function resetBoard() {
pairs = 0;
guesses = 0;
let header = document.querySelector('h1');
header.innerHTML = 'Welcome to my Memory Game!'
let h3 = document.querySelector('h3');
h3.innerText = 'Win with the least amount of guesses'
let h4 = document.querySelector('h4');
h4.innerText = 'Good Luck!';
let gameBoard = document.getElementById('game');
gameBoard.style.backgroundColor= '#DBCDC6';
gameBoard.innerHTML = '';
let score = document.getElementById('score');
score.innerText = 'Guesses: 0'
score.style.backgroundColor = '';
createCards(shuffle(COLORS));
}