summaryrefslogtreecommitdiffstats
path: root/source/cZombiepigman.cpp
diff options
context:
space:
mode:
authorlapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-25 23:47:12 +0100
committerlapayo94@gmail.com <lapayo94@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2011-12-25 23:47:12 +0100
commite8f230f24e55469f1aa832bc8dad73db8018ffe1 (patch)
treeabccca0bef086c4f2eda8497fa757433464e3b23 /source/cZombiepigman.cpp
parent- fixed the code from the last commit :) (diff)
downloadcuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar
cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.gz
cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.bz2
cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.lz
cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.xz
cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.tar.zst
cuberite-e8f230f24e55469f1aa832bc8dad73db8018ffe1.zip
Diffstat (limited to '')
-rw-r--r--source/cZombiepigman.cpp67
1 files changed, 6 insertions, 61 deletions
diff --git a/source/cZombiepigman.cpp b/source/cZombiepigman.cpp
index 79b84a4a7..51e817a2b 100644
--- a/source/cZombiepigman.cpp
+++ b/source/cZombiepigman.cpp
@@ -1,28 +1,7 @@
#include "cZombiepigman.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
-
-cZombiepigman::cZombiepigman() : m_ChaseTime(999999) {
- m_bBurnable = true;
- m_EMPersonality = PASSIVE;
- m_bPassiveAggressive = true;
- //m_AttackRate = 1;
+cZombiepigman::cZombiepigman()
+{
m_MobType = 57;
GetMonsterConfig("Zombiepigman");
}
@@ -33,7 +12,6 @@ cZombiepigman::~cZombiepigman()
bool cZombiepigman::IsA( const char* a_EntityType )
{
- //LOG("IsA( cZombiepigman ) : %s", a_EntityType);
if( strcmp( a_EntityType, "cZombiepigman" ) == 0 ) return true;
return cMonster::IsA( a_EntityType );
}
@@ -41,6 +19,8 @@ bool cZombiepigman::IsA( const char* a_EntityType )
void cZombiepigman::Tick(float a_Dt)
{
cMonster::Tick(a_Dt);
+
+ //TODO Same as noticed in cSkeleton AND Do they really burn? :D In the neather there is no sun :D
if (GetWorld()->GetWorldTime() < (12000 + 1000) ) { //if daylight
m_EMMetaState = BURNING; // BURN, BABY, BURN! >:D
}
@@ -48,43 +28,8 @@ void cZombiepigman::Tick(float a_Dt)
void cZombiepigman::KilledBy( cEntity* a_Killer )
{
- //Drops 0-1 Rottenflesh
- cMonster::RandomDropItem(E_ITEM_ROTTEN_FLESH, 0, 2);
-
- //Drops 0-1 gold nuggets
- cMonster::RandomDropItem(E_ITEM_GOLD_NUGGET, 0, 2);
+ cMonster::RandomDropItem(E_ITEM_ROTTEN_FLESH, 0, 1);
+ cMonster::RandomDropItem(E_ITEM_GOLD_NUGGET, 0, 1);
cMonster::KilledBy( a_Killer );
}
-
-//What to do if in Idle State
-void cZombiepigman::InStateIdle(float a_Dt) {
- cMonster::InStateIdle(a_Dt);
-}
-
-//What to do if in Chasing State
-void cZombiepigman::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 cZombiepigman::InStateEscaping(float a_Dt) {
- cMonster::InStateEscaping(a_Dt);
-}
-
-void cZombiepigman::GetMonsterConfig(const char* pm_name) {
- LOG("I am gettin my attributes: %s", pm_name);
- cRoot::Get()->GetMonsterConfig()->Get()->AssignAttributes(this,pm_name);
-}