diff options
author | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-27 13:31:17 +0200 |
---|---|---|
committer | Aineopintojen-harjoitustyo-Algoritmit-j <github-hy-tiralabra@v.hix.fi> | 2024-01-27 13:31:17 +0200 |
commit | 53bd62f3a55cde1dce09bdb867dfe0b84d578227 (patch) | |
tree | 5a5ed821eedb946eeea117f8fea225ccf00937c5 /tui | |
parent | d68d1a33f52ad9ddeb97c6e45f1e66cdf27c67f5 (diff) |
Adding exit codes and batch runner script.
Diffstat (limited to 'tui')
-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 """ |