-
Notifications
You must be signed in to change notification settings - Fork 2
/
juegos.py
71 lines (59 loc) · 1.53 KB
/
juegos.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
import pickle,random,math
masobj=pickle.load(open("bot/maso.pk","rb"))
cartas=pickle.load(open("bot/cartas.pk","rb"))
valores={
"A":[11,1],
"K":[10],
"Q":[10],
"J":[10],
"10":[10],
"1":[10],
"9":[9],
"8":[8],
"7":[7],
"6":[6],
"5":[5],
"4":[4],
"3":[3],
"2":[2],
}
class Repartidor:
def __init__(self,maso):
self.__maso=[el for el in maso]
def repartir(self,ncartas=2):
if len(self.__maso)<ncartas:
return False
rp=[]
for el in range(ncartas):
c=random.choice(self.__maso)
self.__maso.remove(c)
rp.append(c)
return rp
def cuantashay(self):
return len(self.__maso)
def agregarcartas(self,cartas):
self.__maso+=cartas
def bjrepartir(cartas):
jugador={"cartas":cartas}
jugador["valores"]=[x+y for x in valores[cartas[0][0]] for y in valores[cartas[1][0]]]
return jugador
def bjpedir(jugador,repartidor):
jugador = jugador
carta=repartidor.repartir(1)[0]
jugador["cartas"].append(carta)
jugador["valores"]=[x+y for x in jugador["valores"] for y in valores[carta[0]]]
return jugador
def bjvalor(jugador):
jvalor = list(filter(lambda x:x<=21,jugador["valores"]))
if jvalor:
return max(jvalor)
else:
return min(jugador["valores"])
def regresarFichas(fichas):
fic = []
fichas = fichas
while fichas:
div=10**math.floor(math.log10(fichas))
fic.append(div)
fichas-=div
return fic