-
Notifications
You must be signed in to change notification settings - Fork 0
/
Display.py
85 lines (71 loc) · 2.73 KB
/
Display.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
from selenium import webdriver
from selenium.webdriver import ActionChains
import chromedriver_autoinstaller
from utils import numeros
from Problemas import Tablero
import time
class Jugador:
def __init__(self):
chromedriver_autoinstaller.install()
self.driver = webdriver.Chrome()
self.driver.get("https://buscaminas-pro.com/")
self.actionChains = ActionChains(self.driver)
self.tablero = Tablero(9, 9)
self.tablero.update([[9 for j in range(9)] for i in range(9)])
self.first = True
self.estancado = False
self.acabo = False
def casilla_id(self, yx):
""""devuelve el id de html correspondiente a la casilla"""
tile = yx[1]*9+yx[0]
return "tile{0}".format(tile)
def turno(self):
"""da click izquierdo en la pagina web a las casillas sin minas
para destaparlas.
da click derecho en la pagina web a las casillas con minas
para marcarlas con la bandera"""
interpretacion = self.sacar_interpretacion()
for letra in interpretacion:
yx = self.tablero.MenC.inv(letra)
id = self.casilla_id(yx)
casilla = self.driver.find_element("id", id)
if interpretacion[letra] == 1:
self.actionChains.context_click(casilla).perform()
elif interpretacion[letra] == -1:
self.actionChains.click(casilla).perform()
def jugar(self):
if self.first:
casilla = self.driver.find_element("id", "tile1")
self.actionChains.click(casilla).perform()
time.sleep(1)
while not self.estancado and not self.acabo:
self.actualizar_tablero()
self.turno()
time.sleep(1)
def actualizar_tablero(self):
"""Obtiene la matriz del tablero en la pagina web y actualiza la clase tablero"""
matriz = []
for i in range(9):
row = []
for j in range(9):
row.append(numeros[self.driver.find_element(
"id", self.casilla_id((i, j))).get_attribute("src")])
matriz.append(row)
self.tablero.update(matriz)
def sacar_interpretacion(self):
result = {}
soluciones = self.tablero.SATtabla()
for letra in soluciones[0]:
result[letra] = 0
for solucion in self.tablero.SATtabla():
for letra in solucion:
if solucion[letra] == True:
result[letra] += 1
for letra in result:
if result[letra] == len(soluciones):
result[letra] = 1
elif result[letra] == 0:
result[letra] = -1
else:
result[letra] = 0
return result