2014-03-25 14:59:33 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
#include "EnderCrystal.h"
|
2018-08-28 20:51:25 -04:00
|
|
|
#include "../ClientHandle.h"
|
2014-03-25 14:59:33 -04:00
|
|
|
#include "../Chunk.h"
|
2014-09-26 13:13:19 -04:00
|
|
|
#include "../World.h"
|
2014-03-25 14:59:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-09-29 08:59:24 -04:00
|
|
|
cEnderCrystal::cEnderCrystal(Vector3d a_Pos):
|
|
|
|
super(etEnderCrystal, a_Pos, 1.0, 1.0)
|
2014-03-25 14:59:33 -04:00
|
|
|
{
|
|
|
|
SetMaxHealth(5);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cEnderCrystal::SpawnOn(cClientHandle & a_ClientHandle)
|
|
|
|
{
|
2015-05-24 07:56:56 -04:00
|
|
|
a_ClientHandle.SendSpawnObject(*this, 51, 0, static_cast<Byte>(GetYaw()), static_cast<Byte>(GetPitch()));
|
2014-03-25 14:59:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-01-11 16:12:26 -05:00
|
|
|
void cEnderCrystal::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
2014-03-25 14:59:33 -04:00
|
|
|
{
|
|
|
|
UNUSED(a_Dt);
|
|
|
|
// No further processing (physics e.t.c.) is needed
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-04 05:55:09 -04:00
|
|
|
void cEnderCrystal::KilledBy(TakeDamageInfo & a_TDI)
|
2014-03-25 14:59:33 -04:00
|
|
|
{
|
2014-07-04 05:55:09 -04:00
|
|
|
super::KilledBy(a_TDI);
|
2014-03-25 14:59:33 -04:00
|
|
|
|
|
|
|
m_World->DoExplosionAt(6.0, GetPosX(), GetPosY(), GetPosZ(), true, esEnderCrystal, this);
|
|
|
|
|
|
|
|
Destroy();
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-08-06 17:16:36 -04:00
|
|
|
m_World->SetBlock(POSX_TOINT, POSY_TOINT, POSZ_TOINT, E_BLOCK_BEDROCK, 0);
|
|
|
|
m_World->SetBlock(POSX_TOINT, POSY_TOINT + 1, POSZ_TOINT, E_BLOCK_FIRE, 0);
|
2014-03-25 14:59:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|