squirrel-battle/dungeonbattle/display/statsdisplay.py

44 lines
1.4 KiB
Python
Raw Normal View History

2020-11-08 22:05:06 +00:00
from typing import Any
from .display import Display
import curses
2020-11-06 18:53:27 +00:00
2020-11-06 20:15:09 +00:00
from dungeonbattle.entities.player import Player
class StatsDisplay(Display):
2020-11-10 09:49:11 +00:00
player: Player
2020-11-09 00:33:23 +00:00
def __init__(self, *args):
super().__init__(*args)
self.pad = self.newpad(self.rows, self.cols)
def update_player(self, p: Player):
self.player = p
2020-11-06 20:15:09 +00:00
def update_pad(self) -> None:
2020-11-07 14:00:24 +00:00
string = ""
for _ in range(self.width - 1):
2020-11-07 14:00:24 +00:00
string = string + "-"
self.pad.addstr(0, 0, string)
string2 = "Player -- LVL {} EXP {}/{} HP {}/{}"\
2020-11-06 20:15:09 +00:00
.format(self.player.level, self.player.current_xp,
self.player.max_xp, self.player.health,
2020-11-07 14:00:24 +00:00
self.player.maxhealth)
for _ in range(self.width - len(string2) - 1):
2020-11-07 14:00:24 +00:00
string2 = string2 + " "
self.pad.addstr(1, 0, string2)
string3 = "Stats : STR {} INT {} CHR {} DEX {} CON {}"\
.format(self.player.strength,
2020-11-06 20:15:09 +00:00
self.player.intelligence, self.player.charisma,
self.player.dexterity, self.player.constitution)
for _ in range(self.width - len(string3) - 1):
2020-11-07 14:00:24 +00:00
string3 = string3 + " "
2020-11-08 21:48:50 +00:00
self.pad.addstr(2, 0, string3)
2020-11-06 20:15:09 +00:00
def display(self) -> None:
self.pad.clear()
self.update_pad()
self.pad.refresh(0, 0, self.y, self.x,
2 + self.y,
self.width + self.x)