-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathConsoleGame.py
80 lines (60 loc) · 1.51 KB
/
ConsoleGame.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
from FlippingGame import FlippingGame, GameError
from System.Threading import Thread
def greeting():
print "Welcome to Coin Flipping"
print "------------------------"
print
return True
def get_wager(game):
while True:
wager = raw_input("Wager: ")
try:
w = int(wager)
except ValueError:
print "Wager must be a number (was '%s')." % wager
else:
return w
def get_guess():
while True:
guess = raw_input("Guess [T/H]: ")
guess = guess.upper()
if len(guess) != 1 or guess not in "TH":
print "Enter only T or H."
else:
return guess
def spin():
for i in "|\-/" * 4:
print i, '\r',
Thread.Sleep(60)
print '\r'
def turn(game):
print "Bankroll:", game.bankroll
while True:
wager = get_wager(game)
msg = game.check_wager(wager)
if msg:
print msg
else:
break
guess = get_guess()
result, toss = game.flip(guess, wager)
spin()
print "Toss:", toss
if result:
print "YOU WIN!"
else:
print "Sorry, better luck next time."
print
if game.bankroll == 0:
return False
again = raw_input("Play again? [Y/n]")
print
return len(again) == 0 or again[0] in "Yy"
def main():
playing = greeting()
game = FlippingGame()
while playing:
playing = turn(game)
print "Thanks for playing!"
if __name__ == '__main__':
main()