From f523205db34d86292bcb9db386c3f956f557b904 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Thu, 11 Jan 2024 23:10:50 +0200 Subject: Hacking it up to be playable... --- app.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app.py (limited to 'app.py') diff --git a/app.py b/app.py new file mode 100644 index 0000000..4c0c325 --- /dev/null +++ b/app.py @@ -0,0 +1,20 @@ +from board.board import Board +from tui.tui import Tui + +b = Board() +t = Tui() +x, y = 0, 0 + +while True: + x, y = t.matrix_selector(b.get_view(), x, y) + if x == -1: + print("LOPETUS!") + break + if not b.make_guess(x, y): + print("KUOLEMA!") + break + if b.is_winning(): + print("VOITTO!") + break + +t.draw_matrix(b.get_view(),-1,-1) \ No newline at end of file -- cgit v1.2.3