summaryrefslogtreecommitdiffstats
path: root/source/cCreeper.cpp
diff options
context:
space:
mode:
authoradmin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-10-26 01:46:01 +0200
committeradmin@omencraft.com <admin@omencraft.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-10-26 01:46:01 +0200
commita26a0e3825bb337a4be0f0c7f171e4cbd450bded (patch)
treec9c188bb5895275ec6814df5897c1097e404fac0 /source/cCreeper.cpp
parentUsing SSE instructions for noise (terrain generation) (diff)
downloadcuberite-a26a0e3825bb337a4be0f0c7f171e4cbd450bded.tar
cuberite-a26a0e3825bb337a4be0f0c7f171e4cbd450bded.tar.gz
cuberite-a26a0e3825bb337a4be0f0c7f171e4cbd450bded.tar.bz2
cuberite-a26a0e3825bb337a4be0f0c7f171e4cbd450bded.tar.lz
cuberite-a26a0e3825bb337a4be0f0c7f171e4cbd450bded.tar.xz
cuberite-a26a0e3825bb337a4be0f0c7f171e4cbd450bded.tar.zst
cuberite-a26a0e3825bb337a4be0f0c7f171e4cbd450bded.zip
Diffstat (limited to '')
-rw-r--r--source/cCreeper.cpp91
1 files changed, 91 insertions, 0 deletions
diff --git a/source/cCreeper.cpp b/source/cCreeper.cpp
new file mode 100644
index 000000000..ffebc2c58
--- /dev/null
+++ b/source/cCreeper.cpp
@@ -0,0 +1,91 @@
+#include "cCreeper.h"
+
+#include "Vector3f.h"
+#include "Vector3d.h"
+
+#include "Defines.h"
+
+#include "cRoot.h"
+#include "cWorld.h"
+#include "cPickup.h"
+#include "cItem.h"
+#include "cMonsterConfig.h"
+
+#include "cMCLogger.h"
+
+#ifndef _WIN32
+#include <stdlib.h> // rand()
+#include <cstring>
+#endif
+
+cCreeper::cCreeper() : m_ChaseTime(999999) {
+ m_bBurnable = true;
+ m_EMPersonality = AGGRESSIVE;
+ m_bPassiveAggressive = true;
+ //m_AttackRate = 1;
+ m_MobType = 50;
+ GetMonsterConfig("Creeper");
+}
+
+cCreeper::~cCreeper()
+{
+}
+
+bool cCreeper::IsA( const char* a_EntityType )
+{
+ //LOG("IsA( cCreeper ) : %s", a_EntityType);
+ if( strcmp( a_EntityType, "cCreeper" ) == 0 ) return true;
+ return cMonster::IsA( a_EntityType );
+}
+
+void cCreeper::Tick(float a_Dt)
+{
+ cMonster::Tick(a_Dt);
+}
+
+void cCreeper::KilledBy( cEntity* a_Killer )
+{
+ if( (rand() % 5) == 0 )
+ {
+ cPickup* Pickup = new cPickup( (int)(m_Pos->x*32), (int)(m_Pos->y*32), (int)(m_Pos->z*32), cItem( E_ITEM_EGG, 1 ) );
+ Pickup->Initialize();
+ }
+ if( (rand() % 1) == 0 )
+ {
+ cPickup* Pickup = new cPickup( (int)(m_Pos->x*32), (int)(m_Pos->y*32), (int)(m_Pos->z*32), cItem( E_ITEM_FEATHER, 1 ) );
+ Pickup->Initialize();
+ }
+ cMonster::KilledBy( a_Killer );
+}
+
+//What to do if in Idle State
+void cCreeper::InStateIdle(float a_Dt) {
+ cMonster::InStateIdle(a_Dt);
+}
+
+//What to do if in Chasing State
+void cCreeper::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 cCreeper::InStateEscaping(float a_Dt) {
+ cMonster::InStateEscaping(a_Dt);
+}
+
+void cCreeper::GetMonsterConfig(const char* pm_name) {
+ LOG("I am gettin my attributes: %s", pm_name);
+ cRoot::Get()->GetMonsterConfig()->Get()->AssignAttributes(this,pm_name);
+}