1
0
Fork 0
cuberite-2a/src/BlockEntities/MobSpawnerEntity.cpp

290 lines
5.6 KiB
C++
Raw Normal View History

2017-09-19 08:34:08 +00:00
2014-09-17 15:45:13 +00:00
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "MobSpawnerEntity.h"
2014-09-19 21:00:54 +00:00
#include "../World.h"
#include "../FastRandom.h"
#include "../MobSpawner.h"
#include "../ClientHandle.h"
2014-09-19 21:00:54 +00:00
#include "../Items/ItemSpawnEgg.h"
2014-09-17 15:45:13 +00:00
cMobSpawnerEntity::cMobSpawnerEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World):
2020-04-13 16:38:06 +00:00
Super(a_BlockType, a_BlockMeta, a_Pos, a_World),
2017-06-15 13:32:33 +00:00
m_Entity(mtPig),
m_SpawnDelay(100),
m_IsActive(false)
2014-09-17 15:45:13 +00:00
{
2017-06-15 13:32:33 +00:00
ASSERT(a_BlockType == E_BLOCK_MOB_SPAWNER);
}
void cMobSpawnerEntity::CopyFrom(const cBlockEntity & a_Src)
{
2020-04-13 16:38:06 +00:00
Super::CopyFrom(a_Src);
auto & src = static_cast<const cMobSpawnerEntity &>(a_Src);
2017-06-15 13:32:33 +00:00
m_Entity = src.m_Entity;
m_IsActive = src.m_IsActive;
m_SpawnDelay = src.m_SpawnDelay;
2014-09-17 15:45:13 +00:00
}
2014-09-19 21:00:54 +00:00
void cMobSpawnerEntity::SendTo(cClientHandle & a_Client)
2014-09-17 15:45:13 +00:00
{
2014-09-19 21:00:54 +00:00
a_Client.SendUpdateBlockEntity(*this);
2014-09-17 15:45:13 +00:00
}
bool cMobSpawnerEntity::UsedBy(cPlayer * a_Player)
2014-09-19 21:00:54 +00:00
{
if (a_Player->GetEquippedItem().m_ItemType == E_ITEM_SPAWN_EGG)
{
2014-11-18 14:33:41 +00:00
eMonsterType MonsterType = cItemSpawnEggHandler::ItemDamageToMonsterType(a_Player->GetEquippedItem().m_ItemDamage);
if (MonsterType == eMonsterType::mtInvalidType)
2014-09-19 21:00:54 +00:00
{
return false;
2014-09-19 21:00:54 +00:00
}
m_Entity = MonsterType;
ResetTimer();
if (!a_Player->IsGameModeCreative())
{
a_Player->GetInventory().RemoveOneEquippedItem();
}
FLOGD("Changed monster spawner at {0} to type {1}.", GetPos(), cMonster::MobTypeToString(MonsterType));
return true;
2014-09-19 21:00:54 +00:00
}
return false;
2014-09-19 21:00:54 +00:00
}
void cMobSpawnerEntity::UpdateActiveState(void)
2014-09-17 15:45:13 +00:00
{
m_IsActive = (GetNearbyPlayersNum() > 0);
2014-09-17 15:45:13 +00:00
}
bool cMobSpawnerEntity::Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk)
2014-09-17 15:45:13 +00:00
{
2014-09-19 21:00:54 +00:00
// Update the active flag every 5 seconds
if ((m_World->GetWorldAge() % 100) == 0)
{
UpdateActiveState();
}
if (!m_IsActive)
{
return false;
}
if (m_SpawnDelay <= 0)
2014-09-17 15:45:13 +00:00
{
2014-09-19 21:00:54 +00:00
SpawnEntity();
return true;
2014-09-17 15:45:13 +00:00
}
else
{
2014-09-19 21:00:54 +00:00
m_SpawnDelay--;
}
return false;
}
void cMobSpawnerEntity::ResetTimer(void)
{
2017-06-13 19:35:30 +00:00
m_SpawnDelay = GetRandomProvider().RandInt<short>(200, 800);
m_World->BroadcastBlockEntity(GetPos());
2014-09-19 21:00:54 +00:00
}
void cMobSpawnerEntity::SpawnEntity(void)
{
2014-09-26 22:07:17 +00:00
int NearbyEntities = GetNearbyMonsterNum(m_Entity);
2014-09-19 21:00:54 +00:00
if (NearbyEntities >= 6)
{
ResetTimer();
return;
}
auto MobType = m_Entity;
bool EntitiesSpawned = m_World->DoWithChunk(GetChunkX(), GetChunkZ(), [&](cChunk & a_Chunk)
2014-09-19 21:00:54 +00:00
{
2017-06-13 19:35:30 +00:00
auto & Random = GetRandomProvider();
2014-09-19 21:00:54 +00:00
bool HaveSpawnedEntity = false;
2014-09-19 21:00:54 +00:00
for (size_t i = 0; i < 4; i++)
{
if (NearbyEntities >= 6)
2014-09-19 21:00:54 +00:00
{
break;
}
Vector3i spawnRelPos(GetRelPos());
spawnRelPos += Vector3i(
static_cast<int>((Random.RandReal<double>() - Random.RandReal<double>()) * 4.0),
Random.RandInt(-1, 1),
static_cast<int>((Random.RandReal<double>() - Random.RandReal<double>()) * 4.0)
);
auto chunk = a_Chunk.GetRelNeighborChunkAdjustCoords(spawnRelPos);
if ((chunk == nullptr) || !chunk->IsValid())
2014-09-19 21:00:54 +00:00
{
continue;
}
EMCSBiome Biome = chunk->GetBiomeAt(spawnRelPos.x, spawnRelPos.z);
2014-09-19 21:00:54 +00:00
if (cMobSpawner::CanSpawnHere(chunk, spawnRelPos, MobType, Biome))
2014-09-19 21:00:54 +00:00
{
auto absPos = chunk->RelativeToAbsolute(spawnRelPos);
auto monster = cMonster::NewMonsterFromType(MobType);
if (monster == nullptr)
2014-09-19 21:00:54 +00:00
{
continue;
}
monster->SetPosition(absPos);
monster->SetYaw(Random.RandReal(360.0f));
if (chunk->GetWorld()->SpawnMobFinalize(std::move(monster)) != cEntity::INVALID_ID)
2014-09-19 21:00:54 +00:00
{
HaveSpawnedEntity = true;
m_World->BroadcastSoundParticleEffect(
EffectID::PARTICLE_MOBSPAWN,
absPos,
2015-05-28 11:29:26 +00:00
0
);
NearbyEntities++;
2014-09-19 21:00:54 +00:00
}
}
}
2017-10-02 19:59:25 +00:00
return HaveSpawnedEntity;
2014-09-19 21:00:54 +00:00
}
);
2014-09-19 21:00:54 +00:00
if (EntitiesSpawned)
2014-09-19 21:00:54 +00:00
{
ResetTimer();
2014-09-17 15:45:13 +00:00
}
}
2014-09-19 21:00:54 +00:00
int cMobSpawnerEntity::GetNearbyPlayersNum(void)
{
auto SpawnerPos = Vector3d(0.5, 0.5, 0.5) + m_Pos;
2014-09-19 21:00:54 +00:00
int NumPlayers = 0;
class cCallback : public cChunkDataCallback
{
public:
cCallback(Vector3d a_SpawnerPos, int & a_NumPlayers) :
m_SpawnerPos(a_SpawnerPos),
m_NumPlayers(a_NumPlayers)
{
}
virtual void Entity(cEntity * a_Entity) override
{
if (!a_Entity->IsPlayer())
{
return;
}
if ((m_SpawnerPos - a_Entity->GetPosition()).Length() <= 16)
{
m_NumPlayers++;
}
}
protected:
Vector3d m_SpawnerPos;
int & m_NumPlayers;
} Callback(SpawnerPos, NumPlayers);
int ChunkX = GetChunkX();
int ChunkZ = GetChunkZ();
m_World->ForEachChunkInRect(ChunkX - 1, ChunkX + 1, ChunkZ - 1, ChunkZ + 1, Callback);
return NumPlayers;
}
2014-09-26 22:07:17 +00:00
int cMobSpawnerEntity::GetNearbyMonsterNum(eMonsterType a_EntityType)
2014-09-19 21:00:54 +00:00
{
auto SpawnerPos = Vector3d(0.5, 0.5, 0.5) + m_Pos;
2014-09-19 21:00:54 +00:00
int NumEntities = 0;
class cCallback : public cChunkDataCallback
{
public:
cCallback(Vector3d a_SpawnerPos, eMonsterType a_CallbackEntityType, int & a_NumEntities) :
2014-09-19 21:00:54 +00:00
m_SpawnerPos(a_SpawnerPos),
m_EntityType(a_CallbackEntityType),
2014-09-19 21:00:54 +00:00
m_NumEntities(a_NumEntities)
{
}
virtual void Entity(cEntity * a_Entity) override
{
if (!a_Entity->IsMob())
{
return;
}
2015-05-24 11:56:56 +00:00
cMonster * Mob = static_cast<cMonster *>(a_Entity);
2014-09-19 21:00:54 +00:00
if (Mob->GetMobType() != m_EntityType)
{
return;
}
2014-12-01 13:58:13 +00:00
if ((Diff(m_SpawnerPos.x, a_Entity->GetPosX()) <= 8.0) && (Diff(m_SpawnerPos.y, a_Entity->GetPosY()) <= 4.0) && (Diff(m_SpawnerPos.z, a_Entity->GetPosZ()) <= 8.0))
2014-09-19 21:00:54 +00:00
{
m_NumEntities++;
}
}
protected:
Vector3d m_SpawnerPos;
2014-09-26 22:07:17 +00:00
eMonsterType m_EntityType;
2014-09-19 21:00:54 +00:00
int & m_NumEntities;
} Callback(SpawnerPos, a_EntityType, NumEntities);
int ChunkX = GetChunkX();
int ChunkZ = GetChunkZ();
m_World->ForEachChunkInRect(ChunkX - 1, ChunkX + 1, ChunkZ - 1, ChunkZ + 1, Callback);
2014-09-17 15:45:13 +00:00
2014-09-19 21:00:54 +00:00
return NumEntities;
2014-09-17 15:45:13 +00:00
}