2013-07-29 12:13:03 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "BlockHandler.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockIceHandler :
|
|
|
|
|
public cBlockHandler
|
|
|
|
|
{
|
2020-04-13 18:38:06 +02:00
|
|
|
using Super = cBlockHandler;
|
2019-10-16 10:06:34 +02:00
|
|
|
|
2013-07-29 12:13:03 +01:00
|
|
|
public:
|
2019-10-16 10:06:34 +02:00
|
|
|
|
2020-09-20 14:50:52 +01:00
|
|
|
using Super::Super;
|
|
|
|
|
|
|
|
|
|
private:
|
2013-07-29 12:13:03 +01:00
|
|
|
|
2020-09-20 14:50:52 +01:00
|
|
|
virtual cItems ConvertToPickups(NIBBLETYPE a_BlockMeta, cBlockEntity * a_BlockEntity, const cEntity * a_Digger, const cItem * a_Tool) const override
|
2013-07-29 12:13:03 +01:00
|
|
|
{
|
2019-10-16 10:06:34 +02:00
|
|
|
// Only drop self when using silk-touch:
|
|
|
|
|
if (ToolHasSilkTouch(a_Tool))
|
|
|
|
|
{
|
|
|
|
|
return cItem(m_BlockType);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return {};
|
|
|
|
|
}
|
2013-07-29 12:13:03 +01:00
|
|
|
}
|
2016-02-05 23:45:45 +02:00
|
|
|
|
2019-10-16 10:06:34 +02:00
|
|
|
virtual void OnBroken(
|
|
|
|
|
cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface,
|
|
|
|
|
Vector3i a_BlockPos,
|
|
|
|
|
BLOCKTYPE a_OldBlockType, NIBBLETYPE a_OldBlockMeta
|
2020-09-20 14:50:52 +01:00
|
|
|
) const override
|
2013-07-29 12:13:03 +01:00
|
|
|
{
|
2019-10-16 10:06:34 +02:00
|
|
|
// If there's a solid block or a liquid underneath, convert to water, rather than air
|
|
|
|
|
if (a_BlockPos.y <= 0)
|
2014-07-31 18:41:48 +02:00
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-08-01 11:25:06 +01:00
|
|
|
|
|
|
|
|
const auto Below = a_ChunkInterface.GetBlock(a_BlockPos.addedY(-1));
|
|
|
|
|
if (cBlockInfo::FullyOccupiesVoxel(Below) || IsBlockLiquid(Below))
|
2014-07-31 18:41:48 +02:00
|
|
|
{
|
2019-10-16 10:06:34 +02:00
|
|
|
a_ChunkInterface.SetBlock(a_BlockPos, E_BLOCK_WATER, 0);
|
2014-07-31 18:41:48 +02:00
|
|
|
}
|
2014-07-17 22:50:58 +02:00
|
|
|
}
|
2015-06-30 15:50:15 +01:00
|
|
|
|
2020-09-20 14:50:52 +01:00
|
|
|
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
|
2015-06-30 15:50:15 +01:00
|
|
|
{
|
|
|
|
|
UNUSED(a_Meta);
|
|
|
|
|
return 5;
|
|
|
|
|
}
|
2014-08-19 16:47:33 +02:00
|
|
|
} ;
|