36 lines
685 B
Python
36 lines
685 B
Python
from __future__ import annotations
|
|
|
|
import copy
|
|
from typing import Tuple
|
|
|
|
class Entity:
|
|
def __init__(
|
|
self,
|
|
x: int = 0,
|
|
y: int = 0,
|
|
char: str = "?",
|
|
color: Tuple[int, int, int] = (255, 255, 255),
|
|
name: str = "<Unnamed>",
|
|
walkable: bool = True,
|
|
floor_map = None,
|
|
):
|
|
self.x = x
|
|
self.y = y
|
|
self.char = char
|
|
self.color = color
|
|
self.name = name
|
|
self.walkable = walkable
|
|
self.floor_map = floor_map
|
|
|
|
def spawn(self: T, x: int, y: int, floor_map):
|
|
clone = copy.deepcopy(self)
|
|
clone.x = x
|
|
clone.y = y
|
|
clone.floor_map = floor_map
|
|
clone.floor_map.entities.add(clone)
|
|
return clone
|
|
|
|
def set_pos(self, x: int, y: int) -> None:
|
|
self.x = x
|
|
self.y = y
|