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):
|
2021-04-09 18:19:50 -04:00
|
|
|
Super(pkEgg, a_Creator, a_Pos, a_Speed, 0.25f, 0.25f)
|
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
|
|
|
{
|
2021-04-09 18:19:50 -04:00
|
|
|
Super::OnHitEntity(a_EntityHit, a_HitPos);
|
|
|
|
|
|
|
|
int Damage = 0;
|
|
|
|
if (a_EntityHit.IsMob() && (static_cast<cMonster &>(a_EntityHit).GetMobType() == mtEnderDragon))
|
2015-11-02 14:04:56 -05:00
|
|
|
{
|
2021-04-09 18:19:50 -04:00
|
|
|
// Enderdragons take 1 damage:
|
|
|
|
Damage = 1;
|
|
|
|
}
|
|
|
|
else if (a_EntityHit.IsEnderCrystal())
|
|
|
|
{
|
|
|
|
// Endercrystals are destroyed:
|
|
|
|
Damage = CeilC(a_EntityHit.GetHealth());
|
2015-11-02 14:04:56 -05:00
|
|
|
}
|
|
|
|
|
2021-04-09 18:19:50 -04:00
|
|
|
a_EntityHit.TakeDamage(dtRangedAttack, GetCreatorUniqueID(), Damage, 1);
|
|
|
|
m_World->BroadcastEntityAnimation(*this, EntityAnimation::EggCracks);
|
2015-11-02 14:04:56 -05:00
|
|
|
|
2021-04-09 18:19:50 -04:00
|
|
|
TrySpawnChicken(a_HitPos);
|
|
|
|
Destroy();
|
2014-04-26 20:02:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-04-09 18:19:50 -04:00
|
|
|
void cThrownEggEntity::OnHitSolidBlock(Vector3d a_HitPos, eBlockFace a_HitFace)
|
2014-10-21 15:25:52 -04:00
|
|
|
{
|
2021-04-09 18:19:50 -04:00
|
|
|
Super::OnHitSolidBlock(a_HitPos, a_HitFace);
|
|
|
|
|
|
|
|
m_World->BroadcastEntityAnimation(*this, EntityAnimation::EggCracks);
|
|
|
|
|
|
|
|
TrySpawnChicken(a_HitPos);
|
|
|
|
Destroy();
|
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
|
|
|
}
|