-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRPSGameWithPvP.ps1
575 lines (466 loc) · 16.6 KB
/
RPSGameWithPvP.ps1
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
Clear-Host
$NewCompGame = "True" #This variable controls the game if vs computer
$NewPlayGame = "True" #This variable controls the game is vs another player
$GameChoice = "" #This is a placeholder for the users game choice
$UserReply = 0 #This is a placeholder for the user's turn
$UserChoice = "" #This variable will hold the letter choice of the user
$RanNum = 0 #This variable will be used to generate a random number for the computer's choice
$CompChoice = "" #This variable will be the converted integer to a letter representing the computer's choice
$AmountPlayed = 0 #Keeps track of how many games the user has played during the session
$Wins = 0 #Keeps track of the User's wins
$Losses = 0 #Keeps track of the User's losses
$Ties = 0 #Keeps track of the User's ties
$Player1Name = "" #This variable will hold Player 1 name
$Player2Name = "" #This variable will hold Player 2 name
$Player1Reply = 0 #This is a placeholder for Player 1 choice
$Player2Reply = 0 #This is a placeholder for Player 2 choice
$Player1Choice = 0 #This holds the value for Player 1 choice
$Player2Choice = 0 #This holds the value for Player 2 choice
$Player1Wins = 0 #Keeps track of Player 1 wins
$Player1Losses = 0 #Keeps track of Player 1 losses
$Player1Ties = 0 #Keeps track of Player 1 ties
$Player2Wins = 0 #Keeps track of Player 2 wins
$Player2Losses = 0 #Keeps track of Player 2 losses
$Player2Ties = 0 #Keeps track of Player 2 ties
Write-Host " Welcome to the"
Write-Host "Rock, Paper, Scissors Game!"
Write-Host " "
Write-Host "Press Enter to Continue"
Read-Host
Clear-Host
Write-Host "If you would like to play against the computer"
Write-Host "press C"
Write-Host "Or, if you would like to play against another player"
Write-Host "press P"
$GameChoice = Read-Host
if(($GameChoice -eq "C") -or ($GameChoice -eq "c")) {
while($NewCompGame -ne "False") {
$RanNum = Get-Random -Minimum 1 -Maximum 4 #Generate a new number between 1 and 3
if ($RanNum -eq 1) {
$CompChoice = "Rock"
}
if ($RanNum -eq 2) {
$CompChoice = "Paper"
}
if ($RanNum -eq 3) {
$CompChoice = "Scissors"
}
While ($UserReply -eq "") {
Clear-Host
Write-Host "Enter one of the following options"
Write-Host "-----------------------------------"
Write-Host " "
Write-Host "R is for Rock"
Write-Host "P is for Paper"
Write-Host "S is for Scissors"
Write-Host "Q is for Quit"
Write-Host " "
Write-Host "-----------------------------------"
$UserReply = Read-Host "Make a move"
}
if(($UserReply -eq "Q") -and ($UserReply -eq "q")) {
Clear-Host
Write-Host " "
Write-Host "Game over. Thanks for playing Rock, Paper Scissors."
Write-Host " "
Write-Host "Press enter to view game statistics and quit the game."
Read-Host
Clear-Host
Write-Host "Game Statistics"
Write-Host "------------------------------"
Write-Host "Number of games played: $AmountPlayed"
Write-Host "Number of games won: $Wins"
Write-Host "Number of games lost: $Losses"
Write-Host "Number of games tied: $Ties"
Write-Host " ------------------------------"
Write-Host "Press Enter to continue."
Read-Host
$NewCompGame = "False"
continue
}
if(($UserReply -ne "R") -and ($UserReply -ne "P") -and ($UserReply -ne "S") -and ($UserReply -ne "D")) {
Clear-Host
Write-Host "Invalid input. Please try again."
Read-Host
$UserReply = ""
continue
}
if(($UserReply -ne "r") -and ($UserReply -ne "p") -and ($UserReply -ne "s") -and ($UserReply -ne "d")) {
Clear-Host
Write-Host "Invalid input. Please try again."
Read-Host
$UserReply = ""
continue
}
if (($UserReply -eq "R") -or ($UserReply -eq "r")) {
$UserChoice = "Rock"
}
if (($UserReply -eq "P") -or ($UserReply -eq "p")){
$UserChoice = "Paper"
}
if (($UserReply -eq "S") -or ($UserReply -eq "s")){
$UserChoice = "Scissors"
}
if (($UserReply -eq "D") -or ($UserReply -eq "d")){
$UserChoice = "Dynamite"
}
Clear-Host
Write-Host "Results:"
Write-Host "-----------------------------------"
Write-Host " "
Write-Host "The computer picked: $CompChoice"
Write-Host "You picked: $UserChoice"
Write-Host " "
Write-Host "-----------------------------------"
$AmountPlayed += 1
Switch ($CompChoice) {
"Rock" {
if ($UserChoice -eq "Rock") {
$Ties += 1
Write-Host "Tie!"
}
if ($UserChoice -eq "Paper") {
$Wins += 1
Write-Host "You Win!"
}
if ($UserChoice -eq "Scissors") {
$Losses += 1
Write-Host "Computer Wins!"
}
if ($UserChoice -eq "Dynamite") {
$Wins += 1
Write-Host "You always win with DYNAMITE!!!"
}
}
"Paper" {
if ($UserChoice -eq "Paper") {
$Ties += 1
Write-Host "Tie!"
}
if ($UserChoice -eq "Rock") {
$Losses += 1
Write-Host "Computer Wins!"
}
if ($UserChoice -eq "Scissors") {
$Wins += 1
Write-Host "You Win!"
}
if ($UserChoice -eq "Dynamite") {
$Wins += 1
Write-Host "You always win with DYNAMITE!!!"
}
}
"Scissors" {
if ($UserChoice -eq "Scissors") {
$Ties += 1
Write-Host "Tie!"
}
if ($UserChoice -eq "Rock") {
$Wins += 1
Write-Host "You Win!"
}
if($UserChoice -eq "Paper") {
$Losses += 1
Write-Host "Computer Wins!"
}
if ($UserChoice -eq "Dynamite") {
$Wins += 1
Write-Host "You always win with DYNAMITE!!!"
}
}
}
Read-Host
$UserReply = 0 #Reset all variables
$UserChoice = ""
$RanNum = 0
$CompChoice = ""
Clear-Host
}
}
if(($GameChoice -eq "P") -or ($GameChoice -eq "p")) {
while($NewPlayGame -ne "False") {
While ($Player1Name -eq "") {
Clear-Host
Write-Host "Enter Player 1 Name"
$Player1Name = Read-Host
}
While ($Player2Name -eq "") {
Clear-Host
Write-Host "Enter Player 2 Name"
$Player2Name = Read-Host
}
While ($Player1Reply -eq "") {
Clear-Host
Write-Host "$Player1Name enter one of the following options"
Write-Host "-----------------------------------"
Write-Host " "
Write-Host "R is for Rock"
Write-Host "P is for Paper"
Write-Host "S is for Scissors"
Write-Host "Q is for Quit"
Write-Host " "
Write-Host "-----------------------------------"
$Player1Reply = Read-Host "Make a move"
if($Player1Reply -eq "Q") {
Clear-Host
Write-Host " "
Write-Host "Game over. Thanks for playing Rock, Paper Scissors."
Write-Host " "
Write-Host "Press enter to view game statistics and quit the game."
Read-Host
Clear-Host
Write-Host "Game Statistics"
Write-Host "------------------------------"
Write-Host "Number of games played: $AmountPlayed"
Write-Host "------------------------------"
Write-Host "$Player1Name Statistics"
Write-Host "------------------------------"
Write-Host "Number of games won: $Player1Wins"
Write-Host "Number of games lost: $Player1Losses"
Write-Host "Number of games tied: $Player1Ties"
Write-Host "------------------------------"
Write-Host "$Player2Name Statistics"
Write-Host "Number of games won: $Player2Wins"
Write-Host "Number of games lost: $Player2Losses"
Write-Host "Number of games tied: $Player2Ties"
Write-Host " ------------------------------"
Write-Host "Press Enter to continue."
Read-Host
$NewPlayGame = "False"
continue
}
}
While ($Player2Reply -eq "") {
Clear-Host
Write-Host "$Player2Name enter one of the following options"
Write-Host "-----------------------------------"
Write-Host " "
Write-Host "R is for Rock"
Write-Host "P is for Paper"
Write-Host "S is for Scissors"
Write-Host "Q is for Quit"
Write-Host " "
Write-Host "-----------------------------------"
$Player2Reply = Read-Host "Make a move"
}
if(($Player1Reply -ne "R") -and ($Player1Reply -ne "P") -and ($Player1Reply -ne "S") -and ($Player1Reply -ne "D")) {
Clear-Host
Write-Host "Invalid input. Please try again."
Read-Host
$Player1Reply = ""
continue
}
if(($Player1Reply -ne "r") -and ($Player1Reply -ne "p") -and ($Player1Reply -ne "s") -and ($Player1Reply -ne "d")) {
Clear-Host
Write-Host "Invalid input. Please try again."
Read-Host
$Player1Reply = ""
continue
}
if(($Player2Reply -ne "R") -and ($Player2Reply -ne "P") -and ($Player2Reply -ne "S") -and ($Player2Reply -ne "D")) {
Clear-Host
Write-Host "Invalid input. Please try again."
Read-Host
$Player1Reply = ""
continue
}
if(($Player2Reply -ne "r") -and ($Player2Reply -ne "p") -and ($Player2Reply -ne "s") -and ($Player2Reply -ne "d")) {
Clear-Host
Write-Host "Invalid input. Please try again."
Read-Host
$Player1Reply = ""
continue
}
if (($Player1Reply -eq "R") -or ($Player1Reply -eq "r")) {
$Player1Choice = "Rock"
}
if (($Player1Reply -eq "P") -or ($Player1Reply -eq "p")){
$Player1Choice = "Paper"
}
if (($Player1Reply -eq "S") -or ($Player1Reply -eq "s")){
$Player1Choice = "Scissors"
}
if (($Player1Reply -eq "D") -or ($Player1Reply -eq "d")){
$Player1Choice = "Dynamite"
}
if (($Player2Reply -eq "R") -or ($Player2Reply -eq "r")) {
$Player2Choice = "Rock"
}
if (($Player2Reply -eq "P") -or ($Player2Reply -eq "p")){
$Player2Choice = "Paper"
}
if (($Player2Reply -eq "S") -or ($Player2Reply -eq "s")){
$Player2Choice = "Scissors"
}
if (($Player2Reply -eq "D") -or ($Player2Reply -eq "d")){
$Player2Choice = "Dynamite"
}
Clear-Host
Write-Host "-----------------------------------"
Write-Host " "
Write-Host "$Player1Name picked: $Player1Choice"
Write-Host " "
Write-Host "$Player2Name picked: $Player2Choice"
Write-Host " "
Write-Host "-----------------------------------"
$AmountPlayed += 1
Switch ($Player1Choice) {
"Rock" {
if ($Player2Choice -eq "Rock") {
$Player1Ties += 1
$Player2Ties += 1
Write-Host " "
Write-Host "It's a Tie!"
Write-Host " "
Write-Host "Press Enter to Continue"
Read-Host
}
if ($Player2Choice -eq "Paper") {
$Player1Losses += 1
$Player2Wins += 1
Write-Host " "
Write-Host "$Player1Name Lost!"
Write-Host " "
Write-Host "$Player2Name Won!"
Write-Host " "
Write-Host "Press Enter to Continue"
Read-Host
}
if ($Player2Choice -eq "Scissors") {
$Player1Wins += 1
$Player2Losses += 1
Write-Host " "
Write-Host "$Player1Name Won!"
Write-Host " "
Write-Host "$Player2Name Lost!"
Write-Host " "
Write-Host "Press Enter to Continue"
Read-Host
}
if ($Player2Choice -eq "Dynamite") {
$Player1Losses += 1
$Player2Wins += 1
Write-Host " "
Write-Host "$Player1Name Lost!"
Write-Host " "
Write-Host "$Player2Name Won!"
Write-Host " "
Read-Host
}
}
"Paper" {
if ($Player2Choice -eq "Rock") {
$Player1Wins += 1
$Player2Losses += 1
Write-Host " "
Write-Host "$Player1Name Won!"
Write-Host " "
Write-Host "$Player2Name Lost!"
Read-Host
}
if ($Player2Choice -eq "Paper") {
$Player1Ties += 1
$Player2Ties += 1
Write-Host " "
Write-Host "It's a Tie!"
Write-Host " "
Read-Host
}
if ($Player2Choice -eq "Scissors") {
$Player1Losses += 1
$Player2Wins += 1
Write-Host " "
Write-Host "$Player1Name Lost!"
Write-Host " "
Write-Host "$Player2Name Won!"
Read-Host
}
if ($Player2Choice -eq "Dynamite") {
$Player1Losses += 1
$Player2Wins += 1
Write-Host " "
Write-Host "$Player1Name Lost!"
Write-Host " "
Write-Host "$Player2Name Won!"
Read-Host
}
}
"Scissors" {
if ($Player2Choice -eq "Rock") {
$Player1Losses += 1
$Player2Wins += 1
Write-Host " "
Write-Host "$Player1Name Lost!"
Write-Host " "
Write-Host "$Player2Name Won!"
Read-Host
}
if ($Player2Choice -eq "Paper") {
$Player1Wins += 1
$Player2Losses += 1
Write-Host " "
Write-Host "$Player1Name Won!"
Write-Host " "
Write-Host "$Player2Name Lost!"
Read-Host
}
if ($Player2Choice -eq "Scissors") {
$Player1Ties += 1
$Player2Ties += 1
Write-Host " "
Write-Host "It's a Tie!"
Read-Host
}
if ($Player2Choice -eq "Dynamite") {
$Player1Losses += 1
$Player2Wins += 1
Write-Host " "
Write-Host "$Player1Name Lost!"
Write-Host " "
Write-Host "$Player2Name Won!"
Read-Host
}
}
"Dynamite" {
if ($Player2Choice -eq "Rock") {
$Player1Wins += 1
$Player2Losses += 1
Write-Host " "
Write-Host "$Player1Name Won!"
Write-Host " "
Write-Host "$Player2Name Lost!"
Read-Host
}
if ($Player2Choice -eq "Paper") {
$Player1Wins += 1
$Player2Losses += 1
Write-Host " "
Write-Host "$Player1Name Won!"
Write-Host " "
Write-Host "$Player2Name Lost!"
Read-Host
}
if ($Player2Choice -eq "Scissors") {
$Player1Wins += 1
$Player2Losses += 1
Write-Host " "
Write-Host "$Player1Name Won!"
Write-Host " "
Write-Host "$Player2Name Lost!"
Red-Host
}
if ($Player2Choice -eq "Dynamite") {
$Player1Ties += 1
$Player2Ties += 1
Write-Host " "
Write-Host "It's a Tie!"
Read-Host
}
}
}
$Player1Reply = 0 #Reset all variables
$Player2Reply = 0 #Reset all variables
$Player1Choice = "" #Reset all variables
$Player2Choice = "" #Reset all variables
}
}