[Fix] Health bar duration never stopped.

This commit is contained in:
Tamir Atias 2012-01-16 18:10:15 +02:00
parent 4e338bb799
commit f1a003a04f
2 changed files with 10 additions and 1 deletions

View File

@ -24,6 +24,8 @@ Character::Character(LevelGen* mapArg) {
_healthBar.SetBackgroundRGB(0, 0, 0); _healthBar.SetBackgroundRGB(0, 0, 0);
_healthBar.SetForegroundRGB(255, 0, 0); _healthBar.SetForegroundRGB(255, 0, 0);
_showHealthBar = false;
} }
Character::~Character(void) { Character::~Character(void) {
@ -119,7 +121,12 @@ void Character::Render(void) {
ApplySurface((int)x, (int)y, _texture, screen, &_sprites[directionFacing][_animationStage]); ApplySurface((int)x, (int)y, _texture, screen, &_sprites[directionFacing][_animationStage]);
} }
if(_healthBarDuration.IsStarted() && (_healthBarDuration.GetTicks() < 5000)) { if(_showHealthBar && (_healthBarDuration.GetTicks() >= 5000)) {
_healthBarDuration.Stop();
_showHealthBar = false;
}
if(_showHealthBar) {
_healthBar.Draw(); _healthBar.Draw();
} }
} }
@ -146,6 +153,7 @@ void Character::Update(void) {
void Character::OnAttack(void) { void Character::OnAttack(void) {
_healthBarDuration.Start(); _healthBarDuration.Start();
_showHealthBar = true;
} }
void Character::Move(void) { void Character::Move(void) {

View File

@ -104,6 +104,7 @@ protected:
Bar _healthBar; Bar _healthBar;
Timer _healthBarDuration; Timer _healthBarDuration;
bool _showHealthBar;
private: private:
static const int ANIMATION_SPEED = 200; static const int ANIMATION_SPEED = 200;