2012-06-14 09:06:06 -04:00
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2012-09-23 16:53:08 -04:00
|
|
|
#include "Sheep.h"
|
2012-12-21 06:04:08 -05:00
|
|
|
#include "../BlockID.h"
|
2013-10-08 14:20:49 -04:00
|
|
|
#include "../Entities/Player.h"
|
|
|
|
#include "../World.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-10-08 14:20:49 -04:00
|
|
|
cSheep::cSheep(int a_Color) :
|
2013-10-20 04:23:30 -04:00
|
|
|
super("Sheep", mtSheep, "mob.sheep.say", "mob.sheep.say", 0.6, 1.3),
|
2012-06-14 09:06:06 -04:00
|
|
|
m_IsSheared(false),
|
2013-10-28 14:42:02 -04:00
|
|
|
m_WoolColor(a_Color)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-01 06:39:56 -04:00
|
|
|
void cSheep::GetDrops(cItems & a_Drops, cEntity * a_Killer)
|
2012-06-14 09:06:06 -04:00
|
|
|
{
|
|
|
|
if (!m_IsSheared)
|
|
|
|
{
|
2013-02-16 06:12:56 -05:00
|
|
|
a_Drops.push_back(cItem(E_BLOCK_WOOL, 1, m_WoolColor));
|
2012-06-14 09:06:06 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-12-21 06:04:08 -05:00
|
|
|
|
2013-10-08 14:20:49 -04:00
|
|
|
|
|
|
|
void cSheep::OnRightClicked(cPlayer & a_Player)
|
|
|
|
{
|
|
|
|
if ((a_Player.GetEquippedItem().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 14:54:03 -04: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);
|
2013-10-08 14:20:49 -04:00
|
|
|
}
|
2013-11-10 10:43:47 -05:00
|
|
|
if (a_Player.GetEquippedItem().m_ItemType == E_ITEM_DYE)
|
|
|
|
{
|
2013-11-10 10:42:38 -05:00
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_BLACK)
|
|
|
|
{
|
|
|
|
m_WoolColor = 15;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_RED)
|
|
|
|
{
|
|
|
|
m_WoolColor = 14;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_GREEN)
|
|
|
|
{
|
|
|
|
m_WoolColor = 13;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_BROWN)
|
|
|
|
{
|
|
|
|
m_WoolColor = 12;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_BLUE)
|
|
|
|
{
|
|
|
|
m_WoolColor = 11;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_PURPLE)
|
|
|
|
{
|
|
|
|
m_WoolColor = 10;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_CYAN)
|
|
|
|
{
|
|
|
|
m_WoolColor = 9;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_LIGHTGRAY)
|
|
|
|
{
|
|
|
|
m_WoolColor = 8;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_GRAY)
|
|
|
|
{
|
|
|
|
m_WoolColor = 7;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_PINK)
|
|
|
|
{
|
|
|
|
m_WoolColor = 6;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_LIGHTGREEN)
|
|
|
|
{
|
|
|
|
m_WoolColor = 5;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_YELLOW)
|
|
|
|
{
|
|
|
|
m_WoolColor = 4;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_LIGHTBLUE)
|
|
|
|
{
|
|
|
|
m_WoolColor = 3;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_MAGENTA)
|
|
|
|
{
|
|
|
|
m_WoolColor = 2;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_ORANGE)
|
|
|
|
{
|
|
|
|
m_WoolColor = 1;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a_Player.GetEquippedItem().m_ItemDamage == E_META_DYE_WHITE)
|
|
|
|
{
|
|
|
|
m_WoolColor = 0;
|
|
|
|
m_World->BroadcastEntityMetadata(*this);
|
|
|
|
|
|
|
|
if (!a_Player.IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player.GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
2013-11-10 10:03:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|