1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import curses
class HealthPad:
def __init__(self, width=1, char=('@',7,0), emptyChar=('-',7,0), colours=False):
self.char = char
self.emptyChar = emptyChar
self.pad = curses.newpad(2, width+1)
self.width = width
self.changed = False
self.lastView = None
self.colours = colours
self.health = 0
self.maxHealth = 0
def setHealth(self, health, maxHealth):
self.health = health
self.maxHealth = maxHealth
self.pad.erase()
barEnd = round(health/maxHealth * self.width)
self.pad.addstr(0,0,"Health: {}/{}".format(health, maxHealth)[:self.width])
if self.colours:
self.pad.addstr(1,0, self.char[0]*barEnd, self.colours.get(*self.char[1:]))
self.pad.addstr(1,barEnd, self.emptyChar[0]*(self.width-barEnd), self.colours.get(*self.emptyChar[1:]))
else:
self.pad.addstr(1,0, self.char[0]*barEnd)
self.pad.addstr(1,barEnd, self.emptyChar[0]*(self.width-barEnd))
self.changed = True
def getHeight(self):
return 2
def update(self, screen, x, y, xmax, ymax, force=False):
if not self.changed and (x, y, xmax, ymax) == self.lastView or xmax <= x or ymax <= y and not force:
return
self.lastView = (x, y, xmax, ymax)
self.changed = False
self.pad.noutrefresh(
0,
0,
y,
x,
ymax-1,
xmax-1)
|