mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 18:10:26 +00:00
158 lines
7.4 KiB
C++
158 lines
7.4 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#include "ScriptMgr.h"
|
|
#include "Channel.h"
|
|
#include "Guild.h"
|
|
#include "Group.h"
|
|
|
|
class ChatLogScript : public PlayerScript
|
|
{
|
|
public:
|
|
ChatLogScript() : PlayerScript("ChatLogScript") { }
|
|
|
|
void OnChat(Player* player, uint32 type, uint32 lang, std::string& msg)
|
|
{
|
|
switch (type)
|
|
{
|
|
case CHAT_MSG_ADDON:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_ADDON))
|
|
sLog->outChat("[ADDON] Player %s sends: %s",
|
|
player->GetName().c_str(), msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_SAY:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_PUBLIC))
|
|
sLog->outChat("[SAY] Player %s says (language %u): %s",
|
|
player->GetName().c_str(), lang, msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_EMOTE:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_PUBLIC))
|
|
sLog->outChat("[TEXTEMOTE] Player %s emotes: %s",
|
|
player->GetName().c_str(), msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_YELL:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_PUBLIC))
|
|
sLog->outChat("[YELL] Player %s yells (language %u): %s",
|
|
player->GetName().c_str(), lang, msg.c_str());
|
|
break;
|
|
}
|
|
}
|
|
|
|
void OnChat(Player* player, uint32 /*type*/, uint32 lang, std::string& msg, Player* receiver)
|
|
{
|
|
if (lang != LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_WHISPER))
|
|
sLog->outChat("[WHISPER] Player %s tells %s: %s",
|
|
player->GetName().c_str(), receiver ? receiver->GetName().c_str() : "<unknown>", msg.c_str());
|
|
else if (lang == LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_ADDON))
|
|
sLog->outChat("[ADDON] Player %s tells %s: %s",
|
|
player->GetName().c_str(), receiver ? receiver->GetName().c_str() : "<unknown>", msg.c_str());
|
|
}
|
|
|
|
void OnChat(Player* player, uint32 type, uint32 lang, std::string& msg, Group* group)
|
|
{
|
|
//! NOTE:
|
|
//! LANG_ADDON can only be sent by client in "PARTY", "RAID", "GUILD", "BATTLEGROUND", "WHISPER"
|
|
switch (type)
|
|
{
|
|
case CHAT_MSG_PARTY:
|
|
if (lang != LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_PARTY))
|
|
sLog->outChat("[PARTY] Player %s tells group with leader %s: %s",
|
|
player->GetName().c_str(), group ? group->GetLeaderName() : "<unknown>", msg.c_str());
|
|
else if (lang == LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_ADDON))
|
|
sLog->outChat("[ADDON] Player %s tells group with leader %s: %s",
|
|
player->GetName().c_str(), group ? group->GetLeaderName() : "<unknown>", msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_PARTY_LEADER:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_PARTY))
|
|
sLog->outChat("[PARTY] Leader %s tells group: %s",
|
|
player->GetName().c_str(), msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_RAID:
|
|
if (lang != LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_RAID))
|
|
sLog->outChat("[RAID] Player %s tells raid with leader %s: %s",
|
|
player->GetName().c_str(), group ? group->GetLeaderName() : "<unknown>", msg.c_str());
|
|
else if (lang == LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_ADDON))
|
|
sLog->outChat("[ADDON] Player %s tells raid with leader %s: %s",
|
|
player->GetName().c_str(), group ? group->GetLeaderName() : "<unknown>", msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_RAID_LEADER:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_RAID))
|
|
sLog->outChat("[RAID] Leader player %s tells raid: %s",
|
|
player->GetName().c_str(), msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_RAID_WARNING:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_RAID))
|
|
sLog->outChat("[RAID] Leader player %s warns raid with: %s",
|
|
player->GetName().c_str(), msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_BATTLEGROUND:
|
|
if (lang != LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_BGROUND))
|
|
sLog->outChat("[BATTLEGROUND] Player %s tells battleground with leader %s: %s",
|
|
player->GetName().c_str(), group ? group->GetLeaderName() : "<unknown>", msg.c_str());
|
|
else if (lang == LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_ADDON))
|
|
sLog->outChat("[ADDON] Player %s tells battleground with leader %s: %s",
|
|
player->GetName().c_str(), group ? group->GetLeaderName() : "<unknown>", msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_BATTLEGROUND_LEADER:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_BGROUND))
|
|
sLog->outChat("[BATTLEGROUND] Leader player %s tells battleground: %s",
|
|
player->GetName().c_str(), msg.c_str());
|
|
break;
|
|
}
|
|
}
|
|
|
|
void OnChat(Player* player, uint32 type, uint32 lang, std::string& msg, Guild* guild)
|
|
{
|
|
switch (type)
|
|
{
|
|
case CHAT_MSG_GUILD:
|
|
if (lang != LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_GUILD))
|
|
sLog->outChat("[GUILD] Player %s tells guild %s: %s",
|
|
player->GetName().c_str(), guild ? guild->GetName().c_str() : "<unknown>", msg.c_str());
|
|
else if (lang == LANG_ADDON && sWorld->getBoolConfig(CONFIG_CHATLOG_ADDON))
|
|
sLog->outChat("[ADDON] Player %s sends to guild %s: %s",
|
|
player->GetName().c_str(), guild ? guild->GetName().c_str() : "<unknown>", msg.c_str());
|
|
break;
|
|
|
|
case CHAT_MSG_OFFICER:
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_GUILD))
|
|
sLog->outChat("[OFFICER] Player %s tells guild %s officers: %s",
|
|
player->GetName().c_str(), guild ? guild->GetName().c_str() : "<unknown>", msg.c_str());
|
|
break;
|
|
}
|
|
}
|
|
|
|
void OnChat(Player* player, uint32 /*type*/, uint32 /*lang*/, std::string& msg, Channel* channel)
|
|
{
|
|
bool isSystem = channel &&
|
|
(channel->HasFlag(CHANNEL_FLAG_TRADE) ||
|
|
channel->HasFlag(CHANNEL_FLAG_GENERAL) ||
|
|
channel->HasFlag(CHANNEL_FLAG_CITY) ||
|
|
channel->HasFlag(CHANNEL_FLAG_LFG));
|
|
|
|
if (sWorld->getBoolConfig(CONFIG_CHATLOG_SYSCHAN) && isSystem)
|
|
sLog->outChat("[SYSCHAN] Player %s tells channel %s: %s",
|
|
player->GetName().c_str(), channel->GetName().c_str(), msg.c_str());
|
|
else if (sWorld->getBoolConfig(CONFIG_CHATLOG_CHANNEL))
|
|
sLog->outChat("[CHANNEL] Player %s tells channel %s: %s",
|
|
player->GetName().c_str(), channel ? channel->GetName().c_str() : "<unknown>", msg.c_str());
|
|
}
|
|
};
|
|
|
|
void AddSC_chat_log()
|
|
{
|
|
new ChatLogScript();
|
|
}
|