diff options
author | Samuel Barney <samjbarney@gmail.com> | 2014-08-21 16:26:42 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2014-08-21 16:26:42 +0200 |
commit | 778b933e0078b740093ab9d83eddef702011791a (patch) | |
tree | ac1b610b0704f5c6bbd84c83d68a73d8cb01d2b7 /src/Mobs/Sheep.cpp | |
parent | Removed references to the new mob code in preparation to renaming it. (diff) | |
download | cuberite-778b933e0078b740093ab9d83eddef702011791a.tar cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.gz cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.bz2 cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.lz cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.xz cuberite-778b933e0078b740093ab9d83eddef702011791a.tar.zst cuberite-778b933e0078b740093ab9d83eddef702011791a.zip |
Diffstat (limited to 'src/Mobs/Sheep.cpp')
-rw-r--r-- | src/Mobs/Sheep.cpp | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/Mobs/Sheep.cpp b/src/Mobs/Sheep.cpp new file mode 100644 index 000000000..e370a7639 --- /dev/null +++ b/src/Mobs/Sheep.cpp @@ -0,0 +1,78 @@ + +#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" +#include "FastRandom.h" + + + + + +cSheep::cSheep(int a_Color) : + super("Sheep", mtSheep, "mob.sheep.say", "mob.sheep.say", 0.6, 1.3), + m_IsSheared(false), + m_WoolColor(a_Color) + // m_TimeToStopEating(-1) +{ + // Generate random wool color. + if (m_WoolColor == -1) + { + m_WoolColor = GenerateNaturalRandomColor(); + } + + if ((m_WoolColor < 0) || (m_WoolColor > 15)) + { + m_WoolColor = 0; + } +} + + + + + +void cSheep::GetDrops(cItems & a_Drops, cEntity * a_Killer) +{ + if (!m_IsSheared) + { + a_Drops.push_back(cItem(E_BLOCK_WOOL, 1, m_WoolColor)); + } +} + + + + + +NIBBLETYPE cSheep::GenerateNaturalRandomColor(void) +{ + cFastRandom Random; + int Chance = Random.NextInt(101); + + if (Chance <= 81) + { + return E_META_WOOL_WHITE; + } + else if (Chance <= 86) + { + return E_META_WOOL_BLACK; + } + else if (Chance <= 91) + { + return E_META_WOOL_GRAY; + } + else if (Chance <= 96) + { + return E_META_WOOL_LIGHTGRAY; + } + else if (Chance <= 99) + { + return E_META_WOOL_BROWN; + } + else + { + return E_META_WOOL_PINK; + } +} + |