1
0
Fork 0
cuberite-2a/src/Mobs/Wither.cpp

122 lines
1.9 KiB
C++
Raw Normal View History

#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "Wither.h"
2014-03-24 10:29:19 +00:00
#include "../World.h"
#include "../Entities/Player.h"
cWither::cWither(void) :
2020-04-13 16:38:06 +00:00
Super("Wither", mtWither, "entity.wither.hurt", "entity.wither.death", "entity.wither.ambient", 0.9, 4.0),
m_WitherInvulnerableTicks(220)
{
2014-03-24 10:29:19 +00:00
SetMaxHealth(300);
SetHealth(GetMaxHealth() / 3);
2014-03-24 10:29:19 +00:00
}
2014-03-25 08:32:58 +00:00
bool cWither::IsArmored(void) const
{
return GetHealth() <= (GetMaxHealth() / 2);
}
2014-04-25 22:32:30 +00:00
bool cWither::DoTakeDamage(TakeDamageInfo & a_TDI)
2014-03-24 10:29:19 +00:00
{
if (a_TDI.DamageType == dtDrowning)
{
2014-04-25 22:32:30 +00:00
return false;
2014-03-24 10:29:19 +00:00
}
if (m_WitherInvulnerableTicks > 0)
{
return false;
}
2014-03-25 08:32:58 +00:00
if (IsArmored() && (a_TDI.DamageType == dtRangedAttack))
{
2014-04-25 22:32:30 +00:00
return false;
2014-03-25 08:32:58 +00:00
}
2020-04-13 16:38:06 +00:00
return Super::DoTakeDamage(a_TDI);
2014-03-24 10:29:19 +00:00
}
void cWither::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
2014-03-24 10:29:19 +00:00
{
2020-04-13 16:38:06 +00:00
Super::Tick(a_Dt, a_Chunk);
if (!IsTicking())
{
// The base class tick destroyed us
return;
}
2014-03-24 10:29:19 +00:00
if (m_WitherInvulnerableTicks > 0)
2014-03-24 10:29:19 +00:00
{
unsigned int NewTicks = m_WitherInvulnerableTicks - 1;
if (NewTicks == 0)
{
m_World->DoExplosionAt(7.0, GetPosX(), GetPosY(), GetPosZ(), false, esWitherBirth, this);
}
m_WitherInvulnerableTicks = NewTicks;
if ((NewTicks % 10) == 0)
{
Heal(10);
}
2014-03-24 10:29:19 +00:00
}
2014-03-25 08:32:58 +00:00
m_World->BroadcastEntityMetadata(*this);
}
void cWither::GetDrops(cItems & a_Drops, cEntity * a_Killer)
{
AddRandomDropItem(a_Drops, 1, 1, E_ITEM_NETHER_STAR);
}
2014-07-04 09:55:09 +00:00
void cWither::KilledBy(TakeDamageInfo & a_TDI)
{
2020-04-13 16:38:06 +00:00
Super::KilledBy(a_TDI);
Vector3d Pos = GetPosition();
m_World->ForEachPlayer([=](cPlayer & a_Player)
{
2014-05-21 07:59:14 +00:00
// TODO 2014-05-21 xdot: Vanilla minecraft uses an AABB check instead of a radius one
double Dist = (a_Player.GetPosition() - Pos).Length();
if (Dist < 50.0)
{
// If player is close, award achievement
a_Player.AwardAchievement(achKillWither);
}
return false;
}
);
}