2013-09-07 19:21:43 -04:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
#include "MobSpawner.h"
|
2020-04-03 02:57:01 -04:00
|
|
|
#include "BlockInfo.h"
|
2013-09-07 19:21:43 -04:00
|
|
|
#include "Mobs/IncludeAllMonsters.h"
|
2016-01-16 05:28:13 -05:00
|
|
|
#include "World.h"
|
2013-09-07 19:21:43 -04:00
|
|
|
|
|
|
|
|
2013-10-20 04:23:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-17 13:40:10 -04:00
|
|
|
cMobSpawner::cMobSpawner(cMonster::eFamily a_MonsterFamily, const std::set<eMonsterType>& a_AllowedTypes) :
|
2013-09-07 19:21:43 -04:00
|
|
|
m_MonsterFamily(a_MonsterFamily),
|
|
|
|
m_NewPack(true),
|
2014-09-17 13:40:10 -04:00
|
|
|
m_MobType(mtInvalidType)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2014-09-17 13:40:10 -04:00
|
|
|
for (std::set<eMonsterType>::const_iterator itr = a_AllowedTypes.begin(); itr != a_AllowedTypes.end(); ++itr)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2013-10-20 07:25:56 -04:00
|
|
|
if (cMonster::FamilyFromType(*itr) == a_MonsterFamily)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
|
|
|
m_AllowedTypes.insert(*itr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-20 04:23:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-07 19:21:43 -04:00
|
|
|
bool cMobSpawner::CheckPackCenter(BLOCKTYPE a_BlockType)
|
|
|
|
{
|
|
|
|
// Packs of non-water mobs can only be centered on an air block
|
|
|
|
// Packs of water mobs can only be centered on a water block
|
|
|
|
if (m_MonsterFamily == cMonster::mfWater)
|
|
|
|
{
|
|
|
|
return IsBlockWater(a_BlockType);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return a_BlockType == E_BLOCK_AIR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-20 07:33:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-17 13:40:10 -04:00
|
|
|
eMonsterType cMobSpawner::ChooseMobType(EMCSBiome a_Biome)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2018-04-11 07:17:30 -04:00
|
|
|
std::vector<eMonsterType> AllowedMobs;
|
2013-09-07 19:21:43 -04:00
|
|
|
|
2018-04-11 07:17:30 -04:00
|
|
|
for (eMonsterType MobType : GetAllowedMobTypes(a_Biome))
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2018-04-11 07:17:30 -04:00
|
|
|
auto itr = m_AllowedTypes.find(MobType);
|
|
|
|
if (itr != m_AllowedTypes.end())
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2018-04-11 07:17:30 -04:00
|
|
|
AllowedMobs.push_back(MobType);
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-21 06:06:21 -04:00
|
|
|
// Pick a random mob from the options:
|
2018-04-11 07:17:30 -04:00
|
|
|
if (AllowedMobs.empty())
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2018-04-11 07:17:30 -04:00
|
|
|
return mtInvalidType;
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
2018-04-11 07:17:30 -04:00
|
|
|
|
|
|
|
return AllowedMobs[GetRandomProvider().RandInt(AllowedMobs.size() - 1)];
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-20 07:33:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
bool cMobSpawner::CanSpawnHere(cChunk * a_Chunk, Vector3i a_RelPos, eMonsterType a_MobType, EMCSBiome a_Biome)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2016-01-16 05:28:13 -05:00
|
|
|
if (a_Chunk == nullptr)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2019-10-11 05:02:53 -04:00
|
|
|
if ((a_RelPos.y >= cChunkDef::Height - 1) || (a_RelPos.y <= 0))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-01-16 05:28:13 -05:00
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
if (cChunkDef::IsValidHeight(a_RelPos.y - 1) && (a_Chunk->GetBlock(a_RelPos.addedY(-1)) == E_BLOCK_BEDROCK))
|
2016-02-29 05:09:21 -05:00
|
|
|
{
|
|
|
|
return false; // Make sure mobs do not spawn on bedrock.
|
|
|
|
}
|
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
auto & random = GetRandomProvider();
|
|
|
|
auto targetBlock = a_Chunk->GetBlock(a_RelPos);
|
2016-01-16 05:28:13 -05:00
|
|
|
|
2018-08-02 10:59:10 -04:00
|
|
|
// If too close to any player, don't spawn anything
|
2019-10-11 05:02:53 -04:00
|
|
|
auto absPos = a_Chunk->RelativeToAbsolute(a_RelPos);
|
|
|
|
static const double rangeLimit = 24;
|
|
|
|
if (a_Chunk->GetWorld()->DoWithNearestPlayer(absPos, rangeLimit, [](cPlayer & a_Player) -> bool
|
2018-08-02 10:59:10 -04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
})
|
|
|
|
)
|
2016-01-16 05:28:13 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
auto blockLight = a_Chunk->GetBlockLight(a_RelPos);
|
|
|
|
auto skyLight = a_Chunk->GetSkyLight(a_RelPos);
|
|
|
|
auto blockAbove = a_Chunk->GetBlock(a_RelPos.addedY(1));
|
|
|
|
auto blockBelow = a_Chunk->GetBlock(a_RelPos.addedY(-1));
|
2016-01-16 05:28:13 -05:00
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
skyLight = a_Chunk->GetTimeAlteredLight(skyLight);
|
2016-01-16 05:28:13 -05:00
|
|
|
|
|
|
|
switch (a_MobType)
|
|
|
|
{
|
2020-03-25 06:49:36 -04:00
|
|
|
case mtBat:
|
2014-03-31 15:33:33 -04:00
|
|
|
{
|
2020-03-25 06:49:36 -04:00
|
|
|
return (
|
|
|
|
(a_RelPos.y <= 63) &&
|
|
|
|
(blockLight <= 4) &&
|
|
|
|
(skyLight <= 4) &&
|
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(!cBlockInfo::IsTransparent(blockAbove))
|
|
|
|
);
|
2014-03-31 15:33:33 -04:00
|
|
|
}
|
|
|
|
|
2020-03-25 06:49:36 -04:00
|
|
|
case mtBlaze:
|
2016-01-16 05:28:13 -05:00
|
|
|
{
|
2020-03-25 06:49:36 -04:00
|
|
|
return (
|
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
|
|
|
(!cBlockInfo::IsTransparent(blockBelow)) &&
|
|
|
|
(random.RandBool())
|
|
|
|
);
|
2016-01-16 05:28:13 -05:00
|
|
|
}
|
2013-10-29 12:44:51 -04:00
|
|
|
|
2020-03-25 06:49:36 -04:00
|
|
|
case mtCaveSpider:
|
2016-01-16 05:28:13 -05:00
|
|
|
{
|
2020-03-25 06:49:36 -04:00
|
|
|
return (
|
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(!cBlockInfo::IsTransparent(blockBelow)) &&
|
|
|
|
(skyLight <= 7) &&
|
|
|
|
(blockLight <= 7) &&
|
|
|
|
(random.RandBool())
|
|
|
|
);
|
2016-01-16 05:28:13 -05:00
|
|
|
}
|
2013-10-29 12:44:51 -04:00
|
|
|
|
2016-01-16 05:28:13 -05:00
|
|
|
case mtChicken:
|
|
|
|
case mtCow:
|
|
|
|
case mtPig:
|
|
|
|
case mtHorse:
|
|
|
|
case mtRabbit:
|
|
|
|
case mtSheep:
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2016-01-16 05:28:13 -05:00
|
|
|
return (
|
2019-10-11 05:02:53 -04:00
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
|
|
|
(blockBelow == E_BLOCK_GRASS) &&
|
|
|
|
(skyLight >= 9)
|
2016-01-16 05:28:13 -05:00
|
|
|
);
|
|
|
|
}
|
2013-10-25 13:50:46 -04:00
|
|
|
|
2020-03-25 06:49:36 -04:00
|
|
|
case mtCreeper:
|
|
|
|
case mtSkeleton:
|
|
|
|
case mtZombie:
|
2016-01-16 05:28:13 -05:00
|
|
|
{
|
|
|
|
return (
|
2019-10-11 05:02:53 -04:00
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
2020-03-25 06:49:36 -04:00
|
|
|
(!cBlockInfo::IsTransparent(blockBelow)) &&
|
|
|
|
(skyLight <= 7) &&
|
|
|
|
(blockLight <= 7) &&
|
|
|
|
(random.RandBool())
|
2016-01-16 05:28:13 -05:00
|
|
|
);
|
|
|
|
}
|
2013-10-25 13:50:46 -04:00
|
|
|
|
2016-01-16 05:28:13 -05:00
|
|
|
case mtEnderman:
|
|
|
|
{
|
2019-10-11 05:02:53 -04:00
|
|
|
if (a_RelPos.y < 250)
|
2013-10-28 11:49:06 -04:00
|
|
|
{
|
2019-10-11 05:02:53 -04:00
|
|
|
auto blockTop = a_Chunk->GetBlock(a_RelPos.addedY(2));
|
|
|
|
if (blockTop == E_BLOCK_AIR)
|
2013-10-28 11:49:06 -04:00
|
|
|
{
|
2019-10-11 05:02:53 -04:00
|
|
|
blockTop = a_Chunk->GetBlock(a_RelPos.addedY(3));
|
2016-01-16 05:28:13 -05:00
|
|
|
return (
|
2019-10-11 05:02:53 -04:00
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
|
|
|
(blockTop == E_BLOCK_AIR) &&
|
|
|
|
(!cBlockInfo::IsTransparent(blockBelow)) &&
|
|
|
|
(skyLight <= 7) &&
|
|
|
|
(blockLight <= 7)
|
2016-01-16 05:28:13 -05:00
|
|
|
);
|
2013-10-28 11:49:06 -04:00
|
|
|
}
|
|
|
|
}
|
2016-01-16 05:28:13 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-03-26 13:54:40 -04:00
|
|
|
case mtGhast:
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
2020-03-27 15:00:26 -04:00
|
|
|
(random.RandBool(0.01))
|
2020-03-26 13:54:40 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-25 06:49:36 -04:00
|
|
|
case mtGuardian:
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
IsBlockWater(targetBlock) &&
|
|
|
|
IsBlockWater(blockBelow) &&
|
|
|
|
(a_RelPos.y >= 45) &&
|
|
|
|
(a_RelPos.y <= 62)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
case mtMagmaCube:
|
|
|
|
case mtSlime:
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
|
|
|
(!cBlockInfo::IsTransparent(blockBelow)) &&
|
|
|
|
(
|
|
|
|
(a_RelPos.y <= 40) || (a_Biome == biSwampland)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
case mtMooshroom:
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
|
|
|
(blockBelow == E_BLOCK_MYCELIUM) &&
|
|
|
|
(
|
|
|
|
(a_Biome == biMushroomShore) ||
|
|
|
|
(a_Biome == biMushroomIsland)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
case mtOcelot:
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
|
|
|
(
|
|
|
|
(blockBelow == E_BLOCK_GRASS) || (blockBelow == E_BLOCK_LEAVES) || (blockBelow == E_BLOCK_NEW_LEAVES)
|
|
|
|
) &&
|
|
|
|
(a_RelPos.y >= 62) &&
|
|
|
|
(random.RandBool(2.0 / 3.0))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-01-16 05:28:13 -05:00
|
|
|
case mtSpider:
|
|
|
|
{
|
2019-10-11 05:02:53 -04:00
|
|
|
bool canSpawn = true;
|
|
|
|
bool hasFloor = false;
|
2016-01-16 05:28:13 -05:00
|
|
|
for (int x = 0; x < 2; ++x)
|
2013-10-28 11:49:06 -04:00
|
|
|
{
|
2016-01-16 05:28:13 -05:00
|
|
|
for (int z = 0; z < 2; ++z)
|
2013-10-28 11:49:06 -04:00
|
|
|
{
|
2019-10-11 05:02:53 -04:00
|
|
|
canSpawn = a_Chunk->UnboundedRelGetBlockType(a_RelPos.addedXZ(x, z), targetBlock);
|
|
|
|
canSpawn = canSpawn && (targetBlock == E_BLOCK_AIR);
|
|
|
|
if (!canSpawn)
|
2013-10-28 11:49:06 -04:00
|
|
|
{
|
2016-01-16 05:28:13 -05:00
|
|
|
return false;
|
2013-10-28 11:49:06 -04:00
|
|
|
}
|
2019-10-11 05:02:53 -04:00
|
|
|
hasFloor = (
|
|
|
|
hasFloor ||
|
2016-01-16 05:28:13 -05:00
|
|
|
(
|
2019-10-11 05:02:53 -04:00
|
|
|
a_Chunk->UnboundedRelGetBlockType(a_RelPos + Vector3i(x, -1, z), targetBlock) &&
|
|
|
|
!cBlockInfo::IsTransparent(targetBlock)
|
2016-01-16 05:28:13 -05:00
|
|
|
)
|
|
|
|
);
|
2013-10-28 11:49:06 -04:00
|
|
|
}
|
|
|
|
}
|
2019-10-11 05:02:53 -04:00
|
|
|
return canSpawn && hasFloor && (skyLight <= 7) && (blockLight <= 7);
|
2016-01-16 05:28:13 -05:00
|
|
|
}
|
2015-10-27 13:41:21 -04:00
|
|
|
|
2020-03-25 06:49:36 -04:00
|
|
|
case mtSquid:
|
2016-01-16 05:28:13 -05:00
|
|
|
{
|
|
|
|
return (
|
2020-03-25 06:49:36 -04:00
|
|
|
IsBlockWater(targetBlock) &&
|
|
|
|
(a_RelPos.y >= 45) &&
|
|
|
|
(a_RelPos.y <= 62)
|
2016-01-16 05:28:13 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-04 07:44:17 -04:00
|
|
|
case mtWitherSkeleton:
|
|
|
|
{
|
|
|
|
return (
|
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
|
|
|
(!cBlockInfo::IsTransparent(blockBelow)) &&
|
|
|
|
(skyLight <= 7) &&
|
|
|
|
(blockLight <= 7) &&
|
|
|
|
(random.RandBool(0.6))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-01-16 05:28:13 -05:00
|
|
|
case mtWolf:
|
|
|
|
{
|
|
|
|
return (
|
2019-10-11 05:02:53 -04:00
|
|
|
(targetBlock == E_BLOCK_GRASS) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
2016-01-16 05:28:13 -05:00
|
|
|
(
|
|
|
|
(a_Biome == biColdTaiga) ||
|
|
|
|
(a_Biome == biColdTaigaHills) ||
|
2018-04-11 07:17:30 -04:00
|
|
|
(a_Biome == biColdTaigaM) ||
|
|
|
|
(a_Biome == biForest) ||
|
|
|
|
(a_Biome == biTaiga) ||
|
|
|
|
(a_Biome == biTaigaHills) ||
|
2016-01-16 05:28:13 -05:00
|
|
|
(a_Biome == biTaigaM) ||
|
|
|
|
(a_Biome == biMegaTaiga) ||
|
|
|
|
(a_Biome == biMegaTaigaHills)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-03-25 06:49:36 -04:00
|
|
|
case mtZombiePigman:
|
2016-01-16 05:28:13 -05:00
|
|
|
{
|
|
|
|
return (
|
2019-10-11 05:02:53 -04:00
|
|
|
(targetBlock == E_BLOCK_AIR) &&
|
|
|
|
(blockAbove == E_BLOCK_AIR) &&
|
2020-03-25 06:49:36 -04:00
|
|
|
(!cBlockInfo::IsTransparent(blockBelow))
|
2016-01-16 05:28:13 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
LOGD("MG TODO: Write spawning rule for mob type %d", a_MobType);
|
|
|
|
return false;
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
|
|
|
}
|
2013-10-28 11:49:06 -04:00
|
|
|
return false;
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-20 07:33:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-04-11 07:17:30 -04:00
|
|
|
std::set<eMonsterType> cMobSpawner::GetAllowedMobTypes(EMCSBiome a_Biome)
|
|
|
|
{
|
|
|
|
std::set<eMonsterType> ListOfSpawnables;
|
|
|
|
// Check biomes first to get a list of animals
|
|
|
|
switch (a_Biome)
|
|
|
|
{
|
|
|
|
// Mooshroom only - no other mobs on mushroom islands
|
|
|
|
case biMushroomIsland:
|
|
|
|
case biMushroomShore:
|
|
|
|
{
|
|
|
|
ListOfSpawnables.insert(mtMooshroom);
|
|
|
|
return ListOfSpawnables;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add Squid in ocean and river biomes
|
|
|
|
case biOcean:
|
|
|
|
case biFrozenOcean:
|
|
|
|
case biFrozenRiver:
|
|
|
|
case biRiver:
|
|
|
|
case biDeepOcean:
|
|
|
|
{
|
|
|
|
ListOfSpawnables.insert(mtGuardian);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add ocelots in jungle biomes
|
|
|
|
case biJungle:
|
|
|
|
case biJungleHills:
|
|
|
|
case biJungleEdge:
|
|
|
|
case biJungleM:
|
|
|
|
case biJungleEdgeM:
|
|
|
|
{
|
|
|
|
ListOfSpawnables.insert(mtOcelot);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add horses in plains-like biomes
|
|
|
|
case biPlains:
|
|
|
|
case biSunflowerPlains:
|
|
|
|
case biSavanna:
|
|
|
|
case biSavannaPlateau:
|
|
|
|
case biSavannaM:
|
|
|
|
case biSavannaPlateauM:
|
|
|
|
{
|
|
|
|
ListOfSpawnables.insert(mtHorse);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add wolves in forest biomes
|
|
|
|
case biForest:
|
|
|
|
{
|
|
|
|
ListOfSpawnables.insert(mtWolf);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add wolves and rabbits in all taiga biomes
|
|
|
|
case biColdTaiga:
|
|
|
|
case biColdTaigaM:
|
|
|
|
case biColdTaigaHills:
|
|
|
|
case biTaiga:
|
|
|
|
case biTaigaHills:
|
|
|
|
case biTaigaM:
|
|
|
|
case biMegaTaiga:
|
|
|
|
case biMegaTaigaHills:
|
|
|
|
{
|
|
|
|
ListOfSpawnables.insert(mtWolf);
|
|
|
|
ListOfSpawnables.insert(mtRabbit);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add rabbits in desert and flower forest biomes
|
|
|
|
case biDesert:
|
|
|
|
case biDesertHills:
|
|
|
|
case biDesertM:
|
|
|
|
case biFlowerForest:
|
|
|
|
{
|
|
|
|
ListOfSpawnables.insert(mtRabbit);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nothing special about this biome
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-25 06:49:36 -04:00
|
|
|
// Overworld
|
2018-04-11 07:17:30 -04:00
|
|
|
if (
|
|
|
|
(a_Biome != biDesertHills) &&
|
|
|
|
(a_Biome != biDesert) &&
|
|
|
|
(a_Biome != biDesertM) &&
|
|
|
|
(a_Biome != biBeach) &&
|
|
|
|
(a_Biome != biOcean) &&
|
|
|
|
(a_Biome != biDeepOcean))
|
|
|
|
{
|
|
|
|
ListOfSpawnables.insert(mtSheep);
|
|
|
|
ListOfSpawnables.insert(mtPig);
|
|
|
|
ListOfSpawnables.insert(mtCow);
|
|
|
|
ListOfSpawnables.insert(mtChicken);
|
|
|
|
ListOfSpawnables.insert(mtEnderman);
|
|
|
|
ListOfSpawnables.insert(mtSlime);
|
|
|
|
}
|
|
|
|
|
|
|
|
ListOfSpawnables.insert(mtBat);
|
|
|
|
ListOfSpawnables.insert(mtSpider);
|
|
|
|
ListOfSpawnables.insert(mtZombie);
|
|
|
|
ListOfSpawnables.insert(mtSkeleton);
|
|
|
|
ListOfSpawnables.insert(mtCreeper);
|
|
|
|
ListOfSpawnables.insert(mtSquid);
|
|
|
|
|
2020-03-25 06:49:36 -04:00
|
|
|
// Nether
|
|
|
|
ListOfSpawnables.insert(mtBlaze);
|
|
|
|
ListOfSpawnables.insert(mtGhast);
|
|
|
|
ListOfSpawnables.insert(mtMagmaCube);
|
2020-04-04 07:44:17 -04:00
|
|
|
ListOfSpawnables.insert(mtWitherSkeleton);
|
2020-03-25 06:49:36 -04:00
|
|
|
ListOfSpawnables.insert(mtZombiePigman);
|
|
|
|
|
2018-04-11 07:17:30 -04:00
|
|
|
return ListOfSpawnables;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
cMonster * cMobSpawner::TryToSpawnHere(cChunk * a_Chunk, Vector3i a_RelPos, EMCSBiome a_Biome, int & a_MaxPackSize)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
|
|
|
if (m_NewPack)
|
|
|
|
{
|
|
|
|
m_MobType = ChooseMobType(a_Biome);
|
2014-09-17 13:40:10 -04:00
|
|
|
if (m_MobType == mtInvalidType)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2016-12-19 15:12:23 -05:00
|
|
|
return nullptr;
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
2020-04-04 07:44:17 -04:00
|
|
|
if (m_MobType == mtWitherSkeleton)
|
|
|
|
{
|
|
|
|
a_MaxPackSize = 5;
|
|
|
|
}
|
|
|
|
else if (m_MobType == mtWolf)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
|
|
|
a_MaxPackSize = 8;
|
|
|
|
}
|
2014-09-17 13:40:10 -04:00
|
|
|
else if (m_MobType == mtGhast)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
|
|
|
a_MaxPackSize = 1;
|
|
|
|
}
|
|
|
|
m_NewPack = false;
|
|
|
|
}
|
|
|
|
|
2013-10-29 14:43:41 -04:00
|
|
|
// Make sure we are looking at the right chunk to spawn in
|
2019-10-11 05:02:53 -04:00
|
|
|
a_Chunk = a_Chunk->GetRelNeighborChunkAdjustCoords(a_RelPos);
|
2014-09-19 17:00:54 -04:00
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
if ((m_AllowedTypes.find(m_MobType) != m_AllowedTypes.end()) && CanSpawnHere(a_Chunk, a_RelPos, m_MobType, a_Biome))
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2016-12-19 15:12:23 -05:00
|
|
|
auto newMob = cMonster::NewMonsterFromType(m_MobType);
|
|
|
|
auto NewMobPtr = newMob.get();
|
2013-09-07 19:21:43 -04:00
|
|
|
if (newMob)
|
|
|
|
{
|
2017-09-11 17:20:49 -04:00
|
|
|
m_Spawned.push_back(std::move(newMob));
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
2016-12-19 15:12:23 -05:00
|
|
|
return NewMobPtr;
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
2016-12-19 15:12:23 -05:00
|
|
|
|
|
|
|
return nullptr;
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
|
|
|
|
2013-10-20 07:33:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-09-07 19:21:43 -04:00
|
|
|
void cMobSpawner::NewPack()
|
|
|
|
{
|
|
|
|
m_NewPack = true;
|
|
|
|
}
|
|
|
|
|
2013-10-20 07:33:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cMobSpawner::CanSpawnAnything(void)
|
2013-09-07 19:21:43 -04:00
|
|
|
{
|
2013-10-20 07:33:23 -04:00
|
|
|
return !m_AllowedTypes.empty();
|
2013-09-07 19:21:43 -04:00
|
|
|
}
|
2013-10-20 07:33:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|