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 "PassiveMonster.h"
|
|
|
|
#include "../MersenneTwister.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 04:39:13 -05:00
|
|
|
cPassiveMonster::cPassiveMonster(const AString & a_ConfigName, char a_ProtocolMobType, const AString & a_SoundHurt, const AString & a_SoundDeath) :
|
|
|
|
super(a_ConfigName, a_ProtocolMobType, a_SoundHurt, a_SoundDeath)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
m_EMPersonality = PASSIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cPassiveMonster::DoTakeDamage(TakeDamageInfo & a_TDI)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
super::DoTakeDamage(a_TDI);
|
|
|
|
if ((a_TDI.Attacker != this) && (a_TDI.Attacker != NULL))
|
|
|
|
{
|
2012-06-14 09:06:06 -04:00
|
|
|
m_EMState = ESCAPING;
|
2012-12-21 06:04:08 -05:00
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 05:15:53 -05:00
|
|
|
void cPassiveMonster::Tick(float a_Dt, MTRand & a_TickRandom)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-22 05:15:53 -05:00
|
|
|
super::Tick(a_Dt, a_TickRandom);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
m_SeePlayerInterval += a_Dt;
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
if (m_SeePlayerInterval > 1) // Check every second
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-22 05:15:53 -05:00
|
|
|
int rem = a_TickRandom.randInt() % 3 + 1; // Check most of the time but miss occasionally
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
m_SeePlayerInterval = 0.0;
|
2012-12-21 06:04:08 -05:00
|
|
|
if (rem >= 2)
|
|
|
|
{
|
|
|
|
if (m_EMState == ESCAPING)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-22 05:15:53 -05:00
|
|
|
CheckEventLostPlayer(a_TickRandom);
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-12-21 06:04:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|