-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.js
199 lines (172 loc) · 5.76 KB
/
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
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
'use strict';
$(document).ready( function () {
var tokenToPlayer = {'X':'','O':''};
var turn = "X";
var mode;
var stopAnimation = function () {
$("*").css("animation", "none");
}; // end stop animation
var animationEndCheck = function() {
var animationTimeout = setTimeout(function() {
$("body").on("mousedown", function() {
var stop = prompt("For $8,000 a month I will stop. Yes or no?");
if (stop.toLowerCase() === "yes") {
stopAnimation();
$("body").off("mousedown");
} else if (stop.toLowerCase() === "no") {
alert("Enjoy.");
} else {
alert("Your input wasn't recognized. Please enter yes or no.");
}
});
}, 11500);
};
var getPlayers = function() {
var playerOne = prompt("Welcome Player One! Enter your name below.");
var playerTwo = prompt("Welcome Player Two! Enter your name below.");
tokenToPlayer.X = playerOne;
tokenToPlayer.O = playerTwo;
if (playerOne && playerTwo) {
$(".playerOne").html("<h2>" + playerOne + "</h2><p>You are X! Your turn is first.</p>");
$(".playerTwo").html("<h2>" + playerTwo + "</h2><p>You are O!</p>");
}
};
var gameMode = function() {
var whichMode = prompt("Would you like to play the easy or hard version? Please enter 'Easy' or 'Hard'.");
if (whichMode.toLowerCase() === "easy") {
stopAnimation();
getPlayers();
mode = "easy";
} else if (whichMode.toLowerCase() === "hard") {
getPlayers();
animationEndCheck();
mode = "hard";
} else {
alert("Please check your input and try again.");
gameMode();
}
};
gameMode();
var playerTurn = function () {
$("td.cell").on("click", function(cell){
var cellElement = $("#cell");
if (cellElement.html() !== "X" && cellElement.html() !== "O") {
cellElement.html(turn);
if (turn === "X") {
$(this).html("X");
turn = "O";
if (mode === "hard") {
alert("Wow cool move.");
}
addEventOutputTracking("Player One - it is your turn. <br>O is up next.");
} else {
$(this).html("O");
turn = "X";
if (mode === "hard") {
alert("Wow cool move.");
}
addEventOutputTracking("Player Two - it is your turn. <br>X is up next.");
}
check();
}
}); // end td
}; // end playerTurn
playerTurn();
$('.clear').on('click', function() {
$("td.cell").html("");
$("#eventOutput").html("<h1>User Output</h1>");
}); // end clear
// left side bar buttons
$('.randomPlay').on('click', function() {
alert("Wow you must have a sense of adventure.");
// Check if board is full
var found = false;
while (!found) {
var randomCellNumber = parseInt(Math.random() * 9) + 1;
var cellElement = $("#" + randomCellNumber);
if (cellElement.html() !== "X" && cellElement.html() !== "O") {
if (turn === "X") {
cellElement.html(turn);
found = true;
turn = "O";
} else if (turn === "O") {
cellElement.html(turn);
found = true;
turn = "X";
}
}
}
});
$('.newGame').on('click', function() {
$(".playerHistory").html("<h3>Winner History</h3>");
var newUsers = prompt("Do you want to enter new users? Respond yes or no.");
if (newUsers.toLowerCase() === "yes") {
gameMode();
} else if (newUsers.toLowerCase() === "no") {
$("td.cell").html("");
$(".aside").html("<h1>User Output</h1>");
} else {
alert("Your input wasn't recognized. Please enter yes or no.");
}
}); // end newGame
var check = function() {
var win = false;
var winnerName;
var cells = [ [$("#1").html(), $("#2").html(), $("#3").html()],
[$("#4").html(), $("#5").html(), $("#6").html()],
[$("#7").html(), $("#8").html(), $("#9").html()]];
// Tie
var full = true;
for (var i = 0; i < cells.length; i++) {
for (var j = 0; j < cells[i].length; j++) {
if (cells[i][j] === "") {
full = false;
// winnerName = "Nobody";
}
}
}
if (full) {
alert("Tie!");
addEventOutputTracking("<strong>Nobody wins!</strong>");
gameHistory("Nobody", " won the game.");
return;
}
for (var i = 0; i < cells.length && !win; i++) {
// Check Horizontal, i means rows
if (cells[i][0] !== "" && cells[i][0] === cells[i][1] && cells[i][1] === cells[i][2]) {
win = true;
winnerName = tokenToPlayer[cells[i][0]];
} else { // Check Vertical
// i now means columns
win = (cells[0][i] !== "" && cells[0][i] === cells[1][i] && cells[1][i] === cells[2][i]);
winnerName = tokenToPlayer[cells[0][i]];
}
}
if (!win) {
if (cells[1][1] !== "" && cells[0][0] === cells[1][1] && cells[1][1] === cells[2][2]) {
win = true;
winnerName = tokenToPlayer[cells[1][1]];
} else if (cells[1][1] !== "" && cells[0][2] === cells[1][1] && cells[1][1] === cells[2][0]) {
win = true;
winnerName = tokenToPlayer[cells[1][1]];
}
}
if (win) {
alert(winnerName + " Wins!");
addEventOutputTracking("<strong>" + winnerName + " wins this round!</strong>");
gameHistory(winnerName, " won.");
}
}; // end check
}); // end document ready
var addEventOutputTracking = function (outputText) {
var node = $(".aside");
var pChildNode = $("<p>");
pChildNode.html(outputText);
node.append(pChildNode);
}; // end AEOT
var gameHistory = function (winnerName, outputText) {
var node = $(".playerHistory");
var pChildNode = $("<p>");
pChildNode.html(winnerName + outputText);
node.append(pChildNode);
}; // end GH