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

182 lines
3.1 KiB
C
Raw Normal View History

// Declares the itemhandlers for throwable items: eggs, snowballs, ender pearls, and eyes of ender.
#pragma once
2020-04-13 16:38:06 +00:00
class cItemThrowableHandler:
public cItemHandler
{
2020-04-13 16:38:06 +00:00
using Super = cItemHandler;
public:
2020-04-13 16:38:06 +00:00
cItemThrowableHandler(int a_ItemType, cProjectileEntity::eKind a_ProjectileKind, double a_SpeedCoeff):
Super(a_ItemType),
m_ProjectileKind(a_ProjectileKind),
m_SpeedCoeff(a_SpeedCoeff)
{
}
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
) override
{
auto Pos = a_Player->GetThrowStartPos();
auto Speed = a_Player->GetLookVector() * m_SpeedCoeff;
// Create the projectile:
2015-03-21 14:18:17 +00:00
if (a_World->CreateProjectile(Pos.x, Pos.y, Pos.z, m_ProjectileKind, a_Player, &a_Player->GetEquippedItem(), &Speed) == cEntity::INVALID_ID)
2014-05-05 22:45:35 +00:00
{
return false;
}
// Play sound:
a_World->BroadcastSoundEffect("entity.arrow.shoot", a_Player->GetPosition() - Vector3d(0, a_Player->GetHeight(), 0), 0.5f, 0.4f / GetRandomProvider().RandReal(0.8f, 1.2f));
// Remove from inventory
if (!a_Player->IsGameModeCreative())
{
a_Player->GetInventory().RemoveOneEquippedItem();
}
return true;
}
2016-02-05 21:45:45 +00:00
protected:
/** The kind of projectile to create when shooting */
cProjectileEntity::eKind m_ProjectileKind;
/** The speed multiplier (to the player's normalized look vector) to set for the new projectile. */
double m_SpeedCoeff;
} ;
2020-04-13 16:38:06 +00:00
class cItemEggHandler:
public cItemThrowableHandler
{
2020-04-13 16:38:06 +00:00
using Super = cItemThrowableHandler;
public:
2020-04-13 16:38:06 +00:00
cItemEggHandler():
Super(E_ITEM_EGG, cProjectileEntity::pkEgg, 30)
{
}
} ;
2020-04-13 16:38:06 +00:00
class cItemSnowballHandler:
public cItemThrowableHandler
{
2020-04-13 16:38:06 +00:00
using Super = cItemThrowableHandler;
2016-02-05 21:45:45 +00:00
public:
2020-04-13 16:38:06 +00:00
cItemSnowballHandler():
Super(E_ITEM_SNOWBALL, cProjectileEntity::pkSnowball, 30)
{
}
} ;
2020-04-13 16:38:06 +00:00
class cItemEnderPearlHandler:
public cItemThrowableHandler
{
2020-04-13 16:38:06 +00:00
using Super = cItemThrowableHandler;
2016-02-05 21:45:45 +00:00
public:
2020-04-13 16:38:06 +00:00
cItemEnderPearlHandler():
Super(E_ITEM_ENDER_PEARL, cProjectileEntity::pkEnderPearl, 30)
{
}
} ;
2020-04-13 16:38:06 +00:00
class cItemBottleOEnchantingHandler:
public cItemThrowableHandler
{
2020-04-13 16:38:06 +00:00
using Super = cItemThrowableHandler;
public:
2020-04-13 16:38:06 +00:00
cItemBottleOEnchantingHandler():
Super(E_ITEM_BOTTLE_O_ENCHANTING, cProjectileEntity::pkExpBottle, 14)
{
}
};
2020-04-13 16:38:06 +00:00
class cItemFireworkHandler:
public cItemThrowableHandler
{
2020-04-13 16:38:06 +00:00
using Super = cItemThrowableHandler;
public:
2020-04-13 16:38:06 +00:00
cItemFireworkHandler():
Super(E_ITEM_FIREWORK_ROCKET, cProjectileEntity::pkFirework, 0)
{
}
virtual bool OnItemUse(
cWorld * a_World,
cPlayer * a_Player,
cBlockPluginInterface & a_PluginInterface,
const cItem & a_HeldItem,
const Vector3i a_ClickedBlockPos,
eBlockFace a_ClickedBlockFace
) override
{
if (a_World->GetBlock(a_ClickedBlockPos) == E_BLOCK_AIR)
{
return false;
}
if (a_World->CreateProjectile(Vector3d(a_ClickedBlockPos) + Vector3d(0.5, 1, 0.5), m_ProjectileKind, a_Player, &a_Player->GetEquippedItem()) == 0)
2014-04-23 20:06:07 +00:00
{
return false;
}
if (!a_Player->IsGameModeCreative())
{
a_Player->GetInventory().RemoveOneEquippedItem();
}
return true;
}
};