mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-13 09:07:19 +00:00
102 lines
2.9 KiB
C++
102 lines
2.9 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
*/
|
|
|
|
#include "CheckMailAction.h"
|
|
#include "Event.h"
|
|
#include "GuildTaskMgr.h"
|
|
#include "Playerbots.h"
|
|
|
|
bool CheckMailAction::Execute(Event event)
|
|
{
|
|
WorldPacket p;
|
|
bot->GetSession()->HandleQueryNextMailTime(p);
|
|
|
|
CharacterDatabaseTransaction trans = CharacterDatabase.BeginTransaction();
|
|
|
|
std::vector<uint32> ids;
|
|
for (PlayerMails::const_iterator i = bot->GetMails().begin(); i != bot->GetMails().end(); ++i)
|
|
{
|
|
Mail* mail = *i;
|
|
if (!mail || mail->state == MAIL_STATE_DELETED)
|
|
continue;
|
|
|
|
Player* owner = ObjectAccessor::FindConnectedPlayer(ObjectGuid::Create<HighGuid::Player>(mail->sender));
|
|
if (!owner)
|
|
continue;
|
|
|
|
uint32 account = owner->GetSession()->GetAccountId();
|
|
if (sPlayerbotAIConfig->IsInRandomAccountList(account))
|
|
continue;
|
|
|
|
ProcessMail(mail, owner, trans);
|
|
ids.push_back(mail->messageID);
|
|
mail->state = MAIL_STATE_DELETED;
|
|
}
|
|
|
|
for (uint32 id : ids)
|
|
{
|
|
bot->SendMailResult(id, MAIL_DELETED, MAIL_OK);
|
|
|
|
CharacterDatabasePreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_MAIL_BY_ID);
|
|
stmt->SetData(0, id);
|
|
trans->Append(stmt);
|
|
|
|
stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_MAIL_ITEM_BY_ID);
|
|
stmt->SetData(0, id);
|
|
trans->Append(stmt);
|
|
|
|
bot->RemoveMail(id);
|
|
}
|
|
|
|
CharacterDatabase.CommitTransaction(trans);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool CheckMailAction::isUseful()
|
|
{
|
|
if (botAI->GetMaster() || !bot->GetMailSize() || bot->InBattleground())
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
void CheckMailAction::ProcessMail(Mail* mail, Player* owner, CharacterDatabaseTransaction trans)
|
|
{
|
|
if (mail->items.empty())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (mail->subject.find("Item(s) you asked for") != std::string::npos)
|
|
return;
|
|
|
|
for (MailItemInfoVec::iterator i = mail->items.begin(); i != mail->items.end(); ++i)
|
|
{
|
|
Item *item = bot->GetMItem(i->item_guid);
|
|
if (!item)
|
|
continue;
|
|
|
|
if (!sGuildTaskMgr->CheckItemTask(i->item_template, item->GetCount(), owner, bot, true))
|
|
{
|
|
std::ostringstream body;
|
|
body << "Hello, " << owner->GetName() << ",\n";
|
|
body << "\n";
|
|
body << "Here are the item(s) you've sent me by mistake";
|
|
body << "\n";
|
|
body << "Thanks,\n";
|
|
body << bot->GetName() << "\n";
|
|
|
|
MailDraft draft("Item(s) you've sent me", body.str());
|
|
draft.AddItem(item);
|
|
bot->RemoveMItem(i->item_guid);
|
|
draft.SendMailTo(trans, MailReceiver(owner), MailSender(bot));
|
|
return;
|
|
}
|
|
|
|
bot->RemoveMItem(i->item_guid);
|
|
item->DestroyForPlayer(bot);
|
|
}
|
|
}
|