Files
cuberite-2a/src/Mobs/Wolf.h
T

77 lines
2.4 KiB
C++
Raw Normal View History

#pragma once
#include "PassiveAggressiveMonster.h"
2017-08-25 13:43:18 +01:00
#include "../UUID.h"
2017-08-07 09:08:27 +02:00
class cEntity;
2020-04-13 18:38:06 +02:00
class cWolf:
public cPassiveAggressiveMonster
{
2020-04-13 18:38:06 +02:00
using Super = cPassiveAggressiveMonster;
2016-01-11 21:34:41 +02:00
public:
2020-04-13 18:38:06 +02:00
cWolf();
CLASS_PROTODEF(cWolf)
2013-10-08 19:20:49 +01:00
void NotifyAlliesOfFight(cPawn * a_Opponent);
2014-04-26 00:32:30 +02:00
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
2013-10-08 19:20:49 +01:00
virtual void OnRightClicked(cPlayer & a_Player) override;
2015-01-11 21:12:26 +00:00
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
2013-11-12 16:39:59 +01:00
virtual void TickFollowPlayer();
virtual bool Attack(std::chrono::milliseconds a_Dt) override;
2013-11-10 15:16:43 +01:00
// Get functions
bool IsSitting (void) const override { return m_IsSitting; }
bool IsTame (void) const override { return m_IsTame; }
2013-11-10 21:55:32 +01:00
bool IsBegging (void) const { return m_IsBegging; }
bool IsAngry (void) const { return m_IsAngry; }
2014-08-03 22:03:48 +02:00
AString GetOwnerName (void) const { return m_OwnerName; }
2017-08-25 13:43:18 +01:00
cUUID GetOwnerUUID (void) const { return m_OwnerUUID; }
2013-11-10 21:55:32 +01:00
int GetCollarColor(void) const { return m_CollarColor; }
2013-11-10 15:16:43 +01:00
// Set functions
2013-11-10 21:55:32 +01: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; }
void SetCollarColor(int a_CollarColor) { m_CollarColor = a_CollarColor; }
2017-08-25 13:43:18 +01:00
void SetOwner (const AString & a_NewOwnerName, const cUUID & a_NewOwnerUUID)
2014-08-03 22:03:48 +02:00
{
m_OwnerName = a_NewOwnerName;
m_OwnerUUID = a_NewOwnerUUID;
}
2013-10-08 19:20:49 +01:00
/** Notfies the wolf of a nearby fight.
The wolf may then decide to attack a_Opponent.
2017-08-25 13:43:18 +01:00
If a_IsPlayerInvolved is true, then the player whose UUID is a_PlayerUUID is fighting a_Opponent
If false, then a wolf owned by the player whose UUID is a_PlayerUUID is fighting a_Opponent
@param a_PlayerUUID The UUID of the fighting player, or the UUID of the owner whose wolf is fighting.
@param a_Opponent The opponent who is being faught.
@param a_IsPlayerInvolved Whether the fighter a player or a wolf. */
2017-08-25 13:43:18 +01:00
void ReceiveNearbyFightInfo(const cUUID & a_PlayerUUID, cPawn * a_Opponent, bool a_IsPlayerInvolved);
2016-01-11 21:34:41 +02:00
virtual void InStateIdle(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
2013-11-10 21:55:32 +01:00
protected:
2013-10-08 19:20:49 +01:00
2013-11-10 21:24:36 +01:00
bool m_IsSitting;
bool m_IsTame;
bool m_IsBegging;
bool m_IsAngry;
AString m_OwnerName;
2017-08-25 13:43:18 +01:00
cUUID m_OwnerUUID;
2013-11-10 21:55:32 +01:00
int m_CollarColor;
int m_NotificationCooldown;
} ;