diff options
author | Mattes D <github@xoft.cz> | 2014-04-28 12:32:02 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-04-28 12:32:02 +0200 |
commit | c0630516459ec59139b60173e0582900115a5614 (patch) | |
tree | 46a3beef2f57ea2ff59bd487f98e82d18f406935 /src/Entities/ThrownEnderPearlEntity.cpp | |
parent | Fixed warnings. (diff) | |
parent | Fixed projectile source filenames, indentations (diff) | |
download | cuberite-c0630516459ec59139b60173e0582900115a5614.tar cuberite-c0630516459ec59139b60173e0582900115a5614.tar.gz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.bz2 cuberite-c0630516459ec59139b60173e0582900115a5614.tar.lz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.xz cuberite-c0630516459ec59139b60173e0582900115a5614.tar.zst cuberite-c0630516459ec59139b60173e0582900115a5614.zip |
Diffstat (limited to 'src/Entities/ThrownEnderPearlEntity.cpp')
-rw-r--r-- | src/Entities/ThrownEnderPearlEntity.cpp | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/Entities/ThrownEnderPearlEntity.cpp b/src/Entities/ThrownEnderPearlEntity.cpp new file mode 100644 index 000000000..c37161145 --- /dev/null +++ b/src/Entities/ThrownEnderPearlEntity.cpp @@ -0,0 +1,54 @@ +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "ThrownEnderPearlEntity.h" + + + + + +cThrownEnderPearlEntity::cThrownEnderPearlEntity(cEntity * a_Creator, double a_X, double a_Y, double a_Z, const Vector3d & a_Speed) : + super(pkEnderPearl, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25) +{ + SetSpeed(a_Speed); +} + + + + + +void cThrownEnderPearlEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace) +{ + // TODO: Tweak a_HitPos based on block face. + TeleportCreator(a_HitPos); + + Destroy(); +} + + + + + +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); + + Destroy(true); +} + + + + + +void cThrownEnderPearlEntity::TeleportCreator(const Vector3d & a_HitPos) +{ + // Teleport the creator here, make them take 5 damage: + if (m_Creator != NULL) + { + m_Creator->TeleportToCoords(a_HitPos.x + 0.5, a_HitPos.y + 1.7, a_HitPos.z + 0.5); + m_Creator->TakeDamage(dtEnderPearl, this, 5, 0); + } +} |