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

112 lines
2.3 KiB
C++
Raw Normal View History

#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "Sheep.h"
#include "../BlockID.h"
#include "../Entities/Player.h"
#include "../World.h"
cSheep::cSheep(int a_Color) :
2013-10-20 08:23:30 +00:00
super("Sheep", mtSheep, "mob.sheep.say", "mob.sheep.say", 0.6, 1.3),
m_IsSheared(false),
2014-01-25 20:19:52 +00:00
m_WoolColor(a_Color),
m_TimeToStopEating(-1)
{
}
void cSheep::GetDrops(cItems & a_Drops, cEntity * a_Killer)
{
if (!m_IsSheared)
{
a_Drops.push_back(cItem(E_BLOCK_WOOL, 1, m_WoolColor));
}
}
void cSheep::OnRightClicked(cPlayer & a_Player)
{
const cItem & EquippedItem = a_Player.GetEquippedItem();
if ((EquippedItem.m_ItemType == E_ITEM_SHEARS) && (!m_IsSheared))
{
m_IsSheared = true;
m_World->BroadcastEntityMetadata(*this);
if (!a_Player.IsGameModeCreative())
{
a_Player.UseEquippedItem();
}
cItems Drops;
2013-10-28 18:54:03 +00:00
int NumDrops = m_World->GetTickRandomNumber(2) + 1;
Drops.push_back(cItem(E_BLOCK_WOOL, NumDrops, m_WoolColor));
m_World->SpawnItemPickups(Drops, GetPosX(), GetPosY(), GetPosZ(), 10);
}
else if ((EquippedItem.m_ItemType == E_ITEM_DYE) && (m_WoolColor != 15 - EquippedItem.m_ItemDamage))
2013-11-10 15:43:47 +00:00
{
m_WoolColor = 15 - EquippedItem.m_ItemDamage;
if (!a_Player.IsGameModeCreative())
{
a_Player.GetInventory().RemoveOneEquippedItem();
}
m_World->BroadcastEntityMetadata(*this);
2013-11-10 15:03:00 +00:00
}
}
2014-01-25 20:19:52 +00:00
void cSheep::Tick(float a_Dt, cChunk & a_Chunk)
{
2014-02-26 23:30:10 +00:00
super::Tick(a_Dt, a_Chunk);
int PosX = POSX_TOINT;
int PosY = POSY_TOINT - 1;
int PosZ = POSZ_TOINT;
if ((PosY <= 0) || (PosY > cChunkDef::Height))
{
return;
}
2014-01-25 20:19:52 +00:00
if (m_TimeToStopEating > 0)
{
2014-02-26 23:30:10 +00:00
m_bMovingToDestination = false; // The sheep should not move when he's eating
2014-01-25 20:19:52 +00:00
m_TimeToStopEating--;
2014-02-26 23:30:10 +00:00
2014-01-25 20:19:52 +00:00
if (m_TimeToStopEating == 0)
{
2014-02-26 23:30:10 +00:00
if (m_World->GetBlock(PosX, PosY, PosZ) == E_BLOCK_GRASS) // Make sure grass hasn't been destroyed in the meantime
2014-01-25 20:19:52 +00:00
{
2014-02-26 23:30:10 +00:00
// The sheep ate the grass so we change it to dirt
m_World->SetBlock(PosX, PosY, PosZ, E_BLOCK_DIRT, 0);
GetWorld()->BroadcastSoundParticleEffect(2001, PosX, PosY, PosX, E_BLOCK_GRASS);
2014-01-25 20:19:52 +00:00
m_IsSheared = false;
m_World->BroadcastEntityMetadata(*this);
}
}
}
else
{
if (m_World->GetTickRandomNumber(600) == 1)
{
2014-02-26 23:30:10 +00:00
if (m_World->GetBlock(PosX, PosY, PosZ) == E_BLOCK_GRASS)
2014-01-25 20:19:52 +00:00
{
m_World->BroadcastEntityStatus(*this, esSheepEating);
2014-01-25 20:19:52 +00:00
m_TimeToStopEating = 40;
}
}
}
2014-01-25 20:19:52 +00:00
}