2014-04-26 20:02:47 -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 "ThrownEggEntity.h"
|
2014-04-26 20:02:47 -04:00
|
|
|
#include "../World.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-09-29 08:59:24 -04:00
|
|
|
cThrownEggEntity::cThrownEggEntity(cEntity * a_Creator, Vector3d a_Pos, Vector3d a_Speed):
|
2020-04-13 12:38:06 -04:00
|
|
|
Super(pkEgg, a_Creator, a_Pos, 0.25, 0.25),
|
2014-06-22 15:44:01 -04:00
|
|
|
m_DestroyTimer(-1)
|
2014-04-26 20:02:47 -04:00
|
|
|
{
|
|
|
|
SetSpeed(a_Speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-07 04:25:34 -04:00
|
|
|
void cThrownEggEntity::OnHitSolidBlock(Vector3d a_HitPos, eBlockFace a_HitFace)
|
2014-04-26 20:02:47 -04:00
|
|
|
{
|
|
|
|
TrySpawnChicken(a_HitPos);
|
2015-11-02 14:04:56 -05:00
|
|
|
|
2014-07-04 12:42:40 -04:00
|
|
|
m_DestroyTimer = 2;
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-07 04:25:34 -04:00
|
|
|
void cThrownEggEntity::OnHitEntity(cEntity & a_EntityHit, Vector3d a_HitPos)
|
2014-04-26 20:02:47 -04:00
|
|
|
{
|
|
|
|
int TotalDamage = 0;
|
2015-11-02 14:04:56 -05:00
|
|
|
// If entity is an Ender Dragon or Ender Crystal, it is damaged.
|
|
|
|
if (
|
|
|
|
(a_EntityHit.IsMob() && (static_cast<cMonster &>(a_EntityHit).GetMobType() == mtEnderDragon)) ||
|
|
|
|
a_EntityHit.IsEnderCrystal()
|
|
|
|
)
|
|
|
|
{
|
|
|
|
TotalDamage = 1;
|
|
|
|
}
|
|
|
|
|
2014-04-26 20:02:47 -04:00
|
|
|
TrySpawnChicken(a_HitPos);
|
|
|
|
a_EntityHit.TakeDamage(dtRangedAttack, this, TotalDamage, 1);
|
2015-11-02 14:04:56 -05:00
|
|
|
|
2014-06-22 15:44:01 -04:00
|
|
|
m_DestroyTimer = 5;
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-01-11 16:12:26 -05:00
|
|
|
void cThrownEggEntity::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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-07 04:25:34 -04:00
|
|
|
void cThrownEggEntity::TrySpawnChicken(Vector3d a_HitPos)
|
2014-04-26 20:02:47 -04:00
|
|
|
{
|
2017-06-13 15:35:30 -04:00
|
|
|
auto & Random = GetRandomProvider();
|
|
|
|
if (Random.RandBool(0.125))
|
2014-04-26 20:02:47 -04:00
|
|
|
{
|
2015-12-05 09:54:34 -05:00
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken, true);
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
2017-06-13 15:35:30 -04:00
|
|
|
else if (Random.RandBool(1.0 / 33.0))
|
2014-04-26 20:02:47 -04:00
|
|
|
{
|
2015-12-05 09:54:34 -05:00
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken, true);
|
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken, true);
|
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken, true);
|
|
|
|
m_World->SpawnMob(a_HitPos.x, a_HitPos.y, a_HitPos.z, mtChicken, true);
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
2014-04-27 12:42:31 -04:00
|
|
|
}
|
2015-11-02 14:04:56 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|