diff options
author | Mattes D <github@xoft.cz> | 2014-01-22 15:05:17 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-01-22 15:05:17 +0100 |
commit | 26586fdb92c7924e47debf6946fbdbe06775ae19 (patch) | |
tree | 093a0fa1ad5de0cc2e7dd90f49a3a3ab6429ac5b /src/Protocol/ProtocolRecognizer.cpp | |
parent | InfoDump: Can dump a single plugin without LFS. (diff) | |
parent | cWorld now saves/loads the scoreboard (diff) | |
download | cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.gz cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.bz2 cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.lz cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.xz cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.tar.zst cuberite-26586fdb92c7924e47debf6946fbdbe06775ae19.zip |
Diffstat (limited to 'src/Protocol/ProtocolRecognizer.cpp')
-rw-r--r-- | src/Protocol/ProtocolRecognizer.cpp | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/src/Protocol/ProtocolRecognizer.cpp b/src/Protocol/ProtocolRecognizer.cpp index 5524af136..de5dd3fb9 100644 --- a/src/Protocol/ProtocolRecognizer.cpp +++ b/src/Protocol/ProtocolRecognizer.cpp @@ -526,6 +526,36 @@ void cProtocolRecognizer::SendExperienceOrb(const cExpOrb & a_ExpOrb) +void cProtocolRecognizer::SendScoreboardObjective(const AString & a_Name, const AString & a_DisplayName, Byte a_Mode) +{ + ASSERT(m_Protocol != NULL); + m_Protocol->SendScoreboardObjective(a_Name, a_DisplayName, a_Mode); +} + + + + + +void cProtocolRecognizer::SendScoreUpdate(const AString & a_Objective, const AString & a_Player, cObjective::Score a_Score, Byte a_Mode) +{ + ASSERT(m_Protocol != NULL); + m_Protocol->SendScoreUpdate(a_Objective, a_Player, a_Score, a_Mode); +} + + + + + +void cProtocolRecognizer::SendDisplayObjective(const AString & a_Objective, cScoreboard::eDisplaySlot a_Display) +{ + ASSERT(m_Protocol != NULL); + m_Protocol->SendDisplayObjective(a_Objective, a_Display); +} + + + + + void cProtocolRecognizer::SendSoundEffect(const AString & a_SoundName, int a_SrcX, int a_SrcY, int a_SrcZ, float a_Volume, float a_Pitch) { ASSERT(m_Protocol != NULL); @@ -807,7 +837,7 @@ bool cProtocolRecognizer::TryRecognizeLengthlessProtocol(void) } switch (ch) { - case PROTO_VERSION_1_3_2: + case PROTO_VERSION_1_3_2: { m_Protocol = new cProtocol132(m_Client); return true; |