mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 20:56:23 +00:00
324 lines
16 KiB
C++
324 lines
16 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-GPL2
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#ifndef _CHANNEL_H
|
|
#define _CHANNEL_H
|
|
|
|
#include <list>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "Common.h"
|
|
#include "GameTime.h"
|
|
|
|
#include "Opcodes.h"
|
|
#include "WorldPacket.h"
|
|
|
|
class Player;
|
|
|
|
#define CHANNEL_BAN_DURATION DAY*60
|
|
|
|
enum ChatNotify
|
|
{
|
|
CHAT_JOINED_NOTICE = 0x00, //+ "%s joined channel.";
|
|
CHAT_LEFT_NOTICE = 0x01, //+ "%s left channel.";
|
|
//CHAT_SUSPENDED_NOTICE = 0x01, // "%s left channel.";
|
|
CHAT_YOU_JOINED_NOTICE = 0x02, //+ "Joined Channel: [%s]"; -- You joined
|
|
//CHAT_YOU_CHANGED_NOTICE = 0x02, // "Changed Channel: [%s]";
|
|
CHAT_YOU_LEFT_NOTICE = 0x03, //+ "Left Channel: [%s]"; -- You left
|
|
CHAT_WRONG_PASSWORD_NOTICE = 0x04, //+ "Wrong password for %s.";
|
|
CHAT_NOT_MEMBER_NOTICE = 0x05, //+ "Not on channel %s.";
|
|
CHAT_NOT_MODERATOR_NOTICE = 0x06, //+ "Not a moderator of %s.";
|
|
CHAT_PASSWORD_CHANGED_NOTICE = 0x07, //+ "[%s] Password changed by %s.";
|
|
CHAT_OWNER_CHANGED_NOTICE = 0x08, //+ "[%s] Owner changed to %s.";
|
|
CHAT_PLAYER_NOT_FOUND_NOTICE = 0x09, //+ "[%s] Player %s was not found.";
|
|
CHAT_NOT_OWNER_NOTICE = 0x0A, //+ "[%s] You are not the channel owner.";
|
|
CHAT_CHANNEL_OWNER_NOTICE = 0x0B, //+ "[%s] Channel owner is %s.";
|
|
CHAT_MODE_CHANGE_NOTICE = 0x0C, //?
|
|
CHAT_ANNOUNCEMENTS_ON_NOTICE = 0x0D, //+ "[%s] Channel announcements enabled by %s.";
|
|
CHAT_ANNOUNCEMENTS_OFF_NOTICE = 0x0E, //+ "[%s] Channel announcements disabled by %s.";
|
|
// CHAT_MODERATION_ON_NOTICE = 0x0F, //+ "[%s] Channel moderation enabled by %s.";
|
|
// CHAT_MODERATION_OFF_NOTICE = 0x10, //+ "[%s] Channel moderation disabled by %s.";
|
|
CHAT_MUTED_NOTICE = 0x11, //+ "[%s] You do not have permission to speak.";
|
|
CHAT_PLAYER_KICKED_NOTICE = 0x12, //? "[%s] Player %s kicked by %s.";
|
|
CHAT_BANNED_NOTICE = 0x13, //+ "[%s] You are bannedStore from that channel.";
|
|
CHAT_PLAYER_BANNED_NOTICE = 0x14, //? "[%s] Player %s bannedStore by %s.";
|
|
CHAT_PLAYER_UNBANNED_NOTICE = 0x15, //? "[%s] Player %s unbanned by %s.";
|
|
CHAT_PLAYER_NOT_BANNED_NOTICE = 0x16, //+ "[%s] Player %s is not bannedStore.";
|
|
CHAT_PLAYER_ALREADY_MEMBER_NOTICE = 0x17, //+ "[%s] Player %s is already on the channel.";
|
|
CHAT_INVITE_NOTICE = 0x18, //+ "%2$s has invited you to join the channel '%1$s'.";
|
|
CHAT_INVITE_WRONG_FACTION_NOTICE = 0x19, //+ "Target is in the wrong alliance for %s.";
|
|
CHAT_WRONG_FACTION_NOTICE = 0x1A, //+ "Wrong alliance for %s.";
|
|
CHAT_INVALID_NAME_NOTICE = 0x1B, //+ "Invalid channel name";
|
|
CHAT_NOT_MODERATED_NOTICE = 0x1C, //+ "%s is not moderated";
|
|
CHAT_PLAYER_INVITED_NOTICE = 0x1D, //+ "[%s] You invited %s to join the channel";
|
|
CHAT_PLAYER_INVITE_BANNED_NOTICE = 0x1E, //+ "[%s] %s has been bannedStore.";
|
|
CHAT_THROTTLED_NOTICE = 0x1F, //+ "[%s] The number of messages that can be sent to this channel is limited, please wait to send another message.";
|
|
CHAT_NOT_IN_AREA_NOTICE = 0x20, //+ "[%s] You are not in the correct area for this channel."; -- The user is trying to send a chat to a zone specific channel, and they're not physically in that zone.
|
|
CHAT_NOT_IN_LFG_NOTICE = 0x21, //+ "[%s] You must be queued in looking for group before joining this channel."; -- The user must be in the looking for group system to join LFG chat channels.
|
|
CHAT_VOICE_ON_NOTICE = 0x22, //+ "[%s] Channel voice enabled by %s.";
|
|
CHAT_VOICE_OFF_NOTICE = 0x23 //+ "[%s] Channel voice disabled by %s.";
|
|
};
|
|
|
|
enum ChannelFlags
|
|
{
|
|
CHANNEL_FLAG_NONE = 0x00,
|
|
CHANNEL_FLAG_CUSTOM = 0x01,
|
|
// 0x02
|
|
CHANNEL_FLAG_TRADE = 0x04,
|
|
CHANNEL_FLAG_NOT_LFG = 0x08,
|
|
CHANNEL_FLAG_GENERAL = 0x10,
|
|
CHANNEL_FLAG_CITY = 0x20,
|
|
CHANNEL_FLAG_LFG = 0x40,
|
|
CHANNEL_FLAG_VOICE = 0x80
|
|
// General 0x18 = 0x10 | 0x08
|
|
// Trade 0x3C = 0x20 | 0x10 | 0x08 | 0x04
|
|
// LocalDefence 0x18 = 0x10 | 0x08
|
|
// GuildRecruitment 0x38 = 0x20 | 0x10 | 0x08
|
|
// LookingForGroup 0x50 = 0x40 | 0x10
|
|
};
|
|
|
|
enum ChannelDBCFlags
|
|
{
|
|
CHANNEL_DBC_FLAG_NONE = 0x00000,
|
|
CHANNEL_DBC_FLAG_INITIAL = 0x00001, // General, Trade, LocalDefense, LFG
|
|
CHANNEL_DBC_FLAG_ZONE_DEP = 0x00002, // General, Trade, LocalDefense, GuildRecruitment
|
|
CHANNEL_DBC_FLAG_GLOBAL = 0x00004, // WorldDefense
|
|
CHANNEL_DBC_FLAG_TRADE = 0x00008, // Trade, LFG
|
|
CHANNEL_DBC_FLAG_CITY_ONLY = 0x00010, // Trade, GuildRecruitment, LFG
|
|
CHANNEL_DBC_FLAG_CITY_ONLY2 = 0x00020, // Trade, GuildRecruitment, LFG
|
|
CHANNEL_DBC_FLAG_DEFENSE = 0x10000, // LocalDefense, WorldDefense
|
|
CHANNEL_DBC_FLAG_GUILD_REQ = 0x20000, // GuildRecruitment
|
|
CHANNEL_DBC_FLAG_LFG = 0x40000, // LFG
|
|
CHANNEL_DBC_FLAG_UNK1 = 0x80000 // General
|
|
};
|
|
|
|
enum ChannelMemberFlags
|
|
{
|
|
MEMBER_FLAG_NONE = 0x00,
|
|
MEMBER_FLAG_OWNER = 0x01,
|
|
MEMBER_FLAG_MODERATOR = 0x02,
|
|
MEMBER_FLAG_VOICED = 0x04,
|
|
MEMBER_FLAG_MUTED = 0x08,
|
|
MEMBER_FLAG_CUSTOM = 0x10,
|
|
MEMBER_FLAG_MIC_MUTED = 0x20
|
|
// 0x40
|
|
// 0x80
|
|
};
|
|
|
|
class ChannelRights
|
|
{
|
|
public:
|
|
ChannelRights() : flags(0), speakDelay(0) {}
|
|
ChannelRights(const uint32& f, const uint32& d, const std::string& jm, const std::string& sm, const std::set<uint32>& ml) : flags(f), speakDelay(d), joinMessage(jm), speakMessage(sm), moderators(ml) {}
|
|
uint32 flags;
|
|
uint32 speakDelay;
|
|
std::string joinMessage;
|
|
std::string speakMessage;
|
|
std::set<uint32> moderators;
|
|
};
|
|
|
|
enum eChannelRights
|
|
{
|
|
CHANNEL_RIGHT_FORCE_NO_ANNOUNCEMENTS = 0x001,
|
|
CHANNEL_RIGHT_FORCE_ANNOUNCEMENTS = 0x002,
|
|
CHANNEL_RIGHT_NO_OWNERSHIP = 0x004,
|
|
CHANNEL_RIGHT_CANT_SPEAK = 0x008,
|
|
CHANNEL_RIGHT_CANT_BAN = 0x010,
|
|
CHANNEL_RIGHT_CANT_KICK = 0x020,
|
|
CHANNEL_RIGHT_CANT_MUTE = 0x040,
|
|
CHANNEL_RIGHT_CANT_CHANGE_PASSWORD = 0x080,
|
|
CHANNEL_RIGHT_DONT_PRESERVE = 0x100,
|
|
};
|
|
|
|
class Channel
|
|
{
|
|
struct PlayerInfo
|
|
{
|
|
uint64 player;
|
|
uint8 flags;
|
|
Player* plrPtr; // pussywizard
|
|
|
|
bool HasFlag(uint8 flag) const { return flags & flag; }
|
|
void SetFlag(uint8 flag) { if (!HasFlag(flag)) flags |= flag; }
|
|
bool IsOwner() const { return flags & MEMBER_FLAG_OWNER; }
|
|
void SetOwner(bool state)
|
|
{
|
|
if (state) flags |= MEMBER_FLAG_OWNER;
|
|
else flags &= ~MEMBER_FLAG_OWNER;
|
|
}
|
|
bool IsModerator() const { return flags & MEMBER_FLAG_MODERATOR; }
|
|
void SetModerator(bool state)
|
|
{
|
|
if (state) flags |= MEMBER_FLAG_MODERATOR;
|
|
else flags &= ~MEMBER_FLAG_MODERATOR;
|
|
}
|
|
bool IsMuted() const { return flags & MEMBER_FLAG_MUTED; }
|
|
void SetMuted(bool state)
|
|
{
|
|
if (state) flags |= MEMBER_FLAG_MUTED;
|
|
else flags &= ~MEMBER_FLAG_MUTED;
|
|
}
|
|
};
|
|
|
|
public:
|
|
Channel(std::string const& name, uint32 channel_id, uint32 channelDBId, TeamId teamId = TEAM_NEUTRAL, bool announce = true, bool ownership = true);
|
|
std::string const& GetName() const { return _name; }
|
|
uint32 GetChannelId() const { return _channelId; }
|
|
bool IsConstant() const { return _channelId != 0; }
|
|
bool IsAnnounce() const { return _announce; }
|
|
bool IsLFG() const { return GetFlags() & CHANNEL_FLAG_LFG; }
|
|
std::string const& GetPassword() const { return _password; }
|
|
void SetPassword(std::string const& npassword) { _password = npassword; }
|
|
uint32 GetNumPlayers() const { return playersStore.size(); }
|
|
uint8 GetFlags() const { return _flags; }
|
|
bool HasFlag(uint8 flag) const { return _flags & flag; }
|
|
|
|
void JoinChannel(Player* player, std::string const& pass);
|
|
void LeaveChannel(Player* player, bool send = true);
|
|
void KickOrBan(Player const* player, std::string const& badname, bool ban);
|
|
void Kick(Player const* player, std::string const& badname) { KickOrBan(player, badname, false); }
|
|
void Ban(Player const* player, std::string const& badname) { KickOrBan(player, badname, true); }
|
|
void AddBan(uint32 guid, uint32 time) { bannedStore[guid] = time; }
|
|
void UnBan(Player const* player, std::string const& badname);
|
|
void UnBan(uint64 guid);
|
|
void Password(Player const* player, std::string const& pass);
|
|
void SetMode(Player const* player, std::string const& p2n, bool mod, bool set);
|
|
void SetOwner(uint64 guid, bool exclaim = true);
|
|
void SetOwner(Player const* player, std::string const& name);
|
|
void SendWhoOwner(uint64 guid);
|
|
void SetModerator(Player const* player, std::string const& newname) { SetMode(player, newname, true, true); }
|
|
void UnsetModerator(Player const* player, std::string const& newname) { SetMode(player, newname, true, false); }
|
|
void SetMute(Player const* player, std::string const& newname) { SetMode(player, newname, false, true); }
|
|
void UnsetMute(Player const* player, std::string const& newname) { SetMode(player, newname, false, false); }
|
|
void List(Player const* player);
|
|
void Announce(Player const* player);
|
|
void Say(uint64 guid, std::string const& what, uint32 lang);
|
|
void EveryoneSayToSelf(const char *what);
|
|
void Invite(Player const* player, std::string const& newp);
|
|
void Voice(uint64 guid1, uint64 guid2);
|
|
void DeVoice(uint64 guid1, uint64 guid2);
|
|
void JoinNotify(Player* p);
|
|
void LeaveNotify(Player* p);
|
|
void FlagsNotify(Player* p);
|
|
static void CleanOldChannelsInDB();
|
|
|
|
// pussywizard:
|
|
void AddWatching(Player* p);
|
|
void RemoveWatching(Player* p);
|
|
bool IsAllowedToSpeak(uint32 speakDelay); // pussywizard
|
|
|
|
private:
|
|
// initial packet data (notify type and channel name)
|
|
void MakeNotifyPacket(WorldPacket* data, uint8 notify_type);
|
|
// type specific packet data
|
|
void MakeJoined(WorldPacket* data, uint64 guid); //+ 0x00
|
|
void MakeLeft(WorldPacket* data, uint64 guid); //+ 0x01
|
|
void MakeYouJoined(WorldPacket* data); //+ 0x02
|
|
void MakeYouLeft(WorldPacket* data); //+ 0x03
|
|
void MakeWrongPassword(WorldPacket* data); //? 0x04
|
|
void MakeNotMember(WorldPacket* data); //? 0x05
|
|
void MakeNotModerator(WorldPacket* data); //? 0x06
|
|
void MakePasswordChanged(WorldPacket* data, uint64 guid); //+ 0x07
|
|
void MakeOwnerChanged(WorldPacket* data, uint64 guid); //? 0x08
|
|
void MakePlayerNotFound(WorldPacket* data, std::string const& name); //+ 0x09
|
|
void MakeNotOwner(WorldPacket* data); //? 0x0A
|
|
void MakeChannelOwner(WorldPacket* data); //? 0x0B
|
|
void MakeModeChange(WorldPacket* data, uint64 guid, uint8 oldflags); //+ 0x0C
|
|
void MakeAnnouncementsOn(WorldPacket* data, uint64 guid); //+ 0x0D
|
|
void MakeAnnouncementsOff(WorldPacket* data, uint64 guid); //+ 0x0E
|
|
void MakeMuted(WorldPacket* data); //? 0x11
|
|
void MakePlayerKicked(WorldPacket* data, uint64 bad, uint64 good); //? 0x12
|
|
void MakeBanned(WorldPacket* data); //? 0x13
|
|
void MakePlayerBanned(WorldPacket* data, uint64 bad, uint64 good); //? 0x14
|
|
void MakePlayerUnbanned(WorldPacket* data, uint64 bad, uint64 good); //? 0x15
|
|
void MakePlayerNotBanned(WorldPacket* data, std::string const& name); //? 0x16
|
|
void MakePlayerAlreadyMember(WorldPacket* data, uint64 guid); //+ 0x17
|
|
void MakeInvite(WorldPacket* data, uint64 guid); //? 0x18
|
|
void MakeInviteWrongFaction(WorldPacket* data); //? 0x19
|
|
void MakeWrongFaction(WorldPacket* data); //? 0x1A
|
|
void MakeInvalidName(WorldPacket* data); //? 0x1B
|
|
void MakeNotModerated(WorldPacket* data); //? 0x1C
|
|
void MakePlayerInvited(WorldPacket* data, std::string const& name); //+ 0x1D
|
|
void MakePlayerInviteBanned(WorldPacket* data, std::string const& name);//? 0x1E
|
|
void MakeThrottled(WorldPacket* data); //? 0x1F
|
|
void MakeNotInArea(WorldPacket* data); //? 0x20
|
|
void MakeNotInLfg(WorldPacket* data); //? 0x21
|
|
void MakeVoiceOn(WorldPacket* data, uint64 guid); //+ 0x22
|
|
void MakeVoiceOff(WorldPacket* data, uint64 guid); //+ 0x23
|
|
|
|
void SendToAll(WorldPacket* data, uint64 guid = 0);
|
|
void SendToAllButOne(WorldPacket* data, uint64 who);
|
|
void SendToOne(WorldPacket* data, uint64 who);
|
|
void SendToAllWatching(WorldPacket* data);
|
|
|
|
bool IsOn(uint64 who) const { return playersStore.find(who) != playersStore.end(); }
|
|
bool IsBanned(uint64 guid) const;
|
|
|
|
void UpdateChannelInDB() const;
|
|
void UpdateChannelUseageInDB() const;
|
|
void AddChannelBanToDB(uint32 guid, uint32 time) const;
|
|
void RemoveChannelBanFromDB(uint32 guid) const;
|
|
|
|
uint8 GetPlayerFlags(uint64 guid) const
|
|
{
|
|
PlayerContainer::const_iterator itr = playersStore.find(guid);
|
|
return itr != playersStore.end() ? itr->second.flags : 0;
|
|
}
|
|
|
|
void SetModerator(uint64 guid, bool set)
|
|
{
|
|
PlayerInfo& pinfo = playersStore[guid];
|
|
if (pinfo.IsModerator() != set)
|
|
{
|
|
uint8 oldFlag = pinfo.flags;
|
|
pinfo.SetModerator(set);
|
|
|
|
WorldPacket data;
|
|
MakeModeChange(&data, guid, oldFlag);
|
|
SendToAll(&data);
|
|
|
|
FlagsNotify(pinfo.plrPtr);
|
|
}
|
|
}
|
|
|
|
void SetMute(uint64 guid, bool set)
|
|
{
|
|
PlayerInfo& pinfo = playersStore[guid];
|
|
if (pinfo.IsMuted() != set)
|
|
{
|
|
uint8 oldFlag = pinfo.flags;
|
|
pinfo.SetMuted(set);
|
|
|
|
WorldPacket data;
|
|
MakeModeChange(&data, guid, oldFlag);
|
|
SendToAll(&data);
|
|
}
|
|
}
|
|
|
|
typedef UNORDERED_MAP<uint64, PlayerInfo> PlayerContainer;
|
|
typedef UNORDERED_MAP<uint32, uint32> BannedContainer;
|
|
typedef UNORDERED_SET<Player*> PlayersWatchingContainer;
|
|
|
|
bool _announce;
|
|
bool _ownership;
|
|
bool _IsSaved;
|
|
uint8 _flags;
|
|
uint32 _channelId;
|
|
uint32 _channelDBId;
|
|
TeamId _teamId;
|
|
uint64 _ownerGUID;
|
|
uint32 lastSpeakTime;
|
|
std::string _name;
|
|
std::string _password;
|
|
ChannelRights _channelRights;
|
|
PlayerContainer playersStore;
|
|
BannedContainer bannedStore;
|
|
PlayersWatchingContainer playersWatchingStore;
|
|
};
|
|
#endif
|
|
|