1
0
Fork 0
cuberite-2a/src/Items/ItemMinecart.h

71 lines
1.2 KiB
C
Raw Normal View History

#pragma once
class cItemMinecartHandler final:
public cItemHandler
{
2020-04-13 16:38:06 +00:00
using Super = cItemHandler;
2016-02-05 21:45:45 +00:00
public:
2020-04-13 16:38:06 +00:00
using Super::Super;
2016-02-05 21:45:45 +00:00
virtual bool OnItemUse(
cWorld * a_World,
cPlayer * a_Player,
cBlockPluginInterface & a_PluginInterface,
const cItem & a_HeldItem,
const Vector3i a_ClickedBlockPos,
eBlockFace a_ClickedBlockFace
) const override
{
// Must be used on a block
if (a_ClickedBlockFace < 0)
{
return false;
}
2016-02-05 21:45:45 +00:00
// Check that there's rail in there:
BLOCKTYPE Block = a_World->GetBlock(a_ClickedBlockPos);
switch (Block)
{
case E_BLOCK_MINECART_TRACKS:
case E_BLOCK_POWERED_RAIL:
case E_BLOCK_DETECTOR_RAIL:
case E_BLOCK_ACTIVATOR_RAIL:
{
// These are allowed
break;
}
default:
{
LOGD("Used minecart on an unsuitable block %d (%s)", Block, ItemTypeToString(Block).c_str());
return false;
}
}
2016-02-05 21:45:45 +00:00
// Spawn the minecart:
auto SpawnPos = Vector3d(a_ClickedBlockPos) + Vector3d(0.5, 0.5, 0.5);
if (a_World->SpawnMinecart(SpawnPos, m_ItemType) == cEntity::INVALID_ID)
{
return false;
}
2014-03-28 22:52:23 +00:00
// Remove the item from inventory:
2014-03-28 22:52:23 +00:00
if (!a_Player->IsGameModeCreative())
2014-03-30 12:07:28 +00:00
{
2014-03-28 22:52:23 +00:00
a_Player->GetInventory().RemoveOneEquippedItem();
2014-03-30 12:07:28 +00:00
}
return true;
}
} ;