mirror of
https://github.com/liyunfan1223/mod-playerbots.git
synced 2026-06-20 15:39:25 +02:00
<!-- Thank you for contributing to mod-playerbots, please make sure that you... 1. Submit your PR to the test-staging branch, not master. 2. Read the guidelines below before submitting. 3. Don't delete parts of this template. DESIGN PHILOSOPHY: We prioritize STABILITY, PERFORMANCE, AND PREDICTABILITY over behavioral realism. Every action and decision executes PER BOT AND PER TRIGGER. Small increases in logic complexity scale poorly across thousands of bots and negatively affect all. We prioritize a stable system over a smarter one. Bots don't need to behave perfectly; believable behavior is the goal, not human simulation. Default behavior must be cheap in processing; expensive behavior must be opt-in. Before submitting, make sure your changes aligns with these principles. --> ## Pull Request Description <!-- Describe what this change does and why it is needed --> Replaced hardcoded bot text with translationable. Related with: #1295 ## How to Test the Changes <!-- - Step-by-step instructions to test the change. - Any required setup (e.g. multiple players, number of bots, specific configuration). - Expected behavior and how to verify it. --> 1. Invite bots 2. Check that text after "follow" and "stay" return texts "Following" and "Staying" ## Impact Assessment <!-- As a generic test, before and after measure of pmon (playerbot pmon tick) can help you here. --> - Does this change increase per-bot/per-tick processing or risk scaling poorly with thousands of bots? - - [x] No, not at all - - [ ] Minimal impact (**explain below**) - - [ ] Moderate impact (**explain below**) - Does this change modify default bot behavior? - - [x] No - - [ ] Yes (**explain why**) - Does this change add new decision branches or increase maintenance complexity? - - [x] No - - [ ] Yes (**explain below**) ## AI Assistance <!-- AI assistance is allowed, but all submitted code must be fully understood, reviewed, and owned by the contributor. We expect contributors to be honest about what they do and do not understand. --> Was AI assistance used while working on this change? - - [ ] No - - [x] Yes (**explain below**) <!-- If yes, please specify: - Purpose of usage (e.g. brainstorming, refactoring, documentation, code generation). - Which parts of the change were influenced or generated, and whether it was thoroughly reviewed. --> Summary hardcoded text and checking that they already exists to reuse. <!-- TRANSLATIONS: Anything new that the bots say in chat must be in a translatable format. This is done using GetBotTextOrDefault, which you can search for in the codebase to find examples. Your code needs to have English as the default fallback, while the full translations need to be in an SQL update file. The languages in the file are the nine language options supported by AzerothCore: English, Korean, French, German, Chinese, Taiwanese, Spanish, Spanish Mexico, and Russian. See data/sql/playerbots/updates/2025_12_27_ai_playerbot_fishing_text.sql as an example of a translation SQL update, whose content are called within the codebase at src/strategy/actions/FishingAction.cpp --> ## Final Checklist - - [x] Stability is not compromised. - - [x] Performance impact is understood, tested, and acceptable. - - [x] Added logic complexity is justified and explained. - - [x] Any new bot dialogue lines are translated. - - [x] Documentation updated if needed (Conf comments, WiKi commands). ## Notes for Reviewers <!-- Anything else that's helpful to review or test your pull request. -->
137 lines
4.6 KiB
C++
137 lines
4.6 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 "TaxiAction.h"
|
|
|
|
#include "Event.h"
|
|
#include "LastMovementValue.h"
|
|
#include "PlayerbotTextMgr.h"
|
|
#include "Playerbots.h"
|
|
#include "PlayerbotAIConfig.h"
|
|
#include "Config.h"
|
|
|
|
bool TaxiAction::Execute(Event event)
|
|
{
|
|
botAI->RemoveShapeshift();
|
|
|
|
LastMovement& movement = context->GetValue<LastMovement&>("last taxi")->Get();
|
|
|
|
WorldPacket& p = event.getPacket();
|
|
std::string const param = event.getParam();
|
|
if ((!p.empty() && (p.GetOpcode() == CMSG_TAXICLEARALLNODES || p.GetOpcode() == CMSG_TAXICLEARNODE)) ||
|
|
param == "clear")
|
|
{
|
|
movement.taxiNodes.clear();
|
|
movement.Set(nullptr);
|
|
botAI->TellMaster(PlayerbotTextMgr::instance().GetBotTextOrDefault(
|
|
"taxi_ready_next_flight", "I am ready for the next flight", {}));
|
|
return true;
|
|
}
|
|
|
|
GuidVector units = *context->GetValue<GuidVector>("nearest npcs");
|
|
for (ObjectGuid const guid : units)
|
|
{
|
|
Creature* npc = ObjectAccessor::GetCreature(*bot, guid);
|
|
if (!npc || !npc->IsAlive())
|
|
continue;
|
|
|
|
if (!(npc->GetNpcFlags() & UNIT_NPC_FLAG_FLIGHTMASTER))
|
|
continue;
|
|
|
|
if (bot->GetDistance(npc) > sPlayerbotAIConfig.farDistance)
|
|
continue;
|
|
|
|
uint32 curloc = sObjectMgr->GetNearestTaxiNode(npc->GetPositionX(), npc->GetPositionY(), npc->GetPositionZ(),
|
|
npc->GetMapId(), bot->GetTeamId());
|
|
|
|
std::vector<uint32> nodes;
|
|
for (uint32 i = 0; i < sTaxiPathStore.GetNumRows(); ++i)
|
|
{
|
|
if (TaxiPathEntry const* entry = sTaxiPathStore.LookupEntry(i))
|
|
if (entry->from == curloc)
|
|
{
|
|
uint8 field = uint8((i - 1) / 32);
|
|
if (field < TaxiMaskSize)
|
|
nodes.push_back(i);
|
|
}
|
|
}
|
|
|
|
// Only for follower bots
|
|
if (botAI->HasRealPlayerMaster())
|
|
{
|
|
uint32 index = botAI->GetGroupSlotIndex(bot);
|
|
uint32 delay = sPlayerbotAIConfig.botTaxiDelayMin +
|
|
index * sPlayerbotAIConfig.botTaxiGapMs +
|
|
urand(0, sPlayerbotAIConfig.botTaxiGapJitterMs);
|
|
|
|
delay = std::min(delay, sPlayerbotAIConfig.botTaxiDelayMax);
|
|
|
|
// Store the NPC's GUID so we can re-acquire the pointer later
|
|
ObjectGuid npcGuid = npc->GetGUID();
|
|
|
|
// schedule the take-off
|
|
botAI->AddTimedEvent(
|
|
[bot = bot, &movement, npcGuid]() -> void
|
|
{
|
|
if (Creature* npcPtr = ObjectAccessor::GetCreature(*bot, npcGuid))
|
|
if (!movement.taxiNodes.empty())
|
|
bot->ActivateTaxiPathTo(movement.taxiNodes, npcPtr, 0);
|
|
},
|
|
delay);
|
|
botAI->SetNextCheckDelay(delay + 50);
|
|
return true;
|
|
}
|
|
|
|
if (param == "?")
|
|
{
|
|
botAI->TellMasterNoFacing("=== Taxi ===");
|
|
|
|
uint32 index = 1;
|
|
for (uint32 node : nodes)
|
|
{
|
|
TaxiPathEntry const* entry = sTaxiPathStore.LookupEntry(node);
|
|
if (!entry)
|
|
continue;
|
|
|
|
TaxiNodesEntry const* dest = sTaxiNodesStore.LookupEntry(entry->to);
|
|
if (!dest)
|
|
continue;
|
|
|
|
std::ostringstream out;
|
|
out << index++ << ": " << dest->name[0];
|
|
botAI->TellMasterNoFacing(out.str());
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
uint32 selected = atoi(param.c_str());
|
|
if (selected)
|
|
{
|
|
uint32 path = nodes[selected - 1];
|
|
TaxiPathEntry const* entry = sTaxiPathStore.LookupEntry(path);
|
|
if (!entry)
|
|
return false;
|
|
|
|
return bot->ActivateTaxiPathTo({entry->from, entry->to}, npc, 0);
|
|
}
|
|
|
|
if (!movement.taxiNodes.empty() && !bot->ActivateTaxiPathTo(movement.taxiNodes, npc, 0))
|
|
{
|
|
movement.taxiNodes.clear();
|
|
movement.Set(nullptr);
|
|
botAI->TellError(PlayerbotTextMgr::instance().GetBotTextOrDefault(
|
|
"taxi_cant_fly_with_you", "I can't fly with you", {}));
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
botAI->TellError(PlayerbotTextMgr::instance().GetBotTextOrDefault(
|
|
"taxi_no_flightmaster_nearby", "Cannot find any flightmaster to talk", {}));
|
|
return false;
|
|
}
|