mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2025-11-29 17:38:24 +08:00
191 lines
5.9 KiB
C++
191 lines
5.9 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/>
|
|
*/
|
|
|
|
/* ScriptData
|
|
Name: guild_commandscript
|
|
%Complete: 100
|
|
Comment: All guild related commands
|
|
Category: commandscripts
|
|
EndScriptData */
|
|
|
|
#include "Chat.h"
|
|
#include "Language.h"
|
|
#include "Guild.h"
|
|
#include "GuildMgr.h"
|
|
#include "ObjectAccessor.h"
|
|
#include "ScriptMgr.h"
|
|
|
|
class guild_commandscript : public CommandScript
|
|
{
|
|
public:
|
|
guild_commandscript() : CommandScript("guild_commandscript") { }
|
|
|
|
std::vector<ChatCommand> GetCommands() const override
|
|
{
|
|
static std::vector<ChatCommand> guildCommandTable =
|
|
{
|
|
{ "create", SEC_GAMEMASTER, true, &HandleGuildCreateCommand, "" },
|
|
{ "delete", SEC_GAMEMASTER, true, &HandleGuildDeleteCommand, "" },
|
|
{ "invite", SEC_GAMEMASTER, true, &HandleGuildInviteCommand, "" },
|
|
{ "uninvite", SEC_GAMEMASTER, true, &HandleGuildUninviteCommand, "" },
|
|
{ "rank", SEC_GAMEMASTER, true, &HandleGuildRankCommand, "" },
|
|
{ NULL, 0, false, NULL, "" }
|
|
};
|
|
static std::vector<ChatCommand> commandTable =
|
|
{
|
|
{ "guild", SEC_ADMINISTRATOR, true, NULL, "", guildCommandTable },
|
|
{ NULL, 0, false, NULL, "" }
|
|
};
|
|
return commandTable;
|
|
}
|
|
|
|
/** \brief GM command level 3 - Create a guild.
|
|
*
|
|
* This command allows a GM (level 3) to create a guild.
|
|
*
|
|
* The "args" parameter contains the name of the guild leader
|
|
* and then the name of the guild.
|
|
*
|
|
*/
|
|
static bool HandleGuildCreateCommand(ChatHandler* handler, char const* args)
|
|
{
|
|
if (!*args)
|
|
return false;
|
|
|
|
// if not guild name only (in "") then player name
|
|
Player* target;
|
|
if (!handler->extractPlayerTarget(*args != '"' ? (char*)args : NULL, &target))
|
|
return false;
|
|
|
|
char* tailStr = *args != '"' ? strtok(NULL, "") : (char*)args;
|
|
if (!tailStr)
|
|
return false;
|
|
|
|
char* guildStr = handler->extractQuotedArg(tailStr);
|
|
if (!guildStr)
|
|
return false;
|
|
|
|
std::string guildName = guildStr;
|
|
|
|
if (target->GetGuildId())
|
|
{
|
|
handler->SendSysMessage(LANG_PLAYER_IN_GUILD);
|
|
return true;
|
|
}
|
|
|
|
Guild* guild = new Guild;
|
|
if (!guild->Create(target, guildName))
|
|
{
|
|
delete guild;
|
|
handler->SendSysMessage(LANG_GUILD_NOT_CREATED);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
sGuildMgr->AddGuild(guild);
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool HandleGuildDeleteCommand(ChatHandler* handler, char const* args)
|
|
{
|
|
if (!*args)
|
|
return false;
|
|
|
|
char* guildStr = handler->extractQuotedArg((char*)args);
|
|
if (!guildStr)
|
|
return false;
|
|
|
|
std::string guildName = guildStr;
|
|
|
|
Guild* targetGuild = sGuildMgr->GetGuildByName(guildName);
|
|
if (!targetGuild)
|
|
return false;
|
|
|
|
targetGuild->Disband();
|
|
delete targetGuild;
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool HandleGuildInviteCommand(ChatHandler* handler, char const* args)
|
|
{
|
|
if (!*args)
|
|
return false;
|
|
|
|
// if not guild name only (in "") then player name
|
|
uint64 targetGuid;
|
|
if (!handler->extractPlayerTarget(*args != '"' ? (char*)args : NULL, NULL, &targetGuid))
|
|
return false;
|
|
|
|
char* tailStr = *args != '"' ? strtok(NULL, "") : (char*)args;
|
|
if (!tailStr)
|
|
return false;
|
|
|
|
char* guildStr = handler->extractQuotedArg(tailStr);
|
|
if (!guildStr)
|
|
return false;
|
|
|
|
std::string guildName = guildStr;
|
|
Guild* targetGuild = sGuildMgr->GetGuildByName(guildName);
|
|
if (!targetGuild)
|
|
return false;
|
|
|
|
// player's guild membership checked in AddMember before add
|
|
return targetGuild->AddMember(targetGuid);
|
|
}
|
|
|
|
static bool HandleGuildUninviteCommand(ChatHandler* handler, char const* args)
|
|
{
|
|
Player* target;
|
|
uint64 targetGuid;
|
|
if (!handler->extractPlayerTarget((char*)args, &target, &targetGuid))
|
|
return false;
|
|
|
|
uint32 guildId = target ? target->GetGuildId() : Player::GetGuildIdFromStorage(GUID_LOPART(targetGuid));
|
|
if (!guildId)
|
|
return false;
|
|
|
|
Guild* targetGuild = sGuildMgr->GetGuildById(guildId);
|
|
if (!targetGuild)
|
|
return false;
|
|
|
|
targetGuild->DeleteMember(targetGuid, false, true, true);
|
|
return true;
|
|
}
|
|
|
|
static bool HandleGuildRankCommand(ChatHandler* handler, char const* args)
|
|
{
|
|
char* nameStr;
|
|
char* rankStr;
|
|
handler->extractOptFirstArg((char*)args, &nameStr, &rankStr);
|
|
if (!rankStr)
|
|
return false;
|
|
|
|
Player* target;
|
|
uint64 targetGuid;
|
|
std::string target_name;
|
|
if (!handler->extractPlayerTarget(nameStr, &target, &targetGuid, &target_name))
|
|
return false;
|
|
|
|
uint32 guildId = target ? target->GetGuildId() : Player::GetGuildIdFromStorage(GUID_LOPART(targetGuid));
|
|
if (!guildId)
|
|
return false;
|
|
|
|
Guild* targetGuild = sGuildMgr->GetGuildById(guildId);
|
|
if (!targetGuild)
|
|
return false;
|
|
|
|
uint8 newRank = uint8(atoi(rankStr));
|
|
return targetGuild->ChangeMemberRank(targetGuid, newRank);
|
|
}
|
|
};
|
|
|
|
void AddSC_guild_commandscript()
|
|
{
|
|
new guild_commandscript();
|
|
}
|