squirrel-battle/squirrelbattle/display/texturepack.py

155 lines
3.5 KiB
Python
Raw Normal View History

2021-01-10 09:46:17 +00:00
# Copyright (C) 2020-2021 by ÿnérant, eichhornchen, nicomarg, charlse
2020-11-27 15:33:17 +00:00
# SPDX-License-Identifier: GPL-3.0-or-later
import curses
from typing import Any, Union, Tuple
2020-11-10 21:04:38 +00:00
2020-11-06 16:43:30 +00:00
class TexturePack:
"""
A class to handle displaying several textures.
"""
2020-11-06 16:43:30 +00:00
_packs = dict()
name: str
tile_width: int
tile_fg_color: Union[int, Tuple[int, int, int]]
tile_fg_visible_color: Union[int, Tuple[int, int, int]]
tile_bg_color: Union[int, Tuple[int, int, int]]
entity_fg_color: Union[int, Tuple[int, int, int]]
entity_bg_color: Union[int, Tuple[int, int, int]]
2020-12-09 15:50:47 +00:00
BODY_SNATCH_POTION: str
BOMB: str
2021-01-08 17:06:26 +00:00
BOW: str
CHEST: str
CHESTPLATE: str
EAGLE: str
2020-11-06 16:43:30 +00:00
EMPTY: str
2021-01-08 18:05:02 +00:00
FIRE_BALL_STAFF: str
2020-11-06 16:43:30 +00:00
FLOOR: str
2020-12-09 15:54:53 +00:00
HAZELNUT: str
HEART: str
HEDGEHOG: str
HELMET: str
2020-12-09 15:50:47 +00:00
MERCHANT: str
2020-11-06 16:43:30 +00:00
PLAYER: str
2020-12-09 15:50:47 +00:00
RABBIT: str
RING_OF_CRITICAL_DAMAGE: str
RING_OF_MORE_EXPERIENCE: str
2021-01-08 17:06:26 +00:00
RULER: str
SCROLL_OF_DAMAGE: str
SCROLL_OF_WEAKENING: str
SHIELD: str
2020-12-09 15:50:47 +00:00
SUNFLOWER: str
SWORD: str
TEDDY_BEAR: str
TIGER: str
TRUMPET: str
2020-12-09 15:50:47 +00:00
WALL: str
2020-11-06 16:43:30 +00:00
2020-11-06 19:18:27 +00:00
ASCII_PACK: "TexturePack"
SQUIRREL_PACK: "TexturePack"
2020-11-06 16:43:30 +00:00
def __init__(self, name: str, **kwargs):
self.name = name
self.__dict__.update(**kwargs)
TexturePack._packs[name] = self
def __getitem__(self, item: str) -> Any:
2020-11-10 20:47:36 +00:00
return self.__dict__[item]
2020-11-06 16:43:30 +00:00
@classmethod
def get_pack(cls, name: str) -> "TexturePack":
return cls._packs[name.lower()]
2020-11-06 16:43:30 +00:00
2020-11-11 22:09:15 +00:00
@classmethod
def get_next_pack_name(cls, name: str) -> str:
return "squirrel" if name == "ascii" else "ascii"
2020-11-06 16:43:30 +00:00
TexturePack.ASCII_PACK = TexturePack(
name="ascii",
tile_width=1,
tile_fg_visible_color=(1000, 1000, 1000),
tile_fg_color=curses.COLOR_WHITE,
tile_bg_color=curses.COLOR_BLACK,
entity_fg_color=(1000, 1000, 1000),
entity_bg_color=curses.COLOR_BLACK,
2020-12-09 15:50:47 +00:00
BODY_SNATCH_POTION='S',
BOMB='ç',
2021-01-08 17:06:26 +00:00
BOW=')',
CHEST='',
CHESTPLATE='(',
EAGLE='µ',
2020-11-06 16:43:30 +00:00
EMPTY=' ',
EXPLOSION='%',
2021-01-08 18:05:02 +00:00
FIRE_BALL_STAFF=':',
2020-11-06 16:43:30 +00:00
FLOOR='.',
2020-12-25 23:52:47 +00:00
LADDER='H',
HAZELNUT='¤',
2020-11-11 15:23:27 +00:00
HEART='',
2020-12-09 15:50:47 +00:00
HEDGEHOG='*',
HELMET='0',
2020-11-27 16:54:03 +00:00
MERCHANT='M',
MONOCLE='ô',
2020-12-09 15:50:47 +00:00
PLAYER='@',
RABBIT='Y',
RING_OF_CRITICAL_DAMAGE='o',
RING_OF_MORE_EXPERIENCE='o',
2021-01-08 17:06:26 +00:00
RULER='\\',
SHIELD='D',
SUNFLOWER='I',
2020-12-07 20:13:55 +00:00
SWORD='\u2020',
2020-12-09 15:50:47 +00:00
TEDDY_BEAR='8',
TIGER='n',
TRUMPET='/',
2020-12-09 15:50:47 +00:00
WALL='#',
SCROLL_OF_DAMAGE=']',
SCROLL_OF_WEAKENING=']',
2020-11-06 16:43:30 +00:00
)
TexturePack.SQUIRREL_PACK = TexturePack(
name="squirrel",
tile_width=2,
tile_fg_visible_color=(1000, 1000, 1000),
tile_fg_color=curses.COLOR_WHITE,
tile_bg_color=curses.COLOR_BLACK,
entity_fg_color=(1000, 1000, 1000),
entity_bg_color=(1000, 1000, 1000),
2020-12-09 15:50:47 +00:00
BODY_SNATCH_POTION='🔀',
BOMB='💣',
2021-01-08 17:06:26 +00:00
BOW='🏹',
CHEST='🧰',
CHESTPLATE='🦺',
EAGLE='🦅',
EMPTY=' ',
EXPLOSION='💥',
2021-01-08 18:05:02 +00:00
FIRE_BALL_STAFF='🪄',
FLOOR='██',
2021-01-07 15:49:40 +00:00
LADDER=('🪜', curses.COLOR_WHITE, (1000, 1000, 1000),
curses.COLOR_WHITE, (1000, 1000, 1000)),
2020-12-09 15:54:53 +00:00
HAZELNUT='🌰',
2020-11-11 15:23:27 +00:00
HEART='💜',
2020-12-09 15:50:47 +00:00
HEDGEHOG='🦔',
HELMET='⛑️ ',
2020-12-09 15:50:47 +00:00
PLAYER='🐿️ ',
2020-11-27 16:54:03 +00:00
MERCHANT='🦜',
MONOCLE='🧐',
2020-12-09 15:50:47 +00:00
RABBIT='🐇',
RING_OF_CRITICAL_DAMAGE='💍',
RING_OF_MORE_EXPERIENCE='💍',
2021-01-08 17:06:26 +00:00
RULER='📏',
SHIELD='🛡️ ',
SUNFLOWER='🌻',
SWORD='🗡️ ',
2020-12-09 15:50:47 +00:00
TEDDY_BEAR='🧸',
TIGER='🐅',
TRUMPET='🎺',
2020-12-09 15:50:47 +00:00
WALL='🧱',
SCROLL_OF_DAMAGE='📜',
SCROLL_OF_WEAKENING='📜',
2020-11-06 16:43:30 +00:00
)