#define BATTLE_HERO_H_
#include "Stats.h"
+#include "../graphics/Animation.h"
#include <vector>
#include <SDL.h>
class Spell;
}
namespace graphics {
- class Animation;
class Sprite;
}
bool HasRing() const { return ring; }
bool HasJewel() const { return jewel; }
- graphics::Animation *MeleeAnimation() { return meleeAnimation; }
+ graphics::AnimationRunner &GetAnimation() { return animation; }
+ const graphics::AnimationRunner &GetAnimation() const { return animation; }
+ void SetAnimation(const graphics::AnimationRunner &a) { animation = a; }
+
const graphics::Animation *MeleeAnimation() const { return meleeAnimation; }
- graphics::Animation *AttackAnimation() { return attackAnimation; }
const graphics::Animation *AttackAnimation() const { return attackAnimation; }
- graphics::Animation *SpellAnimation() { return spellAnimation; }
const graphics::Animation *SpellAnimation() const { return spellAnimation; }
// temporary setters until loader is implemented
void AddSpell(const common::Spell *s) { spells.push_back(s); }
- void SetMeleeAnimation(graphics::Animation *a) { meleeAnimation = a; }
- void SetAttackAnimation(graphics::Animation *a) { attackAnimation = a; }
- void SetSpellAnimation(graphics::Animation *a) { spellAnimation = a; }
+ void SetMeleeAnimation(const graphics::Animation *a) { meleeAnimation = a; }
+ void SetAttackAnimation(const graphics::Animation *a) { attackAnimation = a; }
+ void SetSpellAnimation(const graphics::Animation *a) { spellAnimation = a; }
private:
const char *name;
common::Item *ring;
common::Item *jewel;
- graphics::Animation *meleeAnimation;
- graphics::Animation *attackAnimation;
- graphics::Animation *spellAnimation;
+ const graphics::Animation *meleeAnimation;
+ const graphics::Animation *attackAnimation;
+ const graphics::Animation *spellAnimation;
+
+ graphics::AnimationRunner animation;
// TODO: vector does not seem to be a good choice
std::vector<const common::Spell *> spells;
#define BATTLE_MONSTER_H_
#include "Stats.h"
+#include "../graphics/Animation.h"
#include <SDL.h>
namespace common { class Item; }
namespace graphics {
- class Animation;
class Sprite;
}
const /* Script */ void *AttackScript() { return attackScript; }
const /* Script */ void *DefenseScript() { return defenseScript; }
- graphics::Animation *MeleeAnimation() { return meleeAnimation; }
+ graphics::AnimationRunner &GetAnimation() { return animation; }
+ const graphics::AnimationRunner &GetAnimation() const { return animation; }
+ void SetAnimation(const graphics::AnimationRunner &a) { animation = a; }
+
const graphics::Animation *MeleeAnimation() const { return meleeAnimation; }
- graphics::Animation *AttackAnimation() { return attackAnimation; }
const graphics::Animation *AttackAnimation() const { return attackAnimation; }
- graphics::Animation *SpellAnimation() { return spellAnimation; }
const graphics::Animation *SpellAnimation() const { return spellAnimation; }
// temporary setters until loader is implemented
void SetStats(const Stats &s) { stats = s; }
void SetReward(Uint16 exp, Uint16 gold) { expReward = exp; goldReward = gold; }
- void SetMeleeAnimation(graphics::Animation *a) { meleeAnimation = a; }
- void SetAttackAnimation(graphics::Animation *a) { attackAnimation = a; }
- void SetSpellAnimation(graphics::Animation *a) { spellAnimation = a; }
+ void SetMeleeAnimation(const graphics::Animation *a) { meleeAnimation = a; }
+ void SetAttackAnimation(const graphics::Animation *a) { attackAnimation = a; }
+ void SetSpellAnimation(const graphics::Animation *a) { spellAnimation = a; }
private:
const char *name;
/* Script */ void *attackScript;
/* Script */ void *defenseScript;
- graphics::Animation *meleeAnimation;
- graphics::Animation *attackAnimation;
- graphics::Animation *spellAnimation;
+ const graphics::Animation *meleeAnimation;
+ const graphics::Animation *attackAnimation;
+ const graphics::Animation *spellAnimation;
+
+ graphics::AnimationRunner animation;
Uint16 maxHealth, health;
Uint16 maxMana, mana;