forked from rocketacademy/basics-scissors-paper-stone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
247 lines (243 loc) · 5.9 KB
/
script.js
File metadata and controls
247 lines (243 loc) · 5.9 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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
// Setting the default gamestate to inform user to input
var mode = "username request";
var username = "";
// Winrate records
var noUserTries = 0;
var noDraws = 0;
var computerWins = 0;
var userWins = 0;
var winrate = Math.floor(Number(userWins) / Number(noUserTries)) * Number(100);
// Creating a variable for output
var myOutputValue = "";
var main = function (input) {
if (mode == "username request" && input != "") {
// collect username
username = input;
console.log("Username");
console.log(username);
mode = "SPS game";
console.log("current mode");
console.log(mode);
} else {
myOutputValue = "Hi! Please tell me your name to start playing.";
}
var computer = computerRoll();
//any input other than rock, paper or scissors give this outputValue
if (mode == "SPS game") {
myOutputValue =
"Hi " +
username +
"! Let's play! Please input 'stone', 'paper' or 'scissors' to play.";
}
// (1) Classic game
// (1a) Classic Win
if (
(input == "scissors" && computer == "paper") ||
(input == "paper" && computer == "stone") ||
(input == "stone" && computer == "scissors")
) {
noUserTries = noUserTries + 1;
userWins = userWins + 1;
winrate = Math.floor(
(Number(userWins) / Number(noUserTries)) * Number(100)
);
myOutputValue =
"You won! You picked " +
input +
" and the computer picked " +
computer +
"." +
"<br>" +
"<br>" +
"Nice one!" +
"<br>" +
"<br>" +
"(1) " +
username +
", your winrate is " +
winrate +
"% with " +
userWins +
" wins!" +
"!" +
"<br>" +
"<br>" +
"(2) Computer's winrate is " +
(100 - winrate) +
"% with " +
computerWins +
" wins.." +
"<br>" +
"<br>" +
"(3) Number of draws = " +
noDraws +
"<br>" +
"<br>" +
"Please input 'stone', 'paper' or 'scissors' to play again!";
}
// (1b) Classic Loss
if (
(input == "scissors" && computer == "stone") ||
(input == "paper" && computer == "scissors") ||
(input == "stone" && computer == "paper")
) {
noUserTries = noUserTries + 1;
computerWins = computerWins + 1;
winrate = Math.floor(
(Number(userWins) / Number(noUserTries)) * Number(100)
);
myOutputValue =
"You lost! You picked " +
input +
" and the computer picked " +
computer +
"." +
"<br>" +
"<br>" +
"Better luck next time!" +
"<br>" +
"<br>" +
"(1) " +
username +
", your winrate is " +
winrate +
"% with " +
userWins +
" wins!" +
"!" +
"<br>" +
"<br>" +
"(2) Computer's winrate is " +
(100 - winrate) +
"% with " +
computerWins +
" wins.." +
"<br>" +
"<br>" +
"(3) Number of draws = " +
noDraws +
"<br>" +
"<br>" +
"Please input 'stone', 'paper' or 'scissors' to play again!";
}
// (1c) Classic Draw
if (
(input == "scissors" && computer == "scissors") ||
(input == "paper" && computer == "paper") ||
(input == "stone" && computer == "stone")
) {
noDraws = noDraws + 1;
myOutputValue =
"It's a draw! You picked " +
input +
" and the computer picked " +
computer +
"." +
"<br>" +
"<br>" +
"No winners this time!" +
"<br>" +
"<br>" +
"(1) " +
username +
", your winrate is " +
winrate +
"% with " +
userWins +
" wins!" +
"!" +
"<br>" +
"<br>" +
"(2) Computer's winrate is " +
(100 - winrate) +
"% with " +
computerWins +
" wins.." +
"<br>" +
"<br>" +
"(3) Number of draws = " +
noDraws +
"<br>" +
"<br>" +
"Please input 'stone', 'paper' or 'scissors' to play again!";
}
// (2) Reversed Game
// (2a) Reversed Win
if (
(input == "reversed scissors" && computer == "stone") ||
(input == "reversed paper" && computer == "scissors") ||
(input == "reversed stone" && computer == "paper")
) {
myOutputValue =
"You won! You picked " +
input +
" and the computer picked " +
computer +
"." +
"<br>" +
"<br>" +
"Nice one!" +
"<br>" +
"<br>" +
"Please input 'stone', 'paper' or 'scissors' to play again!";
}
// (2b) Reversed Loss
if (
(input == "reversed scissors" && computer == "paper") ||
(input == "reversed paper" && computer == "stone") ||
(input == "reversed stone" && computer == "scissors")
) {
myOutputValue =
"You lost! You picked " +
input +
" and the computer picked " +
computer +
"." +
"<br>" +
"<br>" +
"Better luck next time!" +
"<br>" +
"<br>" +
"Please input 'stone', 'paper' or 'scissors' to play again!";
}
// (2c) Reversed Draw
if (
(input == "reversed scissors" && computer == "scissors") ||
(input == "reversed paper" && computer == "paper") ||
(input == "reversed stone" && computer == "stone")
) {
myOutputValue =
"It's a draw! You picked " +
input +
" and the computer picked " +
computer +
"." +
"<br>" +
"<br>" +
"No winners this time!" +
"<br>" +
"<br>" +
"Please input 'stone', 'paper' or 'scissors' to play again!";
}
return myOutputValue;
};
// computer rolls randomly
var computerRoll = function () {
var randomNumber = Math.random() * 3;
var randomInteger = Math.floor(randomNumber);
var randomRoll = randomInteger + 1;
console.log("Random Number 1-3");
console.log(randomRoll);
var computerRoll = "scissors";
// Paper = 2
if (randomRoll == 2) {
computerRoll = "paper";
}
// Stone = 3
if (randomRoll == 3) {
computerRoll = "stone";
}
console.log("Computer's Roll");
console.log(computerRoll);
return computerRoll;
};