-
Notifications
You must be signed in to change notification settings - Fork 3
/
rock_paper_scissor.py
130 lines (99 loc) · 3.02 KB
/
rock_paper_scissor.py
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
import random
import os
import time
def clear():
os.system("clear")
# Set of instructions for Rock-Paper-Scissors
def rps_instructions():
print("***********")
print("Instructions for Rock-Paper-Scissors : ")
print("***********")
print("Rock crushes Scissors")
print("Scissors cuts Paper")
print("Paper covers Rock")
print("***********")
def rps():
global rps_table
global game_map
global name
# Game Loop for each game of Rock-Paper-Scissors
while True:
print("--------------------------------------")
print("\t\tMenu")
print("--------------------------------------")
print('Enter "help" for instructions')
print('Enter "rock","paper","scissors" to play')
print('Enter "exit" to quit')
print("--------------------------------------")
print("***********")
# Player Input
inp = input("Enter your move : ")
if inp == "help":
clear()
rps_instructions()
continue
elif inp == "exit":
clear()
break
elif inp == "rock":
player_move = 0
elif inp == "paper":
player_move = 1
elif inp == "scissors":
player_move = 2
else:
clear()
print("Wrong Input!!")
rps_instructions()
continue
print("Computer making a move....")
print("***********")
time.sleep(2)
# Get the computer move randomly
comp_move = random.randint(0, 2)
# Print the computer move
print("Computer chooses ", game_map[comp_move].upper())
# Find the winner of the match
winner = rps_table[player_move][comp_move]
# Declare the winner
if winner == player_move:
print(name, "WINS!!!")
elif winner == comp_move:
print("COMPUTER WINS!!!")
else:
print("TIE GAME")
print("***********")
time.sleep(2)
clear()
# The main function
if __name__ == "__main__":
# The mapping between moves and numbers
game_map = {0: "rock", 1: "paper", 2: "scissors"}
# Win-lose matrix for traditional game
rps_table = [[-1, 1, 0], [1, -1, 2], [0, 2, -1]]
name = input("Enter your name: ")
# The GAME LOOP
while True:
# The Game Menu
print("***********")
print("Let's Play!!!")
print("Enter 1 to play Rock-Paper-Scissors")
print("Enter 2 to quit")
print("***********")
# Try block to handle the player choice
try:
choice = int(input("Enter your choice = "))
except ValueError:
clear()
print("Wrong Choice")
continue
# Play the traditional version of the game
if choice == 1:
rps()
# Quit the GAME LOOP
elif choice == 2:
break
# Other wrong input
else:
clear()
print("Wrong choice. Read instructions carefully.")