diff options
author | Mattes D <github@xoft.cz> | 2014-07-19 13:29:50 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-07-19 13:29:50 +0200 |
commit | e9a9bbf02e563b9ea121aefe0f82ed5dd74d1686 (patch) | |
tree | ca52fbde3b744760e8dd9c1845d0ac7714a432ce /src/Entities/SplashPotionEntity.cpp | |
parent | Renamed AllToLua_lua script. (diff) | |
parent | Splash potions: Renamed PotionParticleType to PotionColor for clarity (diff) | |
download | cuberite-e9a9bbf02e563b9ea121aefe0f82ed5dd74d1686.tar cuberite-e9a9bbf02e563b9ea121aefe0f82ed5dd74d1686.tar.gz cuberite-e9a9bbf02e563b9ea121aefe0f82ed5dd74d1686.tar.bz2 cuberite-e9a9bbf02e563b9ea121aefe0f82ed5dd74d1686.tar.lz cuberite-e9a9bbf02e563b9ea121aefe0f82ed5dd74d1686.tar.xz cuberite-e9a9bbf02e563b9ea121aefe0f82ed5dd74d1686.tar.zst cuberite-e9a9bbf02e563b9ea121aefe0f82ed5dd74d1686.zip |
Diffstat (limited to 'src/Entities/SplashPotionEntity.cpp')
-rw-r--r-- | src/Entities/SplashPotionEntity.cpp | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/src/Entities/SplashPotionEntity.cpp b/src/Entities/SplashPotionEntity.cpp index 3efb1f25d..056700629 100644 --- a/src/Entities/SplashPotionEntity.cpp +++ b/src/Entities/SplashPotionEntity.cpp @@ -2,11 +2,15 @@ #include "SplashPotionEntity.h" #include "Pawn.h" +#include "../ClientHandle.h" +/// Converts an angle in radians into a byte representation used by the network protocol +#define ANGLE_TO_PROTO(X) (Byte)(X * 255 / 360) + //////////////////////////////////////////////////////////////////////////////// // cSplashPotionEntityCallback: @@ -72,12 +76,12 @@ cSplashPotionEntity::cSplashPotionEntity( const Vector3d & a_Speed, cEntityEffect::eType a_EntityEffectType, cEntityEffect a_EntityEffect, - int a_PotionParticleType + int a_PotionColor ) : super(pkSplashPotion, a_Creator, a_X, a_Y, a_Z, 0.25, 0.25), m_EntityEffectType(a_EntityEffectType), m_EntityEffect(a_EntityEffect), - m_PotionParticleType(a_PotionParticleType) + m_PotionColor(a_PotionColor) { SetSpeed(a_Speed); } @@ -112,7 +116,17 @@ void cSplashPotionEntity::Splash(const Vector3d & a_HitPos) cSplashPotionCallback Callback(a_HitPos, m_EntityEffectType, m_EntityEffect); m_World->ForEachEntity(Callback); - m_World->BroadcastSoundParticleEffect(2002, (int)a_HitPos.x, (int)a_HitPos.y, (int)a_HitPos.z, m_PotionParticleType); + m_World->BroadcastSoundParticleEffect(2002, (int)a_HitPos.x, (int)a_HitPos.y, (int)a_HitPos.z, m_PotionColor); +} + + + + + +void cSplashPotionEntity::SpawnOn(cClientHandle & a_Client) +{ + a_Client.SendSpawnObject(*this, 73, m_PotionColor, ANGLE_TO_PROTO(GetYaw()), ANGLE_TO_PROTO(GetPitch())); + a_Client.SendEntityMetadata(*this); } |