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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-09-29 08:59:24 -04:00
|
|
|
cThrownSnowballEntity::cThrownSnowballEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed):
|
2020-04-13 12:38:06 -04:00
|
|
|
Super(pkSnowball, a_Creator, a_Pos, 0.25, 0.25),
|
2014-06-22 15:44:01 -04:00
|
|
|
m_DestroyTimer(-1)
|
2014-04-26 20:24:44 -04:00
|
|
|
{
|
|
|
|
SetSpeed(a_Speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-07 04:25:34 -04:00
|
|
|
void cThrownSnowballEntity::OnHitSolidBlock(Vector3d a_HitPos, eBlockFace a_HitFace)
|
2014-04-26 20:24:44 -04:00
|
|
|
{
|
2014-07-04 12:42:40 -04:00
|
|
|
m_DestroyTimer = 2;
|
2014-04-26 20:24:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-07 04:25:34 -04:00
|
|
|
void cThrownSnowballEntity::OnHitEntity(cEntity & a_EntityHit, Vector3d a_HitPos)
|
2014-04-26 20:24:44 -04:00
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
Super::OnHitEntity(a_EntityHit, a_HitPos);
|
2016-01-11 14:34:41 -05:00
|
|
|
|
2014-04-26 20:24:44 -04:00
|
|
|
int TotalDamage = 0;
|
|
|
|
if (a_EntityHit.IsMob())
|
|
|
|
{
|
2015-05-24 07:56:56 -04:00
|
|
|
eMonsterType MobType = static_cast<cMonster &>(a_EntityHit).GetMobType();
|
2014-09-17 13:40:10 -04:00
|
|
|
if (MobType == mtBlaze)
|
2014-04-26 20:24:44 -04:00
|
|
|
{
|
|
|
|
TotalDamage = 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: If entity is Ender Crystal, destroy it
|
2016-01-22 13:55:46 -05:00
|
|
|
a_EntityHit.TakeDamage(dtRangedAttack, GetCreatorUniqueID(), TotalDamage, 1);
|
2016-01-11 14:34:41 -05:00
|
|
|
|
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
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
Super::Tick(a_Dt, a_Chunk);
|
2014-10-21 15:25:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|