49 lines
891 B
Python
Raw Normal View History

2020-11-10 22:04:38 +01:00
from typing import Any
2020-11-06 17:43:30 +01:00
class TexturePack:
_packs = dict()
name: str
tile_width: int
2020-11-06 17:43:30 +01:00
EMPTY: str
WALL: str
FLOOR: str
PLAYER: str
2020-11-06 20:18:27 +01:00
ASCII_PACK: "TexturePack"
SQUIRREL_PACK: "TexturePack"
2020-11-06 17:43:30 +01:00
def __init__(self, name: str, **kwargs):
self.name = name
self.__dict__.update(**kwargs)
TexturePack._packs[name] = self
2020-11-10 22:04:38 +01:00
def __getitem__(self, item) -> Any:
2020-11-10 21:47:36 +01:00
return self.__dict__[item]
2020-11-06 17:43:30 +01:00
@classmethod
def get_pack(cls, name: str) -> "TexturePack":
return cls._packs[name.lower()]
2020-11-06 17:43:30 +01:00
TexturePack.ASCII_PACK = TexturePack(
name="ascii",
tile_width=1,
2020-11-06 17:43:30 +01:00
EMPTY=' ',
WALL='#',
FLOOR='.',
PLAYER='@',
2020-11-10 21:47:36 +01:00
HEDGEHOG='*',
2020-11-06 17:43:30 +01:00
)
TexturePack.SQUIRREL_PACK = TexturePack(
name="squirrel",
tile_width=2,
EMPTY=' ',
WALL='██',
FLOOR='..',
PLAYER='🐿️',
HEDGEHOG='🦔',
2020-11-06 17:43:30 +01:00
)