squirrel-battle/dungeonbattle/interfaces.py

49 lines
1.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2020-10-16 13:41:25 +00:00
from enum import Enum, auto
class Map:
width: int
height: int
tiles: list
def __init__(self, width: int, height: int, tiles: list):
self.width = width
self.height = height
self.tiles = tiles
@staticmethod
2020-10-09 16:24:13 +00:00
def load(filename: str):
with open(filename, "r") as f:
file = f.read()
return Map.load_from_string(file)
@staticmethod
2020-10-09 16:24:13 +00:00
def load_from_string(content: str):
lines = content.split("\n")
2020-10-09 16:24:13 +00:00
lines = [line for line in lines if line]
height = len(lines)
2020-10-09 16:24:13 +00:00
width = len(lines[0])
2020-10-16 13:41:25 +00:00
tiles = [[Tile.from_char(c)
2020-10-09 16:24:13 +00:00
for x, c in enumerate(line)] for y, line in enumerate(lines)]
2020-10-16 13:41:25 +00:00
return Map(width, height, tiles)
2020-10-16 13:41:25 +00:00
class Tile(Enum):
EMPTY = auto()
WALL = auto()
FLOOR = auto()
@staticmethod
2020-10-16 13:41:25 +00:00
def from_char(c: str):
return {'#': Tile.WALL, '.': Tile.FLOOR, ' ': Tile.EMPTY}[c]
class Entity:
2020-10-16 13:41:25 +00:00
x: int
y: int
2020-10-09 16:24:13 +00:00
def move(self, x: int, y: int) -> None:
2020-10-16 13:41:25 +00:00
self.x = x
self.y = y