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
|
|
|
|
|
|
2020-11-10 21:30:55 +00:00
|
|
|
|
import curses
|
2021-01-10 10:25:53 +00:00
|
|
|
|
from typing import Any, Tuple, Union
|
2020-11-10 21:04:38 +00:00
|
|
|
|
|
|
|
|
|
|
2020-11-06 16:43:30 +00:00
|
|
|
|
class TexturePack:
|
2020-12-13 20:29:25 +00:00
|
|
|
|
"""
|
|
|
|
|
A class to handle displaying several textures.
|
|
|
|
|
"""
|
2020-11-06 16:43:30 +00:00
|
|
|
|
_packs = dict()
|
|
|
|
|
|
|
|
|
|
name: str
|
2020-11-10 21:01:57 +00:00
|
|
|
|
tile_width: int
|
2020-12-18 16:04:45 +00:00
|
|
|
|
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
|
2021-01-08 22:15:48 +00:00
|
|
|
|
CHEST: str
|
2021-01-06 14:49:54 +00:00
|
|
|
|
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
|
2021-01-06 14:49:54 +00:00
|
|
|
|
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
|
2021-01-06 14:49:54 +00:00
|
|
|
|
RING_OF_CRITICAL_DAMAGE: str
|
|
|
|
|
RING_OF_MORE_EXPERIENCE: str
|
2021-01-08 17:06:26 +00:00
|
|
|
|
RULER: str
|
2021-01-08 10:54:39 +00:00
|
|
|
|
SCROLL_OF_DAMAGE: str
|
2021-01-08 15:14:40 +00:00
|
|
|
|
SCROLL_OF_WEAKENING: str
|
2021-01-06 14:49:54 +00:00
|
|
|
|
SHIELD: str
|
2020-12-09 15:50:47 +00:00
|
|
|
|
SUNFLOWER: str
|
|
|
|
|
SWORD: str
|
|
|
|
|
TEDDY_BEAR: str
|
|
|
|
|
TIGER: str
|
2020-12-18 16:29:59 +00:00
|
|
|
|
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
|
|
|
|
|
|
2020-11-10 21:30:55 +00:00
|
|
|
|
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":
|
2020-11-10 17:08:06 +00:00
|
|
|
|
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",
|
2020-11-10 21:01:57 +00:00
|
|
|
|
tile_width=1,
|
2020-12-18 16:04:45 +00:00
|
|
|
|
tile_fg_visible_color=(1000, 1000, 1000),
|
2020-11-10 21:30:55 +00:00
|
|
|
|
tile_fg_color=curses.COLOR_WHITE,
|
|
|
|
|
tile_bg_color=curses.COLOR_BLACK,
|
2020-12-18 16:04:45 +00:00
|
|
|
|
entity_fg_color=(1000, 1000, 1000),
|
2020-11-10 21:30:55 +00:00
|
|
|
|
entity_bg_color=curses.COLOR_BLACK,
|
2020-12-09 15:50:47 +00:00
|
|
|
|
|
|
|
|
|
BODY_SNATCH_POTION='S',
|
2021-01-06 10:44:52 +00:00
|
|
|
|
BOMB='ç',
|
2021-01-08 17:06:26 +00:00
|
|
|
|
BOW=')',
|
2021-01-08 22:15:48 +00:00
|
|
|
|
CHEST='□',
|
2021-01-06 14:49:54 +00:00
|
|
|
|
CHESTPLATE='(',
|
|
|
|
|
EAGLE='µ',
|
2020-11-06 16:43:30 +00:00
|
|
|
|
EMPTY=' ',
|
2020-12-12 15:50:01 +00:00
|
|
|
|
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',
|
2020-12-11 14:52:36 +00:00
|
|
|
|
HAZELNUT='¤',
|
2020-11-11 15:23:27 +00:00
|
|
|
|
HEART='❤',
|
2020-12-09 15:50:47 +00:00
|
|
|
|
HEDGEHOG='*',
|
2021-01-06 14:49:54 +00:00
|
|
|
|
HELMET='0',
|
2020-11-27 16:54:03 +00:00
|
|
|
|
MERCHANT='M',
|
2021-01-08 14:48:12 +00:00
|
|
|
|
MONOCLE='ô',
|
2020-12-09 15:50:47 +00:00
|
|
|
|
PLAYER='@',
|
|
|
|
|
RABBIT='Y',
|
2021-01-06 14:49:54 +00:00
|
|
|
|
RING_OF_CRITICAL_DAMAGE='o',
|
|
|
|
|
RING_OF_MORE_EXPERIENCE='o',
|
2021-01-08 17:06:26 +00:00
|
|
|
|
RULER='\\',
|
2020-12-18 19:01:52 +00:00
|
|
|
|
SHIELD='D',
|
2020-11-27 17:35:52 +00:00
|
|
|
|
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',
|
2020-12-18 16:29:59 +00:00
|
|
|
|
TRUMPET='/',
|
2020-12-09 15:50:47 +00:00
|
|
|
|
WALL='#',
|
2021-01-08 10:54:39 +00:00
|
|
|
|
SCROLL_OF_DAMAGE=']',
|
2021-01-08 15:14:40 +00:00
|
|
|
|
SCROLL_OF_WEAKENING=']',
|
2020-11-06 16:43:30 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
TexturePack.SQUIRREL_PACK = TexturePack(
|
|
|
|
|
name="squirrel",
|
2020-11-10 21:01:57 +00:00
|
|
|
|
tile_width=2,
|
2020-12-18 16:04:45 +00:00
|
|
|
|
tile_fg_visible_color=(1000, 1000, 1000),
|
2020-11-10 21:30:55 +00:00
|
|
|
|
tile_fg_color=curses.COLOR_WHITE,
|
|
|
|
|
tile_bg_color=curses.COLOR_BLACK,
|
2020-12-18 16:04:45 +00:00
|
|
|
|
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='🏹',
|
2021-01-08 22:15:48 +00:00
|
|
|
|
CHEST='🧰',
|
2021-01-06 14:49:54 +00:00
|
|
|
|
CHESTPLATE='🦺',
|
|
|
|
|
EAGLE='🦅',
|
2020-11-10 21:01:57 +00:00
|
|
|
|
EMPTY=' ',
|
2020-12-12 15:50:01 +00:00
|
|
|
|
EXPLOSION='💥',
|
2021-01-08 18:05:02 +00:00
|
|
|
|
FIRE_BALL_STAFF='🪄',
|
2020-11-10 21:30:55 +00:00
|
|
|
|
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='🦔',
|
2021-01-08 11:07:13 +00:00
|
|
|
|
HELMET='⛑️ ',
|
2020-12-09 15:50:47 +00:00
|
|
|
|
PLAYER='🐿️ ️',
|
2020-11-27 16:54:03 +00:00
|
|
|
|
MERCHANT='🦜',
|
2021-01-08 14:48:12 +00:00
|
|
|
|
MONOCLE='🧐',
|
2020-12-09 15:50:47 +00:00
|
|
|
|
RABBIT='🐇',
|
2021-01-06 14:49:54 +00:00
|
|
|
|
RING_OF_CRITICAL_DAMAGE='💍',
|
|
|
|
|
RING_OF_MORE_EXPERIENCE='💍',
|
2021-01-08 17:06:26 +00:00
|
|
|
|
RULER='📏',
|
2020-12-18 19:01:52 +00:00
|
|
|
|
SHIELD='🛡️ ',
|
2020-11-27 17:35:52 +00:00
|
|
|
|
SUNFLOWER='🌻',
|
2020-12-18 00:50:11 +00:00
|
|
|
|
SWORD='🗡️ ',
|
2020-12-09 15:50:47 +00:00
|
|
|
|
TEDDY_BEAR='🧸',
|
|
|
|
|
TIGER='🐅',
|
2020-12-18 16:29:59 +00:00
|
|
|
|
TRUMPET='🎺',
|
2020-12-09 15:50:47 +00:00
|
|
|
|
WALL='🧱',
|
2021-01-08 10:54:39 +00:00
|
|
|
|
SCROLL_OF_DAMAGE='📜',
|
2021-01-08 15:14:40 +00:00
|
|
|
|
SCROLL_OF_WEAKENING='📜',
|
2020-11-06 16:43:30 +00:00
|
|
|
|
)
|