-
Notifications
You must be signed in to change notification settings - Fork 1
/
rpsls.cpp
352 lines (332 loc) · 9.73 KB
/
rpsls.cpp
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
//Libraries requires for the game including the header file
#include <iostream>
#include <cstdlib>
#include <ctime>
#include "rpsls.hpp" //The function declarations
//Declarations - moved to header file
rpsls::rpsls(){
game_plays = 0;
player_wins = 0;
pc_wins = 0;
ties = 0;
}//The constructor
rpsls::~rpsls(){
std::cout << " Based on Notes from SAM KASS\n"
<< " (http://www.samkass.com/theories/RPSSL.html)"
<< "\n------------------------------------------------------------------\n"
<< " Closing Game. BYE!"
<< "\n------------------------------------------------------------------\n";
}//The destructor
void rpsls::start(){
game_instructions();
bool game = true;
std::cout << " =================================\n"
<< " ROCK PAPER SCISSORS LIZARD SPOCK!\n"
<< " =================================\n";
std::cout << "\nWhen you get the 'GO' pick one of the options provided.\n";
std::cout << "\n------------------------------------------------------------------\n";
while(game){
plays();
/*
bool get_instructions = false;
std::cout<<"Would you like to see the game instructions once again? (1=Yes, 0=No): ";
std::cin >> get_instructions;
if(get_instructions){
game_instructions();
}
*/
int computer = rand() % 5 + 1;
int user = 0;
std::cout << "\nRock, Paper, Scissors, Lizard, Spock, GO!\n"
<< "1) ROCK\n"
<< "2) PAPER\n"
<< "3) SCISSORS\n"
<< "4) LIZARD\n"
<< "5) SPOCK\n"
<< "Enter number: ";
std::cin>> user;
std::cout << "\n------------------------------------------------------------------\n";
switch(user){
case 1:
rock(computer);
break;
case 2:
paper(computer);
break;
case 3:
scissors(computer);
break;
case 4:
lizard(computer);
break;
case 5:
spock(computer);
break;
default:
std::cout <<"Invalid Input!"<<std::endl;
break;
}
std::cout << "\n------------------------------------------------------------------\n";
std::cout<<"Play again? (1=Yes, 0=No): ";
std::cin >> game;
std::cout << "------------------------------------------------------------------\n";
}
overall_score();
std::cout << "\n------------------------------------------------------------------\n";
}//The game loop
void rpsls::game_instructions(){
std::cout<< " ROCK PAPER SCISSORS LIZARD SPOCK\n"
<< "------------------------------------------------------------------\n"
<< " Welcome to Rock-Paper-Scissors-Lizard-Spock\n"
<< "------------------------------------------------------------------\n\n"
<< "RPSLS is a text-based video game where you will play against the\n"
<< " PC and you get to choose either rock, paper, scissors, lizard\n"
<< " or spock.\n"
<< "The rules are simple:\n"
<< "\ta. There are 5 options(1 to 5).\n"
<< "\tb. You can only pick one option during a match.\n"
<< "\tc. When prompted, you will enter its number.\n"
<< "\t For example, if you choose LIZARD, you will enter 4.\n\n"
<< "The options and there abilities are: \n"
<< "\t1) Rock - Crushes Scissors and crushes Lizard\n"
<< "\t2) Paper - Covers Rock and disproves Spock\n"
<< "\t3) Scissors - Cuts paper and decapitates lizard\n"
<< "\t4) Lizard - Poisons Spock and eats Paper\n"
<< "\t5) Spock - Smashes Scissors and vaporizes Rock\n\n"
<< "Both you and the PC will pick a \'hand\' and the winner will be\n"
<< " announced\n"
<< "You are allowed to play as many times as you want. An overall\n"
<< " score of the game will be given at the end\n\n"
<< " Created By: Newton Musyimi\n"
<<"------------------------------------------------------------------\n"
<< " ENJOY!"
<<"\n------------------------------------------------------------------\n\n\n\n\n\n";
}
void rpsls::plays(){
game_plays++;
}
int rpsls::get_plays(){
return game_plays;
}
void rpsls::player_wins_counter(){
player_wins++;
}
int rpsls::get_player_wins(){
return player_wins;
}
void rpsls::pc_wins_counter(){
pc_wins++;
}
int rpsls::get_pc_wins(){
return pc_wins;
}
void rpsls::ties_counter(){
ties++;
}
int rpsls::get_ties(){
return ties;
}
void rpsls::rock(int computer){
std::string outcome;
std::string pc;
switch(computer){
case 1:
ties_counter();
outcome = "It is a tie";
pc = "Rock";
break;
case 2:
pc_wins_counter();
outcome = "PC wins";
pc = "Paper";
break;
case 3:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Scissors";
break;
case 4:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Lizard";
break;
case 5:
pc_wins_counter();
outcome = "PC wins!";
pc = "Spock";
break;
default:
std::cout <<"Invalid Input!"<<std::endl;
break;
}
std::cout <<"You picked Rock and the PC picked "<<pc<<"\n"<<outcome<<std::endl;
}//When user is Rock
void rpsls::paper(int computer){
std::string outcome;
std::string pc;
switch(computer){
case 1:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Rock";
break;
case 2:
ties_counter();
outcome = "It is a tie";
pc = "Paper";
break;
case 3:
pc_wins_counter();
outcome = "PC wins!";
pc = "Scissors";
break;
case 4:
pc_wins_counter();
outcome = "PC wins";
pc = "Lizard";
break;
case 5:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Spock";
break;
default:
std::cout <<"Invalid Input!"<<std::endl;
break;
}
std::cout <<"You picked Paper and the PC picked "<<pc<<"\n"<<outcome<<std::endl;
}//When user is Paper
void rpsls::scissors(int computer){
std::string outcome;
std::string pc;
switch(computer){
case 1:
pc_wins_counter();
outcome = "PC Wins";
pc = "Rock";
break;
case 2:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Paper";
break;
case 3:
ties_counter();
outcome = "It is a tie";
pc = "Scissors";
break;
case 4:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Lizard";
break;
case 5:
pc_wins_counter();
outcome = "PC wins";
pc = "Spock";
break;
default:
std::cout <<"Invalid Input!"<<std::endl;
break;
}
std::cout <<"You picked Scissors and the PC picked "<<pc<<"\n"<<outcome<<std::endl;
}//When user is scissors
void rpsls::lizard(int computer){
std::string outcome;
std::string pc;
switch(computer){
case 1:
pc_wins_counter();
outcome = "PC wins";
pc = "Rock";
break;
case 2:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Paper";
break;
case 3:
pc_wins_counter();
outcome = "PC wins";
pc = "Scissors";
break;
case 4:
ties_counter();
outcome = "It is a tie";
pc = "Lizard";
break;
case 5:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Spock";
break;
default:
std::cout <<"Invalid Input!"<<std::endl;
break;
}
std::cout <<"You picked Lizard and the PC picked "<<pc<<"\n"<<outcome<<std::endl;
}//When user is lizard
void rpsls::spock(int computer){
std::string outcome;
std::string pc;
switch(computer){
case 1:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Rock";
break;
case 2:
pc_wins_counter();
outcome = "PC wins";
pc = "Paper";
break;
case 3:
player_wins_counter();
outcome = "You have won, congratulations!";
pc = "Scissors";
break;
case 4:
pc_wins_counter();
outcome = "PC wins";
pc = "Lizard";
break;
case 5:
ties_counter();
outcome = "It is a tie";
pc = "Spock";
break;
default:
std::cout <<"Invalid Input!"<<std::endl;
break;
}
std::cout <<"You picked Spock and the PC picked "<<pc<<"\n"<<outcome<<std::endl;
}//When the user is spock
void rpsls::overall_score(){
int plays = get_plays();
int player = get_player_wins();
int pc = get_pc_wins();
int draw = get_ties();
std::string result = " ";
if(player>pc){
std::cout<< "Out of the "<<plays<<" matches played:\n"
<< "\tYou won: "<<player<<"\n"
<< "\tPC won: "<<pc<<"\n";
if(draw>0)
std::cout << "\tTies: "<<draw<<"\n";
std::cout<< "You are the overall WINNER of the game, CONGRATULATIONS!"<<std::endl;
}else if(player == pc){
std::cout<< "Out of the "<<plays<<" matches played:\n"
<< "\tYou won: "<<player<<"\n"
<< "\tPC won: "<<pc<<"\n";
if(draw>0)
std::cout << "\tTies: "<<draw<<"\n";
std::cout<< "It was a TIE, BETTER LUCK NEXT TIME!"<<std::endl;
}else{
std::cout<< "Out of the "<<plays<<" matches played:\n"
<< "\tYou won: "<<player<<"\n"
<< "\tPC won: "<<pc<<"\n";
if(draw>0)
std::cout << "\tTies: "<<draw<<"\n";
std::cout<< "You are the overall LOOSER of the game, BETTER LUCK NEXT TIME!"<<std::endl;
}
}