56 lines
1.1 KiB
Python
56 lines
1.1 KiB
Python
from __future__ import annotations
|
|
|
|
import copy
|
|
from typing import Optional, Tuple, Type
|
|
|
|
from ai import BaseAI
|
|
from stats import Stats
|
|
|
|
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,
|
|
|
|
#monster-specific stuff
|
|
ai_class: Type[BaseAI] = None,
|
|
stats: Stats = None,
|
|
):
|
|
self.x = x
|
|
self.y = y
|
|
self.char = char
|
|
self.color = color
|
|
self.name = name
|
|
self.walkable = walkable
|
|
self.floor_map = floor_map
|
|
|
|
#monster-specific stuff
|
|
if ai_class:
|
|
self.ai: Optional[BaseAI] = ai_class(self)
|
|
|
|
if stats:
|
|
self.stats = stats
|
|
self.stats.entity = self
|
|
|
|
#generic entity stuff
|
|
def spawn(self, 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
|
|
|
|
#monster-specific stuff
|
|
def is_alive(self) -> bool:
|
|
return bool(self.ai)
|