Stepwise/source/game_map.py

18 lines
537 B
Python

import numpy as np
from tcod.console import Console
import tile_types
class GameMap:
def __init__(self, width: int, height: int):
self.width = width
self.height = height
self.tiles = np.full((width, height), fill_value=tile_types.wall, order="F")
def in_bounds(self, x: int, y: int) -> bool:
"""Return True if x and y are inside of the bounds of this map."""
return 0 <= x < self.width and 0 <= y < self.height
def render(self, console: Console) -> None:
console.rgb[0:self.width, 0:self.height] = self.tiles["dark"]