mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 17:19:07 +00:00
253 lines
8.4 KiB
C++
253 lines
8.4 KiB
C++
/*
|
|
* This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Affero General Public License as published by the
|
|
* Free Software Foundation; either version 3 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* ScriptData
|
|
Name: titles_commandscript
|
|
%Complete: 100
|
|
Comment: All titles related commands
|
|
Category: commandscripts
|
|
EndScriptData */
|
|
|
|
#include "Chat.h"
|
|
#include "Language.h"
|
|
#include "ObjectMgr.h"
|
|
#include "Player.h"
|
|
#include "ScriptMgr.h"
|
|
|
|
#if AC_COMPILER == AC_COMPILER_GNU
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
#endif
|
|
|
|
using namespace Acore::ChatCommands;
|
|
|
|
class titles_commandscript : public CommandScript
|
|
{
|
|
public:
|
|
titles_commandscript() : CommandScript("titles_commandscript") { }
|
|
|
|
ChatCommandTable GetCommands() const override
|
|
{
|
|
static ChatCommandTable titlesSetCommandTable =
|
|
{
|
|
{ "mask", SEC_GAMEMASTER, false, &HandleTitlesSetMaskCommand, "" }
|
|
};
|
|
static ChatCommandTable titlesCommandTable =
|
|
{
|
|
{ "add", SEC_GAMEMASTER, false, &HandleTitlesAddCommand, "" },
|
|
{ "current", SEC_GAMEMASTER, false, &HandleTitlesCurrentCommand, "" },
|
|
{ "remove", SEC_GAMEMASTER, false, &HandleTitlesRemoveCommand, "" },
|
|
{ "set", SEC_GAMEMASTER, false, nullptr, "", titlesSetCommandTable }
|
|
};
|
|
static ChatCommandTable commandTable =
|
|
{
|
|
{ "titles", SEC_GAMEMASTER, false, nullptr, "", titlesCommandTable }
|
|
};
|
|
return commandTable;
|
|
}
|
|
|
|
static bool HandleTitlesCurrentCommand(ChatHandler* handler, const char* args)
|
|
{
|
|
// number or [name] Shift-click form |color|Htitle:title_id|h[name]|h|r
|
|
char* id_p = handler->extractKeyFromLink((char*)args, "Htitle");
|
|
if (!id_p)
|
|
return false;
|
|
|
|
int32 id = atoi(id_p);
|
|
if (id <= 0)
|
|
{
|
|
handler->PSendSysMessage(LANG_INVALID_TITLE_ID, id);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
Player* target = handler->getSelectedPlayer();
|
|
if (!target)
|
|
{
|
|
handler->SendSysMessage(LANG_NO_CHAR_SELECTED);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
// check online security
|
|
if (handler->HasLowerSecurity(target))
|
|
return false;
|
|
|
|
CharTitlesEntry const* titleInfo = sCharTitlesStore.LookupEntry(id);
|
|
if (!titleInfo)
|
|
{
|
|
handler->PSendSysMessage(LANG_INVALID_TITLE_ID, id);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
std::string tNameLink = handler->GetNameLink(target);
|
|
|
|
target->SetTitle(titleInfo); // to be sure that title now known
|
|
target->SetUInt32Value(PLAYER_CHOSEN_TITLE, titleInfo->bit_index);
|
|
|
|
handler->PSendSysMessage(LANG_TITLE_CURRENT_RES, id, target->getGender() == GENDER_MALE ? titleInfo->nameMale[handler->GetSessionDbcLocale()] : titleInfo->nameFemale[handler->GetSessionDbcLocale()], tNameLink.c_str());
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool HandleTitlesAddCommand(ChatHandler* handler, const char* args)
|
|
{
|
|
// number or [name] Shift-click form |color|Htitle:title_id|h[name]|h|r
|
|
char* id_p = handler->extractKeyFromLink((char*)args, "Htitle");
|
|
if (!id_p)
|
|
return false;
|
|
|
|
int32 id = atoi(id_p);
|
|
if (id <= 0)
|
|
{
|
|
handler->PSendSysMessage(LANG_INVALID_TITLE_ID, id);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
Player* target = handler->getSelectedPlayer();
|
|
if (!target)
|
|
{
|
|
handler->SendSysMessage(LANG_NO_CHAR_SELECTED);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
// check online security
|
|
if (handler->HasLowerSecurity(target))
|
|
return false;
|
|
|
|
CharTitlesEntry const* titleInfo = sCharTitlesStore.LookupEntry(id);
|
|
if (!titleInfo)
|
|
{
|
|
handler->PSendSysMessage(LANG_INVALID_TITLE_ID, id);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
std::string tNameLink = handler->GetNameLink(target);
|
|
|
|
char titleNameStr[80];
|
|
snprintf(titleNameStr, 80, target->getGender() == GENDER_MALE ? titleInfo->nameMale[handler->GetSessionDbcLocale()] : titleInfo->nameFemale[handler->GetSessionDbcLocale()], target->GetName().c_str());
|
|
|
|
target->SetTitle(titleInfo);
|
|
handler->PSendSysMessage(LANG_TITLE_ADD_RES, id, titleNameStr, tNameLink.c_str());
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool HandleTitlesRemoveCommand(ChatHandler* handler, char const* args)
|
|
{
|
|
// number or [name] Shift-click form |color|Htitle:title_id|h[name]|h|r
|
|
char* id_p = handler->extractKeyFromLink((char*)args, "Htitle");
|
|
if (!id_p)
|
|
return false;
|
|
|
|
int32 id = atoi(id_p);
|
|
if (id <= 0)
|
|
{
|
|
handler->PSendSysMessage(LANG_INVALID_TITLE_ID, id);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
Player* target = handler->getSelectedPlayer();
|
|
if (!target)
|
|
{
|
|
handler->SendSysMessage(LANG_NO_CHAR_SELECTED);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
// check online security
|
|
if (handler->HasLowerSecurity(target))
|
|
return false;
|
|
|
|
CharTitlesEntry const* titleInfo = sCharTitlesStore.LookupEntry(id);
|
|
if (!titleInfo)
|
|
{
|
|
handler->PSendSysMessage(LANG_INVALID_TITLE_ID, id);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
target->SetTitle(titleInfo, true);
|
|
|
|
std::string tNameLink = handler->GetNameLink(target);
|
|
|
|
char titleNameStr[80];
|
|
snprintf(titleNameStr, 80, target->getGender() == GENDER_MALE ? titleInfo->nameMale[handler->GetSessionDbcLocale()] : titleInfo->nameFemale[handler->GetSessionDbcLocale()], target->GetName().c_str());
|
|
|
|
handler->PSendSysMessage(LANG_TITLE_REMOVE_RES, id, titleNameStr, tNameLink.c_str());
|
|
|
|
if (!target->HasTitle(target->GetInt32Value(PLAYER_CHOSEN_TITLE)))
|
|
{
|
|
target->SetUInt32Value(PLAYER_CHOSEN_TITLE, 0);
|
|
handler->PSendSysMessage(LANG_CURRENT_TITLE_RESET, tNameLink.c_str());
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
//Edit Player KnownTitles
|
|
static bool HandleTitlesSetMaskCommand(ChatHandler* handler, char const* args)
|
|
{
|
|
if (!*args)
|
|
return false;
|
|
|
|
uint64 titles = 0;
|
|
|
|
sscanf((char*)args, UI64FMTD, &titles);
|
|
|
|
Player* target = handler->getSelectedPlayer();
|
|
if (!target)
|
|
{
|
|
handler->SendSysMessage(LANG_NO_CHAR_SELECTED);
|
|
handler->SetSentErrorMessage(true);
|
|
return false;
|
|
}
|
|
|
|
// check online security
|
|
if (handler->HasLowerSecurity(target))
|
|
return false;
|
|
|
|
uint64 titles2 = titles;
|
|
|
|
for (uint32 i = 1; i < sCharTitlesStore.GetNumRows(); ++i)
|
|
if (CharTitlesEntry const* tEntry = sCharTitlesStore.LookupEntry(i))
|
|
titles2 &= ~(uint64(1) << tEntry->bit_index);
|
|
|
|
titles &= ~titles2; // remove not existed titles
|
|
|
|
target->SetUInt64Value(PLAYER__FIELD_KNOWN_TITLES, titles);
|
|
handler->SendSysMessage(LANG_DONE);
|
|
|
|
if (!target->HasTitle(target->GetInt32Value(PLAYER_CHOSEN_TITLE)))
|
|
{
|
|
target->SetUInt32Value(PLAYER_CHOSEN_TITLE, 0);
|
|
handler->PSendSysMessage(LANG_CURRENT_TITLE_RESET, handler->GetNameLink(target).c_str());
|
|
}
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
void AddSC_titles_commandscript()
|
|
{
|
|
new titles_commandscript();
|
|
}
|