squirrel-battle/dungeonbattle/entities/player.py

64 lines
1.9 KiB
Python
Raw Normal View History

2020-11-10 23:50:47 +00:00
from random import randint
from ..interfaces import FightingEntity
2020-11-06 14:33:26 +00:00
class Player(FightingEntity):
2020-11-10 20:47:36 +00:00
name = "player"
2020-11-06 20:23:17 +00:00
maxhealth: int = 20
strength: int = 5
2020-11-08 22:48:26 +00:00
intelligence: int = 1
charisma: int = 1
dexterity: int = 1
constitution: int = 1
2020-11-06 20:23:17 +00:00
level: int = 1
current_xp: int = 0
max_xp: int = 10
2020-11-06 17:12:17 +00:00
2020-11-10 21:02:41 +00:00
def move(self, y: int, x: int) -> None:
"""
When the player moves, move the camera of the map.
"""
super().move(y, x)
self.map.currenty = y
self.map.currentx = x
2020-11-06 20:15:09 +00:00
def level_up(self) -> None:
"""
Add levels to the player as much as it is possible.
"""
2020-11-06 20:23:17 +00:00
while self.current_xp > self.max_xp:
2020-11-06 20:15:09 +00:00
self.level += 1
2020-11-06 20:23:17 +00:00
self.current_xp -= self.max_xp
2020-11-06 20:15:09 +00:00
self.max_xp = self.level * 10
2020-11-10 23:50:47 +00:00
self.health = self.maxhealth
# TODO Remove it, that's only fun
self.map.spawn_random_entities(randint(self.level, self.level * 5))
2020-11-06 20:15:09 +00:00
def add_xp(self, xp: int) -> None:
"""
Add some experience to the player.
If the required amount is reached, level up.
"""
2020-11-06 20:15:09 +00:00
self.current_xp += xp
2020-11-06 17:12:17 +00:00
self.level_up()
2020-11-10 23:50:47 +00:00
def check_move(self, y: int, x: int, move_if_possible: bool = False) \
-> bool:
2020-11-10 23:50:47 +00:00
"""
If the player tries to move but a fighting entity is there,
the player fights this entity.
It rewards some XP if it is dead.
2020-11-10 23:50:47 +00:00
"""
2020-11-11 00:17:00 +00:00
# Don't move if we are dead
if self.dead:
return False
2020-11-10 23:50:47 +00:00
for entity in self.map.entities:
if entity.y == y and entity.x == x and \
isinstance(entity, FightingEntity):
2020-11-10 23:50:47 +00:00
self.hit(entity)
if entity.dead:
self.add_xp(randint(3, 7))
return True
return super().check_move(y, x, move_if_possible)