summaryrefslogtreecommitdiffstats
path: root/src/Mobs/PassiveMonster.h
blob: 1ab6d27e38eef9bf67255b00a7ec69985e8e2ec6 (plain) (blame)
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

#pragma once

#include "Monster.h"
#include "Behaviors/BehaviorBreeder.h"
#include "Behaviors/BehaviorItemFollower.h"
#include "Behaviors/BehaviorCoward.h"


typedef std::string AString;
class cPassiveMonster : public cMonster
{
    typedef cMonster super;

public:
    cPassiveMonster(const AString & a_ConfigName, eMonsterType a_MobType,
                    const AString & a_SoundHurt, const AString & a_SoundDeath,
                    double a_Width, double a_Height);
    virtual ~cPassiveMonster();
    virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
    virtual void OnRightClicked(cPlayer & a_Player) override;

    /** When hit by someone, run away */
    virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;

    virtual void Destroyed(void) override;

private:
    cBehaviorBreeder m_BehaviorBreeder;
    cBehaviorItemFollower m_BehaviorItemFollower;
    cBehaviorCoward m_BehaviorCoward;
};