forked from Sicatriz/CppGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhealth.cpp
58 lines (45 loc) · 820 Bytes
/
health.cpp
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
49
50
51
52
53
54
55
#include "health.h"
using namespace insemi;
// print health and hp
Health::Health(QGraphicsItem *){
// initialize the score to 0
health =3;
printhealth();
printhp();
}
// decrease health
void Health::decrease(){
health--;
printhealth();
}
// increase health
void Health::increase(){
health++;
printhealth();
}
// get health value
int Health::getHealth() const{
return health;
}
// increase HP
void Health::increaseHP()
{
setHP(1);
printhealth();
printhp();
}
// decrease HP
void Health::decreaseHP()
{
setHP(-1);
printhealth();
printhp();
}
// print health on screen
void Health::printhealth()
{
setPos(0,30);
setFont(QFont("times",24));
setDefaultTextColor(Qt::red);
setPlainText(QString("Health: ") + QString::number(health));
}