-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
203 lines (189 loc) · 6.51 KB
/
script.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
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
const moves = document.getElementById("moves-count");
const timeValue = document.getElementById("time");
const startButton = document.getElementById("start");
const stopButton = document.getElementById("stop");
const gameContainer = document.querySelector(".game-container");
const result = document.getElementById("result");
const controls = document.querySelector(".control-container");
const gameInstructions = document.querySelector(".game-instructions");
let cards;
let interval;
let firstCard = false;
let secondCard = false;
let minutesValue;
let secondsValue;
//Items Array
const items = [
{ name: "darkness", image: "./images/darkness.jpg" },
{ name: "double", image: "./images/double.jpg" },
{ name: "fairy", image: "./images/fairy.jpg" },
{ name: "fighting", image: "./images/fighting.jpg" },
{ name: "fire", image: "./images/fire.jpg" },
{ name: "grass", image: "./images/grass.jpg" },
{ name: "lightning", image: "./images/lightning.jpg" },
{ name: "metal", image: "./images/metal.jpg" },
{ name: "psychic", image: "./images/psychic.jpg" },
{ name: "water", image: "./images/water.jpg" },
];
//Initial Time
let seconds = 0;
let minutes = 0;
//Initial moves and win count
let movesCount = 0;
let winCount = 0;
//For Timer
const timeGenerator = () => {
seconds += 1;
//minutes logic
if (seconds >= 60) {
minutes += 1;
seconds = 0;
}
//Format time before displaying
if (seconds < 10) {
secondsValue = `0${seconds}`;
} else {
secondsValue = seconds;
}
if (minutes < 10) {
minutesValue = `0${minutes}`;
} else {
minutesValue = minutes;
}
timeValue.innerHTML = `<span>Time:</span>${minutesValue}:${secondsValue}`;
console.log(timeValue.innerHTML);
};
//For calculate moves
const movesCounter = () => {
console.log("Moves counter called");
movesCount += 1;
moves.innerHTML = `<span>Moves:</span>${movesCount}`;
};
//Pick random objects from the items array
const generateRandom = (size = 4) => {
//temporary Array
let tempArray = [...items];
//Initializes card values array
let cardValues = [];
//Size should be double(4*4)/2 since paris of objects would exist
size = (size * size) / 2;
//Random object selection
for (let i = 0; i < size; i++) {
const randomIndex = Math.floor(Math.random() * tempArray.length);
cardValues.push(tempArray[randomIndex]);
//once selected remove the object from temp array
tempArray.splice(randomIndex, 1);
}
return cardValues;
};
const matrixGenerator = (cardValues, size = 4) => {
gameContainer.innerHTML = "";
cardValues = [...cardValues, ...cardValues];
//simply shuffle
cardValues.sort(() => Math.random() - 0.5);
for (let i = 0; i < size * size; i++) {
/*
Create Cards
before => front side (contains question mark)
after => back side (contains actual image);
data-card-values is a custom attribute which stores the names of the cards to match later
*/
gameContainer.innerHTML += `
<div class="card-container" data-card-value="${cardValues[i].name}">
<div class="card-before">?</div>
<div class="card-after">
<img src="${cardValues[i].image}"class="image"/></div>
`;
}
//Grid
gameContainer.style.gridTemplateColumns = `repeat(${size},auto)`;
//Cards
cards = document.querySelectorAll(".card-container");
cards.forEach((card) => {
card.addEventListener("click", () => {
//If selected card is not matched yet then only run (i.e already matched card when clicked would be ignored)
if (!card.classList.contains("matched")) {
//Flip the card
card.classList.add("flipped");
//If it's the firstCard (!firstCard since firstCard is initially false)
if (!firstCard) {
//so current card will be firstCard
firstCard = card;
//current cards value becomes firstCardValue
firstCardValue = card.getAttribute("data-card-value");
} else {
//increment moves since user selected second card
movesCounter();
//secondCard and value
secondCard = card;
let secondCardValue = card.getAttribute("data-card-value");
if (firstCardValue === secondCardValue) {
//if both cards match add matched class so these cards would be ignored next time
firstCard.classList.add("matched");
secondCard.classList.add("matched");
//set firstCard to false since next card would be first now
firstCard = false;
//winCount increment as user found a correct match
winCount += 1;
//Check if winCount == half of cardValues
if (winCount == Math.floor(cardValues.length / 2)) {
result.innerHTML = `<h2>You Won!</h2>
<h4>Moves:${movesCount}</h4>`;
stopGame();
startButton.classList.remove("hide");
}
} else {
//if cards don't match then flip them back
let [tempFirst, tempSecond] = [firstCard, secondCard];
firstCard = false;
secondCard = false;
let delay = setTimeout(() => {
tempFirst.classList.remove("flipped");
tempSecond.classList.remove("flipped");
}, 900);
}
}
}
});
});
};
//// Start the game
startButton.addEventListener("click", () => {
movesCount = 0;
seconds = 0;
minutes = 0;
//Restart game controls and movements
controls.classList.add("hide");
stopButton.classList.remove("hide");
startButton.classList.add("hide");
gameInstructions.classList.add("hide");
//Start timer
interval = setInterval(timeGenerator, 1000);
//Initial moves
moves.innerHTML = `<span>Moves:</span>${movesCount}`;
initializer();
});
//Stop Game
stopButton.addEventListener("click", () => {
// Determine if the game is won or not
if (winCount === Math.floor(cards.length / 2)) {
// When the game has been won, keep instructions hidden
gameInstructions.classList.add("hide");
} else {
// When the game has not been won, show instructions
gameInstructions.classList.remove("hide");
}
// Set the game state to stop
controls.classList.remove("hide"); // Show control container
stopButton.classList.add("hide"); // Hide stop button
startButton.classList.remove("hide"); // Show start button
clearInterval(interval); // Stop the timer
});
// Initialize values and function calls
const initializer = () => {
result.innerText = "";
winCount = 0;
let cardValues = generateRandom();
console.log(cardValues);
matrixGenerator(cardValues);
};