Add a highlight grid to Map, with locations set to True if that point should be drawn with a "highlight" treatment. Add the highlight graphic_dtype to all Tiles.
64 lines
2.6 KiB
Python
64 lines
2.6 KiB
Python
from typing import Tuple
|
|
|
|
import numpy as np
|
|
|
|
graphic_datatype = np.dtype([
|
|
# Character, a Unicode codepoint represented as an int32
|
|
('ch', np.int32),
|
|
# Foreground color, three bytes
|
|
('fg', '4B'),
|
|
# Background color, three bytes
|
|
('bg', '4B'),
|
|
])
|
|
|
|
tile_datatype = np.dtype([
|
|
# Bool indicating whether this tile can be traversed
|
|
('walkable', np.bool_),
|
|
# Bool indicating whether this tile is transparent
|
|
('transparent', np.bool_),
|
|
# A graphic struct (as above) defining the look of this tile when it's not visible
|
|
('dark', graphic_datatype),
|
|
# A graphic struct (as above) defining the look of this tile when it's visible
|
|
('light', graphic_datatype),
|
|
# A graphic struct (as above) defining the look of this tile when it's highlighted
|
|
('highlighted', graphic_datatype),
|
|
])
|
|
|
|
|
|
def tile(*,
|
|
walkable: int,
|
|
transparent: int,
|
|
dark: Tuple[int, Tuple[int, int, int, int], Tuple[int, int, int, int]],
|
|
light: Tuple[int, Tuple[int, int, int, int], Tuple[int, int, int, int]],
|
|
highlighted: Tuple[int, Tuple[int, int, int, int], Tuple[int, int, int, int]]) -> np.ndarray:
|
|
return np.array((walkable, transparent, dark, light, highlighted), dtype=tile_datatype)
|
|
|
|
|
|
# An overlay color for tiles that are not visible and have not been explored
|
|
Shroud = np.array((ord(' '), (255, 255, 255, 255), (0, 0, 0, 0)), dtype=graphic_datatype)
|
|
|
|
Empty = tile(
|
|
walkable=False, transparent=False,
|
|
dark=(ord('#'), (20, 20, 20, 255), (0, 0, 0, 0)),
|
|
light=(ord('#'), (20, 20, 20, 255), (0, 0, 0, 0)),
|
|
highlighted=(ord('#'), (20, 20, 20, 255), (30, 30, 30, 255)))
|
|
Floor = tile(
|
|
walkable=True, transparent=True,
|
|
dark=(ord('·'), (80, 80, 100, 255), (50, 50, 50, 255)),
|
|
light=(ord('·'), (100, 100, 120, 255), (80, 80, 100, 255)),
|
|
highlighted=(ord('·'), (100, 100, 120, 255), (80, 80, 150, 255)))
|
|
StairsUp = tile(
|
|
walkable=True, transparent=True,
|
|
dark=(ord('<'), (80, 80, 100, 255), (50, 50, 50, 255)),
|
|
light=(ord('<'), (100, 100, 120, 255), (80, 80, 100, 255)),
|
|
highlighted=(ord('<'), (100, 100, 120, 255), (80, 80, 150, 255)))
|
|
StairsDown = tile(
|
|
walkable=True, transparent=True,
|
|
dark=(ord('>'), (80, 80, 100, 255), (50, 50, 50, 255)),
|
|
light=(ord('>'), (100, 100, 120, 255), (80, 80, 100, 255)),
|
|
highlighted=(ord('>'), (100, 100, 120, 255), (80, 80, 150, 255)))
|
|
Wall = tile(
|
|
walkable=False, transparent=False,
|
|
dark=(ord('#'), (80, 80, 80, 255), (0, 0, 0, 255)),
|
|
light=(ord('#'), (100, 100, 100, 255), (20, 20, 20, 255)),
|
|
highlighted=(ord('#'), (100, 100, 100, 255), (20, 20, 20, 255)))
|