summaryrefslogtreecommitdiffstats
path: root/source/cSquid.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/cSquid.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/source/cSquid.cpp b/source/cSquid.cpp
index 97eba9808..b2baf462b 100644
--- a/source/cSquid.cpp
+++ b/source/cSquid.cpp
@@ -1,32 +1,7 @@
#include "cSquid.h"
-#include "Vector3f.h"
-#include "Vector3d.h"
-
-#include "Defines.h"
-
-#include "cRoot.h"
-#include "cWorld.h"
-#include "cPickup.h"
-#include "cItem.h"
-
-#include "cMCLogger.h"
-
-#ifndef _WIN32
-#include <stdlib.h> // rand()
-#include <cstring>
-#endif
-
-#include <string>
-
-
-
cSquid::cSquid()
- : m_ChaseTime( 999999 )
-
{
- //LOG("SPAWNING A Squid!!!!!!!!!!!!!!!!!!!!!");
- m_EMPersonality = PASSIVE;
m_MobType = 94;
GetMonsterConfig("Squid");
}
@@ -37,16 +12,10 @@ cSquid::~cSquid()
bool cSquid::IsA( const char* a_EntityType )
{
- //LOG("IsA( cSquid ) : %s", a_EntityType);
if( strcmp( a_EntityType, "cSquid" ) == 0 ) return true;
return cMonster::IsA( a_EntityType );
}
-void cSquid::Tick(float a_Dt)
-{
- cMonster::Tick(a_Dt);
-}
-
void cSquid::KilledBy( cEntity* a_Killer )
{
//Drops 0-3 Ink Sacs
@@ -54,30 +23,3 @@ void cSquid::KilledBy( cEntity* a_Killer )
cMonster::KilledBy( a_Killer );
}
-
-//What to do if in Idle State
-void cSquid::InStateIdle(float a_Dt) {
- cMonster::InStateIdle(a_Dt);
-}
-
-//What to do if in Chasing State
-void cSquid::InStateChasing(float a_Dt) {
- cMonster::InStateChasing(a_Dt);
- m_ChaseTime += a_Dt;
- if( m_Target )
- {
- Vector3f Pos = Vector3f( m_Pos );
- Vector3f Their = Vector3f( m_Target->GetPosition() );
- if( (Their - Pos).Length() <= m_AttackRange) {
- cMonster::Attack(a_Dt);
- }
- MoveToPosition( Their + Vector3f(0, 0.65f, 0) );
- } else if( m_ChaseTime > 5.f ) {
- m_ChaseTime = 0;
- m_EMState = IDLE;
- }
-}
-
-void cSquid::InStateEscaping(float a_Dt) {
- cMonster::InStateEscaping(a_Dt);
-}