summaryrefslogtreecommitdiff
path: root/inc/creature.hpp
blob: edc253f6337c8085b697751dfe33109bbfe48574 (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
#ifndef creature_h
#define creature_h

#include <SDL2/SDL.h>
#include <list>

#include "entity.hpp"
#include "constants.hpp"

class Creature: public Entity
{
  public:
    Creature(Window m, SDL_Rect R);
    void Behavior();
    void Action();
    void Priority();
    void setTarget();
    void Move(SDL_Rect R);

    void    giveN(list<Entity*> n){N = n;};
    double  Distance(SDL_Rect A, SDL_Rect B){return sqrt(pow(A.x-B.x,2)+pow(A.y-B.y,2));};
    int     getHealth(){return health;};
    bool    doesItHaveTarget(){return hasTarget;};
    int     getBestSense(){return bestSense;};

  private:
    bool     hasTarget;
    bool     wander;
    SDL_Rect wTarget;
    
    int     health; 
    int     reach;
    int     maxHealth;
    int     speed;
    int     bestSense;
    int     bite;
    int     amountAte;
    int     amountToGrow;

    bool    hungry; 
    bool    gender;
    bool    able;     
    
    list<Entity*> N;
    Entity *target; 
};

#endif