summaryrefslogtreecommitdiff
path: root/tui/autotui.py
diff options
context:
space:
mode:
authorAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-29 02:34:32 +0200
committerAineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi>2024-01-29 02:34:32 +0200
commite591d15abc4943a74c39f0fcab065213828a1514 (patch)
treebc22931abb08d8c213ba4eb81a85298d69e88890 /tui/autotui.py
parent0c034e6fbae0833f8524caf223deab450e9bb1b4 (diff)
Updating too much. Renewed bots and tui.
Diffstat (limited to 'tui/autotui.py')
-rw-r--r--tui/autotui.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/tui/autotui.py b/tui/autotui.py
deleted file mode 100644
index ae5d58c..0000000
--- a/tui/autotui.py
+++ /dev/null
@@ -1,27 +0,0 @@
-""" autotui - pelaa botin antamat vinkit jonka jälkeen käyttäjän """
-from .tui import Tui
-from .static import Action
-from .ansi import Ansi
-
-class AutoTui(Tui):
- """ Tui - Luokka joka tekee botin vinkit ensin """
- def matrix_selector(self, matrix, x, y):
- """ yritetään pyydellä botilta vinkkiä ensin """
- if self.bot is not None:
- action, x, y = self.bot.hint(matrix, x, y)
- if action != Action.NOOP:
- self.draw_matrix(matrix, -1, -1)
- if action==Action.SAFE:
- action = Action.OPEN
- return action, x, y
-
- return super().matrix_selector(matrix, x, y)
-
- def show_board_with_text(self, matrix, x, y, text):
- """ näyttää laudan, tekstin alla (ei odota nappia) """
- self.draw_matrix(matrix, x, y)
- print(text)
- Ansi.cup(1)
-
- def game_end(self, matrix):
- """ pelin lopetus """