Source files cleanup: Mobs-related files in a separate subfolder, renamed.
git-svn-id: http://mc-server.googlecode.com/svn/trunk@883 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
38
source/Mobs/PassiveAggressiveMonster.cpp
Normal file
38
source/Mobs/PassiveAggressiveMonster.cpp
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
||||
|
||||
#include "PassiveAggressiveMonster.h"
|
||||
|
||||
#include "../cPlayer.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
cPassiveAggressiveMonster::cPassiveAggressiveMonster()
|
||||
{
|
||||
m_EMPersonality = PASSIVE;
|
||||
}
|
||||
|
||||
cPassiveAggressiveMonster::~cPassiveAggressiveMonster()
|
||||
{
|
||||
}
|
||||
|
||||
void cPassiveAggressiveMonster::TakeDamage(int a_Damage, cEntity* a_Instigator)
|
||||
{
|
||||
cMonster::TakeDamage(a_Damage, a_Instigator);
|
||||
if(m_Target->GetEntityType() == cEntity::eEntityType_Player)
|
||||
{
|
||||
cPlayer * Player = (cPlayer *) m_Target;
|
||||
if(Player->GetGameMode() != 1)
|
||||
{
|
||||
m_EMState = CHASING;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void cPassiveAggressiveMonster::EventSeePlayer(cEntity *a_Entity)
|
||||
{
|
||||
return cMonster::EventSeePlayer(a_Entity);
|
||||
}
|
||||
Reference in New Issue
Block a user