1
0
cuberite-2a/src/Entities/ThrownEnderPearlEntity.cpp

67 lines
1.3 KiB
C++
Raw Normal View History

#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "ThrownEnderPearlEntity.h"
2014-07-05 21:59:22 +00:00
#include "Player.h"
cThrownEnderPearlEntity::cThrownEnderPearlEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed):
2021-04-10 15:58:39 +00:00
Super(pkEnderPearl, a_Creator, a_Pos, a_Speed, 0.25f, 0.25f)
{
}
void cThrownEnderPearlEntity::OnHitEntity(cEntity & a_EntityHit, Vector3d a_HitPos)
{
2021-04-10 15:58:39 +00:00
Super::OnHitEntity(a_EntityHit, a_HitPos);
2021-04-10 15:58:39 +00:00
int Damage = 0;
if (a_EntityHit.IsEnderCrystal())
{
2021-04-10 15:58:39 +00:00
// Endercrystals are destroyed:
Damage = CeilC(a_EntityHit.GetHealth());
}
2021-04-10 15:58:39 +00:00
a_EntityHit.TakeDamage(dtRangedAttack, this, Damage, 1);
TeleportCreator(a_HitPos);
Destroy();
}
2021-04-10 15:58:39 +00:00
void cThrownEnderPearlEntity::OnHitSolidBlock(Vector3d a_HitPos, eBlockFace a_HitFace)
{
2021-04-10 15:58:39 +00:00
Super::OnHitSolidBlock(a_HitPos, a_HitFace);
TeleportCreator(a_HitPos);
Destroy();
}
void cThrownEnderPearlEntity::TeleportCreator(Vector3d a_HitPos)
{
2014-07-05 21:59:22 +00:00
if (m_CreatorData.m_Name.empty())
{
2014-07-05 21:59:22 +00:00
return;
}
2014-07-05 21:59:22 +00:00
GetWorld()->FindAndDoWithPlayer(m_CreatorData.m_Name, [=](cPlayer & a_Entity)
2021-04-10 15:58:39 +00:00
{
// Teleport the creator here, make them take 5 damage:
a_Entity.TeleportToCoords(a_HitPos.x, a_HitPos.y + 0.2, a_HitPos.z);
a_Entity.TakeDamage(dtEnderPearl, this, 5, 0);
return false;
});
2014-04-27 16:42:31 +00:00
}