2020-11-27 15:33:17 +00:00
|
|
|
# Copyright (C) 2020 by ÿnérant, eichhornchen, nicomarg, charlse
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-11-10 21:34:12 +00:00
|
|
|
from random import choice
|
|
|
|
|
2020-11-10 21:59:02 +00:00
|
|
|
from .player import Player
|
2020-11-06 14:33:26 +00:00
|
|
|
from ..interfaces import FightingEntity, Map
|
|
|
|
|
2020-10-16 15:58:00 +00:00
|
|
|
|
2020-10-23 14:51:48 +00:00
|
|
|
class Monster(FightingEntity):
|
2020-11-18 11:27:59 +00:00
|
|
|
"""
|
2020-11-18 13:54:21 +00:00
|
|
|
The class for all monsters in the dungeon.
|
|
|
|
A monster must override this class, and the parameters are given
|
|
|
|
in the __init__ function.
|
|
|
|
An example of the specification of a monster that has a strength of 4
|
|
|
|
and 20 max HP:
|
|
|
|
|
|
|
|
class MyMonster(Monster):
|
|
|
|
def __init__(self, strength: int = 4, maxhealth: int = 20,
|
|
|
|
*args, **kwargs) -> None:
|
|
|
|
super().__init__(name="my_monster", strength=strength,
|
|
|
|
maxhealth=maxhealth, *args, **kwargs)
|
|
|
|
|
|
|
|
With that way, attributes can be overwritten when the entity got created.
|
2020-11-18 11:27:59 +00:00
|
|
|
"""
|
2020-11-18 13:54:21 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
2020-11-06 15:13:28 +00:00
|
|
|
def act(self, m: Map) -> None:
|
2020-11-10 21:34:12 +00:00
|
|
|
"""
|
|
|
|
By default, a monster will move randomly where it is possible
|
|
|
|
And if a player is close to the monster, the monster run on the player.
|
|
|
|
"""
|
2020-11-10 21:59:02 +00:00
|
|
|
target = None
|
|
|
|
for entity in m.entities:
|
|
|
|
if self.distance_squared(entity) <= 25 and \
|
|
|
|
isinstance(entity, Player):
|
|
|
|
target = entity
|
2020-11-10 21:34:12 +00:00
|
|
|
break
|
2020-10-23 14:51:48 +00:00
|
|
|
|
2020-11-11 14:25:50 +00:00
|
|
|
# A Dijkstra algorithm has ran that targets the player.
|
|
|
|
# With that way, monsters can simply follow the path.
|
|
|
|
# If they can't move and they are already close to the player,
|
|
|
|
# They hit.
|
|
|
|
if target and (self.y, self.x) in target.paths:
|
2020-11-10 21:59:02 +00:00
|
|
|
# Move to target player
|
2020-11-11 14:25:50 +00:00
|
|
|
next_y, next_x = target.paths[(self.y, self.x)]
|
|
|
|
moved = self.check_move(next_y, next_x, True)
|
|
|
|
if not moved and self.distance_squared(target) <= 1:
|
2020-11-19 11:03:05 +00:00
|
|
|
self.map.logs.add_message(self.hit(target))
|
2020-11-10 21:59:02 +00:00
|
|
|
else:
|
|
|
|
for _ in range(100):
|
|
|
|
if choice([self.move_up, self.move_down,
|
|
|
|
self.move_left, self.move_right])():
|
|
|
|
break
|
|
|
|
|
2020-11-06 14:33:26 +00:00
|
|
|
|
2020-11-20 17:02:08 +00:00
|
|
|
class Tiger(Monster):
|
2020-11-18 11:27:59 +00:00
|
|
|
"""
|
2020-11-20 17:02:08 +00:00
|
|
|
A tiger monster
|
2020-11-18 11:27:59 +00:00
|
|
|
"""
|
2020-11-18 13:54:21 +00:00
|
|
|
def __init__(self, strength: int = 2, maxhealth: int = 20,
|
|
|
|
*args, **kwargs) -> None:
|
2020-11-20 17:02:08 +00:00
|
|
|
super().__init__(name="tiger", strength=strength,
|
2020-11-18 13:54:21 +00:00
|
|
|
maxhealth=maxhealth, *args, **kwargs)
|
2020-11-11 16:39:48 +00:00
|
|
|
|
|
|
|
|
2020-11-10 20:47:36 +00:00
|
|
|
class Hedgehog(Monster):
|
2020-11-18 11:27:59 +00:00
|
|
|
"""
|
|
|
|
A really mean hedgehog monster
|
|
|
|
"""
|
2020-11-18 13:54:21 +00:00
|
|
|
def __init__(self, strength: int = 3, maxhealth: int = 10,
|
|
|
|
*args, **kwargs) -> None:
|
|
|
|
super().__init__(name="hedgehog", strength=strength,
|
|
|
|
maxhealth=maxhealth, *args, **kwargs)
|
2020-11-11 16:39:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Rabbit(Monster):
|
2020-11-18 11:27:59 +00:00
|
|
|
"""
|
|
|
|
A rabbit monster
|
|
|
|
"""
|
2020-11-18 13:54:21 +00:00
|
|
|
def __init__(self, strength: int = 1, maxhealth: int = 15,
|
|
|
|
*args, **kwargs) -> None:
|
|
|
|
super().__init__(name="rabbit", strength=strength,
|
|
|
|
maxhealth=maxhealth, *args, **kwargs)
|
2020-11-11 16:39:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TeddyBear(Monster):
|
2020-11-18 11:27:59 +00:00
|
|
|
"""
|
|
|
|
A cute teddybear monster
|
|
|
|
"""
|
2020-11-18 13:54:21 +00:00
|
|
|
def __init__(self, strength: int = 0, maxhealth: int = 50,
|
|
|
|
*args, **kwargs) -> None:
|
|
|
|
super().__init__(name="teddy_bear", strength=strength,
|
|
|
|
maxhealth=maxhealth, *args, **kwargs)
|