2014-04-26 20:24:44 -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 "ThrownSnowballEntity.h"
|
2014-04-26 20:24:44 -04:00
|
|
|
#include "../World.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cThrownSnowballEntity::cThrownSnowballEntity(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(pkSnowball, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25),
|
|
|
|
m_DestroyTimer(-1)
|
2014-04-26 20:24:44 -04:00
|
|
|
{
|
|
|
|
SetSpeed(a_Speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cThrownSnowballEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace)
|
|
|
|
{
|
2014-07-04 12:42:40 -04:00
|
|
|
m_DestroyTimer = 2;
|
2014-04-26 20:24:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cThrownSnowballEntity::OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos)
|
|
|
|
{
|
|
|
|
int TotalDamage = 0;
|
|
|
|
if (a_EntityHit.IsMob())
|
|
|
|
{
|
2014-09-17 13:40:10 -04:00
|
|
|
eMonsterType MobType = ((cMonster &) a_EntityHit).GetMobType();
|
|
|
|
if (MobType == mtBlaze)
|
2014-04-26 20:24:44 -04:00
|
|
|
{
|
|
|
|
TotalDamage = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: If entity is Ender Crystal, destroy it
|
|
|
|
a_EntityHit.TakeDamage(dtRangedAttack, this, TotalDamage, 1);
|
|
|
|
|
2014-06-22 15:44:01 -04:00
|
|
|
m_DestroyTimer = 5;
|
2014-04-27 12:42:31 -04:00
|
|
|
}
|
2014-10-21 15:25:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-01-11 16:12:26 -05:00
|
|
|
void cThrownSnowballEntity::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
2014-10-21 15:25:52 -04:00
|
|
|
{
|
|
|
|
if (m_DestroyTimer > 0)
|
|
|
|
{
|
|
|
|
m_DestroyTimer--;
|
|
|
|
if (m_DestroyTimer == 0)
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
super::Tick(a_Dt, a_Chunk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|