From 4ec901620ea94e8e89710576b4fc6ad1cf4b01e8 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Thu, 11 Jan 2024 23:30:10 +0200 Subject: Making UI roll upp and down so that playing area stays. --- app.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'app.py') diff --git a/app.py b/app.py index 4c0c325..e3c6dd4 100644 --- a/app.py +++ b/app.py @@ -5,16 +5,21 @@ b = Board() t = Tui() x, y = 0, 0 +for _ in range(b.size): + print() + while True: x, y = t.matrix_selector(b.get_view(), x, y) if x == -1: + t.draw_matrix(b.get_view(),-1,-1) print("LOPETUS!") break if not b.make_guess(x, y): + t.draw_matrix(b.get_view(),-1,-1) print("KUOLEMA!") break if b.is_winning(): + t.draw_matrix(b.get_view(),-1,-1) print("VOITTO!") break - -t.draw_matrix(b.get_view(),-1,-1) \ No newline at end of file + -- cgit v1.2.3