1
0
Fork 0
cuberite-2a/src/Mobs/Villager.cpp

184 lines
3.3 KiB
C++
Raw Normal View History

#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "Villager.h"
#include "../World.h"
2014-01-27 18:06:50 +00:00
#include "../BlockArea.h"
2014-01-27 13:40:31 +00:00
#include "../Blocks/BlockHandler.h"
cVillager::cVillager(eVillagerType VillagerType) :
2013-10-20 08:23:30 +00:00
super("Villager", mtVillager, "", "", 0.6, 1.8),
2014-01-27 13:40:31 +00:00
m_Type(VillagerType),
m_VillagerAction(false),
m_ActionCountDown(-1)
{
}
void cVillager::DoTakeDamage(TakeDamageInfo & a_TDI)
{
super::DoTakeDamage(a_TDI);
if ((a_TDI.Attacker != NULL) && a_TDI.Attacker->IsPlayer())
{
if (m_World->GetTickRandomNumber(5) == 3)
{
m_World->BroadcastEntityStatus(*this, ENTITY_STATUS_VILLAGER_ANGRY);
}
}
}
2014-01-27 13:40:31 +00:00
void cVillager::Tick(float a_Dt, cChunk & a_Chunk)
{
super::Tick(a_Dt, a_Chunk);
if (m_ActionCountDown > -1)
{
m_ActionCountDown--;
if (m_ActionCountDown == 0)
{
switch (m_Type)
{
case vtFarmer:
{
HandleFarmerNoCountDown();
}
}
}
return;
}
if (m_VillagerAction)
2014-01-27 13:40:31 +00:00
{
switch (m_Type)
2014-01-27 13:40:31 +00:00
{
case vtFarmer:
{
HandleFarmerAction();
}
2014-01-27 13:40:31 +00:00
}
m_VillagerAction = false;
2014-01-27 13:40:31 +00:00
}
// The villager already has an special action activated.
if (m_VillagerAction)
{
return;
}
// Don't always try to do a special action. Each tick has 1% to do a special action.
if (m_World->GetTickRandomNumber(99) != 0)
2014-01-27 13:40:31 +00:00
{
return;
}
switch (m_Type)
{
case vtFarmer:
{
HandleFarmerAttemptSpecialAction();
2014-01-27 13:40:31 +00:00
}
}
}
void cVillager::HandleFarmerAttemptSpecialAction()
2014-01-27 13:40:31 +00:00
{
cBlockArea Surrounding;
/// Read a 11x7x11 area.
Surrounding.Read(
m_World,
(int) GetPosX() - 5,
(int) GetPosX() + 5,
(int) GetPosY() - 3,
(int) GetPosY() + 3,
(int) GetPosZ() - 5,
(int) GetPosZ() + 5
);
2014-01-27 13:40:31 +00:00
for (int I = 0; I < 5; I++)
2014-01-27 13:40:31 +00:00
{
for (int Y = 0; Y < 6; Y++)
{
// Pick random coordinates and check for crops.
int X = m_World->GetTickRandomNumber(11);
int Z = m_World->GetTickRandomNumber(11);
if (!IsBlockFarmable(Surrounding.GetRelBlockType(X, Y, Z)))
2014-01-27 13:40:31 +00:00
{
continue;
2014-01-27 13:40:31 +00:00
}
if (Surrounding.GetRelBlockMeta(X, Y, Z) != 0x7)
{
continue;
}
m_VillagerAction = true;
m_CropsPos = Vector3i((int) GetPosX() + X - 5, (int) GetPosY() + Y - 3, (int) GetPosZ() + Z - 5);
MoveToPosition(Vector3f((float) (m_CropsPos.x + 0.5), (float) m_CropsPos.y, (float) (m_CropsPos.z + 0.5)));
return;
} // for Y loop.
} // Repeat the procces 5 times.
2014-01-27 13:40:31 +00:00
}
void cVillager::HandleFarmerAction()
{
if (!m_bMovingToDestination && (GetPosition() - m_CropsPos).Length() < 2)
{
BLOCKTYPE CropBlock = m_World->GetBlock(m_CropsPos.x, m_CropsPos.y, m_CropsPos.z);
if (IsBlockFarmable(CropBlock) && m_World->GetBlockMeta(m_CropsPos.x, m_CropsPos.y, m_CropsPos.z) == 0x7)
{
cBlockHandler * Handler = cBlockHandler::GetBlockHandler(CropBlock);
Handler->DropBlock(m_World, this, m_CropsPos.x, m_CropsPos.y, m_CropsPos.z);
m_World->SetBlock(m_CropsPos.x, m_CropsPos.y, m_CropsPos.z, E_BLOCK_AIR, 0);
m_ActionCountDown = 20;
}
}
}
void cVillager::HandleFarmerNoCountDown()
{
if (m_World->GetBlock(m_CropsPos.x, m_CropsPos.y - 1, m_CropsPos.z) == E_BLOCK_FARMLAND)
{
m_World->SetBlock(m_CropsPos.x, m_CropsPos.y, m_CropsPos.z, E_BLOCK_CROPS, 0);
}
}
bool cVillager::IsBlockFarmable(BLOCKTYPE a_BlockType)
{
switch (a_BlockType)
{
case E_BLOCK_CROPS:
case E_BLOCK_POTATOES:
case E_BLOCK_CARROTS:
{
return true;
}
}
return false;
}