-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
87 lines (77 loc) · 2.1 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
const cells = document.querySelectorAll(".cell");
const currstatus = document.querySelector("#status");
const resetgrid = document.querySelector("#reset");
const autoreset = document.querySelector("#autoreset");
const winConditions = [
[0, 1, 2],
[3, 4, 5],
[6, 7, 8],
[0, 3, 6],
[1, 4, 7],
[2, 5, 8],
[0, 4, 8],
[2, 4, 6]
];
let options = ["", "", "", "", "", "", "", "", ""];
let currPlayer = "X";
let running = false;
initializeGame();
function initializeGame(){
cells.forEach(cell => cell.addEventListener("click", cellClicked));
resetgrid.addEventListener("click", resetGame);
currstatus.textContent = `${currPlayer}'s turn`;
running = true;
}
function cellClicked(){
const cellIndex = this.getAttribute("cellIndex");
if(options[cellIndex] != "" || !running){
return;
}
updateCell(this, cellIndex);
checkWinner();
}
function updateCell(cell, index){
options[index] = currPlayer;
cell.textContent = currPlayer;
}
function changePlayer(){
currPlayer = (currPlayer == "X") ? "O" : "X";
currstatus.textContent = `${currPlayer}'s turn`;
}
function checkWinner(){
let roundWon = false;
for(let i = 0; i < winConditions.length; i++){
const condition = winConditions[i];
const cellA = options[condition[0]];
const cellB = options[condition[1]];
const cellC = options[condition[2]];
if(cellA == "" || cellB == "" || cellC == ""){
continue;
}
if(cellA == cellB && cellB == cellC){
roundWon = true;
break;
}
}
if(roundWon){
currstatus.textContent = `${currPlayer} wins!`;
running = false;
}
else if(!options.includes("")){
currstatus.textContent = `Draw!`;
running = false;
}
else{
changePlayer();
}
}
function AutoReset(){
setInterval(resetGame, 3000);
}
function resetGame(){
currPlayer = "X";
options = ["", "", "", "", "", "", "", "", ""];
currstatus.textContent = `${currPlayer}'s turn`;
cells.forEach(cell => cell.textContent = "");
running = true;
}