aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/headers/Actor.hpp
blob: 14c4fff1e39aba62f3c93e09d5e8b8efa602f36c (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifndef ACTOR_HPP
#define ACTOR_HPP

#include <list>
#include <string>

#include "Item.hpp"

class Actor 
{
public:
    const unsigned maxHp;
    const std::string name;

    Actor() = delete;
    virtual ~Actor();

    void damage(int amt);
    void heal(int amt);

    void store(Item &item);
    Item& drop();

    /* accessors */
    bool alive() const { return _alive; }
    unsigned hp() const { return _hp; }

    unsigned attack() const { return _attack; }
    unsigned defence() const { return _defence; }

    unsigned magicAttack() const { return _magicAttack; }
    unsigned magicDefence() const { return _magicDefence; }

    unsigned precisionProbabiliy() const { return _precisionProbability; }
    unsigned dodgeProbabiliy() const { return _dodgeProbability; }

    unsigned reactionSpeed() const { return _reactionSpeed; }

    const std::list<Item*>& inventory() const { return _inventory; }

    int x() { return _x; }
    int y() { return _y; }

protected:
    bool _alive;
    unsigned _hp;

    /* movement related */
    unsigned _movements;
    int _x, _y;

    /* combat related */
    unsigned _attack;
    unsigned _defence;

    unsigned _magicAttack; // nota come magia
    unsigned _magicDefence; // nota come resistenza

    unsigned _precisionProbability;
    unsigned _dodgeProbability;
    unsigned _reactionSpeed;

    // unsigned _abilityProbability;

    /* others */
    unsigned _inventorySize;
    std::list<Item*> _inventory;

    Actor(std::string _name, unsigned _maxHp);
};

#endif