2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "PassiveAggressiveMonster.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-08-19 05:39:13 -04:00
|
|
|
#include "../Entities/Player.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-17 13:40:10 -04:00
|
|
|
cPassiveAggressiveMonster::cPassiveAggressiveMonster(const AString & a_ConfigName, eMonsterType a_MobType, const AString & a_SoundHurt, const AString & a_SoundDeath, double a_Width, double a_Height) :
|
2013-10-20 04:23:30 -04:00
|
|
|
super(a_ConfigName, a_MobType, a_SoundHurt, a_SoundDeath, a_Width, a_Height)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
m_EMPersonality = PASSIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-25 18:32:30 -04:00
|
|
|
bool cPassiveAggressiveMonster::DoTakeDamage(TakeDamageInfo & a_TDI)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2014-04-25 18:32:30 -04:00
|
|
|
if (!super::DoTakeDamage(a_TDI))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-01-17 09:09:25 -05:00
|
|
|
|
2014-10-20 16:55:07 -04:00
|
|
|
if ((m_Target != nullptr) && (m_Target->IsPlayer()))
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2015-05-24 07:56:56 -04:00
|
|
|
if (!static_cast<cPlayer *>(m_Target)->IsGameModeCreative())
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
m_EMState = CHASING;
|
|
|
|
}
|
|
|
|
}
|
2014-04-25 18:32:30 -04:00
|
|
|
return true;
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-01-17 09:09:25 -05:00
|
|
|
void cPassiveAggressiveMonster::EventSeePlayer(cEntity *, cChunk & a_Chunk)
|
2015-11-08 14:53:32 -05:00
|
|
|
{
|
|
|
|
// don't do anything, neutral mobs don't react to just seeing the player
|
|
|
|
}
|
|
|
|
|
|
|
|
|