Exp Orbs and Pickups are destroyed instantly by cacti. (#4136)
* Cactus detection code follows pattern set in #3996 * Pickups are now destroyed on cactus contact * Add cactus detection and destruction to Exp Orbs Remove checks for IsExpOrb() in cEntity::Tick() Exp Orbs do not call super::Tick() and so this condition was pointless.
This commit is contained in:
parent
3065a101a5
commit
07619d932d
@ -532,7 +532,6 @@ bool cEntity::DoTakeDamage(TakeDamageInfo & a_TDI)
|
|||||||
}
|
}
|
||||||
|
|
||||||
m_Health -= static_cast<float>(a_TDI.FinalDamage);
|
m_Health -= static_cast<float>(a_TDI.FinalDamage);
|
||||||
|
|
||||||
m_Health = std::max(m_Health, 0.0f);
|
m_Health = std::max(m_Health, 0.0f);
|
||||||
|
|
||||||
// Add knockback:
|
// Add knockback:
|
||||||
@ -872,7 +871,7 @@ void cEntity::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
|||||||
|
|
||||||
// Handle cactus damage or destruction:
|
// Handle cactus damage or destruction:
|
||||||
if (
|
if (
|
||||||
IsMob() || IsPickup() || IsExpOrb() ||
|
IsMob() || IsPickup() ||
|
||||||
(IsPlayer() && !((reinterpret_cast<cPlayer *>(this))->IsGameModeCreative() || (reinterpret_cast<cPlayer *>(this))->IsGameModeSpectator()))
|
(IsPlayer() && !((reinterpret_cast<cPlayer *>(this))->IsGameModeCreative() || (reinterpret_cast<cPlayer *>(this))->IsGameModeSpectator()))
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
@ -1281,20 +1280,27 @@ void cEntity::TickInVoid(cChunk & a_Chunk)
|
|||||||
|
|
||||||
void cEntity::DetectCacti(void)
|
void cEntity::DetectCacti(void)
|
||||||
{
|
{
|
||||||
int X = POSX_TOINT, Y = POSY_TOINT, Z = POSZ_TOINT;
|
int MinX = FloorC(GetPosX() - m_Width / 2);
|
||||||
double w = m_Width / 2;
|
int MaxX = FloorC(GetPosX() + m_Width / 2);
|
||||||
if (
|
int MinZ = FloorC(GetPosZ() - m_Width / 2);
|
||||||
((Y > 0) && (Y < cChunkDef::Height)) &&
|
int MaxZ = FloorC(GetPosZ() + m_Width / 2);
|
||||||
((((X + 1) - GetPosX() < w) && (GetWorld()->GetBlock(X + 1, Y, Z) == E_BLOCK_CACTUS)) ||
|
int MinY = Clamp(POSY_TOINT, 0, cChunkDef::Height - 1);
|
||||||
((GetPosX() - X < w) && (GetWorld()->GetBlock(X - 1, Y, Z) == E_BLOCK_CACTUS)) ||
|
int MaxY = Clamp(FloorC(GetPosY() + m_Height), 0, cChunkDef::Height - 1);
|
||||||
(((Z + 1) - GetPosZ() < w) && (GetWorld()->GetBlock(X, Y, Z + 1) == E_BLOCK_CACTUS)) ||
|
|
||||||
((GetPosZ() - Z < w) && (GetWorld()->GetBlock(X, Y, Z - 1) == E_BLOCK_CACTUS)) ||
|
for (int x = MinX; x <= MaxX; x++)
|
||||||
(((Y + 1) - GetPosY() < w) && (GetWorld()->GetBlock(X, Y + 1, Z) == E_BLOCK_CACTUS)) ||
|
|
||||||
((GetPosY() - Y < 1) && (GetWorld()->GetBlock(X, Y - 1, Z) == E_BLOCK_CACTUS)))
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
TakeDamage(dtCactusContact, nullptr, 1, 0);
|
for (int z = MinZ; z <= MaxZ; z++)
|
||||||
}
|
{
|
||||||
|
for (int y = MinY; y <= MaxY; y++)
|
||||||
|
{
|
||||||
|
if (GetWorld()->GetBlock(x, y, z) == E_BLOCK_CACTUS)
|
||||||
|
{
|
||||||
|
TakeDamage(dtCactusContact, nullptr, 1, 0);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} // for y
|
||||||
|
} // for z
|
||||||
|
} // for x
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,6 +46,8 @@ void cExpOrb::SpawnOn(cClientHandle & a_Client)
|
|||||||
|
|
||||||
void cExpOrb::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
void cExpOrb::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
||||||
{
|
{
|
||||||
|
DetectCacti();
|
||||||
|
|
||||||
// Check player proximity no more than twice per second
|
// Check player proximity no more than twice per second
|
||||||
if ((m_TicksAlive % 10) == 0)
|
if ((m_TicksAlive % 10) == 0)
|
||||||
{
|
{
|
||||||
@ -79,3 +81,14 @@ void cExpOrb::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
|||||||
Destroy(true);
|
Destroy(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool cExpOrb::DoTakeDamage(TakeDamageInfo & a_TDI)
|
||||||
|
{
|
||||||
|
if (a_TDI.DamageType == dtCactusContact)
|
||||||
|
{
|
||||||
|
Destroy(true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return super::DoTakeDamage(a_TDI);
|
||||||
|
}
|
||||||
|
@ -23,6 +23,9 @@ public:
|
|||||||
|
|
||||||
// Override functions
|
// Override functions
|
||||||
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
|
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
|
||||||
|
|
||||||
|
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
|
||||||
|
|
||||||
virtual void SpawnOn(cClientHandle & a_Client) override;
|
virtual void SpawnOn(cClientHandle & a_Client) override;
|
||||||
|
|
||||||
// tolua_begin
|
// tolua_begin
|
||||||
|
@ -195,6 +195,21 @@ void cPickup::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
bool cPickup::DoTakeDamage(TakeDamageInfo & a_TDI)
|
||||||
|
{
|
||||||
|
if (a_TDI.DamageType == dtCactusContact)
|
||||||
|
{
|
||||||
|
Destroy(true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return super::DoTakeDamage(a_TDI);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
bool cPickup::CollectedBy(cPlayer & a_Dest)
|
bool cPickup::CollectedBy(cPlayer & a_Dest)
|
||||||
{
|
{
|
||||||
if (m_bCollected)
|
if (m_bCollected)
|
||||||
|
@ -36,6 +36,8 @@ public:
|
|||||||
|
|
||||||
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
|
virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
|
||||||
|
|
||||||
|
virtual bool DoTakeDamage(TakeDamageInfo & a_TDI) override;
|
||||||
|
|
||||||
virtual bool DoesPreventBlockPlacement(void) const override { return false; }
|
virtual bool DoesPreventBlockPlacement(void) const override { return false; }
|
||||||
|
|
||||||
/** Returns whether this pickup is allowed to combine with other similar pickups */
|
/** Returns whether this pickup is allowed to combine with other similar pickups */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user