-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharades_game.py
75 lines (56 loc) · 2.01 KB
/
charades_game.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
import requests
isWinner = False
wrongPlayer = True
wrongWinner = True
currentPlayer = 1
print("Animal Charades!")
print("----------------")
while wrongPlayer:
numPlayers = input("How many players? (1 - 5 & number yourselves): ")
numPlayers = int(numPlayers)
if numPlayers > 0 & numPlayers < 6:
wrongPlayer = False
else:
print("Not in range! Pick again!")
scores = [0 for i in range(numPlayers)]
response = requests.get("http://www.randomnumberapi.com/api/v1.0/random?min=2&max=6&count=1")
pointsToWin = response.text[1]
print("Number of points needed to win the game: " + pointsToWin)
while not isWinner:
response = requests.get("https://random-word-form.herokuapp.com/random/animal")
animal = response.json()[0]
print("\n\nPlayer " + str(currentPlayer) + ", your word is: " + animal + "\n\n") # MAYBE ADD TIME LIMIT
# REQUEST RANDOM ANIMAL FROM API
while wrongWinner:
currentWinner = input("\nType the player's # who won (or 0 to skip animal and draw again): ")
currentWinner = int(currentWinner)
if currentWinner > 0 & currentWinner <= numPlayers:
wrongWinner = False
elif currentWinner == 0:
print("Redrawing Animal...")
wrongWinner = False
else:
print("Not a player number! Try again!")
wrongWinner = True
if currentWinner == 1:
scores[0] += 1
if currentWinner == 2:
scores[1] += 1
if currentWinner == 3:
scores[2] += 1
if currentWinner == 4:
scores[3] += 1
if currentWinner == 5:
scores[4] += 1
for i in scores:
if i == pointsToWin:
isWinner = True
print("Player " + str(i) + " won the game!")
print("Final Scores:\n-----------")
for i in range(numPlayers):
print("Player " + str(i + 1) + ": " + str(scores[i]))
if currentWinner != 0:
if currentPlayer < numPlayers:
currentPlayer += 1
else:
currentPlayer = 1