]> git.localhorst.tv Git - l2e.git/blob - src/battle/Monster.h
added monster drawing routine in battle state
[l2e.git] / src / battle / Monster.h
1 /*
2  * Monster.h
3  *
4  *  Created on: Aug 3, 2012
5  *      Author: holy
6  */
7
8 #ifndef BATTLE_MONSTER_H_
9 #define BATTLE_MONSTER_H_
10
11 #include <SDL.h>
12
13 namespace graphics { class Sprite; }
14
15 namespace battle {
16
17 class Monster {
18
19 public:
20         Monster();
21         ~Monster();
22
23 public:
24         const char *Name() const { return name; }
25         Uint8 Level() const { return level; }
26         const graphics::Sprite *Sprite() const { return sprite; }
27
28         Uint16 MaxHealth() const { return maxHealth; }
29         Uint16 Health() const { return health; }
30         int RelativeHealth(int max) { return health * max / maxHealth; }
31
32         Uint16 MaxMana() const { return maxMana; }
33         Uint16 Mana() const { return mana; }
34         int RelativeMana(int max) { return mana * max / maxMana; }
35
36         Uint16 Attack() const { return attack; }
37         Uint16 Defense() const { return defense; }
38         Uint16 Agility() const { return agility; }
39         Uint16 Intelligence() const { return intelligence; }
40         Uint16 Gut() const { return gut; }
41         Uint16 MagicResistance() const { return magicResistance; }
42
43         Uint16 ExpReward() const { return expReward; }
44         Uint16 GoldReward() const { return goldReward; }
45
46         const /* Item */ void *DropItem() const { return dropItem; }
47         Uint8 DropChance() const { return dropChance; }
48
49         const /* Script */ void *AttackScript() { return attackScript; }
50         const /* Script */ void *DefenseScript() { return defenseScript; }
51
52 // temporary setters until loader is implemented
53 public:
54         void SetSprite(graphics::Sprite *s) { sprite = s; }
55
56 private:
57         const char *name;
58         graphics::Sprite *sprite;
59         /* Item */ void *dropItem;
60         /* Script */ void *attackScript;
61         /* Script */ void *defenseScript;
62
63         Uint16 maxHealth, health;
64         Uint16 maxMana, mana;
65
66         Uint16 attack;
67         Uint16 defense;
68         Uint16 agility;
69         Uint16 intelligence;
70         Uint16 gut;
71         Uint16 magicResistance;
72
73         Uint16 expReward, goldReward;
74
75         Uint8 level;
76         Uint8 dropChance;
77
78 };
79
80 }
81
82 #endif /* BATTLE_MONSTER_H_ */