From 53bd62f3a55cde1dce09bdb867dfe0b84d578227 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Sat, 27 Jan 2024 13:31:17 +0200 Subject: Adding exit codes and batch runner script. --- tui/autotui.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'tui/autotui.py') 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 """ -- cgit v1.2.3