2013-08-30 12:10:58 -04:00
|
|
|
|
2019-05-11 15:43:26 -04:00
|
|
|
// Declares the itemhandlers for throwable items: eggs, snowballs, ender pearls, and eyes of ender.
|
2013-08-30 12:10:58 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-04-13 12:38:06 -04:00
|
|
|
class cItemThrowableHandler:
|
2013-08-30 12:10:58 -04:00
|
|
|
public cItemHandler
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cItemHandler;
|
|
|
|
|
2013-08-30 12:10:58 -04:00
|
|
|
public:
|
2020-04-13 12:38:06 -04:00
|
|
|
|
|
|
|
cItemThrowableHandler(int a_ItemType, cProjectileEntity::eKind a_ProjectileKind, double a_SpeedCoeff):
|
|
|
|
Super(a_ItemType),
|
2013-08-30 12:10:58 -04:00
|
|
|
m_ProjectileKind(a_ProjectileKind),
|
|
|
|
m_SpeedCoeff(a_SpeedCoeff)
|
|
|
|
{
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-08-30 12:10:58 -04:00
|
|
|
|
2015-04-14 04:49:01 -04:00
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
2015-04-14 04:49:01 -04:00
|
|
|
virtual bool OnItemUse(
|
2020-04-21 16:19:22 -04:00
|
|
|
cWorld * a_World,
|
|
|
|
cPlayer * a_Player,
|
|
|
|
cBlockPluginInterface & a_PluginInterface,
|
|
|
|
const cItem & a_HeldItem,
|
|
|
|
const Vector3i a_ClickedBlockPos,
|
|
|
|
eBlockFace a_ClickedBlockFace
|
2015-04-14 04:49:01 -04:00
|
|
|
) override
|
2013-08-30 12:10:58 -04:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
auto Pos = a_Player->GetThrowStartPos();
|
|
|
|
auto Speed = a_Player->GetLookVector() * m_SpeedCoeff;
|
2014-05-28 10:39:59 -04:00
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
// Create the projectile:
|
2015-03-21 10:18:17 -04: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 18:45:35 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
// 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
|
2013-11-02 10:08:00 -04:00
|
|
|
if (!a_Player->IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player->GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
|
2013-08-30 12:10:58 -04:00
|
|
|
return true;
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-08-30 12:10:58 -04:00
|
|
|
protected:
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
/** The kind of projectile to create when shooting */
|
2013-08-30 12:10:58 -04:00
|
|
|
cProjectileEntity::eKind m_ProjectileKind;
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
/** The speed multiplier (to the player's normalized look vector) to set for the new projectile. */
|
2013-08-30 12:10:58 -04:00
|
|
|
double m_SpeedCoeff;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-04-13 12:38:06 -04:00
|
|
|
class cItemEggHandler:
|
2013-08-30 12:10:58 -04:00
|
|
|
public cItemThrowableHandler
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cItemThrowableHandler;
|
|
|
|
|
2013-08-30 12:10:58 -04:00
|
|
|
public:
|
2020-04-13 12:38:06 -04:00
|
|
|
|
|
|
|
cItemEggHandler():
|
|
|
|
Super(E_ITEM_EGG, cProjectileEntity::pkEgg, 30)
|
2013-08-30 12:10:58 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-04-13 12:38:06 -04:00
|
|
|
class cItemSnowballHandler:
|
2013-08-30 12:10:58 -04:00
|
|
|
public cItemThrowableHandler
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cItemThrowableHandler;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-08-30 12:10:58 -04:00
|
|
|
public:
|
2020-04-13 12:38:06 -04:00
|
|
|
|
|
|
|
cItemSnowballHandler():
|
|
|
|
Super(E_ITEM_SNOWBALL, cProjectileEntity::pkSnowball, 30)
|
2013-08-30 12:10:58 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-04-13 12:38:06 -04:00
|
|
|
class cItemEnderPearlHandler:
|
2013-08-30 12:10:58 -04:00
|
|
|
public cItemThrowableHandler
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cItemThrowableHandler;
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2013-08-30 12:10:58 -04:00
|
|
|
public:
|
2020-04-13 12:38:06 -04:00
|
|
|
|
|
|
|
cItemEnderPearlHandler():
|
|
|
|
Super(E_ITEM_ENDER_PEARL, cProjectileEntity::pkEnderPearl, 30)
|
2013-08-30 12:10:58 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-16 15:58:17 -05:00
|
|
|
|
2020-04-13 12:38:06 -04:00
|
|
|
class cItemBottleOEnchantingHandler:
|
2013-11-16 15:58:17 -05:00
|
|
|
public cItemThrowableHandler
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cItemThrowableHandler;
|
|
|
|
|
2013-11-16 15:58:17 -05:00
|
|
|
public:
|
2020-04-13 12:38:06 -04:00
|
|
|
|
|
|
|
cItemBottleOEnchantingHandler():
|
|
|
|
Super(E_ITEM_BOTTLE_O_ENCHANTING, cProjectileEntity::pkExpBottle, 14)
|
2013-11-16 15:58:17 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-04-13 12:38:06 -04:00
|
|
|
class cItemFireworkHandler:
|
2013-11-16 15:58:17 -05:00
|
|
|
public cItemThrowableHandler
|
|
|
|
{
|
2020-04-13 12:38:06 -04:00
|
|
|
using Super = cItemThrowableHandler;
|
|
|
|
|
2013-11-16 15:58:17 -05:00
|
|
|
public:
|
2020-04-13 12:38:06 -04:00
|
|
|
|
|
|
|
cItemFireworkHandler():
|
|
|
|
Super(E_ITEM_FIREWORK_ROCKET, cProjectileEntity::pkFirework, 0)
|
2013-11-16 15:58:17 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-04-14 04:49:01 -04:00
|
|
|
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
|
|
|
|
|
2015-04-14 04:49:01 -04:00
|
|
|
virtual bool OnItemUse(
|
2020-04-21 16:19:22 -04:00
|
|
|
cWorld * a_World,
|
|
|
|
cPlayer * a_Player,
|
|
|
|
cBlockPluginInterface & a_PluginInterface,
|
|
|
|
const cItem & a_HeldItem,
|
|
|
|
const Vector3i a_ClickedBlockPos,
|
|
|
|
eBlockFace a_ClickedBlockFace
|
2015-04-14 04:49:01 -04:00
|
|
|
) override
|
2013-11-16 15:58:17 -05:00
|
|
|
{
|
2020-04-21 16:19:22 -04:00
|
|
|
if (a_World->GetBlock(a_ClickedBlockPos) == E_BLOCK_AIR)
|
2013-11-16 15:58:17 -05:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-21 16:19:22 -04:00
|
|
|
if (a_World->CreateProjectile(Vector3d(a_ClickedBlockPos) + Vector3d(0.5, 1, 0.5), m_ProjectileKind, a_Player, &a_Player->GetEquippedItem()) == 0)
|
2014-04-23 16:06:07 -04:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-26 18:29:14 -05:00
|
|
|
|
2013-11-16 15:58:17 -05:00
|
|
|
if (!a_Player->IsGameModeCreative())
|
|
|
|
{
|
|
|
|
a_Player->GetInventory().RemoveOneEquippedItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-04 13:59:05 -05:00
|
|
|
};
|