2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockSnowHandler :
|
|
|
|
public cBlockHandler
|
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
using Super = cBlockHandler;
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
public:
|
2020-04-21 16:19:22 -04:00
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
using Super::Super;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2017-09-12 17:26:13 -04:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
FullBlockMeta = 7 // Meta value of a full-height snow block
|
|
|
|
};
|
|
|
|
|
2013-09-17 16:22:26 -04:00
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
2020-04-21 16:19:22 -04:00
|
|
|
cChunkInterface & a_ChunkInterface,
|
|
|
|
cPlayer & a_Player,
|
|
|
|
const Vector3i a_PlacedBlockPos,
|
|
|
|
eBlockFace a_ClickedBlockFace,
|
|
|
|
const Vector3i a_CursorPos,
|
2013-09-17 16:22:26 -04:00
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
2020-09-20 09:50:52 -04:00
|
|
|
) const override
|
2013-09-17 16:22:26 -04:00
|
|
|
{
|
|
|
|
a_BlockType = m_BlockType;
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
// Check if incrementing existing snow height:
|
2013-11-29 19:31:21 -05:00
|
|
|
BLOCKTYPE BlockBeforePlacement;
|
|
|
|
NIBBLETYPE MetaBeforePlacement;
|
2020-04-21 16:19:22 -04:00
|
|
|
a_ChunkInterface.GetBlockTypeMeta(a_PlacedBlockPos, BlockBeforePlacement, MetaBeforePlacement);
|
2017-09-12 17:26:13 -04:00
|
|
|
if ((BlockBeforePlacement == E_BLOCK_SNOW) && (MetaBeforePlacement < FullBlockMeta))
|
2013-09-17 16:22:26 -04:00
|
|
|
{
|
2013-11-29 19:31:21 -05:00
|
|
|
// Only increment if:
|
2014-07-17 17:15:53 -04:00
|
|
|
// - A snow block was already there (not first time placement) AND
|
2017-09-12 17:26:13 -04:00
|
|
|
// - Height is smaller than the maximum possible
|
|
|
|
a_BlockMeta = MetaBeforePlacement + 1;
|
|
|
|
return true;
|
2013-09-17 16:22:26 -04:00
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2017-09-12 17:26:13 -04:00
|
|
|
// First time placement, check placement is valid
|
|
|
|
a_BlockMeta = 0;
|
|
|
|
BLOCKTYPE BlockBelow;
|
|
|
|
NIBBLETYPE MetaBelow;
|
|
|
|
return (
|
2020-04-21 16:19:22 -04:00
|
|
|
(a_PlacedBlockPos.y > 0) &&
|
|
|
|
a_ChunkInterface.GetBlockTypeMeta(a_PlacedBlockPos.addedY(-1), BlockBelow, MetaBelow) &&
|
2017-09-12 17:26:13 -04:00
|
|
|
CanBeOn(BlockBelow, MetaBelow)
|
|
|
|
);
|
2013-09-17 16:22:26 -04:00
|
|
|
}
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual bool DoesIgnoreBuildCollision(cChunkInterface & a_ChunkInterface, Vector3i a_Pos, cPlayer & a_Player, NIBBLETYPE a_Meta) const override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2017-09-12 17:26:13 -04:00
|
|
|
if ((a_Player.GetEquippedItem().m_ItemType == E_BLOCK_SNOW) && (a_Meta < FullBlockMeta))
|
2013-11-29 19:31:21 -05:00
|
|
|
{
|
2014-07-17 16:15:34 -04:00
|
|
|
return true; // If a player is holding a (thin) snow block and it's size can be increased, return collision ignored
|
2013-11-29 19:31:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (a_Meta == 0)
|
|
|
|
{
|
2014-07-17 16:15:34 -04:00
|
|
|
return true; // If at normal snowfall height (lowest), we ignore collision
|
2013-11-29 19:31:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-23 11:06:27 -04:00
|
|
|
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, const cEntity * a_Digger, const cItem * a_Tool) const override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2019-10-16 04:06:34 -04:00
|
|
|
// No drop unless dug up with a shovel
|
|
|
|
if ((a_Tool == nullptr) || !ItemCategory::IsShovel(a_Tool->m_ItemType))
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ToolHasSilkTouch(a_Tool))
|
|
|
|
{
|
|
|
|
return cItem(m_BlockType, 1, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Drop as many snowballs as there were "layers" of snow:
|
|
|
|
return cItem(E_ITEM_SNOWBALL, 1 + (a_BlockMeta & 0x07), 0);
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
|
|
|
|
2019-10-16 04:06:34 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual bool CanBeAt(cChunkInterface & a_ChunkInterface, const Vector3i a_RelPos, const cChunk & a_Chunk) const override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
if (a_RelPos.y <= 0)
|
2013-11-30 06:45:23 -05:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
return false;
|
2013-11-30 06:45:23 -05:00
|
|
|
}
|
2020-04-21 16:19:22 -04:00
|
|
|
auto BelowPos = a_RelPos.addedY(-1);
|
|
|
|
auto BlockBelow = a_Chunk.GetBlock(BelowPos);
|
|
|
|
auto MetaBelow = a_Chunk.GetMeta(BelowPos);
|
|
|
|
return CanBeOn(BlockBelow, MetaBelow);
|
2013-07-29 07:13:03 -04:00
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual bool DoesDropOnUnsuitable(void) const override
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2015-06-30 10:50:15 -04:00
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
|
2015-06-30 10:50:15 -04:00
|
|
|
{
|
|
|
|
UNUSED(a_Meta);
|
|
|
|
return 14;
|
|
|
|
}
|
2015-11-10 08:02:07 -05:00
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-20 09:50:52 -04:00
|
|
|
virtual bool IsInsideBlock(const Vector3d a_RelPosition, const NIBBLETYPE a_BlockMeta) const override
|
2015-11-10 08:02:07 -05:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
return a_RelPosition.y < (cBlockInfo::GetBlockHeight(m_BlockType) * (a_BlockMeta & 0x07));
|
2017-09-12 17:26:13 -04:00
|
|
|
}
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
2017-09-12 17:26:13 -04:00
|
|
|
private:
|
|
|
|
|
|
|
|
/** Returns true if snow can be placed on top of a block with the given type and meta. */
|
|
|
|
static bool CanBeOn(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta)
|
|
|
|
{
|
|
|
|
// If block below is snowable, or it is a thin slow block and is a full thin snow block, say yay
|
|
|
|
return (
|
|
|
|
cBlockInfo::IsSnowable(a_BlockType) ||
|
|
|
|
(
|
|
|
|
(a_BlockType == E_BLOCK_SNOW) &&
|
|
|
|
(a_BlockMeta == FullBlockMeta)
|
|
|
|
)
|
|
|
|
);
|
2015-11-10 08:02:07 -05:00
|
|
|
}
|
2017-09-12 17:26:13 -04:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|