2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-08-19 12:45:53 -04:00
|
|
|
#include "BlockPlant.h"
|
2014-03-30 17:13:13 -04:00
|
|
|
#include "../FastRandom.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-02-14 05:13:55 -05:00
|
|
|
/** Common class that takes care of beetroots, carrots, potatoes and wheat */
|
|
|
|
template <NIBBLETYPE RipeMeta>
|
2019-10-16 04:06:34 -04:00
|
|
|
class cBlockCropsHandler:
|
|
|
|
public cBlockPlant<true>
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cBlockPlant<true>;
|
2017-02-25 04:54:44 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
public:
|
2017-02-25 04:54:44 -05:00
|
|
|
|
|
|
|
cBlockCropsHandler(BLOCKTYPE a_BlockType):
|
2020-04-13 12:38:06 -04:00
|
|
|
Super(a_BlockType)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-02-25 04:54:44 -05:00
|
|
|
|
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, cBlockEntity * a_BlockEntity, const cEntity * a_Digger, const cItem * a_Tool) override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2017-06-13 15:35:30 -04:00
|
|
|
auto & rand = GetRandomProvider();
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2017-02-25 04:54:44 -05:00
|
|
|
// If not fully grown, drop the "seed" of whatever is growing:
|
2019-10-16 04:06:34 -04:00
|
|
|
if (a_BlockMeta < RipeMeta)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
switch (m_BlockType)
|
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
case E_BLOCK_BEETROOTS: return cItem(E_ITEM_BEETROOT_SEEDS, 1, 0); break;
|
|
|
|
case E_BLOCK_CROPS: return cItem(E_ITEM_SEEDS, 1, 0); break;
|
|
|
|
case E_BLOCK_CARROTS: return cItem(E_ITEM_CARROT, 1, 0); break;
|
|
|
|
case E_BLOCK_POTATOES: return cItem(E_ITEM_POTATO, 1, 0); break;
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
2019-10-16 04:06:34 -04:00
|
|
|
ASSERT(!"Unhandled block type");
|
|
|
|
return {};
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
2017-02-25 04:54:44 -05:00
|
|
|
|
|
|
|
// Fully grown, drop the crop's produce:
|
2019-10-16 04:06:34 -04:00
|
|
|
cItems res;
|
2017-02-25 04:54:44 -05:00
|
|
|
switch (m_BlockType)
|
|
|
|
{
|
|
|
|
case E_BLOCK_BEETROOTS:
|
|
|
|
{
|
2017-06-13 15:35:30 -04:00
|
|
|
char SeedCount = 1 + ((rand.RandInt<char>(2) + rand.RandInt<char>(2)) / 2); // [1 .. 3] with high preference of 2
|
2019-10-16 04:06:34 -04:00
|
|
|
res.Add(E_ITEM_BEETROOT_SEEDS, SeedCount, 0);
|
2017-06-13 15:35:30 -04:00
|
|
|
char BeetrootCount = 1 + ((rand.RandInt<char>(2) + rand.RandInt<char>(2)) / 2); // [1 .. 3] with high preference of 2
|
2019-10-16 04:06:34 -04:00
|
|
|
res.Add(E_ITEM_BEETROOT, BeetrootCount, 0);
|
2017-02-25 04:54:44 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_CROPS:
|
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
res.Add(E_ITEM_WHEAT, 1, 0);
|
|
|
|
res.Add(E_ITEM_SEEDS, 1 + ((rand.RandInt<char>(2) + rand.RandInt<char>(2)) / 2), 0); // [1 .. 3] with high preference of 2
|
2017-02-25 04:54:44 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_CARROTS:
|
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
res.Add(E_ITEM_CARROT, 1 + ((rand.RandInt<char>(2) + rand.RandInt<char>(2)) / 2), 0); // [1 .. 3] with high preference of 2
|
2017-02-25 04:54:44 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case E_BLOCK_POTATOES:
|
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
res.Add(E_ITEM_POTATO, 1 + ((rand.RandInt<char>(2) + rand.RandInt<char>(2)) / 2), 0); // [1 .. 3] with high preference of 2
|
2017-06-13 15:35:30 -04:00
|
|
|
if (rand.RandBool(0.05))
|
2017-02-25 04:54:44 -05:00
|
|
|
{
|
|
|
|
// With a 5% chance, drop a poisonous potato as well
|
2019-10-16 04:06:34 -04:00
|
|
|
res.emplace_back(E_ITEM_POISONOUS_POTATO, 1, 0);
|
2017-02-25 04:54:44 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
ASSERT(!"Unhandled block type");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // switch (m_BlockType)
|
2019-10-16 04:06:34 -04:00
|
|
|
return res;
|
2014-07-17 16:50:58 -04:00
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2017-02-25 04:54:44 -05:00
|
|
|
|
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
virtual int Grow(cChunk & a_Chunk, Vector3i a_RelPos, int a_NumStages = 1) override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2019-10-11 05:02:53 -04:00
|
|
|
auto oldMeta = a_Chunk.GetMeta(a_RelPos);
|
|
|
|
if (oldMeta >= RipeMeta)
|
2013-10-12 17:25:47 -04:00
|
|
|
{
|
2019-10-11 05:02:53 -04:00
|
|
|
// Already ripe
|
|
|
|
return 0;
|
2013-10-12 17:25:47 -04:00
|
|
|
}
|
2019-10-11 05:02:53 -04:00
|
|
|
auto newMeta = std::min<int>(oldMeta + a_NumStages, RipeMeta);
|
|
|
|
ASSERT(newMeta > oldMeta);
|
|
|
|
a_Chunk.GetWorld()->SetBlock(a_Chunk.RelativeToAbsolute(a_RelPos), m_BlockType, static_cast<NIBBLETYPE>(newMeta));
|
|
|
|
return newMeta - oldMeta;
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
2017-02-25 04:54:44 -05:00
|
|
|
|
|
|
|
|
2019-10-11 05:02:53 -04:00
|
|
|
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, const Vector3i a_RelPos, const cChunk & a_Chunk) override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
return ((a_RelPos.y > 0) && (a_Chunk.GetBlock(a_RelPos.addedY(-1)) == E_BLOCK_FARMLAND));
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
2015-06-30 10:50:15 -04:00
|
|
|
|
2017-02-25 04:54:44 -05:00
|
|
|
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
2015-06-30 10:50:15 -04:00
|
|
|
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) override
|
|
|
|
{
|
|
|
|
UNUSED(a_Meta);
|
|
|
|
return 7;
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|