2014-06-06 03:16:33 -04:00
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
#include "SplashPotionEntity.h"
|
2014-06-08 21:14:34 -04:00
|
|
|
#include "Pawn.h"
|
2014-07-19 05:46:31 -04:00
|
|
|
#include "../ClientHandle.h"
|
2015-11-23 18:39:19 -05:00
|
|
|
#include "../EffectID.h"
|
2014-06-06 03:16:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-07-31 10:49:10 -04:00
|
|
|
/** Converts an angle in radians into a byte representation used by the network protocol */
|
2015-05-24 07:56:56 -04:00
|
|
|
#define ANGLE_TO_PROTO(X) static_cast<Byte>(X * 255 / 360)
|
2014-07-19 05:46:31 -04:00
|
|
|
|
2015-07-31 10:49:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2014-07-15 16:41:42 -04:00
|
|
|
// cSplashPotionEntityCallback:
|
|
|
|
|
|
|
|
/** Used to distribute the splashed potion effect among nearby entities */
|
|
|
|
class cSplashPotionCallback :
|
|
|
|
public cEntityCallback
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** Creates the callback.
|
|
|
|
@param a_HitPos The position where the splash potion has splashed
|
|
|
|
@param a_EntityEffectType The effect type of the potion
|
|
|
|
@param a_EntityEffect The effect description */
|
|
|
|
cSplashPotionCallback(const Vector3d & a_HitPos, cEntityEffect::eType a_EntityEffectType, const cEntityEffect & a_EntityEffect) :
|
|
|
|
m_HitPos(a_HitPos),
|
|
|
|
m_EntityEffectType(a_EntityEffectType),
|
|
|
|
m_EntityEffect(a_EntityEffect)
|
|
|
|
{
|
|
|
|
}
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-07-15 16:41:42 -04:00
|
|
|
/** Called by cWorld::ForEachEntity(), adds the stored entity effect to the entity, if it is close enough. */
|
|
|
|
virtual bool Item(cEntity * a_Entity) override
|
|
|
|
{
|
2014-07-20 08:39:14 -04:00
|
|
|
if (!a_Entity->IsPawn())
|
2014-07-15 16:41:42 -04:00
|
|
|
{
|
2014-07-20 08:39:14 -04:00
|
|
|
// Not an entity that can take effects
|
2014-07-15 16:41:42 -04:00
|
|
|
return false;
|
|
|
|
}
|
2014-07-20 08:39:14 -04:00
|
|
|
|
|
|
|
double SplashDistance = (a_Entity->GetPosition() - m_HitPos).Length();
|
|
|
|
if (SplashDistance >= 20)
|
2014-07-15 16:41:42 -04:00
|
|
|
{
|
2014-07-20 08:39:14 -04:00
|
|
|
// Too far away
|
2014-07-15 16:41:42 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// y = -0.25x + 1, where x is the distance from the player. Approximation for potion splash.
|
|
|
|
// TODO: better equation
|
|
|
|
double Reduction = -0.25 * SplashDistance + 1.0;
|
2014-07-19 04:40:29 -04:00
|
|
|
Reduction = std::max(Reduction, 0.0);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2015-05-24 07:56:56 -04:00
|
|
|
static_cast<cPawn *>(a_Entity)->AddEntityEffect(m_EntityEffectType, m_EntityEffect.GetDuration(), m_EntityEffect.GetIntensity(), Reduction);
|
2014-07-15 16:41:42 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Vector3d & m_HitPos;
|
|
|
|
cEntityEffect::eType m_EntityEffectType;
|
|
|
|
const cEntityEffect & m_EntityEffect;
|
|
|
|
};
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2014-07-15 16:41:42 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2014-07-15 16:41:42 -04:00
|
|
|
// cSplashPotionEntity:
|
|
|
|
|
|
|
|
cSplashPotionEntity::cSplashPotionEntity(
|
|
|
|
cEntity * a_Creator,
|
|
|
|
double a_X, double a_Y, double a_Z,
|
|
|
|
const Vector3d & a_Speed,
|
2014-07-26 06:55:40 -04:00
|
|
|
const cItem & a_Item
|
2014-07-15 16:41:42 -04:00
|
|
|
) :
|
2014-06-08 00:56:01 -04:00
|
|
|
super(pkSplashPotion, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25),
|
2014-07-20 04:38:36 -04:00
|
|
|
m_DestroyTimer(-1)
|
2014-06-06 03:16:33 -04:00
|
|
|
{
|
|
|
|
SetSpeed(a_Speed);
|
2014-07-20 05:56:59 -04:00
|
|
|
m_EntityEffectType = cEntityEffect::GetPotionEffectType(a_Item.m_ItemDamage);
|
|
|
|
m_EntityEffect = cEntityEffect(
|
|
|
|
cEntityEffect::GetPotionEffectDuration(a_Item.m_ItemDamage),
|
|
|
|
cEntityEffect::GetPotionEffectIntensity(a_Item.m_ItemDamage)
|
|
|
|
);
|
|
|
|
m_PotionColor = cEntityEffect::GetPotionColor(a_Item.m_ItemDamage);
|
2014-06-06 03:16:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cSplashPotionEntity::OnHitSolidBlock(const Vector3d & a_HitPos, eBlockFace a_HitFace)
|
|
|
|
{
|
2014-06-08 00:56:01 -04:00
|
|
|
Splash(a_HitPos);
|
2014-07-20 04:38:36 -04:00
|
|
|
m_DestroyTimer = 2;
|
2014-06-06 03:16:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cSplashPotionEntity::OnHitEntity(cEntity & a_EntityHit, const Vector3d & a_HitPos)
|
|
|
|
{
|
|
|
|
a_EntityHit.TakeDamage(dtRangedAttack, this, 0, 1);
|
2014-06-08 00:56:01 -04:00
|
|
|
Splash(a_HitPos);
|
2014-07-20 04:38:36 -04:00
|
|
|
m_DestroyTimer = 5;
|
2014-06-08 00:56:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cSplashPotionEntity::Splash(const Vector3d & a_HitPos)
|
|
|
|
{
|
|
|
|
cSplashPotionCallback Callback(a_HitPos, m_EntityEffectType, m_EntityEffect);
|
2014-06-08 21:14:34 -04:00
|
|
|
m_World->ForEachEntity(Callback);
|
2016-02-05 16:45:45 -05:00
|
|
|
|
2015-05-24 07:56:56 -04:00
|
|
|
m_World->BroadcastSoundParticleEffect(
|
2015-11-23 18:39:19 -05:00
|
|
|
EffectID::PARTICLE_SPLASH_POTION,
|
2015-05-28 07:29:26 -04:00
|
|
|
FloorC(a_HitPos.x),
|
|
|
|
FloorC(a_HitPos.y),
|
|
|
|
FloorC(a_HitPos.z),
|
|
|
|
m_PotionColor
|
|
|
|
);
|
2014-06-06 03:16:33 -04:00
|
|
|
}
|
2014-06-13 05:04:16 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-07-19 05:46:31 -04:00
|
|
|
|
|
|
|
void cSplashPotionEntity::SpawnOn(cClientHandle & a_Client)
|
|
|
|
{
|
2014-07-19 05:51:39 -04:00
|
|
|
a_Client.SendSpawnObject(*this, 73, m_PotionColor, ANGLE_TO_PROTO(GetYaw()), ANGLE_TO_PROTO(GetPitch()));
|
2014-07-19 05:46:31 -04:00
|
|
|
a_Client.SendEntityMetadata(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|