diff options
author | HaoTNN <haotnn@gmail.com> | 2015-06-03 11:57:07 +0200 |
---|---|---|
committer | HaoTNN <haotnn@gmail.com> | 2015-06-03 11:57:07 +0200 |
commit | 6f1a3cb6dd6c102342eb8cfa901530f4d022c98c (patch) | |
tree | 697e29dfcf31001023ac87b325ea41f047dd16ae /src/ClientHandle.cpp | |
parent | Fixes multiple furnace issues, including from loading world storage (diff) | |
parent | Merge pull request #2199 from jan64/master (diff) | |
download | cuberite-6f1a3cb6dd6c102342eb8cfa901530f4d022c98c.tar cuberite-6f1a3cb6dd6c102342eb8cfa901530f4d022c98c.tar.gz cuberite-6f1a3cb6dd6c102342eb8cfa901530f4d022c98c.tar.bz2 cuberite-6f1a3cb6dd6c102342eb8cfa901530f4d022c98c.tar.lz cuberite-6f1a3cb6dd6c102342eb8cfa901530f4d022c98c.tar.xz cuberite-6f1a3cb6dd6c102342eb8cfa901530f4d022c98c.tar.zst cuberite-6f1a3cb6dd6c102342eb8cfa901530f4d022c98c.zip |
Diffstat (limited to 'src/ClientHandle.cpp')
-rw-r--r-- | src/ClientHandle.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index e3f63b091..d89f7ab77 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -2113,6 +2113,64 @@ void cClientHandle::SendChat(const cCompositeChat & a_Message) +void cClientHandle::SendChatAboveActionBar(const AString & a_Message, eMessageType a_ChatPrefix, const AString & a_AdditionalData) +{ + cWorld * World = GetPlayer()->GetWorld(); + if (World == nullptr) + { + World = cRoot::Get()->GetWorld(GetPlayer()->GetLoadedWorldName()); + if (World == nullptr) + { + World = cRoot::Get()->GetDefaultWorld(); + } + } + + AString Message = FormatMessageType(World->ShouldUseChatPrefixes(), a_ChatPrefix, a_AdditionalData); + m_Protocol->SendChatAboveActionBar(Message.append(a_Message)); +} + + + + + +void cClientHandle::SendChatAboveActionBar(const cCompositeChat & a_Message) +{ + m_Protocol->SendChatAboveActionBar(a_Message); +} + + + + + +void cClientHandle::SendChatSystem(const AString & a_Message, eMessageType a_ChatPrefix, const AString & a_AdditionalData) +{ + cWorld * World = GetPlayer()->GetWorld(); + if (World == nullptr) + { + World = cRoot::Get()->GetWorld(GetPlayer()->GetLoadedWorldName()); + if (World == nullptr) + { + World = cRoot::Get()->GetDefaultWorld(); + } + } + + AString Message = FormatMessageType(World->ShouldUseChatPrefixes(), a_ChatPrefix, a_AdditionalData); + m_Protocol->SendChatSystem(Message.append(a_Message)); +} + + + + + +void cClientHandle::SendChatSystem(const cCompositeChat & a_Message) +{ + m_Protocol->SendChatSystem(a_Message); +} + + + + + void cClientHandle::SendChunkData(int a_ChunkX, int a_ChunkZ, cChunkDataSerializer & a_Serializer) { ASSERT(m_Player != nullptr); |