diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-11-26 18:21:06 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-11-26 18:21:06 +0100 |
commit | 0de95a215f960c51bd7180218c1acef2414ce7d0 (patch) | |
tree | 80c80002565be1dc2fa537416ca7e6a1fd3e9da0 /src/Protocol/Protocol125.cpp | |
parent | Merge branch 'master' into foldermove2 (diff) | |
parent | cWorld::SpawnExperienceOrb() now returns the entity ID of the spawned orb. (diff) | |
download | cuberite-0de95a215f960c51bd7180218c1acef2414ce7d0.tar cuberite-0de95a215f960c51bd7180218c1acef2414ce7d0.tar.gz cuberite-0de95a215f960c51bd7180218c1acef2414ce7d0.tar.bz2 cuberite-0de95a215f960c51bd7180218c1acef2414ce7d0.tar.lz cuberite-0de95a215f960c51bd7180218c1acef2414ce7d0.tar.xz cuberite-0de95a215f960c51bd7180218c1acef2414ce7d0.tar.zst cuberite-0de95a215f960c51bd7180218c1acef2414ce7d0.zip |
Diffstat (limited to 'src/Protocol/Protocol125.cpp')
-rw-r--r-- | src/Protocol/Protocol125.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Protocol/Protocol125.cpp b/src/Protocol/Protocol125.cpp index 54be65b12..b1dd17ea1 100644 --- a/src/Protocol/Protocol125.cpp +++ b/src/Protocol/Protocol125.cpp @@ -17,6 +17,7 @@ Documentation: #include "../World.h" #include "ChunkDataSerializer.h" #include "../Entities/Entity.h" +#include "../Entities/ExpOrb.h" #include "../Mobs/Monster.h" #include "../Entities/Pickup.h" #include "../Entities/Player.h" @@ -72,6 +73,7 @@ enum PACKET_ENT_STATUS = 0x26, PACKET_ATTACH_ENTITY = 0x27, PACKET_METADATA = 0x28, + PACKET_SPAWN_EXPERIENCE_ORB = 0x1A, PACKET_EXPERIENCE = 0x2b, PACKET_PRE_CHUNK = 0x32, PACKET_MAP_CHUNK = 0x33, @@ -705,6 +707,22 @@ void cProtocol125::SendExperience(void) +void cProtocol125::SendExperienceOrb(const cExpOrb & a_ExpOrb) +{ + cCSLock Lock(m_CSPacket); + WriteByte(PACKET_SPAWN_EXPERIENCE_ORB); + WriteInt(a_ExpOrb.GetUniqueID()); + WriteInt((int) a_ExpOrb.GetPosX()); + WriteInt((int) a_ExpOrb.GetPosY()); + WriteInt((int) a_ExpOrb.GetPosZ()); + WriteShort(a_ExpOrb.GetReward()); + Flush(); +} + + + + + void cProtocol125::SendSoundEffect(const AString & a_SoundName, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch) { // Not needed in this protocol version |