diff options
Diffstat (limited to 'tui/autotui.py')
-rw-r--r-- | tui/autotui.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tui/autotui.py b/tui/autotui.py index dbda560..ae5d58c 100644 --- a/tui/autotui.py +++ b/tui/autotui.py @@ -1,6 +1,7 @@ """ 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 """ @@ -15,3 +16,12 @@ class AutoTui(Tui): 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 """ |