2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "Creeper.h"
|
2013-10-09 16:02:59 -04:00
|
|
|
#include "../World.h"
|
2014-01-24 14:52:52 -05:00
|
|
|
#include "../Entities/ProjectileEntity.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-22 04:39:13 -05:00
|
|
|
cCreeper::cCreeper(void) :
|
2013-10-20 04:23:30 -04:00
|
|
|
super("Creeper", mtCreeper, "mob.creeper.say", "mob.creeper.say", 0.6, 1.8),
|
2013-10-09 16:02:59 -04:00
|
|
|
m_bIsBlowing(false),
|
2014-01-24 14:52:52 -05:00
|
|
|
m_bIsCharged(false),
|
|
|
|
m_ExplodingTimer(0)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-24 14:52:52 -05:00
|
|
|
void cCreeper::Tick(float a_Dt, cChunk & a_Chunk)
|
|
|
|
{
|
|
|
|
super::Tick(a_Dt, a_Chunk);
|
|
|
|
|
|
|
|
if (!ReachedFinalDestination())
|
|
|
|
{
|
|
|
|
m_ExplodingTimer = 0;
|
|
|
|
m_bIsBlowing = false;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
void cCreeper::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
2012-12-21 06:04:08 -05:00
|
|
|
AddRandomDropItem(a_Drops, 0, 2, E_ITEM_GUNPOWDER);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-01-24 14:52:52 -05:00
|
|
|
if ((a_Killer != NULL) && (a_Killer->IsProjectile()))
|
|
|
|
{
|
|
|
|
if (((cMonster *)((cProjectileEntity *)a_Killer)->GetCreator())->GetMobType() == mtSkeleton)
|
|
|
|
{
|
|
|
|
// 12 music discs. TickRand starts from 0, so range = 11. Disk IDs start at 2256, so add that. There.
|
|
|
|
AddRandomDropItem(a_Drops, 1, 1, (short)m_World->GetTickRandomNumber(11) + 2256);
|
|
|
|
}
|
|
|
|
}
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-09 16:02:59 -04:00
|
|
|
|
|
|
|
void cCreeper::DoTakeDamage(TakeDamageInfo & a_TDI)
|
|
|
|
{
|
|
|
|
super::DoTakeDamage(a_TDI);
|
|
|
|
|
|
|
|
if (a_TDI.DamageType == dtLightning)
|
|
|
|
{
|
|
|
|
m_bIsCharged = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-24 14:52:52 -05:00
|
|
|
|
|
|
|
void cCreeper::Attack(float a_Dt)
|
|
|
|
{
|
|
|
|
UNUSED(a_Dt);
|
|
|
|
|
|
|
|
m_ExplodingTimer += 1;
|
|
|
|
|
|
|
|
if (!m_bIsBlowing)
|
|
|
|
{
|
|
|
|
m_World->BroadcastSoundEffect("random.fuse", (int)GetPosX() * 8, (int)GetPosY() * 8, (int)GetPosZ() * 8, 1.f, (float)(0.75 + ((float)((GetUniqueID() * 23) % 32)) / 64));
|
|
|
|
m_bIsBlowing = true;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_ExplodingTimer == 20)
|
|
|
|
{
|
|
|
|
m_World->DoExplosionAt((m_bIsCharged ? 5 : 3), GetPosX(), GetPosY(), GetPosZ(), false, esMonster, this);
|
|
|
|
Destroy();
|
|
|
|
}
|
2014-01-25 16:29:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|