2014-10-21 15:25:52 -04:00
|
|
|
|
2014-04-26 20:08:39 -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 "ThrownEnderPearlEntity.h"
|
2014-07-05 17:59:22 -04:00
|
|
|
#include "Player.h"
|
2014-04-26 20:08:39 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cThrownEnderPearlEntity::cThrownEnderPearlEntity(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(pkEnderPearl, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25),
|
|
|
|
m_DestroyTimer(-1)
|
2014-04-26 20:08:39 -04:00
|
|
|
{
|
|
|
|
SetSpeed(a_Speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cThrownEnderPearlEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace)
|
|
|
|
{
|
|
|
|
// TODO: Tweak a_HitPos based on block face.
|
|
|
|
TeleportCreator(a_HitPos);
|
|
|
|
|
2014-07-04 12:42:40 -04:00
|
|
|
m_DestroyTimer = 2;
|
2014-04-26 20:08:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cThrownEnderPearlEntity::OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos)
|
|
|
|
{
|
|
|
|
int TotalDamage = 0;
|
|
|
|
// TODO: If entity is Ender Crystal, destroy it
|
|
|
|
|
|
|
|
TeleportCreator(a_HitPos);
|
|
|
|
a_EntityHit.TakeDamage(dtRangedAttack, this, TotalDamage, 1);
|
|
|
|
|
2014-06-22 15:44:01 -04:00
|
|
|
m_DestroyTimer = 5;
|
2014-04-26 20:08:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-21 15:25:52 -04:00
|
|
|
void cThrownEnderPearlEntity::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:08:39 -04:00
|
|
|
void cThrownEnderPearlEntity::TeleportCreator(const Vector3d & a_HitPos)
|
|
|
|
{
|
2014-07-05 17:59:22 -04:00
|
|
|
if (m_CreatorData.m_Name.empty())
|
2014-04-26 20:08:39 -04:00
|
|
|
{
|
2014-07-05 17:59:22 -04:00
|
|
|
return;
|
2014-04-26 20:08:39 -04:00
|
|
|
}
|
2014-07-05 17:59:22 -04:00
|
|
|
|
|
|
|
class cProjectileCreatorCallbackForPlayers : public cPlayerListCallback
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cProjectileCreatorCallbackForPlayers(cEntity * a_Attacker, Vector3i a_HitPos) :
|
|
|
|
m_Attacker(a_Attacker),
|
|
|
|
m_HitPos(a_HitPos)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool Item(cPlayer * a_Entity) override
|
|
|
|
{
|
|
|
|
// Teleport the creator here, make them take 5 damage:
|
|
|
|
a_Entity->TeleportToCoords(m_HitPos.x, m_HitPos.y + 0.2, m_HitPos.z);
|
|
|
|
a_Entity->TakeDamage(dtEnderPearl, m_Attacker, 5, 0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
cEntity * m_Attacker;
|
|
|
|
Vector3i m_HitPos;
|
|
|
|
};
|
|
|
|
|
|
|
|
cProjectileCreatorCallbackForPlayers PCCFP(this, a_HitPos);
|
|
|
|
GetWorld()->FindAndDoWithPlayer(m_CreatorData.m_Name, PCCFP);
|
2014-04-27 12:42:31 -04:00
|
|
|
}
|