From 5728abc02c3b0b8533c95a1af8890d73b52031f2 Mon Sep 17 00:00:00 2001 From: Charles Peyrat Date: Sun, 11 Oct 2020 15:24:51 +0200 Subject: [PATCH] Sanitizing data structure --- dungeonbattle/interfaces.py | 31 +++++++++++-------------------- 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/dungeonbattle/interfaces.py b/dungeonbattle/interfaces.py index 1674427..4a2339c 100644 --- a/dungeonbattle/interfaces.py +++ b/dungeonbattle/interfaces.py @@ -22,28 +22,19 @@ class Map: lines = [line for line in lines if line] height = len(lines) width = len(lines[0]) - chars = [[Tile.from_char(c, x, y) - for x, c in enumerate(line)] for y, line in enumerate(lines)] - return Map(width, height, chars) - - -class Tile: - x: int - y: int - char: str - - @staticmethod - def from_char(c: str, x: int, y: int): - t = Tile() - t.x = x - t.y = y - t.char = c - return c + return Map(width, height, lines) class Entity: - tile: Tile + y: int + x: int + img: str + + def __init__(self, y: int, x: int, img: str): + self.y = y + self.x = x + self.img = img def move(self, x: int, y: int) -> None: - self.tile.x = x - self.tile.y = y + self.x = x + self.y = y