2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../Pawn.h"
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "../Defines.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../World.h"
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "../BlockID.h"
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "../Item.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Vector3f;
|
|
|
|
class cClientHandle;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
// tolua_begin
|
|
|
|
class cMonster :
|
|
|
|
public cPawn
|
|
|
|
{
|
|
|
|
typedef cPawn super;
|
2012-06-14 09:06:06 -04:00
|
|
|
public:
|
2012-12-21 06:04:08 -05:00
|
|
|
// tolua_end
|
2013-04-13 17:02:10 -04:00
|
|
|
float m_SightDistance;
|
2012-12-21 06:04:08 -05:00
|
|
|
|
2012-12-22 04:39:13 -05:00
|
|
|
/** Creates the mob object.
|
|
|
|
* If a_ConfigName is not empty, the configuration is loaded using GetMonsterConfig()
|
|
|
|
* a_ProtocolMobType is the ID of the mob used in the protocol ( http://wiki.vg/Entities#Mobs , 2012_12_22)
|
|
|
|
* a_SoundHurt and a_SoundDeath are assigned into m_SoundHurt and m_SoundDeath, respectively
|
|
|
|
*/
|
2013-07-01 06:39:56 -04:00
|
|
|
cMonster(const AString & a_ConfigName, char a_ProtocolMobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-12-21 07:21:20 -05:00
|
|
|
CLASS_PROTODEF(cMonster);
|
|
|
|
|
2012-08-24 03:58:26 -04:00
|
|
|
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
|
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
virtual void KilledBy(cEntity * a_Killer) override;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-08-24 03:58:26 -04:00
|
|
|
virtual void MoveToPosition(const Vector3f & a_Position);
|
|
|
|
virtual bool ReachedDestination(void);
|
|
|
|
|
|
|
|
char GetMobType(void) const {return m_MobType; }
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-08-24 03:58:26 -04:00
|
|
|
const char * GetState();
|
2012-08-19 15:42:32 -04:00
|
|
|
void SetState(const AString & str);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
virtual void CheckEventSeePlayer(void);
|
|
|
|
virtual void EventSeePlayer(cEntity * a_Player);
|
2012-12-21 06:04:08 -05:00
|
|
|
virtual cPlayer * FindClosestPlayer(); // non static is easier. also virtual so other mobs can implement their own searching algo
|
2012-12-22 04:39:13 -05:00
|
|
|
|
|
|
|
/// Reads the monster configuration for the specified monster name and assigns it to this object.
|
|
|
|
void GetMonsterConfig(const AString & a_Name);
|
|
|
|
|
2012-12-22 05:15:53 -05:00
|
|
|
virtual void EventLosePlayer(void);
|
2013-04-13 17:02:10 -04:00
|
|
|
virtual void CheckEventLostPlayer(void);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-04-13 17:02:10 -04:00
|
|
|
virtual void InStateIdle (float a_Dt);
|
|
|
|
virtual void InStateChasing (float a_Dt);
|
|
|
|
virtual void InStateEscaping(float a_Dt);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
virtual void Attack(float a_Dt);
|
|
|
|
int GetMobType() {return m_MobType;}
|
|
|
|
int GetAttackRate(){return (int)m_AttackRate;}
|
|
|
|
void SetAttackRate(int ar);
|
|
|
|
void SetAttackRange(float ar);
|
|
|
|
void SetAttackDamage(float ad);
|
|
|
|
void SetSightDistance(float sd);
|
|
|
|
|
|
|
|
enum MState{ATTACKING, IDLE, CHASING, ESCAPING} m_EMState;
|
|
|
|
enum MPersonality{PASSIVE,AGGRESSIVE,COWARDLY} m_EMPersonality;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
cEntity * m_Target;
|
2012-06-14 09:06:06 -04:00
|
|
|
float m_AttackRate;
|
|
|
|
float idle_interval;
|
|
|
|
|
|
|
|
Vector3f m_Destination;
|
|
|
|
bool m_bMovingToDestination;
|
|
|
|
bool m_bPassiveAggressive;
|
|
|
|
|
|
|
|
float m_DestinationTime;
|
|
|
|
|
|
|
|
float m_DestroyTimer;
|
|
|
|
float m_Jump;
|
|
|
|
|
|
|
|
char m_MobType;
|
|
|
|
|
2012-12-21 13:05:34 -05:00
|
|
|
AString m_SoundHurt;
|
|
|
|
AString m_SoundDeath;
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
float m_SeePlayerInterval;
|
|
|
|
float m_AttackDamage;
|
|
|
|
float m_AttackRange;
|
|
|
|
float m_AttackInterval;
|
|
|
|
|
2012-08-19 15:42:32 -04:00
|
|
|
void AddRandomDropItem(cItems & a_Drops, unsigned int a_Min, unsigned int a_Max, short a_Item, short a_ItemHealth = 0);
|
2012-12-21 06:04:08 -05:00
|
|
|
} ; // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|