-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
131 lines (99 loc) · 3.17 KB
/
script.js
File metadata and controls
131 lines (99 loc) · 3.17 KB
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
import { startConfetti, stopConfetti, removeConfetti } from "./confetti.js";
const playerChoice = document.getElementById('playerChoice');
const playerScore = document.getElementById('playerScore');
const playerSelection = document.querySelectorAll('.player-container i');
const computerSelections = document.querySelectorAll('.computer-container i');
const computerChoiceText = document.getElementById('computerChoice');
const computerScore = document.getElementById('computerScore');
const resultText = document.getElementById('resultText')
const choices = {
rock: { name: 'Rock', defeats: ['Scissors', 'Lizard'] },
paper: { name: 'Paper', defeats: ['Rock', 'Spock'] },
scissors: { name: 'Scissors', defeats: ['Paper', 'Lizard'] },
lizard: { name: 'Lizard', defeats: ['Paper', 'Spock'] },
spock: { name: 'Spock', defeats: ['Scissors', 'Rock'] },
};
let computerSelectedItem ='';
let playerScoreNum = 0 ;
let computerScoreNum = 0;
function resetAll()
{
playerScoreNum=0;
computerScoreNum=0;
resultText.textContent = '';
computerScore.textContent = computerScoreNum;
playerScore.textContent = playerScoreNum;
playerChoice.textContent ='';
computerChoiceText.textContent = '';
computerSelections.forEach((item,i)=>{
computerSelections[i].classList.remove('computer-selected');
});
playerSelection.forEach((item,i)=>{
playerSelection[i].classList.remove('player-selected');
});
}
function computerChoice()
{
const options=['Rock','Paper','Scissors','Lizard','Spock'];
let randomNum = Math.floor(Math.random()*5) ;
computerSelectedItem = options[randomNum];
computerSelections.forEach((item,i)=>{
computerSelections[i].classList.remove('computer-selected');
if(item.title === computerSelectedItem)
{
computerSelections[i].classList.add('computer-selected');
computerChoiceText.textContent = ` ---${computerSelectedItem}`;
computerChoiceText.style.color = 'rgb(255, 30, 49)';
}
})
}
function updateScore(pChoice)
{
if(pChoice === computerSelectedItem)
{
resultText.textContent = "Oops, It's a Tie";
resultText.style.color = 'brown';
}
else
{
const choicesCheck = choices[pChoice.toLowerCase()];
if(choicesCheck.defeats.indexOf(computerSelectedItem) === -1)
{
resultText.textContent = "You Lost!";
resultText.style.color = 'red';
computerScoreNum++;
computerScore.textContent = computerScoreNum;
}
else
{
startConfetti()
resultText.textContent = "Hurrah, You Win!";
resultText.style.color = 'green';
playerScoreNum++;
playerScore.textContent = playerScoreNum;
}
}
}
function checkResult(pChoice)
{
computerChoice()
updateScore(pChoice)
}
function select(choice)
{
stopConfetti();
removeConfetti();
playerSelection.forEach((item,i)=>{
playerSelection[i].classList.remove('player-selected');
if(item.title === choice)
{
playerSelection[i].classList.add('player-selected');
playerChoice.textContent = ` ---${choice}`;
playerChoice.style.color = 'dodgerblue';
}
})
checkResult(choice)
}
window.select = select;
window.resetAll = resetAll;
resetAll();