mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-08 05:01:09 +00:00
# Pull Request
- Applies the clean and corrected singletons, Meyer pattern. (cherry
picked from @SmashingQuasar )
Testing by just playing the game in various ways. Been tested by myself
@Celandriel and @SmashingQuasar
---
## Complexity & Impact
- Does this change add new decision branches?
- [x] No
- [ ] Yes (**explain below**)
- Does this change increase per-bot or per-tick processing?
- [x] No
- [ ] Yes (**describe and justify impact**)
- Could this logic scale poorly under load?
- [x] No
- [ ] Yes (**explain why**)
---
## Defaults & Configuration
- Does this change modify default bot behavior?
- [x] No
- [ ] Yes (**explain why**)
---
## AI Assistance
- Was AI assistance (e.g. ChatGPT or similar tools) used while working
on this change?
- [x] No
- [ ] Yes (**explain below**)
---
## Final Checklist
- [x] Stability is not compromised
- [x] Performance impact is understood, tested, and acceptable
- [x] Added logic complexity is justified and explained
- [x] Documentation updated if needed
---
## Notes for Reviewers
Anything that significantly improves realism at the cost of stability or
performance should be carefully discussed
before merging.
---------
Co-authored-by: Nicolas Lebacq <nicolas.cordier@outlook.com>
Co-authored-by: Keleborn <22352763+Celandriel@users.noreply.github.com>
312 lines
12 KiB
C++
312 lines
12 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license, you may redistribute it
|
|
* and/or modify it under version 3 of the License, or (at your option), any later version.
|
|
*/
|
|
|
|
#include "GuildManagementActions.h"
|
|
|
|
#include "GuildMgr.h"
|
|
#include "GuildPackets.h"
|
|
#include "Playerbots.h"
|
|
#include "ServerFacade.h"
|
|
#include "BroadcastHelper.h"
|
|
|
|
Player* GuidManageAction::GetPlayer(Event event)
|
|
{
|
|
Player* player = nullptr;
|
|
ObjectGuid guid = event.getObject();
|
|
|
|
if (guid)
|
|
{
|
|
player = ObjectAccessor::FindPlayer(guid);
|
|
|
|
if (player)
|
|
return player;
|
|
}
|
|
|
|
std::string text = event.getParam();
|
|
|
|
if (!text.empty())
|
|
{
|
|
if (normalizePlayerName(text))
|
|
{
|
|
player = ObjectAccessor::FindPlayerByName(text.c_str());
|
|
|
|
if (player)
|
|
return player;
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
Player* master = GetMaster();
|
|
if (!master)
|
|
guid = bot->GetTarget();
|
|
else
|
|
guid = master->GetTarget();
|
|
|
|
player = ObjectAccessor::FindPlayer(guid);
|
|
|
|
if (player)
|
|
return player;
|
|
|
|
player = event.getOwner();
|
|
|
|
if (player)
|
|
return player;
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
void GuidManageAction::SendPacket(WorldPacket const& packet)
|
|
{
|
|
// make a heap copy because QueuePacket takes ownership
|
|
WorldPacket* data = new WorldPacket(packet);
|
|
|
|
bot->GetSession()->QueuePacket(data);
|
|
}
|
|
|
|
bool GuidManageAction::Execute(Event event)
|
|
{
|
|
Player* player = GetPlayer(event);
|
|
|
|
if (!player || !PlayerIsValid(player) || player == bot)
|
|
return false;
|
|
|
|
WorldPacket data(opcode);
|
|
data << player->GetName();
|
|
SendPacket(data);
|
|
|
|
return true;
|
|
}
|
|
|
|
bool GuidManageAction::PlayerIsValid(Player* member) { return !member->GetGuildId(); }
|
|
|
|
uint8 GuidManageAction::GetRankId(Player* member)
|
|
{
|
|
return sGuildMgr->GetGuildById(member->GetGuildId())->GetMember(member->GetGUID())->GetRankId();
|
|
}
|
|
|
|
bool GuildInviteAction::isUseful()
|
|
{
|
|
return bot->GetGuildId() && sGuildMgr->GetGuildById(bot->GetGuildId())->HasRankRight(bot, GR_RIGHT_INVITE);
|
|
}
|
|
|
|
bool GuildInviteAction::PlayerIsValid(Player* member)
|
|
{
|
|
return !member->GetGuildId() && (sWorld->getBoolConfig(CONFIG_ALLOW_TWO_SIDE_INTERACTION_GUILD) ||
|
|
(bot->GetTeamId() == member->GetTeamId()));
|
|
}
|
|
|
|
bool GuildPromoteAction::isUseful()
|
|
{
|
|
return bot->GetGuildId() && sGuildMgr->GetGuildById(bot->GetGuildId())->HasRankRight(bot, GR_RIGHT_PROMOTE);
|
|
}
|
|
|
|
bool GuildPromoteAction::PlayerIsValid(Player* member)
|
|
{
|
|
return member->GetGuildId() == bot->GetGuildId() && GetRankId(bot) < GetRankId(member) - 1;
|
|
}
|
|
|
|
bool GuildDemoteAction::isUseful()
|
|
{
|
|
return bot->GetGuildId() && sGuildMgr->GetGuildById(bot->GetGuildId())->HasRankRight(bot, GR_RIGHT_DEMOTE);
|
|
}
|
|
|
|
bool GuildDemoteAction::PlayerIsValid(Player* member)
|
|
{
|
|
return member->GetGuildId() == bot->GetGuildId() && GetRankId(bot) < GetRankId(member);
|
|
}
|
|
|
|
bool GuildRemoveAction::isUseful()
|
|
{
|
|
return bot->GetGuildId() && sGuildMgr->GetGuildById(bot->GetGuildId())->HasRankRight(bot, GR_RIGHT_REMOVE);
|
|
}
|
|
|
|
bool GuildRemoveAction::PlayerIsValid(Player* member)
|
|
{
|
|
return member->GetGuildId() == bot->GetGuildId() && GetRankId(bot) < GetRankId(member);
|
|
};
|
|
|
|
bool GuildManageNearbyAction::Execute(Event event)
|
|
{
|
|
uint32 found = 0;
|
|
|
|
Guild* guild = sGuildMgr->GetGuildById(bot->GetGuildId());
|
|
Guild::Member* botMember = guild->GetMember(bot->GetGUID());
|
|
|
|
GuidVector nearGuids = botAI->GetAiObjectContext()->GetValue<GuidVector>("nearest friendly players")->Get();
|
|
for (auto& guid : nearGuids)
|
|
{
|
|
Player* player = ObjectAccessor::FindPlayer(guid);
|
|
|
|
if (!player || bot == player)
|
|
continue;
|
|
|
|
if (player->isDND())
|
|
continue;
|
|
|
|
// Promote or demote nearby members based on chance.
|
|
if (player->GetGuildId() && player->GetGuildId() == bot->GetGuildId())
|
|
{
|
|
Guild::Member* member = guild->GetMember(player->GetGUID());
|
|
uint32 dCount = AI_VALUE(uint32, "death count");
|
|
|
|
if (!urand(0, 30) && dCount < 2 && guild->GetRankRights(botMember->GetRankId()) & GR_RIGHT_PROMOTE)
|
|
{
|
|
BroadcastHelper::BroadcastGuildMemberPromotion(botAI, bot, player);
|
|
|
|
botAI->DoSpecificAction("guild promote", Event("guild management", guid), true);
|
|
continue;
|
|
}
|
|
|
|
if (!urand(0, 30) && dCount > 2 && guild->GetRankRights(botMember->GetRankId()) & GR_RIGHT_DEMOTE)
|
|
{
|
|
BroadcastHelper::BroadcastGuildMemberDemotion(botAI, bot, player);
|
|
|
|
botAI->DoSpecificAction("guild demote", Event("guild management", guid), true);
|
|
continue;
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
if (!sPlayerbotAIConfig.randomBotGuildNearby)
|
|
return false;
|
|
|
|
if (guild->GetMemberSize() > 1000)
|
|
return false;
|
|
|
|
if ((guild->GetRankRights(botMember->GetRankId()) & GR_RIGHT_INVITE) == 0)
|
|
continue;
|
|
|
|
if (player->GetGuildIdInvited())
|
|
continue;
|
|
|
|
PlayerbotAI* botAi = GET_PLAYERBOT_AI(player);
|
|
|
|
if (!sPlayerbotAIConfig.randomBotInvitePlayer && botAi && botAi->IsRealPlayer())
|
|
continue;
|
|
|
|
if (botAi)
|
|
{
|
|
if (botAi->GetGuilderType() == GuilderType::SOLO && !botAi->HasRealPlayerMaster()) //Do not invite solo players.
|
|
continue;
|
|
|
|
if (botAi->HasActivePlayerMaster() && !sRandomPlayerbotMgr.IsRandomBot(player)) //Do not invite alts of active players.
|
|
continue;
|
|
}
|
|
|
|
bool sameGroup = bot->GetGroup() && bot->GetGroup()->IsMember(player->GetGUID());
|
|
|
|
if (!sameGroup && ServerFacade::instance().GetDistance2d(bot, player) > sPlayerbotAIConfig.spellDistance)
|
|
continue;
|
|
|
|
if (sPlayerbotAIConfig.inviteChat && (sRandomPlayerbotMgr.IsRandomBot(bot) || !botAI->HasActivePlayerMaster()))
|
|
{
|
|
/* std::map<std::string, std::string> placeholders;
|
|
placeholders["%name"] = player->GetName();
|
|
placeholders["%members"] = std::to_string(guild->GetMemberSize());
|
|
placeholders["%guildname"] = guild->GetName();
|
|
AreaTableEntry const* current_area = botAI->GetCurrentArea();
|
|
AreaTableEntry const* current_zone = botAI->GetCurrentZone();
|
|
placeholders["%area_name"] = current_area ? current_area->area_name[BroadcastHelper::GetLocale()] : PlayerbotTextMgr::instance().GetBotText("string_unknown_area");
|
|
placeholders["%zone_name"] = current_zone ? current_zone->area_name[BroadcastHelper::GetLocale()] : PlayerbotTextMgr::instance().GetBotText("string_unknown_area");
|
|
|
|
std::vector<std::string> lines;
|
|
|
|
//TODO - Move these hardcoded texts to sql!
|
|
switch ((urand(0, 10) * urand(0, 10)) / 10)
|
|
{
|
|
case 0:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("Hey %name do you want to join my guild?", placeholders));
|
|
break;
|
|
case 1:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("Hey man you wanna join my guild %name?", placeholders));
|
|
break;
|
|
case 2:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("I think you would be a good contribution to %guildname. Would you like to join %name?", placeholders));
|
|
break;
|
|
case 3:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("My guild %guildname has %members quality members. Would you like to make it 1 more %name?", placeholders));
|
|
break;
|
|
case 4:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("Hey %name do you want to join %guildname? We have %members members and looking to become number 1 of the server.", placeholders));
|
|
break;
|
|
case 5:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("I'm not really good at smalltalk. Do you wanna join my guild %name/r?", placeholders));
|
|
break;
|
|
case 6:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("Welcome to %zone_name.... do you want to join my guild %name?", placeholders));
|
|
break;
|
|
case 7:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("%name, you should join my guild!", placeholders));
|
|
break;
|
|
case 8:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("%name, I got this guild....", placeholders));
|
|
break;
|
|
case 9:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("You are actually going to join my guild %name?", placeholders));
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("Haha.. you are the man! We are going to raid Molten...", placeholders));
|
|
break;
|
|
case 10:
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("Hey Hey! do you guys wanna join my gild????", placeholders));
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("We've got a bunch of high levels and we are really super friendly..", placeholders));
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("..and watch your dog and do your homework...", placeholders));
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("..and we raid once a week and are working on MC raids...", placeholders));
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("..and we have more members than just me...", placeholders));
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("..and please stop I'm lonenly and we can get a ride the whole time...", placeholders));
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("..and it's really beautifull and I feel like crying...", placeholders));
|
|
lines.push_back(PlayerbotTextMgr::instance().GetBotText("So what do you guys say are you going to join are you going to join?", placeholders));
|
|
break;
|
|
}
|
|
|
|
for (auto line : lines)
|
|
if (sameGroup)
|
|
{
|
|
WorldPacket data;
|
|
ChatHandler::BuildChatPacket(data, bot->GetGroup()->isRaidGroup() ? CHAT_MSG_RAID : CHAT_MSG_PARTY, line.c_str(), LANG_UNIVERSAL, CHAT_TAG_NONE, bot->GetGUID(), bot->GetName());
|
|
bot->GetGroup()->BroadcastPacket(&data, true);
|
|
}
|
|
else
|
|
bot->Say(line, (bot->GetTeamId() == TEAM_ALLIANCE ? LANG_COMMON : LANG_ORCISH));*/
|
|
}
|
|
|
|
if (botAI->DoSpecificAction("guild invite", Event("guild management", guid), true))
|
|
{
|
|
if (sPlayerbotAIConfig.inviteChat)
|
|
return true;
|
|
found++;
|
|
}
|
|
}
|
|
|
|
return found > 0;
|
|
}
|
|
|
|
bool GuildManageNearbyAction::isUseful()
|
|
{
|
|
if (!bot->GetGuildId())
|
|
return false;
|
|
|
|
Guild* guild = sGuildMgr->GetGuildById(bot->GetGuildId());
|
|
Guild::Member* botMember = guild->GetMember(bot->GetGUID());
|
|
|
|
return guild->GetRankRights(botMember->GetRankId()) & (GR_RIGHT_DEMOTE | GR_RIGHT_PROMOTE | GR_RIGHT_INVITE);
|
|
}
|
|
|
|
bool GuildLeaveAction::Execute(Event event)
|
|
{
|
|
Player* owner = event.getOwner();
|
|
if (owner && !botAI->GetSecurity()->CheckLevelFor(PLAYERBOT_SECURITY_INVITE, false, owner, true))
|
|
{
|
|
botAI->TellError("Sorry, I am happy in my guild :)");
|
|
return false;
|
|
}
|
|
|
|
WorldPackets::Guild::GuildLeave data = WorldPacket(CMSG_GUILD_LEAVE);
|
|
bot->GetSession()->HandleGuildLeaveOpcode(data);
|
|
return true;
|
|
}
|
|
|
|
bool GuildLeaveAction::isUseful() { return bot->GetGuildId(); }
|