From e785dbd4f726c5716f21071ed25dc35ac87c0c74 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Sat, 17 Feb 2024 09:41:48 +0200 Subject: Dev tools and directory structure rework. --- tui/ansi_draw.py | 58 -------------------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 tui/ansi_draw.py (limited to 'tui/ansi_draw.py') diff --git a/tui/ansi_draw.py b/tui/ansi_draw.py deleted file mode 100644 index ba71fdb..0000000 --- a/tui/ansi_draw.py +++ /dev/null @@ -1,58 +0,0 @@ -""" tui/ansi_draw.py - perustukset ansi tulostelulle """ -# pylint: disable = multiple-imports -from .ansi import Ansi -from .static import TileTypes - -class AnsiDraw(): - """ AnsiDraw - "piirtelee" näytölle kirjailmilla """ - def __init__(self, height = 9, name = ""): - print(end='\n'*height+name+": Peli alkaa.") - - def __del__(self): - print() - - def __tile(self, tile, hilighted): - """ "piirtää" yhden ruudun """ - for ch, colors in zip(TileTypes[tile].text, TileTypes[tile].colors): - color, bg = colors - Ansi.color(Ansi.BLACK if hilighted else color) - Ansi.bg(Ansi.CYAN if hilighted else bg) - print(end=ch) - Ansi.reset() - - - def matrix(self, matrix, hx, hy): - """ "piirtää" ruudukon """ - Ansi.cup(len(matrix[0])) - # pylint: disable=consider-using-enumerate - for y in range(len(matrix[0])): - for x in range(len(matrix)): - hilight = matrix[x][y] != 9 and x == hx and y == hy - self.__tile(matrix[x][y], hilight) - print() - - - def status_line(self, text): - """ draw_status_line - tulostaa pelitietorivin""" - print(end=text+'\r') - -class SuppressDraw(): - """ SuppressDraw - vain status """ - # pylint: disable = unused-argument - - def matrix(self, matrix, hx, hy): - """ "piirtää" ruudukon """ - - def status_line(self, text): - """ draw_status_line - tulostaa pelitietorivin""" - print(end=text+'\r') - -class NoDraw(): - """ NoDraw - ei mitään """ - # pylint: disable = unused-argument - - def matrix(self, matrix, hx, hy): - """ "piirtää" ruudukon """ - - def status_line(self, text): - """ draw_status_line - tulostaa pelitietorivin""" -- cgit v1.2.3