-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
151 lines (137 loc) · 5.68 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
let userChoice, computerChoice, userScore = 0, computerScore = 0, currentScore = 0, explan1 = "", explan2 = "", roundOn = true, userWins = 0, computerWins = 0, winner = "";
const modal = document.getElementById("modal");
const overlay = document.getElementById("overlay");
const close = document.getElementById("modal-close");
updateHTML();
close.addEventListener("click", () => {
modal.classList.remove("active");
overlay.classList.remove("active");
})
overlay.addEventListener("click", () => {
modal.classList.remove("active");
overlay.classList.remove("active");
})
document.getElementById("rock").addEventListener("click", () => {
userChoice = "Rock";
getComputerChoice();
getBattWinner(userChoice,computerChoice);
getRoundWinner();
setTimeout(resetExplans, 301);
});
document.getElementById("paper").addEventListener("click", () => {
userChoice = "Paper";
getComputerChoice();
getBattWinner(userChoice,computerChoice);
getRoundWinner();
setTimeout(resetExplans, 301);
});
document.getElementById("scissors").addEventListener("click", () => {
userChoice = "Scissors";
getComputerChoice();
getBattWinner(userChoice,computerChoice);
getRoundWinner();
setTimeout(resetExplans, 301);
});
function resetExplans(){
explan1 = "";
explan2 = "";
}
function getComputerChoice(){
let nonce = Math.floor(Math.random()*3)+1;
switch (nonce){
case 1:
computerChoice = "Rock";
break;
case 2:
computerChoice = "Paper"
break;
case 3:
computerChoice = "Scissors";
break;
default:
}
return computerChoice;
}
function getBattWinner(x,y){
if (x === y && (x === "Rock" || x === "Paper" || x === "Scissors") && (y === "Rock" || y === "Paper" || y === "Scissors")) {
explan1 = "Draw!";
explan2 = "Draw!";
return;
} else if (x === "Rock" && y === "Scissors") {
userScore += 1;
explan1 = "Rock BEATS Scissors!";
} else if (x === "Scissors" && y === "Paper") {
userScore += 1;
explan1 = "Scissors BEATS Paper!";
} else if (x === "Paper" && y === "Rock") {
userScore += 1;
explan1 = "Paper BEATS Rock!";
} else if (y === "Rock" && x === "Scissors") {
computerScore += 1;
explan2 = "Rock BEATS Scissors!";
} else if (y === "Scissors" && x === "Paper") {
computerScore += 1;
explan2 = "Scissors BEATS Paper!";
} else if (y === "Paper" && x === "Rock") {
computerScore += 1;
explan2 = "Paper BEATS Rock!";
} else {
return;
} return;
}
function updateHTML(){
(userChoice === "Rock")? document.getElementById("userChoice").innerHTML = `<img src="images/rock.png">` :
(userChoice === "Paper")? document.getElementById("userChoice").innerHTML = `<img src="images/paper.png">` :
(userChoice === "Scissors")? document.getElementById("userChoice").innerHTML = `<img src="images/scissors.png">` :
document.getElementById("userChoice").innerHTML = "";
(computerChoice === "Rock")? document.getElementById("computerChoice").innerHTML = `<img src="images/rock.png">` :
(computerChoice === "Paper")? document.getElementById("computerChoice").innerHTML = `<img src="images/paper.png">` :
(computerChoice === "Scissors")? document.getElementById("computerChoice").innerHTML = `<img src="images/scissors.png">` :
document.getElementById("computerChoice").innerHTML = "";
(userScore)? document.getElementById("userScore").innerHTML = userScore : document.getElementById("userScore").innerHTML = 0;
(computerScore)? document.getElementById("computerScore").innerHTML = computerScore : document.getElementById("computerScore").innerHTML = 0;
(userWins)? document.getElementById("userWins").innerHTML = userWins : document.getElementById("userWins").innerHTML = 0;
(computerWins)? document.getElementById("computerWins").innerHTML = computerWins : document.getElementById("computerWins").innerHTML = 0;
document.getElementById("gameWinner").innerHTML = winner;
(explan1)? document.getElementById("explan1").innerHTML = explan1 : document.getElementById("explan1").innerHTML = "";
(explan2)? document.getElementById("explan2").innerHTML = explan2 : document.getElementById("explan2").innerHTML = "";
}
function newRound(){
userChoice = "";
computerChoice = "";
userScore = 0;
computerScore = 0;
roundOn = true;
explan1 = "";
explan2 = "";
document.getElementById("rock").removeAttribute("disabled");
document.getElementById("paper").removeAttribute("disabled");
document.getElementById("scissors").removeAttribute("disabled");
}
function getRoundWinner(){
if (userScore === 5){
userWins += 1;
document.getElementById("rock").setAttribute("disabled", true);
document.getElementById("paper").setAttribute("disabled", true);
document.getElementById("scissors").setAttribute("disabled", true);
winner = "you"
updateHTML();
modal.classList.add("active");
overlay.classList.add("active");
setTimeout(newRound,2000);
setTimeout(updateHTML,2001);
} else if (computerScore === 5){
computerWins += 1;
document.getElementById("rock").setAttribute("disabled", true);
document.getElementById("paper").setAttribute("disabled", true);
document.getElementById("scissors").setAttribute("disabled", true);
winner = "the computer"
updateHTML();
modal.classList.add("active");
overlay.classList.add("active");
setTimeout(newRound,2000);
setTimeout(updateHTML,2001);
} else{
setTimeout(updateHTML, 300);
};
}