2012-12-21 07:21:20 -05:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "PassiveAggressiveMonster.h"
|
2013-11-10 09:16:43 -05:00
|
|
|
#include "../Entities/Entity.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-12-21 07:21:20 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cWolf :
|
|
|
|
public cPassiveAggressiveMonster
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 07:21:20 -05:00
|
|
|
typedef cPassiveAggressiveMonster super;
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
public:
|
2013-10-08 14:20:49 -04:00
|
|
|
cWolf(void);
|
2012-12-21 07:21:20 -05:00
|
|
|
|
|
|
|
CLASS_PROTODEF(cWolf);
|
2013-10-08 14:20:49 -04:00
|
|
|
|
|
|
|
virtual void DoTakeDamage(TakeDamageInfo & a_TDI) override;
|
|
|
|
virtual void OnRightClicked(cPlayer & a_Player) override;
|
2013-11-10 09:16:43 -05:00
|
|
|
virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
|
2013-11-12 10:39:59 -05:00
|
|
|
virtual void TickFollowPlayer();
|
2013-11-10 09:16:43 -05:00
|
|
|
|
|
|
|
// Get functions
|
2013-11-10 15:55:32 -05:00
|
|
|
bool IsSitting (void) const { return m_IsSitting; }
|
|
|
|
bool IsTame (void) const { return m_IsTame; }
|
|
|
|
bool IsBegging (void) const { return m_IsBegging; }
|
|
|
|
bool IsAngry (void) const { return m_IsAngry; }
|
2013-11-12 10:39:59 -05:00
|
|
|
AString GetOwner (void) const { return m_OwnerName; }
|
2013-11-10 15:55:32 -05:00
|
|
|
int GetCollarColor(void) const { return m_CollarColor; }
|
2013-11-10 09:16:43 -05:00
|
|
|
|
|
|
|
// Set functions
|
2013-11-10 15:55:32 -05:00
|
|
|
void SetIsSitting (bool a_IsSitting) { m_IsSitting = a_IsSitting; }
|
|
|
|
void SetIsTame (bool a_IsTame) { m_IsTame = a_IsTame; }
|
|
|
|
void SetIsBegging (bool a_IsBegging) { m_IsBegging = a_IsBegging; }
|
|
|
|
void SetIsAngry (bool a_IsAngry) { m_IsAngry = a_IsAngry; }
|
2013-11-12 10:39:59 -05:00
|
|
|
void SetOwner (AString a_NewOwner) { m_OwnerName = a_NewOwner; }
|
2013-11-10 15:55:32 -05:00
|
|
|
void SetCollarColor(int a_CollarColor) { m_CollarColor = a_CollarColor; }
|
2013-10-08 14:20:49 -04:00
|
|
|
|
2013-11-10 15:55:32 -05:00
|
|
|
protected:
|
2013-10-08 14:20:49 -04:00
|
|
|
|
2013-11-10 15:24:36 -05:00
|
|
|
bool m_IsSitting;
|
|
|
|
bool m_IsTame;
|
|
|
|
bool m_IsBegging;
|
|
|
|
bool m_IsAngry;
|
2013-11-13 16:38:34 -05:00
|
|
|
AString m_OwnerName;
|
2013-11-10 15:55:32 -05:00
|
|
|
int m_CollarColor;
|
2012-12-21 07:21:20 -05:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|