-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbingo.py
247 lines (148 loc) · 6.62 KB
/
bingo.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
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
# coding: utf-8
# In[76]:
# importing the required libraries
import numpy as np
import random
# In[84]:
# function to get the sum of the dices assuming the dices are fair and unbaised
def roll_dices():
'''
returns : sum of the two dices which are rolled.
'''
dice1 = np.random.randint(1,7)
dice2 = np.random.randint(1,7)
return dice1 + dice2
# In[83]:
# function to initialize the players with their choice of bingo boxes also facilitating
# to add random number of players and number of games to be played.
def initialize_array(players_dic,random_player_size=3,game_size=1):
'''
arguments : players_dic ===> dictionary of players of choice with key and value pairs
random_player_size ===> number of random players to be added
game_size ===> number of games to be played
returns : dic ===> python dictionary containing all the players in the game
'''
random_players = np.random.randint(2,21,(random_player_size,3,3))
dic = {}
for num in range(random_player_size):
dic['Player '+ str(num)] = {'Box' : random_players[num],
'Bingo Value' : np.zeros(game_size)}
for player in players_dic:
dic[player] = {'Box' : players_dic[player],
'Bingo Value' : np.zeros(game_size)}
return dic
# In[85]:
# function to obtain which box should be marked in the case there are multiples
def get_box_to_be_marked(sum_of_dices,my_array):
'''
arguments : sum_of_dices ===> sum of dices returned from the roll_dices() function
my_array ===> bingo box which is being currently marked
returns : index_to_be_marked ===> location of the index to be marked or -1
True, False ===> status indicator if index to be marked exists
'''
array_of_multiples = np.asarray(np.where(my_array%sum_of_dices == 0)).T
if len(array_of_multiples) > 0:
index_to_be_marked = random.choice(array_of_multiples)
return index_to_be_marked,True
else:
return -1,False
# In[86]:
# function to mark the box
def mark_box(my_array,index_to_be_marked):
'''
arguments : my_array ===> bingo box to be marked
index_to_be_marked ===> location of the index to be marked
returns : my_array ===> bingo box after being marked
'''
my_array[index_to_be_marked[0],index_to_be_marked[1]] = -1
return my_array
# In[87]:
# function that simulates a single game
def start_game(players_dic,game_no):
'''
arguments : players_dic ===> dictionary containing all the players in the game
game_no ===> number of game being played
returns : players_dic ===> dictionary containing all the players in the game with modified variables
'''
temp_player_box = {player : players_dic[player]['Box'].copy() for player in players_dic}
flag = True
count = 0
no_of_winners = 0
while flag:
count+=1
sum_of_dices = roll_dices()
for player in temp_player_box:
index_to_be_marked, boolean = get_box_to_be_marked(sum_of_dices,temp_player_box[player])
if boolean:
box = mark_box(temp_player_box[player],index_to_be_marked)
if count > 2:
if bingo(box):
no_of_winners+=1
players_dic[player]['Bingo Value'][game_no] = 1
flag = False
distribute_wins(players_dic,game_no,no_of_winners)
return players_dic
# In[89]:
# function to normalize wins among all the winners in a single bingo game
def distribute_wins(players_dic,game_no,no_of_winners):
'''
arguments : players_dic ===> dictionary containing all the players in the game
game_no ===> number of game being played
no_of_winners ===> number of winners in the game being played
'''
for player in players_dic:
players_dic[player]["Bingo Value"][game_no] = players_dic[player]["Bingo Value"][game_no]/no_of_winners
# In[90]:
# function to determine the winner
def winner(players_dic):
'''
arguments : players_dic ===> dictionary containing all the players in the game
returns : winner_dic ===> dictionary of the winner with the number of wins
'''
max_wins = 0
winner_dic = {}
for player in players_dic:
bingo_value = players_dic[player]["Bingo Value"].sum()
if max_wins < bingo_value:
max_wins = bingo_value
winner_dic["max_wins"] = max_wins
winner_dic["Winner"] = {player : players_dic[player]}
return winner_dic
# In[92]:
# function to determine if its a bingo
def bingo(my_array):
'''
arguments : my_array ===> bingo box to be determine if its a bingo
returns : True, False ===> boolean stating if its a bingo
'''
secondary_diagonal = my_array[[2,1,0],[0,1,2]].sum()
if secondary_diagonal == -3:
return True
elif my_array.diagonal().sum() == -3:
return True
else:
for i in range(3):
if my_array[i,:].sum() == -3:
return True
elif my_array[:,i].sum() == -3:
return True
return False
# In[93]:
# function to simulate game with the given number of times with custom players
def simulate_game(players_dic,random_player_size=3,game_size=1):
'''
arguments : players_dic ===> dictionary of players of choice with key and value pairs
random_player_size ===> number of random players to be added, by default players = 3
game_size ===> number of games to be played, by default size = 1
returns : players_dic ===> dictionary of all players in the game with their scores
winner ===> dictionary of the winner with total wins
'''
players_dic = initialize_array(players_dic,random_player_size,game_size)
for i in range(game_size):
players_dic = start_game(players_dic,i)
return players_dic, winner(players_dic)
# In[ ]:
# In[ ]:
# In[ ]:
# In[ ]:
# In[ ]: