2012-12-21 07:52:14 -05:00
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "Monster.h"
|
2011-12-25 17:47:12 -05:00
|
|
|
|
2012-12-21 07:52:14 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cAggressiveMonster :
|
|
|
|
public cMonster
|
2011-12-25 17:47:12 -05:00
|
|
|
{
|
2012-12-21 07:52:14 -05:00
|
|
|
typedef cMonster super;
|
|
|
|
|
2011-12-25 17:47:12 -05:00
|
|
|
public:
|
2014-01-24 14:57:32 -05:00
|
|
|
|
2014-09-17 13:40:10 -04:00
|
|
|
cAggressiveMonster(const AString & a_ConfigName, eMonsterType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height);
|
2011-12-25 17:47:12 -05:00
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
virtual void Tick (float a_Dt, cChunk & a_Chunk) override;
|
|
|
|
virtual void InStateChasing(float a_Dt) override;
|
2012-12-21 07:52:14 -05:00
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
virtual void EventSeePlayer(cEntity *) override;
|
2014-02-11 17:09:56 -05:00
|
|
|
virtual void Attack(float a_Dt);
|
2013-09-07 14:02:50 -04:00
|
|
|
|
2014-04-25 15:59:55 -04:00
|
|
|
protected:
|
2014-04-26 12:21:49 -04:00
|
|
|
/** Whether this mob's destination is the same as its target's position. */
|
2014-04-25 15:59:55 -04:00
|
|
|
bool IsMovingToTargetPosition();
|
|
|
|
|
2012-12-21 07:52:14 -05:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|