summaryrefslogtreecommitdiffstats
path: root/source/cCreeper.cpp
blob: e8410e142baccd34532357ab8dec8f3c29cf49ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#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 )
{
	cMonster::RandomDropItem(E_ITEM_GUNPOWDER, 0, 2);

	//Todo: Check if killed by a skeleton then drop random music disk

	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);
}