2014-04-26 20:02:47 -04:00
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2014-04-27 20:03:06 -04:00
|
|
|
#include "ThrownEggEntity.h"
|
2014-04-26 20:02:47 -04:00
|
|
|
#include "../World.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cThrownEggEntity::cThrownEggEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed) :
|
2014-06-22 15:44:01 -04:00
|
|
|
super(pkEgg, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25),
|
|
|
|
m_DestroyTimer(-1)
|
2014-04-26 20:02:47 -04:00
|
|
|
{
|
|
|
|
SetSpeed(a_Speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cThrownEggEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace)
|
|
|
|
{
|
|
|
|
TrySpawnChicken(a_HitPos);
|
|
|
|
|
2014-07-04 12:42:40 -04:00
|
|
|
m_DestroyTimer = 2;
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cThrownEggEntity::OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos)
|
|
|
|
{
|
|
|
|
int TotalDamage = 0;
|
|
|
|
// TODO: If entity is Ender Crystal, destroy it
|
|
|
|
|
|
|
|
TrySpawnChicken(a_HitPos);
|
|
|
|
a_EntityHit.TakeDamage(dtRangedAttack, this, TotalDamage, 1);
|
|
|
|
|
2014-06-22 15:44:01 -04:00
|
|
|
m_DestroyTimer = 5;
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-21 15:25:52 -04:00
|
|
|
void cThrownEggEntity::Tick(float a_Dt, cChunk & a_Chunk)
|
|
|
|
{
|
|
|
|
if (m_DestroyTimer > 0)
|
|
|
|
{
|
|
|
|
m_DestroyTimer--;
|
|
|
|
if (m_DestroyTimer == 0)
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
super::Tick(a_Dt, a_Chunk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-26 20:02:47 -04:00
|
|
|
void cThrownEggEntity::TrySpawnChicken(const Vector3d & a_HitPos)
|
|
|
|
{
|
|
|
|
if (m_World->GetTickRandomNumber(7) == 1)
|
|
|
|
{
|
2014-09-17 13:40:10 -04:00
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken);
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
|
|
|
else if (m_World->GetTickRandomNumber(32) == 1)
|
|
|
|
{
|
2014-09-17 13:40:10 -04:00
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken);
|
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken);
|
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken);
|
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken);
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
2014-04-27 12:42:31 -04:00
|
|
|
}
|