mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-13 11:43:18 -04:00
4082 lines
157 KiB
C++
4082 lines
157 KiB
C++
/*
|
|
* Copyright (C) 2008-2018 TrinityCore <https://www.trinitycore.org/>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 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 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/>.
|
|
*/
|
|
|
|
#include "SmartScript.h"
|
|
#include "CellImpl.h"
|
|
#include "ChatTextBuilder.h"
|
|
#include "Creature.h"
|
|
#include "CreatureTextMgr.h"
|
|
#include "CreatureTextMgrImpl.h"
|
|
#include "DB2Stores.h"
|
|
#include "GameEventMgr.h"
|
|
#include "GameObject.h"
|
|
#include "GossipDef.h"
|
|
#include "GridNotifiersImpl.h"
|
|
#include "Group.h"
|
|
#include "InstanceScript.h"
|
|
#include "Language.h"
|
|
#include "Log.h"
|
|
#include "Map.h"
|
|
#include "MotionMaster.h"
|
|
#include "ObjectAccessor.h"
|
|
#include "ObjectMgr.h"
|
|
#include "PhasingHandler.h"
|
|
#include "Random.h"
|
|
#include "SmartAI.h"
|
|
#include "SpellAuras.h"
|
|
#include "SpellMgr.h"
|
|
#include "TemporarySummon.h"
|
|
#include "Vehicle.h"
|
|
|
|
SmartScript::SmartScript()
|
|
{
|
|
go = nullptr;
|
|
me = nullptr;
|
|
trigger = nullptr;
|
|
sceneTemplate = nullptr;
|
|
mEventPhase = 0;
|
|
mPathId = 0;
|
|
mTargetStorage = new ObjectListMap();
|
|
mTextTimer = 0;
|
|
mLastTextID = 0;
|
|
mUseTextTimer = false;
|
|
mTalkerEntry = 0;
|
|
mTemplate = SMARTAI_TEMPLATE_BASIC;
|
|
mScriptType = SMART_SCRIPT_TYPE_CREATURE;
|
|
isProcessingTimedActionList = false;
|
|
}
|
|
|
|
SmartScript::~SmartScript()
|
|
{
|
|
for (ObjectListMap::iterator itr = mTargetStorage->begin(); itr != mTargetStorage->end(); ++itr)
|
|
delete itr->second;
|
|
|
|
delete mTargetStorage;
|
|
mCounterList.clear();
|
|
}
|
|
|
|
bool SmartScript::IsSmart(Creature* c /*= NULL*/)
|
|
{
|
|
bool smart = true;
|
|
if (c && c->GetAIName() != "SmartAI")
|
|
smart = false;
|
|
|
|
if (!me || me->GetAIName() != "SmartAI")
|
|
smart = false;
|
|
|
|
if (!smart)
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Action target Creature (GUID: " UI64FMTD " Entry: %u) is not using SmartAI, action called by Creature (GUID: " UI64FMTD " Entry: %u) skipped to prevent crash.", uint64(c ? c->GetSpawnId() : UI64LIT(0)), c ? c->GetEntry() : 0, uint64(me ? me->GetSpawnId() : UI64LIT(0)), me ? me->GetEntry() : 0);
|
|
|
|
return smart;
|
|
}
|
|
|
|
bool SmartScript::IsSmartGO(GameObject* g /*= NULL*/)
|
|
{
|
|
bool smart = true;
|
|
if (g && g->GetAIName() != "SmartGameObjectAI")
|
|
smart = false;
|
|
|
|
if (!go || go->GetAIName() != "SmartGameObjectAI")
|
|
smart = false;
|
|
if (!smart)
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Action target GameObject (GUID: " UI64FMTD " Entry: %u) is not using SmartGameObjectAI, action called by GameObject (GUID: " UI64FMTD " Entry: %u) skipped to prevent crash.", uint64(g ? g->GetSpawnId() : UI64LIT(0)), g ? g->GetEntry() : 0, uint64(go ? go->GetSpawnId() : UI64LIT(0)), go ? go->GetEntry() : 0);
|
|
|
|
return smart;
|
|
}
|
|
|
|
void SmartScript::StoreTargetList(ObjectList* targets, uint32 id)
|
|
{
|
|
if (!targets)
|
|
return;
|
|
|
|
if (mTargetStorage->find(id) != mTargetStorage->end())
|
|
{
|
|
// check if already stored
|
|
if ((*mTargetStorage)[id]->Equals(targets))
|
|
return;
|
|
|
|
delete (*mTargetStorage)[id];
|
|
}
|
|
|
|
(*mTargetStorage)[id] = new ObjectGuidList(targets, GetBaseObject());
|
|
}
|
|
|
|
ObjectList* SmartScript::GetTargetList(uint32 id)
|
|
{
|
|
ObjectListMap::iterator itr = mTargetStorage->find(id);
|
|
if (itr != mTargetStorage->end())
|
|
return (*itr).second->GetObjectList();
|
|
return NULL;
|
|
}
|
|
|
|
void SmartScript::StoreCounter(uint32 id, uint32 value, uint32 reset)
|
|
{
|
|
CounterMap::const_iterator itr = mCounterList.find(id);
|
|
if (itr != mCounterList.end())
|
|
{
|
|
if (reset == 0)
|
|
value += GetCounterValue(id);
|
|
mCounterList.erase(id);
|
|
}
|
|
|
|
mCounterList.insert(std::make_pair(id, value));
|
|
ProcessEventsFor(SMART_EVENT_COUNTER_SET);
|
|
}
|
|
|
|
uint32 SmartScript::GetCounterId(uint32 id)
|
|
{
|
|
CounterMap::iterator itr = mCounterList.find(id);
|
|
if (itr != mCounterList.end())
|
|
return itr->first;
|
|
return 0;
|
|
}
|
|
|
|
uint32 SmartScript::GetCounterValue(uint32 id)
|
|
{
|
|
CounterMap::iterator itr = mCounterList.find(id);
|
|
if (itr != mCounterList.end())
|
|
return itr->second;
|
|
return 0;
|
|
}
|
|
|
|
GameObject* SmartScript::FindGameObjectNear(WorldObject* searchObject, ObjectGuid::LowType guid) const
|
|
{
|
|
auto bounds = searchObject->GetMap()->GetGameObjectBySpawnIdStore().equal_range(guid);
|
|
if (bounds.first == bounds.second)
|
|
return nullptr;
|
|
|
|
return bounds.first->second;
|
|
}
|
|
|
|
Creature* SmartScript::FindCreatureNear(WorldObject* searchObject, ObjectGuid::LowType guid) const
|
|
{
|
|
auto bounds = searchObject->GetMap()->GetCreatureBySpawnIdStore().equal_range(guid);
|
|
if (bounds.first == bounds.second)
|
|
return nullptr;
|
|
|
|
auto creatureItr = std::find_if(bounds.first, bounds.second, [](Map::CreatureBySpawnIdContainer::value_type const& pair)
|
|
{
|
|
return pair.second->IsAlive();
|
|
});
|
|
|
|
return creatureItr != bounds.second ? creatureItr->second : bounds.first->second;
|
|
}
|
|
|
|
void SmartScript::OnReset()
|
|
{
|
|
ResetBaseObject();
|
|
for (SmartAIEventList::iterator i = mEvents.begin(); i != mEvents.end(); ++i)
|
|
{
|
|
if (!((*i).event.event_flags & SMART_EVENT_FLAG_DONT_RESET))
|
|
{
|
|
InitTimer((*i));
|
|
(*i).runOnce = false;
|
|
}
|
|
}
|
|
ProcessEventsFor(SMART_EVENT_RESET);
|
|
mLastInvoker.Clear();
|
|
mCounterList.clear();
|
|
}
|
|
|
|
void SmartScript::ResetBaseObject()
|
|
{
|
|
WorldObject* lookupRoot = me;
|
|
if (!lookupRoot)
|
|
lookupRoot = go;
|
|
|
|
if (lookupRoot)
|
|
{
|
|
if (!meOrigGUID.IsEmpty())
|
|
{
|
|
if (Creature* m = ObjectAccessor::GetCreature(*lookupRoot, meOrigGUID))
|
|
{
|
|
me = m;
|
|
go = NULL;
|
|
}
|
|
}
|
|
if (!goOrigGUID.IsEmpty())
|
|
{
|
|
if (GameObject* o = ObjectAccessor::GetGameObject(*lookupRoot, goOrigGUID))
|
|
{
|
|
me = NULL;
|
|
go = o;
|
|
}
|
|
}
|
|
}
|
|
goOrigGUID.Clear();
|
|
meOrigGUID.Clear();
|
|
}
|
|
|
|
void SmartScript::ProcessEventsFor(SMART_EVENT e, Unit* unit, uint32 var0, uint32 var1, bool bvar, const SpellInfo* spell, GameObject* gob, std::string const& varString)
|
|
{
|
|
for (SmartAIEventList::iterator i = mEvents.begin(); i != mEvents.end(); ++i)
|
|
{
|
|
SMART_EVENT eventType = SMART_EVENT(i->GetEventType());
|
|
if (eventType == SMART_EVENT_LINK)//special handling
|
|
continue;
|
|
|
|
if (eventType == e /*&& (!i->event.event_phase_mask || IsInPhase(i->event.event_phase_mask)) && !(i->event.event_flags & SMART_EVENT_FLAG_NOT_REPEATABLE && i->runOnce)*/)
|
|
if (sConditionMgr->IsObjectMeetingSmartEventConditions(i->entryOrGuid, i->event_id, i->source_type, unit, GetBaseObject()))
|
|
ProcessEvent(*i, unit, var0, var1, bvar, spell, gob, varString);
|
|
}
|
|
}
|
|
|
|
void SmartScript::ProcessAction(SmartScriptHolder& e, Unit* unit, uint32 var0, uint32 var1, bool bvar, const SpellInfo* spell, GameObject* gob, std::string const& varString)
|
|
{
|
|
//calc random
|
|
if (e.GetEventType() != SMART_EVENT_LINK && e.event.event_chance < 100 && e.event.event_chance)
|
|
{
|
|
if (!roll_chance_i(e.event.event_chance))
|
|
return;
|
|
}
|
|
e.runOnce = true;//used for repeat check
|
|
|
|
if (unit)
|
|
mLastInvoker = unit->GetGUID();
|
|
|
|
if (Unit* tempInvoker = GetLastInvoker())
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: Invoker: %s (%s)", tempInvoker->GetName().c_str(), tempInvoker->GetGUID().ToString().c_str());
|
|
|
|
switch (e.GetActionType())
|
|
{
|
|
case SMART_ACTION_TALK:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
Creature* talker = me;
|
|
Player* targetPlayer = nullptr;
|
|
Unit* talkTarget = nullptr;
|
|
|
|
if (targets)
|
|
{
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr) && !(*itr)->ToCreature()->IsPet()) // Prevented sending text to pets.
|
|
{
|
|
if (e.action.talk.useTalkTarget)
|
|
talkTarget = (*itr)->ToCreature();
|
|
else
|
|
talker = (*itr)->ToCreature();
|
|
break;
|
|
}
|
|
else if (IsPlayer(*itr))
|
|
{
|
|
targetPlayer = (*itr)->ToPlayer();
|
|
break;
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
|
|
if (!talker)
|
|
break;
|
|
|
|
mTalkerEntry = talker->GetEntry();
|
|
mLastTextID = e.action.talk.textGroupID;
|
|
mTextTimer = e.action.talk.duration;
|
|
|
|
if (IsPlayer(GetLastInvoker())) // used for $vars in texts and whisper target
|
|
talkTarget = GetLastInvoker();
|
|
else if (targetPlayer)
|
|
talkTarget = targetPlayer;
|
|
|
|
mUseTextTimer = true;
|
|
sCreatureTextMgr->SendChat(talker, uint8(e.action.talk.textGroupID), talkTarget);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_TALK: talker: %s (%s), textGuid: %s",
|
|
talker->GetName().c_str(), talker->GetGUID().ToString().c_str(), talkTarget ? talkTarget->GetGUID().ToString().c_str() : "Empty");
|
|
break;
|
|
}
|
|
case SMART_ACTION_SIMPLE_TALK:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (targets)
|
|
{
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
sCreatureTextMgr->SendChat((*itr)->ToCreature(), uint8(e.action.talk.textGroupID), IsPlayer(GetLastInvoker()) ? GetLastInvoker() : 0);
|
|
else if (IsPlayer(*itr) && me)
|
|
{
|
|
Unit* templastInvoker = GetLastInvoker();
|
|
sCreatureTextMgr->SendChat(me, uint8(e.action.talk.textGroupID), IsPlayer(templastInvoker) ? templastInvoker : 0, CHAT_MSG_ADDON, LANG_ADDON, TEXT_RANGE_NORMAL, 0, TEAM_OTHER, false, (*itr)->ToPlayer());
|
|
}
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SIMPLE_TALK: talker: %s (%s), textGroupId: %u",
|
|
(*itr)->GetName().c_str(), (*itr)->GetGUID().ToString().c_str(), uint8(e.action.talk.textGroupID));
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_PLAY_EMOTE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (targets)
|
|
{
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
(*itr)->ToUnit()->HandleEmoteCommand(e.action.emote.emote);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_PLAY_EMOTE: target: %s (%s), emote: %u",
|
|
(*itr)->GetName().c_str(), (*itr)->GetGUID().ToString().c_str(), e.action.emote.emote);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_SOUND:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (targets)
|
|
{
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
(*itr)->PlayDirectSound(e.action.sound.sound, e.action.sound.onlySelf ? (*itr)->ToPlayer() : nullptr);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SOUND: target: %s (%s), sound: %u, onlyself: %u",
|
|
(*itr)->GetName().c_str(), (*itr)->GetGUID().ToString().c_str(), e.action.sound.sound, e.action.sound.onlySelf);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_FACTION:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (targets)
|
|
{
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
{
|
|
if (e.action.faction.factionID)
|
|
{
|
|
(*itr)->ToCreature()->setFaction(e.action.faction.factionID);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SET_FACTION: Creature entry %u, %s set faction to %u",
|
|
(*itr)->GetEntry(), (*itr)->GetGUID().ToString().c_str(), e.action.faction.factionID);
|
|
}
|
|
else
|
|
{
|
|
if (CreatureTemplate const* ci = sObjectMgr->GetCreatureTemplate((*itr)->ToCreature()->GetEntry()))
|
|
{
|
|
if ((*itr)->ToCreature()->getFaction() != ci->faction)
|
|
{
|
|
(*itr)->ToCreature()->setFaction(ci->faction);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SET_FACTION: Creature entry %u, %s set faction to %u",
|
|
(*itr)->GetEntry(), (*itr)->GetGUID().ToString().c_str(), ci->faction);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_MORPH_TO_ENTRY_OR_MODEL:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsCreature(*itr))
|
|
continue;
|
|
|
|
if (e.action.morphOrMount.creature || e.action.morphOrMount.model)
|
|
{
|
|
//set model based on entry from creature_template
|
|
if (e.action.morphOrMount.creature)
|
|
{
|
|
if (CreatureTemplate const* ci = sObjectMgr->GetCreatureTemplate(e.action.morphOrMount.creature))
|
|
{
|
|
uint32 displayId = ObjectMgr::ChooseDisplayId(ci);
|
|
(*itr)->ToCreature()->SetDisplayId(displayId);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_MORPH_TO_ENTRY_OR_MODEL: Creature entry %u, %s set displayid to %u",
|
|
(*itr)->GetEntry(), (*itr)->GetGUID().ToString().c_str(), displayId);
|
|
}
|
|
}
|
|
//if no param1, then use value from param2 (modelId)
|
|
else
|
|
{
|
|
(*itr)->ToCreature()->SetDisplayId(e.action.morphOrMount.model);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_MORPH_TO_ENTRY_OR_MODEL: Creature entry %u, %s set displayid to %u",
|
|
(*itr)->GetEntry(), (*itr)->GetGUID().ToString().c_str(), e.action.morphOrMount.model);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
(*itr)->ToCreature()->DeMorph();
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_MORPH_TO_ENTRY_OR_MODEL: Creature entry %u, %s demorphs.",
|
|
(*itr)->GetEntry(), (*itr)->GetGUID().ToString().c_str());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_FAIL_QUEST:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsPlayer(*itr))
|
|
{
|
|
(*itr)->ToPlayer()->FailQuest(e.action.quest.quest);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_FAIL_QUEST: Player %s fails quest %u",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.quest.quest);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_OFFER_QUEST:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (Player* pTarget = (*itr)->ToPlayer())
|
|
{
|
|
if (Quest const* q = sObjectMgr->GetQuestTemplate(e.action.questOffer.questID))
|
|
{
|
|
if (me && e.action.questOffer.directAdd == 0)
|
|
{
|
|
if (pTarget->CanTakeQuest(q, true))
|
|
if (WorldSession* session = pTarget->GetSession())
|
|
{
|
|
PlayerMenu menu(session);
|
|
menu.SendQuestGiverQuestDetails(q, me->GetGUID(), true, false);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_OFFER_QUEST: Player %s - offering quest %u", pTarget->GetGUID().ToString().c_str(), e.action.questOffer.questID);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
(*itr)->ToPlayer()->AddQuestAndCheckCompletion(q, nullptr);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_ADD_QUEST: Player %s add quest %u",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.questOffer.questID);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_REACT_STATE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsCreature(*itr))
|
|
continue;
|
|
|
|
(*itr)->ToCreature()->SetReactState(ReactStates(e.action.react.state));
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_RANDOM_EMOTE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
uint32 emotes[SMART_ACTION_PARAM_COUNT];
|
|
emotes[0] = e.action.randomEmote.emote1;
|
|
emotes[1] = e.action.randomEmote.emote2;
|
|
emotes[2] = e.action.randomEmote.emote3;
|
|
emotes[3] = e.action.randomEmote.emote4;
|
|
emotes[4] = e.action.randomEmote.emote5;
|
|
emotes[5] = e.action.randomEmote.emote6;
|
|
uint32 temp[SMART_ACTION_PARAM_COUNT];
|
|
uint32 count = 0;
|
|
for (uint8 i = 0; i < SMART_ACTION_PARAM_COUNT; i++)
|
|
{
|
|
if (emotes[i])
|
|
{
|
|
temp[count] = emotes[i];
|
|
++count;
|
|
}
|
|
}
|
|
|
|
if (count == 0)
|
|
{
|
|
delete targets;
|
|
break;
|
|
}
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
uint32 emote = temp[urand(0, count - 1)];
|
|
(*itr)->ToUnit()->HandleEmoteCommand(emote);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_RANDOM_EMOTE: Creature %s handle random emote %u",
|
|
(*itr)->GetGUID().ToString().c_str(), emote);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_THREAT_ALL_PCT:
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
ThreatContainer::StorageType threatList = me->getThreatManager().getThreatList();
|
|
for (ThreatContainer::StorageType::const_iterator i = threatList.begin(); i != threatList.end(); ++i)
|
|
{
|
|
if (Unit* target = ObjectAccessor::GetUnit(*me, (*i)->getUnitGuid()))
|
|
{
|
|
me->getThreatManager().modifyThreatPercent(target, e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_THREAT_ALL_PCT: Creature %s modify threat for %s, value %i",
|
|
me->GetGUID().ToString().c_str(), target->GetGUID().ToString().c_str(),
|
|
e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_THREAT_SINGLE_PCT:
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
me->getThreatManager().modifyThreatPercent((*itr)->ToUnit(), e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_THREAT_SINGLE_PCT: Creature %s modify threat for %s, value %i",
|
|
me->GetGUID().ToString().c_str(), (*itr)->GetGUID().ToString().c_str(),
|
|
e.action.threatPCT.threatINC ? (int32)e.action.threatPCT.threatINC : -(int32)e.action.threatPCT.threatDEC);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_CALL_AREAEXPLOREDOREVENTHAPPENS:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
// Special handling for vehicles
|
|
if (IsUnit(*itr))
|
|
if (Vehicle* vehicle = (*itr)->ToUnit()->GetVehicleKit())
|
|
for (SeatMap::iterator it = vehicle->Seats.begin(); it != vehicle->Seats.end(); ++it)
|
|
if (Player* player = ObjectAccessor::FindPlayer(it->second.Passenger.Guid))
|
|
player->AreaExploredOrEventHappens(e.action.quest.quest);
|
|
|
|
if (IsPlayer(*itr))
|
|
{
|
|
(*itr)->ToPlayer()->AreaExploredOrEventHappens(e.action.quest.quest);
|
|
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_CALL_AREAEXPLOREDOREVENTHAPPENS: %s credited quest %u",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.quest.quest);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_CAST:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsUnit(*itr))
|
|
continue;
|
|
|
|
if (!(e.action.cast.castFlags & SMARTCAST_AURA_NOT_PRESENT) || !(*itr)->ToUnit()->HasAura(e.action.cast.spell))
|
|
{
|
|
TriggerCastFlags triggerFlag = TRIGGERED_NONE;
|
|
if (e.action.cast.castFlags & SMARTCAST_TRIGGERED)
|
|
{
|
|
if (e.action.cast.triggerFlags)
|
|
triggerFlag = TriggerCastFlags(e.action.cast.triggerFlags);
|
|
else
|
|
triggerFlag = TRIGGERED_FULL_MASK;
|
|
}
|
|
|
|
if (me)
|
|
{
|
|
if (e.action.cast.castFlags & SMARTCAST_INTERRUPT_PREVIOUS)
|
|
me->InterruptNonMeleeSpells(false);
|
|
|
|
if (e.action.cast.castFlags & SMARTCAST_COMBAT_MOVE)
|
|
{
|
|
// If cast flag SMARTCAST_COMBAT_MOVE is set combat movement will not be allowed
|
|
// unless target is outside spell range, out of mana, or LOS.
|
|
|
|
bool _allowMove = false;
|
|
SpellInfo const* spellInfo = sSpellMgr->AssertSpellInfo(e.action.cast.spell);
|
|
std::vector<SpellPowerCost> costs = spellInfo->CalcPowerCost(me, spellInfo->GetSchoolMask());
|
|
bool hasPower = true;
|
|
for (SpellPowerCost const& cost : costs)
|
|
{
|
|
if (cost.Power == POWER_HEALTH)
|
|
{
|
|
if (me->GetHealth() <= uint32(cost.Amount))
|
|
{
|
|
hasPower = false;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (me->GetPower(cost.Power) < cost.Amount)
|
|
{
|
|
hasPower = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
if (me->GetDistance(*itr) > spellInfo->GetMaxRange(true) ||
|
|
me->GetDistance(*itr) < spellInfo->GetMinRange(true) ||
|
|
!me->IsWithinLOSInMap(*itr) || !hasPower)
|
|
_allowMove = true;
|
|
|
|
ENSURE_AI(SmartAI, me->AI())->SetCombatMove(_allowMove);
|
|
}
|
|
|
|
me->CastSpell((*itr)->ToUnit(), e.action.cast.spell, triggerFlag);
|
|
}
|
|
else if (go)
|
|
go->CastSpell((*itr)->ToUnit(), e.action.cast.spell, triggerFlag);
|
|
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_CAST:: %s casts spell %u on target %s with castflags %u",
|
|
(me ? me->GetGUID() : go->GetGUID()).ToString().c_str(), e.action.cast.spell, (*itr)->GetGUID().ToString().c_str(), e.action.cast.castFlags);
|
|
}
|
|
else
|
|
TC_LOG_DEBUG("scripts.ai", "Spell %u not cast because it has flag SMARTCAST_AURA_NOT_PRESENT and the target (%s) already has the aura", e.action.cast.spell, (*itr)->GetGUID().ToString().c_str());
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_INVOKER_CAST:
|
|
{
|
|
Unit* tempLastInvoker = GetLastInvoker();
|
|
if (!tempLastInvoker)
|
|
break;
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsUnit(*itr))
|
|
continue;
|
|
|
|
if (!(e.action.cast.castFlags & SMARTCAST_AURA_NOT_PRESENT) || !(*itr)->ToUnit()->HasAura(e.action.cast.spell))
|
|
{
|
|
if (e.action.cast.castFlags & SMARTCAST_INTERRUPT_PREVIOUS)
|
|
tempLastInvoker->InterruptNonMeleeSpells(false);
|
|
|
|
TriggerCastFlags triggerFlag = TRIGGERED_NONE;
|
|
if (e.action.cast.castFlags & SMARTCAST_TRIGGERED)
|
|
{
|
|
if (e.action.cast.triggerFlags)
|
|
triggerFlag = TriggerCastFlags(e.action.cast.triggerFlags);
|
|
else
|
|
triggerFlag = TRIGGERED_FULL_MASK;
|
|
}
|
|
|
|
tempLastInvoker->CastSpell((*itr)->ToUnit(), e.action.cast.spell, triggerFlag);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_INVOKER_CAST: Invoker %s casts spell %u on target %s with castflags %u",
|
|
tempLastInvoker->GetGUID().ToString().c_str(), e.action.cast.spell, (*itr)->GetGUID().ToString().c_str(), e.action.cast.castFlags);
|
|
}
|
|
else
|
|
TC_LOG_DEBUG("scripts.ai", "Spell %u not cast because it has flag SMARTCAST_AURA_NOT_PRESENT and the target (%s) already has the aura", e.action.cast.spell, (*itr)->GetGUID().ToString().c_str());
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_ADD_AURA:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
(*itr)->ToUnit()->AddAura(e.action.cast.spell, (*itr)->ToUnit());
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_ADD_AURA: Adding aura %u to %s",
|
|
e.action.cast.spell, (*itr)->GetGUID().ToString().c_str());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_ACTIVATE_GOBJECT:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsGameObject(*itr))
|
|
{
|
|
// Activate
|
|
(*itr)->ToGameObject()->SetLootState(GO_READY);
|
|
(*itr)->ToGameObject()->UseDoorOrButton(0, false, unit);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_ACTIVATE_GOBJECT. %s (entry: %u) activated",
|
|
(*itr)->GetGUID().ToString().c_str(), (*itr)->GetEntry());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_RESET_GOBJECT:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsGameObject(*itr))
|
|
{
|
|
(*itr)->ToGameObject()->ResetDoorOrButton();
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_RESET_GOBJECT. %s (entry: %u) reset",
|
|
(*itr)->GetGUID().ToString().c_str(), (*itr)->GetEntry());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_EMOTE_STATE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
(*itr)->ToUnit()->SetUInt32Value(UNIT_NPC_EMOTESTATE, e.action.emote.emote);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SET_EMOTE_STATE. %s set emotestate to %u",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.emote.emote);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_UNIT_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
if (!e.action.unitFlag.type)
|
|
{
|
|
(*itr)->ToUnit()->SetFlag(UNIT_FIELD_FLAGS, e.action.unitFlag.flag);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SET_UNIT_FLAG. %s added flag %u to UNIT_FIELD_FLAGS",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.unitFlag.flag);
|
|
}
|
|
else
|
|
{
|
|
(*itr)->ToUnit()->SetFlag(UNIT_FIELD_FLAGS_2, e.action.unitFlag.flag);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SET_UNIT_FLAG. %s added flag %u to UNIT_FIELD_FLAGS_2",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.unitFlag.flag);
|
|
}
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_REMOVE_UNIT_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
if (!e.action.unitFlag.type)
|
|
{
|
|
(*itr)->ToUnit()->RemoveFlag(UNIT_FIELD_FLAGS, e.action.unitFlag.flag);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_REMOVE_UNIT_FLAG. %s removed flag %u to UNIT_FIELD_FLAGS",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.unitFlag.flag);
|
|
}
|
|
else
|
|
{
|
|
(*itr)->ToUnit()->RemoveFlag(UNIT_FIELD_FLAGS_2, e.action.unitFlag.flag);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_REMOVE_UNIT_FLAG. %s removed flag %u to UNIT_FIELD_FLAGS_2",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.unitFlag.flag);
|
|
}
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_AUTO_ATTACK:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
ENSURE_AI(SmartAI, me->AI())->SetAutoAttack(e.action.autoAttack.attack != 0);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_AUTO_ATTACK: %s bool on = %u",
|
|
me->GetGUID().ToString().c_str(), e.action.autoAttack.attack);
|
|
break;
|
|
}
|
|
case SMART_ACTION_ALLOW_COMBAT_MOVEMENT:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
bool move = e.action.combatMove.move != 0;
|
|
ENSURE_AI(SmartAI, me->AI())->SetCombatMove(move);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_ALLOW_COMBAT_MOVEMENT: %s bool on = %u",
|
|
me->GetGUID().ToString().c_str(), e.action.combatMove.move);
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_EVENT_PHASE:
|
|
{
|
|
if (!GetBaseObject())
|
|
break;
|
|
|
|
SetPhase(e.action.setEventPhase.phase);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SET_EVENT_PHASE: %s set event phase %u",
|
|
GetBaseObject()->GetGUID().ToString().c_str(), e.action.setEventPhase.phase);
|
|
break;
|
|
}
|
|
case SMART_ACTION_INC_EVENT_PHASE:
|
|
{
|
|
if (!GetBaseObject())
|
|
break;
|
|
|
|
IncPhase(e.action.incEventPhase.inc);
|
|
DecPhase(e.action.incEventPhase.dec);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_INC_EVENT_PHASE: %s inc event phase by %u, "
|
|
"decrease by %u", GetBaseObject()->GetGUID().ToString().c_str(), e.action.incEventPhase.inc, e.action.incEventPhase.dec);
|
|
break;
|
|
}
|
|
case SMART_ACTION_EVADE:
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
me->AI()->EnterEvadeMode();
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_EVADE: %s EnterEvadeMode", me->GetGUID().ToString().c_str());
|
|
break;
|
|
}
|
|
case SMART_ACTION_FLEE_FOR_ASSIST:
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
me->DoFleeToGetAssistance();
|
|
|
|
if (e.action.flee.withEmote)
|
|
{
|
|
Trinity::BroadcastTextBuilder builder(me, CHAT_MSG_MONSTER_EMOTE, BROADCAST_TEXT_FLEE_FOR_ASSIST, me->getGender());
|
|
CreatureTextMgr::SendChatPacket(me, builder, CHAT_MSG_MONSTER_EMOTE);
|
|
}
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_FLEE_FOR_ASSIST: %s DoFleeToGetAssistance", me->GetGUID().ToString().c_str());
|
|
break;
|
|
}
|
|
case SMART_ACTION_CALL_GROUPEVENTHAPPENS:
|
|
{
|
|
if (!unit)
|
|
break;
|
|
|
|
if (IsPlayer(unit) && GetBaseObject())
|
|
{
|
|
unit->ToPlayer()->GroupEventHappens(e.action.quest.quest, GetBaseObject());
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_CALL_GROUPEVENTHAPPENS: %s, group credit for quest %u",
|
|
unit->GetGUID().ToString().c_str(), e.action.quest.quest);
|
|
}
|
|
|
|
// Special handling for vehicles
|
|
if (Vehicle* vehicle = unit->GetVehicleKit())
|
|
for (SeatMap::iterator it = vehicle->Seats.begin(); it != vehicle->Seats.end(); ++it)
|
|
if (Player* player = ObjectAccessor::FindPlayer(it->second.Passenger.Guid))
|
|
player->GroupEventHappens(e.action.quest.quest, GetBaseObject());
|
|
break;
|
|
}
|
|
case SMART_ACTION_COMBAT_STOP:
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
me->CombatStop(true);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_COMBAT_STOP: %s CombatStop", me->GetGUID().ToString().c_str());
|
|
break;
|
|
}
|
|
case SMART_ACTION_REMOVEAURASFROMSPELL:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsUnit(*itr))
|
|
continue;
|
|
|
|
if (e.action.removeAura.spell)
|
|
{
|
|
if (e.action.removeAura.charges)
|
|
{
|
|
if (Aura* aur = (*itr)->ToUnit()->GetAura(e.action.removeAura.spell))
|
|
aur->ModCharges(-static_cast<int32>(e.action.removeAura.charges), AURA_REMOVE_BY_EXPIRE);
|
|
}
|
|
else
|
|
(*itr)->ToUnit()->RemoveAurasDueToSpell(e.action.removeAura.spell);
|
|
}
|
|
else
|
|
(*itr)->ToUnit()->RemoveAllAuras();
|
|
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_REMOVEAURASFROMSPELL: %s, spell %u",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.removeAura.spell);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_FOLLOW:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
{
|
|
ENSURE_AI(SmartAI, me->AI())->StopFollow();
|
|
break;
|
|
}
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
ENSURE_AI(SmartAI, me->AI())->SetFollow((*itr)->ToUnit(), (float)e.action.follow.dist, (float)e.action.follow.angle, e.action.follow.credit, e.action.follow.entry, e.action.follow.creditType);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_FOLLOW: %s following target %s",
|
|
me->GetGUID().ToString().c_str(), (*itr)->GetGUID().ToString().c_str());
|
|
break;
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_RANDOM_PHASE:
|
|
{
|
|
if (!GetBaseObject())
|
|
break;
|
|
|
|
uint32 phases[SMART_ACTION_PARAM_COUNT];
|
|
phases[0] = e.action.randomPhase.phase1;
|
|
phases[1] = e.action.randomPhase.phase2;
|
|
phases[2] = e.action.randomPhase.phase3;
|
|
phases[3] = e.action.randomPhase.phase4;
|
|
phases[4] = e.action.randomPhase.phase5;
|
|
phases[5] = e.action.randomPhase.phase6;
|
|
uint32 temp[SMART_ACTION_PARAM_COUNT];
|
|
uint32 count = 0;
|
|
for (uint8 i = 0; i < SMART_ACTION_PARAM_COUNT; i++)
|
|
{
|
|
if (phases[i] > 0)
|
|
{
|
|
temp[count] = phases[i];
|
|
++count;
|
|
}
|
|
}
|
|
|
|
if (count == 0)
|
|
break;
|
|
|
|
uint32 phase = temp[urand(0, count - 1)];
|
|
SetPhase(phase);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_RANDOM_PHASE: %s sets event phase to %u",
|
|
GetBaseObject()->GetGUID().ToString().c_str(), phase);
|
|
break;
|
|
}
|
|
case SMART_ACTION_RANDOM_PHASE_RANGE:
|
|
{
|
|
if (!GetBaseObject())
|
|
break;
|
|
|
|
uint32 phase = urand(e.action.randomPhaseRange.phaseMin, e.action.randomPhaseRange.phaseMax);
|
|
SetPhase(phase);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_RANDOM_PHASE_RANGE: %s sets event phase to %u",
|
|
GetBaseObject()->GetGUID().ToString().c_str(), phase);
|
|
break;
|
|
}
|
|
case SMART_ACTION_CALL_KILLEDMONSTER:
|
|
{
|
|
if (e.target.type == SMART_TARGET_NONE || e.target.type == SMART_TARGET_SELF) // Loot recipient and his group members
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
if (Player* player = me->GetLootRecipient())
|
|
{
|
|
player->RewardPlayerAndGroupAtEvent(e.action.killedMonster.creature, player);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_CALL_KILLEDMONSTER: %s, Killcredit: %u",
|
|
player->GetGUID().ToString().c_str(), e.action.killedMonster.creature);
|
|
}
|
|
}
|
|
else // Specific target type
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsPlayer(*itr))
|
|
{
|
|
(*itr)->ToPlayer()->KilledMonsterCredit(e.action.killedMonster.creature);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_CALL_KILLEDMONSTER: %s, Killcredit: %u",
|
|
(*itr)->GetGUID().ToString().c_str(), e.action.killedMonster.creature);
|
|
}
|
|
else if (IsUnit(*itr)) // Special handling for vehicles
|
|
if (Vehicle* vehicle = (*itr)->ToUnit()->GetVehicleKit())
|
|
for (SeatMap::iterator seatItr = vehicle->Seats.begin(); seatItr != vehicle->Seats.end(); ++seatItr)
|
|
if (Player* player = ObjectAccessor::FindPlayer(seatItr->second.Passenger.Guid))
|
|
player->KilledMonsterCredit(e.action.killedMonster.creature);
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_INST_DATA:
|
|
{
|
|
WorldObject* obj = GetBaseObject();
|
|
if (!obj)
|
|
obj = unit;
|
|
|
|
if (!obj)
|
|
break;
|
|
|
|
InstanceScript* instance = obj->GetInstanceScript();
|
|
if (!instance)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Event %u attempt to set instance data without instance script. EntryOrGuid " SI64FMTD "", e.GetEventType(), e.entryOrGuid);
|
|
break;
|
|
}
|
|
|
|
switch (e.action.setInstanceData.type)
|
|
{
|
|
case 0:
|
|
instance->SetData(e.action.setInstanceData.field, e.action.setInstanceData.data);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_SET_INST_DATA: SetData Field: %u, data: %u",
|
|
e.action.setInstanceData.field, e.action.setInstanceData.data);
|
|
break;
|
|
case 1:
|
|
instance->SetBossState(e.action.setInstanceData.field, static_cast<EncounterState>(e.action.setInstanceData.data));
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_SET_INST_DATA: SetBossState BossId: %u, State: %u (%s)",
|
|
e.action.setInstanceData.field, e.action.setInstanceData.data, InstanceScript::GetBossStateName(e.action.setInstanceData.data).c_str());
|
|
break;
|
|
default: // Static analysis
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_INST_DATA64:
|
|
{
|
|
WorldObject* obj = GetBaseObject();
|
|
if (!obj)
|
|
obj = unit;
|
|
|
|
if (!obj)
|
|
break;
|
|
|
|
InstanceScript* instance = obj->GetInstanceScript();
|
|
if (!instance)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Event %u attempt to set instance data without instance script. EntryOrGuid " SI64FMTD "", e.GetEventType(), e.entryOrGuid);
|
|
break;
|
|
}
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
instance->SetGuidData(e.action.setInstanceData64.field, targets->front()->GetGUID());
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_SET_INST_DATA64: Field: %u, data: %s",
|
|
e.action.setInstanceData64.field, targets->front()->GetGUID().ToString().c_str());
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_UPDATE_TEMPLATE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToCreature()->UpdateEntry(e.action.updateTemplate.creature, nullptr, e.action.updateTemplate.updateLevel != 0);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_DIE:
|
|
{
|
|
if (me && !me->isDead())
|
|
{
|
|
me->KillSelf();
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_DIE: %s", me->GetGUID().ToString().c_str());
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_IN_COMBAT_WITH_ZONE:
|
|
{
|
|
if (me)
|
|
{
|
|
me->SetInCombatWithZone();
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_SET_IN_COMBAT_WITH_ZONE: %s", me->GetGUID().ToString().c_str());
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_CALL_FOR_HELP:
|
|
{
|
|
if (me)
|
|
{
|
|
me->CallForHelp((float)e.action.callHelp.range);
|
|
if (e.action.callHelp.withEmote)
|
|
{
|
|
Trinity::BroadcastTextBuilder builder(me, CHAT_MSG_MONSTER_EMOTE, BROADCAST_TEXT_CALL_FOR_HELP, me->getGender());
|
|
CreatureTextMgr::SendChatPacket(me, builder, CHAT_MSG_MONSTER_EMOTE);
|
|
}
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_CALL_FOR_HELP: %s", me->GetGUID().ToString().c_str());
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_SHEATH:
|
|
{
|
|
if (me)
|
|
{
|
|
me->SetSheath(SheathState(e.action.setSheath.sheath));
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction: SMART_ACTION_SET_SHEATH: %s, State: %u",
|
|
me->GetGUID().ToString().c_str(), e.action.setSheath.sheath);
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_FORCE_DESPAWN:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (Creature* target = (*itr)->ToCreature())
|
|
target->DespawnOrUnsummon(e.action.forceDespawn.delay, Seconds(e.action.forceDespawn.respawn));
|
|
else if (GameObject* goTarget = (*itr)->ToGameObject())
|
|
goTarget->SetRespawnTime(e.action.forceDespawn.delay + 1);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_INGAME_PHASE_ID:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (e.action.ingamePhaseId.apply == 1)
|
|
PhasingHandler::AddPhase(*itr, e.action.ingamePhaseId.id, true);
|
|
else
|
|
PhasingHandler::RemovePhase(*itr, e.action.ingamePhaseId.id, true);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_INGAME_PHASE_GROUP:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (e.action.ingamePhaseGroup.apply == 1)
|
|
PhasingHandler::AddPhaseGroup(*itr, e.action.ingamePhaseGroup.groupId, true);
|
|
else
|
|
PhasingHandler::RemovePhaseGroup(*itr, e.action.ingamePhaseGroup.groupId, true);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_MOUNT_TO_ENTRY_OR_MODEL:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsUnit(*itr))
|
|
continue;
|
|
|
|
if (e.action.morphOrMount.creature || e.action.morphOrMount.model)
|
|
{
|
|
if (e.action.morphOrMount.creature > 0)
|
|
{
|
|
if (CreatureTemplate const* cInfo = sObjectMgr->GetCreatureTemplate(e.action.morphOrMount.creature))
|
|
(*itr)->ToUnit()->Mount(ObjectMgr::ChooseDisplayId(cInfo));
|
|
}
|
|
else
|
|
(*itr)->ToUnit()->Mount(e.action.morphOrMount.model);
|
|
}
|
|
else
|
|
(*itr)->ToUnit()->Dismount();
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_INVINCIBILITY_HP_LEVEL:
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
SmartAI* ai = CAST_AI(SmartAI, me->AI());
|
|
|
|
if (!ai)
|
|
break;
|
|
|
|
if (e.action.invincHP.percent)
|
|
ai->SetInvincibilityHpLevel(me->CountPctFromMaxHealth(e.action.invincHP.percent));
|
|
else
|
|
ai->SetInvincibilityHpLevel(e.action.invincHP.minHP);
|
|
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_DATA:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToCreature()->AI()->SetData(e.action.setData.field, e.action.setData.data);
|
|
else if (IsGameObject(*itr))
|
|
(*itr)->ToGameObject()->AI()->SetData(e.action.setData.field, e.action.setData.data);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_MOVE_OFFSET:
|
|
{
|
|
if (ObjectList* targets = GetTargets(e, unit))
|
|
{
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsCreature(*itr))
|
|
continue;
|
|
|
|
if (!(e.event.event_flags & SMART_EVENT_FLAG_WHILE_CHARMED) && IsCharmedCreature(*itr))
|
|
continue;
|
|
|
|
Position pos = (*itr)->GetPosition();
|
|
|
|
// Use forward/backward/left/right cartesian plane movement
|
|
float x, y, z, o;
|
|
o = pos.GetOrientation();
|
|
x = pos.GetPositionX() + (std::cos(o - (M_PI / 2))*e.target.x) + (std::cos(o)*e.target.y);
|
|
y = pos.GetPositionY() + (std::sin(o - (M_PI / 2))*e.target.x) + (std::sin(o)*e.target.y);
|
|
z = pos.GetPositionZ() + e.target.z;
|
|
(*itr)->ToCreature()->GetMotionMaster()->MovePoint(SMART_RANDOM_POINT, x, y, z);
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_VISIBILITY:
|
|
{
|
|
if (me)
|
|
me->SetVisible(e.action.visibility.state != 0);
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_ACTIVE:
|
|
{
|
|
if (WorldObject* baseObj = GetBaseObject())
|
|
baseObj->setActive(e.action.active.state != 0);
|
|
|
|
break;
|
|
}
|
|
case SMART_ACTION_ATTACK_START:
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr))
|
|
{
|
|
me->AI()->AttackStart((*itr)->ToUnit());
|
|
break;
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SUMMON_CREATURE:
|
|
{
|
|
WorldObject* summoner = GetBaseObjectOrUnit(unit);
|
|
if (!summoner)
|
|
break;
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (targets)
|
|
{
|
|
float x, y, z, o;
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
(*itr)->GetPosition(x, y, z, o);
|
|
x += e.target.x;
|
|
y += e.target.y;
|
|
z += e.target.z;
|
|
o += e.target.o;
|
|
if (Creature* summon = summoner->SummonCreature(e.action.summonCreature.creature, x, y, z, o, (TempSummonType)e.action.summonCreature.type, e.action.summonCreature.duration))
|
|
if (e.action.summonCreature.attackInvoker)
|
|
summon->AI()->AttackStart((*itr)->ToUnit());
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
|
|
if (e.GetTargetType() != SMART_TARGET_POSITION)
|
|
break;
|
|
|
|
if (Creature* summon = summoner->SummonCreature(e.action.summonCreature.creature, e.target.x, e.target.y, e.target.z, e.target.o, (TempSummonType)e.action.summonCreature.type, e.action.summonCreature.duration))
|
|
if (unit && e.action.summonCreature.attackInvoker)
|
|
summon->AI()->AttackStart(unit);
|
|
break;
|
|
}
|
|
case SMART_ACTION_SUMMON_GO:
|
|
{
|
|
WorldObject* summoner = GetBaseObjectOrUnit(unit);
|
|
if (!summoner)
|
|
break;
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (targets)
|
|
{
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsUnit(*itr))
|
|
continue;
|
|
|
|
Position pos = (*itr)->GetPositionWithOffset(Position(e.target.x, e.target.y, e.target.z, e.target.o));
|
|
summoner->SummonGameObject(e.action.summonGO.entry, pos, QuaternionData::fromEulerAnglesZYX(pos.GetOrientation(), 0.f, 0.f), e.action.summonGO.despawnTime);
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
|
|
if (e.GetTargetType() != SMART_TARGET_POSITION)
|
|
break;
|
|
|
|
summoner->SummonGameObject(e.action.summonGO.entry, Position(e.target.x, e.target.y, e.target.z, e.target.o), QuaternionData::fromEulerAnglesZYX(e.target.o, 0.f, 0.f), e.action.summonGO.despawnTime);
|
|
break;
|
|
}
|
|
case SMART_ACTION_KILL_UNIT:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsUnit(*itr))
|
|
continue;
|
|
|
|
(*itr)->ToUnit()->KillSelf();
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_INSTALL_AI_TEMPLATE:
|
|
{
|
|
InstallTemplate(e);
|
|
break;
|
|
}
|
|
case SMART_ACTION_ADD_ITEM:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsPlayer(*itr))
|
|
continue;
|
|
|
|
(*itr)->ToPlayer()->AddItem(e.action.item.entry, e.action.item.count);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_REMOVE_ITEM:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsPlayer(*itr))
|
|
continue;
|
|
|
|
(*itr)->ToPlayer()->DestroyItemCount(e.action.item.entry, e.action.item.count, true);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_STORE_TARGET_LIST:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
StoreTargetList(targets, e.action.storeTargets.id);
|
|
break;
|
|
}
|
|
case SMART_ACTION_TELEPORT:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsPlayer(*itr))
|
|
(*itr)->ToPlayer()->TeleportTo(e.action.teleport.mapID, e.target.x, e.target.y, e.target.z, e.target.o);
|
|
else if (IsCreature(*itr))
|
|
(*itr)->ToCreature()->NearTeleportTo(e.target.x, e.target.y, e.target.z, e.target.o);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_FLY:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
ENSURE_AI(SmartAI, me->AI())->SetFly(e.action.setFly.fly != 0);
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_RUN:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
ENSURE_AI(SmartAI, me->AI())->SetRun(e.action.setRun.run != 0);
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_SWIM:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
ENSURE_AI(SmartAI, me->AI())->SetSwim(e.action.setSwim.swim != 0);
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_COUNTER:
|
|
{
|
|
if (ObjectList* targets = GetTargets(e, unit))
|
|
{
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
{
|
|
if (SmartAI* ai = CAST_AI(SmartAI, (*itr)->ToCreature()->AI()))
|
|
ai->GetScript()->StoreCounter(e.action.setCounter.counterId, e.action.setCounter.value, e.action.setCounter.reset);
|
|
else
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Action target for SMART_ACTION_SET_COUNTER is not using SmartAI, skipping");
|
|
}
|
|
else if (IsGameObject(*itr))
|
|
{
|
|
if (SmartGameObjectAI* ai = CAST_AI(SmartGameObjectAI, (*itr)->ToGameObject()->AI()))
|
|
ai->GetScript()->StoreCounter(e.action.setCounter.counterId, e.action.setCounter.value, e.action.setCounter.reset);
|
|
else
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Action target for SMART_ACTION_SET_COUNTER is not using SmartGameObjectAI, skipping");
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
else
|
|
StoreCounter(e.action.setCounter.counterId, e.action.setCounter.value, e.action.setCounter.reset);
|
|
|
|
break;
|
|
}
|
|
case SMART_ACTION_WP_START:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
bool run = e.action.wpStart.run != 0;
|
|
uint32 entry = e.action.wpStart.pathID;
|
|
bool repeat = e.action.wpStart.repeat != 0;
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
StoreTargetList(targets, SMART_ESCORT_TARGETS);
|
|
me->SetReactState((ReactStates)e.action.wpStart.reactState);
|
|
ENSURE_AI(SmartAI, me->AI())->StartPath(run, entry, repeat, unit);
|
|
|
|
uint32 quest = e.action.wpStart.quest;
|
|
uint32 DespawnTime = e.action.wpStart.despawnTime;
|
|
ENSURE_AI(SmartAI, me->AI())->mEscortQuestID = quest;
|
|
ENSURE_AI(SmartAI, me->AI())->SetDespawnTime(DespawnTime);
|
|
break;
|
|
}
|
|
case SMART_ACTION_WP_PAUSE:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
uint32 delay = e.action.wpPause.delay;
|
|
ENSURE_AI(SmartAI, me->AI())->PausePath(delay, e.GetEventType() == SMART_EVENT_WAYPOINT_REACHED ? false : true);
|
|
break;
|
|
}
|
|
case SMART_ACTION_WP_STOP:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
uint32 DespawnTime = e.action.wpStop.despawnTime;
|
|
uint32 quest = e.action.wpStop.quest;
|
|
bool fail = e.action.wpStop.fail != 0;
|
|
ENSURE_AI(SmartAI, me->AI())->StopPath(DespawnTime, quest, fail);
|
|
break;
|
|
}
|
|
case SMART_ACTION_WP_RESUME:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
ENSURE_AI(SmartAI, me->AI())->ResumePath();
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_ORIENTATION:
|
|
{
|
|
if (!me)
|
|
break;
|
|
|
|
if (e.GetTargetType() == SMART_TARGET_SELF)
|
|
me->SetFacingTo((me->GetTransport() ? me->GetTransportHomePosition() : me->GetHomePosition()).GetOrientation());
|
|
else if (e.GetTargetType() == SMART_TARGET_POSITION)
|
|
me->SetFacingTo(e.target.o);
|
|
else if (ObjectList* targets = GetTargets(e, unit))
|
|
{
|
|
if (!targets->empty())
|
|
me->SetFacingToObject(*targets->begin());
|
|
|
|
delete targets;
|
|
}
|
|
|
|
break;
|
|
}
|
|
case SMART_ACTION_PLAYMOVIE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (!IsPlayer(*itr))
|
|
continue;
|
|
|
|
(*itr)->ToPlayer()->SendMovieStart(e.action.movie.entry);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_MOVE_TO_POS:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
WorldObject* target = nullptr;
|
|
|
|
if (e.GetTargetType() == SMART_TARGET_CREATURE_RANGE || e.GetTargetType() == SMART_TARGET_CREATURE_GUID ||
|
|
e.GetTargetType() == SMART_TARGET_CREATURE_DISTANCE || e.GetTargetType() == SMART_TARGET_GAMEOBJECT_RANGE ||
|
|
e.GetTargetType() == SMART_TARGET_GAMEOBJECT_GUID || e.GetTargetType() == SMART_TARGET_GAMEOBJECT_DISTANCE ||
|
|
e.GetTargetType() == SMART_TARGET_CLOSEST_CREATURE || e.GetTargetType() == SMART_TARGET_CLOSEST_GAMEOBJECT ||
|
|
e.GetTargetType() == SMART_TARGET_OWNER_OR_SUMMONER || e.GetTargetType() == SMART_TARGET_ACTION_INVOKER ||
|
|
e.GetTargetType() == SMART_TARGET_CLOSEST_ENEMY || e.GetTargetType() == SMART_TARGET_CLOSEST_FRIENDLY)
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
target = targets->front();
|
|
delete targets;
|
|
}
|
|
|
|
if (!target)
|
|
{
|
|
Position dest(e.target.x, e.target.y, e.target.z);
|
|
if (e.action.MoveToPos.transport)
|
|
if (TransportBase* trans = me->GetDirectTransport())
|
|
trans->CalculatePassengerPosition(dest.m_positionX, dest.m_positionY, dest.m_positionZ);
|
|
|
|
me->GetMotionMaster()->MovePoint(e.action.MoveToPos.pointId, dest, e.action.MoveToPos.disablePathfinding == 0);
|
|
}
|
|
else
|
|
{
|
|
float x, y, z;
|
|
target->GetPosition(x, y, z);
|
|
if (e.action.MoveToPos.ContactDistance > 0)
|
|
target->GetContactPoint(me, x, y, z, e.action.MoveToPos.ContactDistance);
|
|
me->GetMotionMaster()->MovePoint(e.action.MoveToPos.pointId, x, y, z, e.action.MoveToPos.disablePathfinding == 0);
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_RESPAWN_TARGET:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToCreature()->Respawn();
|
|
else if (IsGameObject(*itr))
|
|
(*itr)->ToGameObject()->SetRespawnTime(e.action.RespawnTarget.goRespawnTime);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_CLOSE_GOSSIP:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsPlayer(*itr))
|
|
(*itr)->ToPlayer()->PlayerTalkClass->SendCloseGossip();
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_EQUIP:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (Creature* npc = (*itr)->ToCreature())
|
|
{
|
|
EquipmentItem slot[3];
|
|
int8 equipId = (int8)e.action.equip.entry;
|
|
if (equipId)
|
|
{
|
|
EquipmentInfo const* einfo = sObjectMgr->GetEquipmentInfo(npc->GetEntry(), equipId);
|
|
if (!einfo)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: SMART_ACTION_EQUIP uses non-existent equipment info id %u for creature %u", equipId, npc->GetEntry());
|
|
break;
|
|
}
|
|
|
|
npc->SetCurrentEquipmentId(equipId);
|
|
slot[0] = einfo->Items[0];
|
|
slot[1] = einfo->Items[1];
|
|
slot[2] = einfo->Items[2];
|
|
}
|
|
else
|
|
{
|
|
slot[0].ItemId = e.action.equip.slot1;
|
|
slot[1].ItemId = e.action.equip.slot2;
|
|
slot[2].ItemId = e.action.equip.slot3;
|
|
}
|
|
if (!e.action.equip.mask || (e.action.equip.mask & 1))
|
|
npc->SetVirtualItem(0, slot[0].ItemId, slot[0].AppearanceModId, slot[0].ItemVisual);
|
|
if (!e.action.equip.mask || (e.action.equip.mask & 2))
|
|
npc->SetVirtualItem(1, slot[1].ItemId, slot[1].AppearanceModId, slot[1].ItemVisual);
|
|
if (!e.action.equip.mask || (e.action.equip.mask & 4))
|
|
npc->SetVirtualItem(2, slot[2].ItemId, slot[2].AppearanceModId, slot[2].ItemVisual);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_CREATE_TIMED_EVENT:
|
|
{
|
|
SmartEvent ne = SmartEvent();
|
|
ne.type = (SMART_EVENT)SMART_EVENT_UPDATE;
|
|
ne.event_chance = e.action.timeEvent.chance;
|
|
if (!ne.event_chance) ne.event_chance = 100;
|
|
|
|
ne.minMaxRepeat.min = e.action.timeEvent.min;
|
|
ne.minMaxRepeat.max = e.action.timeEvent.max;
|
|
ne.minMaxRepeat.repeatMin = e.action.timeEvent.repeatMin;
|
|
ne.minMaxRepeat.repeatMax = e.action.timeEvent.repeatMax;
|
|
|
|
ne.event_flags = 0;
|
|
if (!ne.minMaxRepeat.repeatMin && !ne.minMaxRepeat.repeatMax)
|
|
ne.event_flags |= SMART_EVENT_FLAG_NOT_REPEATABLE;
|
|
|
|
SmartAction ac = SmartAction();
|
|
ac.type = (SMART_ACTION)SMART_ACTION_TRIGGER_TIMED_EVENT;
|
|
ac.timeEvent.id = e.action.timeEvent.id;
|
|
|
|
SmartScriptHolder ev = SmartScriptHolder();
|
|
ev.event = ne;
|
|
ev.event_id = e.action.timeEvent.id;
|
|
ev.target = e.target;
|
|
ev.action = ac;
|
|
InitTimer(ev);
|
|
mStoredEvents.push_back(ev);
|
|
break;
|
|
}
|
|
case SMART_ACTION_TRIGGER_TIMED_EVENT:
|
|
ProcessEventsFor((SMART_EVENT)SMART_EVENT_TIMED_EVENT_TRIGGERED, nullptr, e.action.timeEvent.id);
|
|
break;
|
|
case SMART_ACTION_REMOVE_TIMED_EVENT:
|
|
mRemIDs.push_back(e.action.timeEvent.id);
|
|
break;
|
|
case SMART_ACTION_OVERRIDE_SCRIPT_BASE_OBJECT:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
{
|
|
if (!meOrigGUID && me)
|
|
meOrigGUID = me->GetGUID();
|
|
if (!goOrigGUID && go)
|
|
goOrigGUID = go->GetGUID();
|
|
go = nullptr;
|
|
me = (*itr)->ToCreature();
|
|
break;
|
|
}
|
|
else if (IsGameObject(*itr))
|
|
{
|
|
if (!meOrigGUID && me)
|
|
meOrigGUID = me->GetGUID();
|
|
if (!goOrigGUID && go)
|
|
goOrigGUID = go->GetGUID();
|
|
go = (*itr)->ToGameObject();
|
|
me = nullptr;
|
|
break;
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_RESET_SCRIPT_BASE_OBJECT:
|
|
ResetBaseObject();
|
|
break;
|
|
case SMART_ACTION_CALL_SCRIPT_RESET:
|
|
SetPhase(0);
|
|
OnReset();
|
|
break;
|
|
case SMART_ACTION_SET_RANGED_MOVEMENT:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
float attackDistance = float(e.action.setRangedMovement.distance);
|
|
float attackAngle = float(e.action.setRangedMovement.angle) / 180.0f * float(M_PI);
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (targets)
|
|
{
|
|
for (ObjectList::iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (Creature* target = (*itr)->ToCreature())
|
|
if (IsSmart(target) && target->GetVictim())
|
|
if (ENSURE_AI(SmartAI, target->AI())->CanCombatMove())
|
|
target->GetMotionMaster()->MoveChase(target->GetVictim(), attackDistance, attackAngle);
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_CALL_TIMED_ACTIONLIST:
|
|
{
|
|
if (e.GetTargetType() == SMART_TARGET_NONE)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Entry " SI64FMTD " SourceType %u Event %u Action %u is using TARGET_NONE(0) for Script9 target. Please correct target_type in database.", e.entryOrGuid, e.GetScriptType(), e.GetEventType(), e.GetActionType());
|
|
break;
|
|
}
|
|
|
|
if (ObjectList* targets = GetTargets(e, unit))
|
|
{
|
|
for (ObjectList::iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (Creature* target = (*itr)->ToCreature())
|
|
{
|
|
if (IsSmart(target))
|
|
ENSURE_AI(SmartAI, target->AI())->SetScript9(e, e.action.timedActionList.id, GetLastInvoker());
|
|
}
|
|
else if (GameObject* goTarget = (*itr)->ToGameObject())
|
|
{
|
|
if (IsSmartGO(goTarget))
|
|
ENSURE_AI(SmartGameObjectAI, goTarget->AI())->SetScript9(e, e.action.timedActionList.id, GetLastInvoker());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_NPC_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToUnit()->SetUInt64Value(UNIT_NPC_FLAGS, e.action.unitFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_ADD_NPC_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToUnit()->SetFlag64(UNIT_NPC_FLAGS, e.action.unitFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_REMOVE_NPC_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToUnit()->RemoveFlag64(UNIT_NPC_FLAGS, e.action.unitFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_CROSS_CAST:
|
|
{
|
|
ObjectList* casters = GetTargets(CreateSmartEvent(SMART_EVENT_UPDATE_IC, 0, 0, 0, 0, 0, SMART_ACTION_NONE, 0, 0, 0, 0, 0, 0, (SMARTAI_TARGETS)e.action.crossCast.targetType, e.action.crossCast.targetParam1, e.action.crossCast.targetParam2, e.action.crossCast.targetParam3, 0), unit);
|
|
if (!casters)
|
|
break;
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
{
|
|
delete casters; // casters already validated, delete now
|
|
break;
|
|
}
|
|
|
|
for (ObjectList::const_iterator itr = casters->begin(); itr != casters->end(); ++itr)
|
|
{
|
|
if (!IsUnit(*itr))
|
|
continue;
|
|
|
|
Unit* targetUnit = (*itr)->ToUnit();
|
|
|
|
bool interruptedSpell = false;
|
|
|
|
for (ObjectList::const_iterator it = targets->begin(); it != targets->end(); ++it)
|
|
{
|
|
if (!IsUnit(*it))
|
|
continue;
|
|
|
|
if (!(e.action.crossCast.castFlags & SMARTCAST_AURA_NOT_PRESENT) || !(*it)->ToUnit()->HasAura(e.action.crossCast.spell))
|
|
{
|
|
if (!interruptedSpell && e.action.crossCast.castFlags & SMARTCAST_INTERRUPT_PREVIOUS)
|
|
{
|
|
targetUnit->InterruptNonMeleeSpells(false);
|
|
interruptedSpell = true;
|
|
}
|
|
|
|
targetUnit->CastSpell((*it)->ToUnit(), e.action.crossCast.spell, (e.action.crossCast.castFlags & SMARTCAST_TRIGGERED) != 0);
|
|
}
|
|
else
|
|
TC_LOG_DEBUG("scripts.ai", "Spell %u not cast because it has flag SMARTCAST_AURA_NOT_PRESENT and the target (%s) already has the aura", e.action.crossCast.spell, (*it)->GetGUID().ToString().c_str());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
delete casters;
|
|
break;
|
|
}
|
|
case SMART_ACTION_CALL_RANDOM_TIMED_ACTIONLIST:
|
|
{
|
|
uint32 actions[SMART_ACTION_PARAM_COUNT];
|
|
actions[0] = e.action.randTimedActionList.entry1;
|
|
actions[1] = e.action.randTimedActionList.entry2;
|
|
actions[2] = e.action.randTimedActionList.entry3;
|
|
actions[3] = e.action.randTimedActionList.entry4;
|
|
actions[4] = e.action.randTimedActionList.entry5;
|
|
actions[5] = e.action.randTimedActionList.entry6;
|
|
uint32 temp[SMART_ACTION_PARAM_COUNT];
|
|
uint32 count = 0;
|
|
for (uint8 i = 0; i < SMART_ACTION_PARAM_COUNT; i++)
|
|
{
|
|
if (actions[i] > 0)
|
|
{
|
|
temp[count] = actions[i];
|
|
++count;
|
|
}
|
|
}
|
|
|
|
if (count == 0)
|
|
break;
|
|
|
|
uint32 id = temp[urand(0, count - 1)];
|
|
if (e.GetTargetType() == SMART_TARGET_NONE)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Entry " SI64FMTD " SourceType %u Event %u Action %u is using TARGET_NONE(0) for Script9 target. Please correct target_type in database.", e.entryOrGuid, e.GetScriptType(), e.GetEventType(), e.GetActionType());
|
|
break;
|
|
}
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (targets)
|
|
{
|
|
for (ObjectList::iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (Creature* target = (*itr)->ToCreature())
|
|
{
|
|
if (IsSmart(target))
|
|
ENSURE_AI(SmartAI, target->AI())->SetScript9(e, id, GetLastInvoker());
|
|
}
|
|
else if (GameObject* goTarget = (*itr)->ToGameObject())
|
|
{
|
|
if (IsSmartGO(goTarget))
|
|
ENSURE_AI(SmartGameObjectAI, goTarget->AI())->SetScript9(e, id, GetLastInvoker());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_CALL_RANDOM_RANGE_TIMED_ACTIONLIST:
|
|
{
|
|
uint32 id = urand(e.action.randTimedActionList.entry1, e.action.randTimedActionList.entry2);
|
|
if (e.GetTargetType() == SMART_TARGET_NONE)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Entry " SI64FMTD " SourceType %u Event %u Action %u is using TARGET_NONE(0) for Script9 target. Please correct target_type in database.", e.entryOrGuid, e.GetScriptType(), e.GetEventType(), e.GetActionType());
|
|
break;
|
|
}
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (targets)
|
|
{
|
|
for (ObjectList::iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (Creature* target = (*itr)->ToCreature())
|
|
{
|
|
if (IsSmart(target))
|
|
ENSURE_AI(SmartAI, target->AI())->SetScript9(e, id, GetLastInvoker());
|
|
}
|
|
else if (GameObject* goTarget = (*itr)->ToGameObject())
|
|
{
|
|
if (IsSmartGO(goTarget))
|
|
ENSURE_AI(SmartGameObjectAI, goTarget->AI())->SetScript9(e, id, GetLastInvoker());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
}
|
|
break;
|
|
}
|
|
case SMART_ACTION_ACTIVATE_TAXI:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsPlayer(*itr))
|
|
(*itr)->ToPlayer()->ActivateTaxiPathTo(e.action.taxi.id);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_RANDOM_MOVE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
bool foundTarget = false;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature((*itr)))
|
|
{
|
|
foundTarget = true;
|
|
|
|
if (e.action.moveRandom.distance)
|
|
(*itr)->ToCreature()->GetMotionMaster()->MoveRandom((float)e.action.moveRandom.distance);
|
|
else
|
|
(*itr)->ToCreature()->GetMotionMaster()->MoveIdle();
|
|
}
|
|
}
|
|
|
|
if (!foundTarget && me && IsCreature(me))
|
|
{
|
|
if (e.action.moveRandom.distance)
|
|
me->GetMotionMaster()->MoveRandom((float)e.action.moveRandom.distance);
|
|
else
|
|
me->GetMotionMaster()->MoveIdle();
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_UNIT_FIELD_BYTES_1:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->SetByteFlag(UNIT_FIELD_BYTES_1, e.action.setunitByte.type, e.action.setunitByte.byte1);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_REMOVE_UNIT_FIELD_BYTES_1:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->RemoveByteFlag(UNIT_FIELD_BYTES_1, e.action.delunitByte.type, e.action.delunitByte.byte1);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_INTERRUPT_SPELL:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->InterruptNonMeleeSpells(e.action.interruptSpellCasting.withDelayed != 0, e.action.interruptSpellCasting.spell_id, e.action.interruptSpellCasting.withInstant != 0);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SEND_GO_CUSTOM_ANIM:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsGameObject(*itr))
|
|
(*itr)->ToGameObject()->SendCustomAnim(e.action.sendGoCustomAnim.anim);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_DYNAMIC_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->SetUInt32Value(OBJECT_DYNAMIC_FLAGS, e.action.unitFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_ADD_DYNAMIC_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->SetFlag(OBJECT_DYNAMIC_FLAGS, e.action.unitFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_REMOVE_DYNAMIC_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->RemoveFlag(OBJECT_DYNAMIC_FLAGS, e.action.unitFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_JUMP_TO_POS:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (Creature* creature = (*itr)->ToCreature())
|
|
{
|
|
creature->GetMotionMaster()->Clear();
|
|
creature->GetMotionMaster()->MoveJump(e.target.x, e.target.y, e.target.z, 0.0f, (float)e.action.jump.speedxy, (float)e.action.jump.speedz); // @todo add optional jump orientation support?
|
|
}
|
|
}
|
|
/// @todo Resume path when reached jump location
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_GO_SET_LOOT_STATE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsGameObject(*itr))
|
|
(*itr)->ToGameObject()->SetLootState((LootState)e.action.setGoLootState.state);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_GO_SET_GO_STATE:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsGameObject(*itr))
|
|
(*itr)->ToGameObject()->SetGoState((GOState)e.action.goState.state);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SEND_TARGET_TO_TARGET:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
ObjectList* storedTargets = GetTargetList(e.action.sendTargetToTarget.id);
|
|
if (!storedTargets)
|
|
{
|
|
delete targets;
|
|
break;
|
|
}
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
{
|
|
if (SmartAI* ai = CAST_AI(SmartAI, (*itr)->ToCreature()->AI()))
|
|
ai->GetScript()->StoreTargetList(new ObjectList(*storedTargets), e.action.sendTargetToTarget.id); // store a copy of target list
|
|
else
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Action target for SMART_ACTION_SEND_TARGET_TO_TARGET is not using SmartAI, skipping");
|
|
}
|
|
else if (IsGameObject(*itr))
|
|
{
|
|
if (SmartGameObjectAI* ai = CAST_AI(SmartGameObjectAI, (*itr)->ToGameObject()->AI()))
|
|
ai->GetScript()->StoreTargetList(new ObjectList(*storedTargets), e.action.sendTargetToTarget.id); // store a copy of target list
|
|
else
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Action target for SMART_ACTION_SEND_TARGET_TO_TARGET is not using SmartGameObjectAI, skipping");
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SEND_GOSSIP_MENU:
|
|
{
|
|
if (!GetBaseObject())
|
|
break;
|
|
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_SEND_GOSSIP_MENU: gossipMenuId %d, gossipNpcTextId %d",
|
|
e.action.sendGossipMenu.gossipMenuId, e.action.sendGossipMenu.gossipNpcTextId);
|
|
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (Player* player = (*itr)->ToPlayer())
|
|
{
|
|
if (e.action.sendGossipMenu.gossipMenuId)
|
|
player->PrepareGossipMenu(GetBaseObject(), e.action.sendGossipMenu.gossipMenuId, true);
|
|
else
|
|
player->PlayerTalkClass->ClearMenus();
|
|
|
|
player->PlayerTalkClass->SendGossipMenu(e.action.sendGossipMenu.gossipNpcTextId, GetBaseObject()->GetGUID());
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_HOME_POS:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
{
|
|
if (e.GetTargetType() == SMART_TARGET_SELF)
|
|
(*itr)->ToCreature()->SetHomePosition(me->GetPositionX(), me->GetPositionY(), me->GetPositionZ(), me->GetOrientation());
|
|
else if (e.GetTargetType() == SMART_TARGET_POSITION)
|
|
(*itr)->ToCreature()->SetHomePosition(e.target.x, e.target.y, e.target.z, e.target.o);
|
|
else if (e.GetTargetType() == SMART_TARGET_CREATURE_RANGE || e.GetTargetType() == SMART_TARGET_CREATURE_GUID ||
|
|
e.GetTargetType() == SMART_TARGET_CREATURE_DISTANCE || e.GetTargetType() == SMART_TARGET_GAMEOBJECT_RANGE ||
|
|
e.GetTargetType() == SMART_TARGET_GAMEOBJECT_GUID || e.GetTargetType() == SMART_TARGET_GAMEOBJECT_DISTANCE ||
|
|
e.GetTargetType() == SMART_TARGET_CLOSEST_CREATURE || e.GetTargetType() == SMART_TARGET_CLOSEST_GAMEOBJECT ||
|
|
e.GetTargetType() == SMART_TARGET_OWNER_OR_SUMMONER || e.GetTargetType() == SMART_TARGET_ACTION_INVOKER ||
|
|
e.GetTargetType() == SMART_TARGET_CLOSEST_ENEMY || e.GetTargetType() == SMART_TARGET_CLOSEST_FRIENDLY)
|
|
{
|
|
(*itr)->ToCreature()->SetHomePosition((*itr)->GetPositionX(), (*itr)->GetPositionY(), (*itr)->GetPositionZ(), (*itr)->GetOrientation());
|
|
}
|
|
else
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Action target for SMART_ACTION_SET_HOME_POS is invalid, skipping");
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_HEALTH_REGEN:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToCreature()->setRegeneratingHealth(e.action.setHealthRegen.regenHealth != 0);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_ROOT:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToCreature()->SetControlled(e.action.setRoot.root != 0, UNIT_STATE_ROOT);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_GO_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsGameObject(*itr))
|
|
(*itr)->ToGameObject()->SetUInt32Value(GAMEOBJECT_FLAGS, e.action.goFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_ADD_GO_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsGameObject(*itr))
|
|
(*itr)->ToGameObject()->SetFlag(GAMEOBJECT_FLAGS, e.action.goFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_REMOVE_GO_FLAG:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsGameObject(*itr))
|
|
(*itr)->ToGameObject()->RemoveFlag(GAMEOBJECT_FLAGS, e.action.goFlag.flag);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SUMMON_CREATURE_GROUP:
|
|
{
|
|
std::list<TempSummon*> summonList;
|
|
GetBaseObject()->SummonCreatureGroup(e.action.creatureGroup.group, &summonList);
|
|
|
|
for (std::list<TempSummon*>::const_iterator itr = summonList.begin(); itr != summonList.end(); ++itr)
|
|
if (unit && e.action.creatureGroup.attackInvoker)
|
|
(*itr)->AI()->AttackStart(unit);
|
|
|
|
break;
|
|
}
|
|
case SMART_ACTION_SET_POWER:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (targets)
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->SetPower(Powers(e.action.power.powerType), e.action.power.newPower);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_ADD_POWER:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (targets)
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->SetPower(Powers(e.action.power.powerType), (*itr)->ToUnit()->GetPower(Powers(e.action.power.powerType)) + e.action.power.newPower);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_REMOVE_POWER:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
|
|
if (targets)
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
if (IsUnit(*itr))
|
|
(*itr)->ToUnit()->SetPower(Powers(e.action.power.powerType), (*itr)->ToUnit()->GetPower(Powers(e.action.power.powerType)) - e.action.power.newPower);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_GAME_EVENT_STOP:
|
|
{
|
|
uint32 eventId = e.action.gameEventStop.id;
|
|
if (!sGameEventMgr->IsActiveEvent(eventId))
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript::ProcessAction: At case SMART_ACTION_GAME_EVENT_STOP, inactive event (id: %u)", eventId);
|
|
break;
|
|
}
|
|
sGameEventMgr->StopEvent(eventId, true);
|
|
break;
|
|
}
|
|
case SMART_ACTION_GAME_EVENT_START:
|
|
{
|
|
uint32 eventId = e.action.gameEventStart.id;
|
|
if (sGameEventMgr->IsActiveEvent(eventId))
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript::ProcessAction: At case SMART_ACTION_GAME_EVENT_START, already activated event (id: %u)", eventId);
|
|
break;
|
|
}
|
|
sGameEventMgr->StartEvent(eventId, true);
|
|
break;
|
|
}
|
|
case SMART_ACTION_RANDOM_SOUND:
|
|
{
|
|
std::vector<uint32> sounds;
|
|
std::copy_if(std::begin(e.action.randomSound.sounds), std::end(e.action.randomSound.sounds),
|
|
std::back_inserter(sounds), [](uint32 sound) { return sound != 0; });
|
|
|
|
bool onlySelf = e.action.randomSound.onlySelf != 0;
|
|
|
|
if (ObjectList* targets = GetTargets(e, unit))
|
|
{
|
|
for (WorldObject* const obj : *targets)
|
|
{
|
|
if (IsUnit(obj))
|
|
{
|
|
uint32 sound = Trinity::Containers::SelectRandomContainerElement(sounds);
|
|
obj->PlayDirectSound(sound, onlySelf ? obj->ToPlayer() : nullptr);
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_RANDOM_SOUND: target: %s (%s), sound: %u, onlyself: %s",
|
|
obj->GetName().c_str(), obj->GetGUID().ToString().c_str(), sound, onlySelf ? "true" : "false");
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
}
|
|
case SMART_ACTION_SET_CORPSE_DELAY:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
(*itr)->ToCreature()->SetCorpseDelay(e.action.corpseDelay.timer);
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_DISABLE_EVADE:
|
|
{
|
|
if (!IsSmart())
|
|
break;
|
|
|
|
ENSURE_AI(SmartAI, me->AI())->SetEvadeDisabled(e.action.disableEvade.disable != 0);
|
|
break;
|
|
}
|
|
case SMART_ACTION_PLAY_ANIMKIT:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (ObjectList::const_iterator itr = targets->begin(); itr != targets->end(); ++itr)
|
|
{
|
|
if (IsCreature(*itr))
|
|
{
|
|
if (e.action.animKit.type == 0)
|
|
(*itr)->ToCreature()->PlayOneShotAnimKitId(e.action.animKit.animKit);
|
|
else if (e.action.animKit.type == 1)
|
|
(*itr)->ToCreature()->SetAIAnimKitId(e.action.animKit.animKit);
|
|
else if (e.action.animKit.type == 2)
|
|
(*itr)->ToCreature()->SetMeleeAnimKitId(e.action.animKit.animKit);
|
|
else if (e.action.animKit.type == 3)
|
|
(*itr)->ToCreature()->SetMovementAnimKitId(e.action.animKit.animKit);
|
|
else
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript: Invalid type for SMART_ACTION_PLAY_ANIMKIT, skipping");
|
|
break;
|
|
}
|
|
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::ProcessAction:: SMART_ACTION_PLAY_ANIMKIT: target: %s (%s), AnimKit: %u, Type: %u",
|
|
(*itr)->GetName().c_str(), (*itr)->GetGUID().ToString().c_str(), e.action.animKit.animKit, e.action.animKit.type);
|
|
}
|
|
}
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SCENE_PLAY:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (WorldObject* target : *targets)
|
|
if (Player* playerTarget = target->ToPlayer())
|
|
playerTarget->GetSceneMgr().PlayScene(e.action.scene.sceneId);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
case SMART_ACTION_SCENE_CANCEL:
|
|
{
|
|
ObjectList* targets = GetTargets(e, unit);
|
|
if (!targets)
|
|
break;
|
|
|
|
for (WorldObject* target : *targets)
|
|
if (Player* playerTarget = target->ToPlayer())
|
|
playerTarget->GetSceneMgr().CancelSceneBySceneId(e.action.scene.sceneId);
|
|
|
|
delete targets;
|
|
break;
|
|
}
|
|
default:
|
|
TC_LOG_ERROR("sql.sql", "SmartScript::ProcessAction: Entry " SI64FMTD " SourceType %u, Event %u, Unhandled Action type %u", e.entryOrGuid, e.GetScriptType(), e.event_id, e.GetActionType());
|
|
break;
|
|
}
|
|
|
|
if (e.link && e.link != e.event_id)
|
|
{
|
|
SmartScriptHolder& linked = SmartAIMgr::FindLinkedEvent(mEvents, e.link);
|
|
if (linked)
|
|
ProcessEvent(linked, unit, var0, var1, bvar, spell, gob, varString);
|
|
else
|
|
TC_LOG_DEBUG("sql.sql", "SmartScript::ProcessAction: Entry " SI64FMTD " SourceType %u, Event %u, Link Event %u not found or invalid, skipped.", e.entryOrGuid, e.GetScriptType(), e.event_id, e.link);
|
|
}
|
|
}
|
|
|
|
void SmartScript::ProcessTimedAction(SmartScriptHolder& e, uint32 const& min, uint32 const& max, Unit* unit, uint32 var0, uint32 var1, bool bvar, const SpellInfo* spell, GameObject* gob, std::string const& varString)
|
|
{
|
|
if (sConditionMgr->IsObjectMeetingSmartEventConditions(e.entryOrGuid, e.event_id, e.source_type, unit, GetBaseObject()))
|
|
ProcessAction(e, unit, var0, var1, bvar, spell, gob, varString);
|
|
|
|
RecalcTimer(e, min, max);
|
|
}
|
|
|
|
void SmartScript::InstallTemplate(SmartScriptHolder const& e)
|
|
{
|
|
if (!GetBaseObject())
|
|
return;
|
|
if (mTemplate)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SmartScript::InstallTemplate: Entry " SI64FMTD " SourceType %u AI Template can not be set more then once, skipped.", e.entryOrGuid, e.GetScriptType());
|
|
return;
|
|
}
|
|
mTemplate = (SMARTAI_TEMPLATE)e.action.installTtemplate.id;
|
|
switch ((SMARTAI_TEMPLATE)e.action.installTtemplate.id)
|
|
{
|
|
case SMARTAI_TEMPLATE_CASTER:
|
|
{
|
|
AddEvent(SMART_EVENT_UPDATE_IC, 0, 0, 0, e.action.installTtemplate.param2, e.action.installTtemplate.param3, SMART_ACTION_CAST, e.action.installTtemplate.param1, e.target.raw.param1, 0, 0, 0, 0, SMART_TARGET_VICTIM, 0, 0, 0, 1);
|
|
AddEvent(SMART_EVENT_RANGE, 0, e.action.installTtemplate.param4, 300, 0, 0, SMART_ACTION_ALLOW_COMBAT_MOVEMENT, 1, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 1);
|
|
AddEvent(SMART_EVENT_RANGE, 0, 0, e.action.installTtemplate.param4>10?e.action.installTtemplate.param4-10:0, 0, 0, SMART_ACTION_ALLOW_COMBAT_MOVEMENT, 0, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 1);
|
|
AddEvent(SMART_EVENT_MANA_PCT, 0, e.action.installTtemplate.param5-15>100?100:e.action.installTtemplate.param5+15, 100, 1000, 1000, SMART_ACTION_SET_EVENT_PHASE, 1, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 0);
|
|
AddEvent(SMART_EVENT_MANA_PCT, 0, 0, e.action.installTtemplate.param5, 1000, 1000, SMART_ACTION_SET_EVENT_PHASE, 0, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 0);
|
|
AddEvent(SMART_EVENT_MANA_PCT, 0, 0, e.action.installTtemplate.param5, 1000, 1000, SMART_ACTION_ALLOW_COMBAT_MOVEMENT, 1, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 0);
|
|
break;
|
|
}
|
|
case SMARTAI_TEMPLATE_TURRET:
|
|
{
|
|
AddEvent(SMART_EVENT_UPDATE_IC, 0, 0, 0, e.action.installTtemplate.param2, e.action.installTtemplate.param3, SMART_ACTION_CAST, e.action.installTtemplate.param1, e.target.raw.param1, 0, 0, 0, 0, SMART_TARGET_VICTIM, 0, 0, 0, 0);
|
|
AddEvent(SMART_EVENT_JUST_CREATED, 0, 0, 0, 0, 0, SMART_ACTION_ALLOW_COMBAT_MOVEMENT, 0, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 0);
|
|
break;
|
|
}
|
|
case SMARTAI_TEMPLATE_CAGED_NPC_PART:
|
|
{
|
|
if (!me)
|
|
return;
|
|
//store cage as id1
|
|
AddEvent(SMART_EVENT_DATA_SET, 0, 0, 0, 0, 0, SMART_ACTION_STORE_TARGET_LIST, 1, 0, 0, 0, 0, 0, SMART_TARGET_CLOSEST_GAMEOBJECT, e.action.installTtemplate.param1, 10, 0, 0);
|
|
|
|
//reset(close) cage on hostage(me) respawn
|
|
AddEvent(SMART_EVENT_UPDATE, SMART_EVENT_FLAG_NOT_REPEATABLE, 0, 0, 0, 0, SMART_ACTION_RESET_GOBJECT, 0, 0, 0, 0, 0, 0, SMART_TARGET_GAMEOBJECT_DISTANCE, e.action.installTtemplate.param1, 5, 0, 0);
|
|
|
|
AddEvent(SMART_EVENT_DATA_SET, 0, 0, 0, 0, 0, SMART_ACTION_SET_RUN, e.action.installTtemplate.param3, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 0);
|
|
AddEvent(SMART_EVENT_DATA_SET, 0, 0, 0, 0, 0, SMART_ACTION_SET_EVENT_PHASE, 1, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 0);
|
|
|
|
AddEvent(SMART_EVENT_UPDATE, SMART_EVENT_FLAG_NOT_REPEATABLE, 1000, 1000, 0, 0, SMART_ACTION_MOVE_OFFSET, 0, 0, 0, 0, 0, 0, SMART_TARGET_SELF, 0, e.action.installTtemplate.param4, 0, 1);
|
|
//phase 1: give quest credit on movepoint reached
|
|
AddEvent(SMART_EVENT_MOVEMENTINFORM, 0, POINT_MOTION_TYPE, SMART_RANDOM_POINT, 0, 0, SMART_ACTION_SET_DATA, 0, 0, 0, 0, 0, 0, SMART_TARGET_STORED, 1, 0, 0, 1);
|
|
//phase 1: despawn after time on movepoint reached
|
|
AddEvent(SMART_EVENT_MOVEMENTINFORM, 0, POINT_MOTION_TYPE, SMART_RANDOM_POINT, 0, 0, SMART_ACTION_FORCE_DESPAWN, e.action.installTtemplate.param2, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 1);
|
|
|
|
if (sCreatureTextMgr->TextExist(me->GetEntry(), (uint8)e.action.installTtemplate.param5))
|
|
AddEvent(SMART_EVENT_MOVEMENTINFORM, 0, POINT_MOTION_TYPE, SMART_RANDOM_POINT, 0, 0, SMART_ACTION_TALK, e.action.installTtemplate.param5, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 1);
|
|
break;
|
|
}
|
|
case SMARTAI_TEMPLATE_CAGED_GO_PART:
|
|
{
|
|
if (!go)
|
|
return;
|
|
//store hostage as id1
|
|
AddEvent(SMART_EVENT_GO_STATE_CHANGED, 0, 2, 0, 0, 0, SMART_ACTION_STORE_TARGET_LIST, 1, 0, 0, 0, 0, 0, SMART_TARGET_CLOSEST_CREATURE, e.action.installTtemplate.param1, 10, 0, 0);
|
|
//store invoker as id2
|
|
AddEvent(SMART_EVENT_GO_STATE_CHANGED, 0, 2, 0, 0, 0, SMART_ACTION_STORE_TARGET_LIST, 2, 0, 0, 0, 0, 0, SMART_TARGET_NONE, 0, 0, 0, 0);
|
|
//signal hostage
|
|
AddEvent(SMART_EVENT_GO_STATE_CHANGED, 0, 2, 0, 0, 0, SMART_ACTION_SET_DATA, 0, 0, 0, 0, 0, 0, SMART_TARGET_STORED, 1, 0, 0, 0);
|
|
//when hostage raeched end point, give credit to invoker
|
|
if (e.action.installTtemplate.param2)
|
|
AddEvent(SMART_EVENT_DATA_SET, 0, 0, 0, 0, 0, SMART_ACTION_CALL_KILLEDMONSTER, e.action.installTtemplate.param1, 0, 0, 0, 0, 0, SMART_TARGET_STORED, 2, 0, 0, 0);
|
|
else
|
|
AddEvent(SMART_EVENT_GO_STATE_CHANGED, 0, 2, 0, 0, 0, SMART_ACTION_CALL_KILLEDMONSTER, e.action.installTtemplate.param1, 0, 0, 0, 0, 0, SMART_TARGET_STORED, 2, 0, 0, 0);
|
|
break;
|
|
}
|
|
case SMARTAI_TEMPLATE_BASIC:
|
|
default:
|
|
return;
|
|
}
|
|
}
|
|
|
|
void SmartScript::AddEvent(SMART_EVENT e, uint32 event_flags, uint32 event_param1, uint32 event_param2, uint32 event_param3, uint32 event_param4, SMART_ACTION action, uint32 action_param1, uint32 action_param2, uint32 action_param3, uint32 action_param4, uint32 action_param5, uint32 action_param6, SMARTAI_TARGETS t, uint32 target_param1, uint32 target_param2, uint32 target_param3, uint32 phaseMask)
|
|
{
|
|
mInstallEvents.push_back(CreateSmartEvent(e, event_flags, event_param1, event_param2, event_param3, event_param4, action, action_param1, action_param2, action_param3, action_param4, action_param5, action_param6, t, target_param1, target_param2, target_param3, phaseMask));
|
|
}
|
|
|
|
SmartScriptHolder SmartScript::CreateSmartEvent(SMART_EVENT e, uint32 event_flags, uint32 event_param1, uint32 event_param2, uint32 event_param3, uint32 event_param4, SMART_ACTION action, uint32 action_param1, uint32 action_param2, uint32 action_param3, uint32 action_param4, uint32 action_param5, uint32 action_param6, SMARTAI_TARGETS t, uint32 target_param1, uint32 target_param2, uint32 target_param3, uint32 phaseMask)
|
|
{
|
|
SmartScriptHolder script;
|
|
script.event.type = e;
|
|
script.event.raw.param1 = event_param1;
|
|
script.event.raw.param2 = event_param2;
|
|
script.event.raw.param3 = event_param3;
|
|
script.event.raw.param4 = event_param4;
|
|
script.event.event_phase_mask = phaseMask;
|
|
script.event.event_flags = event_flags;
|
|
script.event.event_chance = 100;
|
|
|
|
script.action.type = action;
|
|
script.action.raw.param1 = action_param1;
|
|
script.action.raw.param2 = action_param2;
|
|
script.action.raw.param3 = action_param3;
|
|
script.action.raw.param4 = action_param4;
|
|
script.action.raw.param5 = action_param5;
|
|
script.action.raw.param6 = action_param6;
|
|
|
|
script.target.type = t;
|
|
script.target.raw.param1 = target_param1;
|
|
script.target.raw.param2 = target_param2;
|
|
script.target.raw.param3 = target_param3;
|
|
|
|
script.source_type = SMART_SCRIPT_TYPE_CREATURE;
|
|
InitTimer(script);
|
|
return script;
|
|
}
|
|
|
|
ObjectList* SmartScript::GetTargets(SmartScriptHolder const& e, Unit* invoker /*= nullptr*/)
|
|
{
|
|
Unit* scriptTrigger = nullptr;
|
|
if (invoker)
|
|
scriptTrigger = invoker;
|
|
else if (Unit* tempLastInvoker = GetLastInvoker())
|
|
scriptTrigger = tempLastInvoker;
|
|
|
|
WorldObject* baseObject = GetBaseObject();
|
|
|
|
ObjectList* l = new ObjectList();
|
|
switch (e.GetTargetType())
|
|
{
|
|
case SMART_TARGET_SELF:
|
|
if (baseObject)
|
|
l->push_back(baseObject);
|
|
break;
|
|
case SMART_TARGET_VICTIM:
|
|
if (me)
|
|
if (Unit* victim = me->GetVictim())
|
|
l->push_back(victim);
|
|
break;
|
|
case SMART_TARGET_HOSTILE_SECOND_AGGRO:
|
|
if (me)
|
|
if (Unit* u = me->AI()->SelectTarget(SELECT_TARGET_TOPAGGRO, 1))
|
|
l->push_back(u);
|
|
break;
|
|
case SMART_TARGET_HOSTILE_LAST_AGGRO:
|
|
if (me)
|
|
if (Unit* u = me->AI()->SelectTarget(SELECT_TARGET_BOTTOMAGGRO, 0))
|
|
l->push_back(u);
|
|
break;
|
|
case SMART_TARGET_HOSTILE_RANDOM:
|
|
if (me)
|
|
if (Unit* u = me->AI()->SelectTarget(SELECT_TARGET_RANDOM, 0))
|
|
l->push_back(u);
|
|
break;
|
|
case SMART_TARGET_HOSTILE_RANDOM_NOT_TOP:
|
|
if (me)
|
|
if (Unit* u = me->AI()->SelectTarget(SELECT_TARGET_RANDOM, 1))
|
|
l->push_back(u);
|
|
break;
|
|
case SMART_TARGET_ACTION_INVOKER:
|
|
if (scriptTrigger)
|
|
l->push_back(scriptTrigger);
|
|
break;
|
|
case SMART_TARGET_ACTION_INVOKER_VEHICLE:
|
|
if (scriptTrigger && scriptTrigger->GetVehicle() && scriptTrigger->GetVehicle()->GetBase())
|
|
l->push_back(scriptTrigger->GetVehicle()->GetBase());
|
|
break;
|
|
case SMART_TARGET_INVOKER_PARTY:
|
|
if (scriptTrigger)
|
|
{
|
|
if (Player* player = scriptTrigger->ToPlayer())
|
|
{
|
|
if (Group* group = player->GetGroup())
|
|
{
|
|
for (GroupReference* groupRef = group->GetFirstMember(); groupRef != nullptr; groupRef = groupRef->next())
|
|
if (Player* member = groupRef->GetSource())
|
|
l->push_back(member);
|
|
}
|
|
// We still add the player to the list if there is no group. If we do
|
|
// this even if there is a group (thus the else-check), it will add the
|
|
// same player to the list twice. We don't want that to happen.
|
|
else
|
|
l->push_back(scriptTrigger);
|
|
}
|
|
}
|
|
break;
|
|
case SMART_TARGET_CREATURE_RANGE:
|
|
{
|
|
// will always return a valid pointer, even if empty list
|
|
ObjectList* units = GetWorldObjectsInDist((float)e.target.unitRange.maxDist);
|
|
for (ObjectList::const_iterator itr = units->begin(); itr != units->end(); ++itr)
|
|
{
|
|
if (!IsCreature(*itr))
|
|
continue;
|
|
|
|
if (me && me->GetGUID() == (*itr)->GetGUID())
|
|
continue;
|
|
|
|
if ((!e.target.unitRange.creature || (*itr)->ToCreature()->GetEntry() == e.target.unitRange.creature) && baseObject->IsInRange(*itr, float(e.target.unitRange.minDist), float(e.target.unitRange.maxDist)))
|
|
l->push_back(*itr);
|
|
}
|
|
|
|
delete units;
|
|
break;
|
|
}
|
|
case SMART_TARGET_CREATURE_DISTANCE:
|
|
{
|
|
// will always return a valid pointer, even if empty list
|
|
ObjectList* units = GetWorldObjectsInDist((float)e.target.unitDistance.dist);
|
|
for (ObjectList::const_iterator itr = units->begin(); itr != units->end(); ++itr)
|
|
{
|
|
if (!IsCreature(*itr))
|
|
continue;
|
|
|
|
if (me && me->GetGUID() == (*itr)->GetGUID())
|
|
continue;
|
|
|
|
if (!e.target.unitDistance.creature || (*itr)->ToCreature()->GetEntry() == e.target.unitDistance.creature)
|
|
l->push_back(*itr);
|
|
}
|
|
|
|
delete units;
|
|
break;
|
|
}
|
|
case SMART_TARGET_GAMEOBJECT_DISTANCE:
|
|
{
|
|
// will always return a valid pointer, even if empty list
|
|
ObjectList* units = GetWorldObjectsInDist((float)e.target.goDistance.dist);
|
|
for (ObjectList::const_iterator itr = units->begin(); itr != units->end(); ++itr)
|
|
{
|
|
if (!IsGameObject(*itr))
|
|
continue;
|
|
|
|
if (go && go->GetGUID() == (*itr)->GetGUID())
|
|
continue;
|
|
|
|
if (!e.target.goDistance.entry || (*itr)->ToGameObject()->GetEntry() == e.target.goDistance.entry)
|
|
l->push_back(*itr);
|
|
}
|
|
|
|
delete units;
|
|
break;
|
|
}
|
|
case SMART_TARGET_GAMEOBJECT_RANGE:
|
|
{
|
|
// will always return a valid pointer, even if empty list
|
|
ObjectList* units = GetWorldObjectsInDist((float)e.target.goRange.maxDist);
|
|
for (ObjectList::const_iterator itr = units->begin(); itr != units->end(); ++itr)
|
|
{
|
|
if (!IsGameObject(*itr))
|
|
continue;
|
|
|
|
if (go && go->GetGUID() == (*itr)->GetGUID())
|
|
continue;
|
|
|
|
if ((!e.target.goRange.entry && (*itr)->ToGameObject()->GetEntry() == e.target.goRange.entry) && baseObject->IsInRange(*itr, float(e.target.goRange.minDist), float(e.target.goRange.maxDist)))
|
|
l->push_back(*itr);
|
|
}
|
|
|
|
delete units;
|
|
break;
|
|
}
|
|
case SMART_TARGET_CREATURE_GUID:
|
|
{
|
|
if (!scriptTrigger && !baseObject)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SMART_TARGET_CREATURE_GUID can not be used without invoker");
|
|
break;
|
|
}
|
|
|
|
if (Creature* target = FindCreatureNear(scriptTrigger ? scriptTrigger : baseObject, e.target.unitGUID.dbGuid))
|
|
if (!e.target.unitGUID.entry || target->GetEntry() == e.target.unitGUID.entry)
|
|
l->push_back(target);
|
|
break;
|
|
}
|
|
case SMART_TARGET_GAMEOBJECT_GUID:
|
|
{
|
|
if (!scriptTrigger && !baseObject)
|
|
{
|
|
TC_LOG_ERROR("sql.sql", "SMART_TARGET_GAMEOBJECT_GUID can not be used without invoker");
|
|
break;
|
|
}
|
|
|
|
if (GameObject* target = FindGameObjectNear(scriptTrigger ? scriptTrigger : baseObject, e.target.goGUID.dbGuid))
|
|
if (!e.target.goGUID.entry || target->GetEntry() == e.target.goGUID.entry)
|
|
l->push_back(target);
|
|
break;
|
|
}
|
|
case SMART_TARGET_PLAYER_RANGE:
|
|
{
|
|
// will always return a valid pointer, even if empty list
|
|
ObjectList* units = GetWorldObjectsInDist((float)e.target.playerRange.maxDist);
|
|
if (!units->empty() && baseObject)
|
|
for (ObjectList::const_iterator itr = units->begin(); itr != units->end(); ++itr)
|
|
if (IsPlayer(*itr) && baseObject->IsInRange(*itr, (float)e.target.playerRange.minDist, (float)e.target.playerRange.maxDist))
|
|
l->push_back(*itr);
|
|
|
|
delete units;
|
|
break;
|
|
}
|
|
case SMART_TARGET_PLAYER_DISTANCE:
|
|
{
|
|
// will always return a valid pointer, even if empty list
|
|
ObjectList* units = GetWorldObjectsInDist((float)e.target.playerDistance.dist);
|
|
for (ObjectList::const_iterator itr = units->begin(); itr != units->end(); ++itr)
|
|
if (IsPlayer(*itr))
|
|
l->push_back(*itr);
|
|
|
|
delete units;
|
|
break;
|
|
}
|
|
case SMART_TARGET_STORED:
|
|
{
|
|
ObjectListMap::iterator itr = mTargetStorage->find(e.target.stored.id);
|
|
if (itr != mTargetStorage->end())
|
|
{
|
|
ObjectList* objectList = itr->second->GetObjectList();
|
|
l->assign(objectList->begin(), objectList->end());
|
|
}
|
|
|
|
return l;
|
|
}
|
|
case SMART_TARGET_CLOSEST_CREATURE:
|
|
{
|
|
if (Creature* target = baseObject->FindNearestCreature(e.target.closest.entry, float(e.target.closest.dist ? e.target.closest.dist : 100), !e.target.closest.dead))
|
|
l->push_back(target);
|
|
break;
|
|
}
|
|
case SMART_TARGET_CLOSEST_GAMEOBJECT:
|
|
{
|
|
if (GameObject* target = baseObject->FindNearestGameObject(e.target.closest.entry, float(e.target.closest.dist ? e.target.closest.dist : 100)))
|
|
l->push_back(target);
|
|
break;
|
|
}
|
|
case SMART_TARGET_CLOSEST_PLAYER:
|
|
{
|
|
if (me)
|
|
if (Player* target = me->SelectNearestPlayer(float(e.target.playerDistance.dist)))
|
|
l->push_back(target);
|
|
break;
|
|
}
|
|
case SMART_TARGET_OWNER_OR_SUMMONER:
|
|
{
|
|
if (me)
|
|
{
|
|
ObjectGuid charmerOrOwnerGuid = me->GetCharmerOrOwnerGUID();
|
|
|
|
if (!charmerOrOwnerGuid)
|
|
if (TempSummon* tempSummon = me->ToTempSummon())
|
|
if (Unit* summoner = tempSummon->GetSummoner())
|
|
charmerOrOwnerGuid = summoner->GetGUID();
|
|
|
|
if (!charmerOrOwnerGuid)
|
|
charmerOrOwnerGuid = me->GetCreatorGUID();
|
|
|
|
if (Unit* owner = ObjectAccessor::GetUnit(*me, charmerOrOwnerGuid))
|
|
l->push_back(owner);
|
|
}
|
|
break;
|
|
}
|
|
case SMART_TARGET_THREAT_LIST:
|
|
{
|
|
if (me)
|
|
{
|
|
ThreatContainer::StorageType threatList = me->getThreatManager().getThreatList();
|
|
for (ThreatContainer::StorageType::const_iterator i = threatList.begin(); i != threatList.end(); ++i)
|
|
if (Unit* temp = ObjectAccessor::GetUnit(*me, (*i)->getUnitGuid()))
|
|
l->push_back(temp);
|
|
}
|
|
break;
|
|
}
|
|
case SMART_TARGET_CLOSEST_ENEMY:
|
|
{
|
|
if (me)
|
|
if (Unit* target = me->SelectNearestTarget(e.target.closestAttackable.maxDist, e.target.closestAttackable.playerOnly != 0))
|
|
l->push_back(target);
|
|
break;
|
|
}
|
|
case SMART_TARGET_CLOSEST_FRIENDLY:
|
|
{
|
|
if (me)
|
|
if (Unit* target = DoFindClosestFriendlyInRange(e.target.closestFriendly.maxDist, e.target.closestFriendly.playerOnly != 0))
|
|
l->push_back(target);
|
|
break;
|
|
}
|
|
case SMART_TARGET_LOOT_RECIPIENTS:
|
|
{
|
|
if (me)
|
|
{
|
|
if (Group* lootGroup = me->GetLootRecipientGroup())
|
|
{
|
|
for (GroupReference* it = lootGroup->GetFirstMember(); it != nullptr; it = it->next())
|
|
if (Player* recipient = it->GetSource())
|
|
l->push_back(recipient);
|
|
}
|
|
else
|
|
{
|
|
if (Player* recipient = me->GetLootRecipient())
|
|
l->push_back(recipient);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case SMART_TARGET_VEHICLE_ACCESSORY:
|
|
{
|
|
if (me && me->IsVehicle())
|
|
{
|
|
if (Unit* target = me->GetVehicleKit()->GetPassenger(e.target.vehicle.seat))
|
|
l->push_back(target);
|
|
}
|
|
break;
|
|
}
|
|
case SMART_TARGET_POSITION:
|
|
case SMART_TARGET_NONE:
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (l->empty())
|
|
{
|
|
delete l;
|
|
l = nullptr;
|
|
}
|
|
|
|
return l;
|
|
}
|
|
|
|
ObjectList* SmartScript::GetWorldObjectsInDist(float dist)
|
|
{
|
|
ObjectList* targets = new ObjectList();
|
|
WorldObject* obj = GetBaseObject();
|
|
if (obj)
|
|
{
|
|
Trinity::AllWorldObjectsInRange u_check(obj, dist);
|
|
Trinity::WorldObjectListSearcher<Trinity::AllWorldObjectsInRange> searcher(obj, *targets, u_check);
|
|
Cell::VisitAllObjects(obj, searcher, dist);
|
|
}
|
|
return targets;
|
|
}
|
|
|
|
void SmartScript::ProcessEvent(SmartScriptHolder& e, Unit* unit, uint32 var0, uint32 var1, bool bvar, const SpellInfo* spell, GameObject* gob, std::string const& varString)
|
|
{
|
|
if (!e.active && e.GetEventType() != SMART_EVENT_LINK)
|
|
return;
|
|
|
|
if ((e.event.event_phase_mask && !IsInPhase(e.event.event_phase_mask)) || ((e.event.event_flags & SMART_EVENT_FLAG_NOT_REPEATABLE) && e.runOnce))
|
|
return;
|
|
|
|
if (!(e.event.event_flags & SMART_EVENT_FLAG_WHILE_CHARMED) && IsCharmedCreature(me))
|
|
return;
|
|
|
|
switch (e.GetEventType())
|
|
{
|
|
case SMART_EVENT_LINK://special handling
|
|
ProcessAction(e, unit, var0, var1, bvar, spell, gob);
|
|
break;
|
|
//called from Update tick
|
|
case SMART_EVENT_UPDATE:
|
|
ProcessTimedAction(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax);
|
|
break;
|
|
case SMART_EVENT_UPDATE_OOC:
|
|
if (me && me->IsInCombat())
|
|
return;
|
|
ProcessTimedAction(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax);
|
|
break;
|
|
case SMART_EVENT_UPDATE_IC:
|
|
if (!me || !me->IsInCombat())
|
|
return;
|
|
ProcessTimedAction(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax);
|
|
break;
|
|
case SMART_EVENT_HEALT_PCT:
|
|
{
|
|
if (!me || !me->IsInCombat() || !me->GetMaxHealth())
|
|
return;
|
|
uint32 perc = (uint32)me->GetHealthPct();
|
|
if (perc > e.event.minMaxRepeat.max || perc < e.event.minMaxRepeat.min)
|
|
return;
|
|
ProcessTimedAction(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_TARGET_HEALTH_PCT:
|
|
{
|
|
if (!me || !me->IsInCombat() || !me->GetVictim() || !me->EnsureVictim()->GetMaxHealth())
|
|
return;
|
|
uint32 perc = (uint32)me->EnsureVictim()->GetHealthPct();
|
|
if (perc > e.event.minMaxRepeat.max || perc < e.event.minMaxRepeat.min)
|
|
return;
|
|
ProcessTimedAction(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax, me->GetVictim());
|
|
break;
|
|
}
|
|
case SMART_EVENT_MANA_PCT:
|
|
{
|
|
if (!me || !me->IsInCombat() || !me->GetMaxPower(POWER_MANA))
|
|
return;
|
|
uint32 perc = uint32(me->GetPowerPct(POWER_MANA));
|
|
if (perc > e.event.minMaxRepeat.max || perc < e.event.minMaxRepeat.min)
|
|
return;
|
|
ProcessTimedAction(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_TARGET_MANA_PCT:
|
|
{
|
|
if (!me || !me->IsInCombat() || !me->GetVictim() || !me->EnsureVictim()->GetMaxPower(POWER_MANA))
|
|
return;
|
|
uint32 perc = uint32(me->EnsureVictim()->GetPowerPct(POWER_MANA));
|
|
if (perc > e.event.minMaxRepeat.max || perc < e.event.minMaxRepeat.min)
|
|
return;
|
|
ProcessTimedAction(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax, me->GetVictim());
|
|
break;
|
|
}
|
|
case SMART_EVENT_RANGE:
|
|
{
|
|
if (!me || !me->IsInCombat() || !me->GetVictim())
|
|
return;
|
|
|
|
if (me->IsInRange(me->GetVictim(), (float)e.event.minMaxRepeat.min, (float)e.event.minMaxRepeat.max))
|
|
ProcessTimedAction(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax, me->GetVictim());
|
|
break;
|
|
}
|
|
case SMART_EVENT_VICTIM_CASTING:
|
|
{
|
|
if (!me || !me->IsInCombat())
|
|
return;
|
|
|
|
Unit* victim = me->GetVictim();
|
|
|
|
if (!victim || !victim->IsNonMeleeSpellCast(false, false, true))
|
|
return;
|
|
|
|
if (e.event.targetCasting.spellId > 0)
|
|
if (Spell* currSpell = victim->GetCurrentSpell(CURRENT_GENERIC_SPELL))
|
|
if (currSpell->m_spellInfo->Id != e.event.targetCasting.spellId)
|
|
return;
|
|
|
|
ProcessTimedAction(e, e.event.targetCasting.repeatMin, e.event.targetCasting.repeatMax, me->GetVictim());
|
|
break;
|
|
}
|
|
case SMART_EVENT_FRIENDLY_HEALTH:
|
|
{
|
|
if (!me || !me->IsInCombat())
|
|
return;
|
|
|
|
Unit* target = DoSelectLowestHpFriendly((float)e.event.friendlyHealth.radius, e.event.friendlyHealth.hpDeficit);
|
|
if (!target || !target->IsInCombat())
|
|
return;
|
|
ProcessTimedAction(e, e.event.friendlyHealth.repeatMin, e.event.friendlyHealth.repeatMax, target);
|
|
break;
|
|
}
|
|
case SMART_EVENT_FRIENDLY_IS_CC:
|
|
{
|
|
if (!me || !me->IsInCombat())
|
|
return;
|
|
|
|
std::list<Creature*> pList;
|
|
DoFindFriendlyCC(pList, (float)e.event.friendlyCC.radius);
|
|
if (pList.empty())
|
|
return;
|
|
ProcessTimedAction(e, e.event.friendlyCC.repeatMin, e.event.friendlyCC.repeatMax, *pList.begin());
|
|
break;
|
|
}
|
|
case SMART_EVENT_FRIENDLY_MISSING_BUFF:
|
|
{
|
|
std::list<Creature*> pList;
|
|
DoFindFriendlyMissingBuff(pList, (float)e.event.missingBuff.radius, e.event.missingBuff.spell);
|
|
|
|
if (pList.empty())
|
|
return;
|
|
|
|
ProcessTimedAction(e, e.event.missingBuff.repeatMin, e.event.missingBuff.repeatMax, *pList.begin());
|
|
break;
|
|
}
|
|
case SMART_EVENT_HAS_AURA:
|
|
{
|
|
if (!me)
|
|
return;
|
|
uint32 count = me->GetAuraCount(e.event.aura.spell);
|
|
if ((!e.event.aura.count && !count) || (e.event.aura.count && count >= e.event.aura.count))
|
|
ProcessTimedAction(e, e.event.aura.repeatMin, e.event.aura.repeatMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_TARGET_BUFFED:
|
|
{
|
|
if (!me || !me->GetVictim())
|
|
return;
|
|
uint32 count = me->EnsureVictim()->GetAuraCount(e.event.aura.spell);
|
|
if (count < e.event.aura.count)
|
|
return;
|
|
ProcessTimedAction(e, e.event.aura.repeatMin, e.event.aura.repeatMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_CHARMED:
|
|
{
|
|
if (bvar == (e.event.charm.onRemove != 1))
|
|
ProcessAction(e, unit, var0, var1, bvar, spell, gob);
|
|
break;
|
|
}
|
|
//no params
|
|
case SMART_EVENT_AGGRO:
|
|
case SMART_EVENT_DEATH:
|
|
case SMART_EVENT_EVADE:
|
|
case SMART_EVENT_REACHED_HOME:
|
|
case SMART_EVENT_CHARMED_TARGET:
|
|
case SMART_EVENT_CORPSE_REMOVED:
|
|
case SMART_EVENT_AI_INIT:
|
|
case SMART_EVENT_TRANSPORT_ADDPLAYER:
|
|
case SMART_EVENT_TRANSPORT_REMOVE_PLAYER:
|
|
case SMART_EVENT_QUEST_ACCEPTED:
|
|
case SMART_EVENT_QUEST_OBJ_COPLETETION:
|
|
case SMART_EVENT_QUEST_COMPLETION:
|
|
case SMART_EVENT_QUEST_REWARDED:
|
|
case SMART_EVENT_QUEST_FAIL:
|
|
case SMART_EVENT_JUST_SUMMONED:
|
|
case SMART_EVENT_RESET:
|
|
case SMART_EVENT_JUST_CREATED:
|
|
case SMART_EVENT_GOSSIP_HELLO:
|
|
case SMART_EVENT_FOLLOW_COMPLETED:
|
|
case SMART_EVENT_ON_SPELLCLICK:
|
|
ProcessAction(e, unit, var0, var1, bvar, spell, gob);
|
|
break;
|
|
case SMART_EVENT_IS_BEHIND_TARGET:
|
|
{
|
|
if (!me)
|
|
return;
|
|
|
|
if (Unit* victim = me->GetVictim())
|
|
{
|
|
if (!victim->HasInArc(static_cast<float>(M_PI), me))
|
|
ProcessTimedAction(e, e.event.behindTarget.cooldownMin, e.event.behindTarget.cooldownMax, victim);
|
|
}
|
|
break;
|
|
}
|
|
case SMART_EVENT_RECEIVE_EMOTE:
|
|
if (e.event.emote.emote == var0)
|
|
{
|
|
ProcessAction(e, unit);
|
|
RecalcTimer(e, e.event.emote.cooldownMin, e.event.emote.cooldownMax);
|
|
}
|
|
break;
|
|
case SMART_EVENT_KILL:
|
|
{
|
|
if (!me || !unit)
|
|
return;
|
|
if (e.event.kill.playerOnly && unit->GetTypeId() != TYPEID_PLAYER)
|
|
return;
|
|
if (e.event.kill.creature && unit->GetEntry() != e.event.kill.creature)
|
|
return;
|
|
ProcessAction(e, unit);
|
|
RecalcTimer(e, e.event.kill.cooldownMin, e.event.kill.cooldownMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_SPELLHIT_TARGET:
|
|
case SMART_EVENT_SPELLHIT:
|
|
{
|
|
if (!spell)
|
|
return;
|
|
if ((!e.event.spellHit.spell || spell->Id == e.event.spellHit.spell) &&
|
|
(!e.event.spellHit.school || (spell->SchoolMask & e.event.spellHit.school)))
|
|
{
|
|
ProcessAction(e, unit, 0, 0, bvar, spell);
|
|
RecalcTimer(e, e.event.spellHit.cooldownMin, e.event.spellHit.cooldownMax);
|
|
}
|
|
break;
|
|
}
|
|
case SMART_EVENT_OOC_LOS:
|
|
{
|
|
if (!me || me->IsInCombat())
|
|
return;
|
|
//can trigger if closer than fMaxAllowedRange
|
|
float range = (float)e.event.los.maxDist;
|
|
|
|
//if range is ok and we are actually in LOS
|
|
if (me->IsWithinDistInMap(unit, range) && me->IsWithinLOSInMap(unit))
|
|
{
|
|
//if friendly event&&who is not hostile OR hostile event&&who is hostile
|
|
if ((e.event.los.noHostile && !me->IsHostileTo(unit)) ||
|
|
(!e.event.los.noHostile && me->IsHostileTo(unit)))
|
|
{
|
|
ProcessAction(e, unit);
|
|
RecalcTimer(e, e.event.los.cooldownMin, e.event.los.cooldownMax);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case SMART_EVENT_IC_LOS:
|
|
{
|
|
if (!me || !me->IsInCombat())
|
|
return;
|
|
//can trigger if closer than fMaxAllowedRange
|
|
float range = (float)e.event.los.maxDist;
|
|
|
|
//if range is ok and we are actually in LOS
|
|
if (me->IsWithinDistInMap(unit, range) && me->IsWithinLOSInMap(unit))
|
|
{
|
|
//if friendly event&&who is not hostile OR hostile event&&who is hostile
|
|
if ((e.event.los.noHostile && !me->IsHostileTo(unit)) ||
|
|
(!e.event.los.noHostile && me->IsHostileTo(unit)))
|
|
{
|
|
ProcessAction(e, unit);
|
|
RecalcTimer(e, e.event.los.cooldownMin, e.event.los.cooldownMax);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case SMART_EVENT_RESPAWN:
|
|
{
|
|
if (!GetBaseObject())
|
|
return;
|
|
if (e.event.respawn.type == SMART_SCRIPT_RESPAWN_CONDITION_MAP && GetBaseObject()->GetMapId() != e.event.respawn.map)
|
|
return;
|
|
if (e.event.respawn.type == SMART_SCRIPT_RESPAWN_CONDITION_AREA && GetBaseObject()->GetZoneId() != e.event.respawn.area)
|
|
return;
|
|
ProcessAction(e);
|
|
break;
|
|
}
|
|
case SMART_EVENT_SUMMONED_UNIT:
|
|
{
|
|
if (!IsCreature(unit))
|
|
return;
|
|
if (e.event.summoned.creature && unit->GetEntry() != e.event.summoned.creature)
|
|
return;
|
|
ProcessAction(e, unit);
|
|
RecalcTimer(e, e.event.summoned.cooldownMin, e.event.summoned.cooldownMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_RECEIVE_HEAL:
|
|
case SMART_EVENT_DAMAGED:
|
|
case SMART_EVENT_DAMAGED_TARGET:
|
|
{
|
|
if (var0 > e.event.minMaxRepeat.max || var0 < e.event.minMaxRepeat.min)
|
|
return;
|
|
ProcessAction(e, unit);
|
|
RecalcTimer(e, e.event.minMaxRepeat.repeatMin, e.event.minMaxRepeat.repeatMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_MOVEMENTINFORM:
|
|
{
|
|
if ((e.event.movementInform.type && var0 != e.event.movementInform.type) || (e.event.movementInform.id && var1 != e.event.movementInform.id))
|
|
return;
|
|
ProcessAction(e, unit, var0, var1);
|
|
break;
|
|
}
|
|
case SMART_EVENT_TRANSPORT_RELOCATE:
|
|
case SMART_EVENT_WAYPOINT_START:
|
|
{
|
|
if (e.event.waypoint.pathID && var0 != e.event.waypoint.pathID)
|
|
return;
|
|
ProcessAction(e, unit, var0);
|
|
break;
|
|
}
|
|
case SMART_EVENT_WAYPOINT_REACHED:
|
|
case SMART_EVENT_WAYPOINT_RESUMED:
|
|
case SMART_EVENT_WAYPOINT_PAUSED:
|
|
case SMART_EVENT_WAYPOINT_STOPPED:
|
|
case SMART_EVENT_WAYPOINT_ENDED:
|
|
{
|
|
if (!me || (e.event.waypoint.pointID && var0 != e.event.waypoint.pointID) || (e.event.waypoint.pathID && GetPathId() != e.event.waypoint.pathID))
|
|
return;
|
|
ProcessAction(e, unit);
|
|
break;
|
|
}
|
|
case SMART_EVENT_SUMMON_DESPAWNED:
|
|
case SMART_EVENT_INSTANCE_PLAYER_ENTER:
|
|
{
|
|
if (e.event.instancePlayerEnter.team && var0 != e.event.instancePlayerEnter.team)
|
|
return;
|
|
ProcessAction(e, unit, var0);
|
|
RecalcTimer(e, e.event.instancePlayerEnter.cooldownMin, e.event.instancePlayerEnter.cooldownMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_ACCEPTED_QUEST:
|
|
case SMART_EVENT_REWARD_QUEST:
|
|
{
|
|
if (e.event.quest.quest && var0 != e.event.quest.quest)
|
|
return;
|
|
ProcessAction(e, unit, var0);
|
|
break;
|
|
}
|
|
case SMART_EVENT_TRANSPORT_ADDCREATURE:
|
|
{
|
|
if (e.event.transportAddCreature.creature && var0 != e.event.transportAddCreature.creature)
|
|
return;
|
|
ProcessAction(e, unit, var0);
|
|
break;
|
|
}
|
|
case SMART_EVENT_AREATRIGGER_ONTRIGGER:
|
|
{
|
|
if (e.event.areatrigger.id && var0 != e.event.areatrigger.id)
|
|
return;
|
|
ProcessAction(e, unit, var0);
|
|
break;
|
|
}
|
|
case SMART_EVENT_TEXT_OVER:
|
|
{
|
|
if (var0 != e.event.textOver.textGroupID || (e.event.textOver.creatureEntry && e.event.textOver.creatureEntry != var1))
|
|
return;
|
|
ProcessAction(e, unit, var0);
|
|
break;
|
|
}
|
|
case SMART_EVENT_DATA_SET:
|
|
{
|
|
if (e.event.dataSet.id != var0 || e.event.dataSet.value != var1)
|
|
return;
|
|
ProcessAction(e, unit, var0, var1);
|
|
RecalcTimer(e, e.event.dataSet.cooldownMin, e.event.dataSet.cooldownMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_PASSENGER_REMOVED:
|
|
case SMART_EVENT_PASSENGER_BOARDED:
|
|
{
|
|
if (!unit)
|
|
return;
|
|
ProcessAction(e, unit);
|
|
RecalcTimer(e, e.event.minMax.repeatMin, e.event.minMax.repeatMax);
|
|
break;
|
|
}
|
|
case SMART_EVENT_TIMED_EVENT_TRIGGERED:
|
|
{
|
|
if (e.event.timedEvent.id == var0)
|
|
ProcessAction(e, unit);
|
|
break;
|
|
}
|
|
case SMART_EVENT_GOSSIP_SELECT:
|
|
{
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript: Gossip Select: menu %u action %u", var0, var1);//little help for scripters
|
|
if (e.event.gossip.sender != var0 || e.event.gossip.action != var1)
|
|
return;
|
|
ProcessAction(e, unit, var0, var1);
|
|
break;
|
|
}
|
|
case SMART_EVENT_DUMMY_EFFECT:
|
|
{
|
|
if (e.event.dummy.spell != var0 || e.event.dummy.effIndex != var1)
|
|
return;
|
|
ProcessAction(e, unit, var0, var1);
|
|
break;
|
|
}
|
|
case SMART_EVENT_GAME_EVENT_START:
|
|
case SMART_EVENT_GAME_EVENT_END:
|
|
{
|
|
if (e.event.gameEvent.gameEventId != var0)
|
|
return;
|
|
ProcessAction(e, nullptr, var0);
|
|
break;
|
|
}
|
|
case SMART_EVENT_GO_STATE_CHANGED:
|
|
{
|
|
if (e.event.goStateChanged.state != var0)
|
|
return;
|
|
ProcessAction(e, unit, var0, var1);
|
|
break;
|
|
}
|
|
case SMART_EVENT_GO_EVENT_INFORM:
|
|
{
|
|
if (e.event.eventInform.eventId != var0)
|
|
return;
|
|
ProcessAction(e, nullptr, var0);
|
|
break;
|
|
}
|
|
case SMART_EVENT_ACTION_DONE:
|
|
{
|
|
if (e.event.doAction.eventId != var0)
|
|
return;
|
|
ProcessAction(e, unit, var0);
|
|
break;
|
|
}
|
|
case SMART_EVENT_FRIENDLY_HEALTH_PCT:
|
|
{
|
|
if (!me || !me->IsInCombat())
|
|
return;
|
|
|
|
ObjectList* _targets = nullptr;
|
|
|
|
switch (e.GetTargetType())
|
|
{
|
|
case SMART_TARGET_CREATURE_RANGE:
|
|
case SMART_TARGET_CREATURE_GUID:
|
|
case SMART_TARGET_CREATURE_DISTANCE:
|
|
case SMART_TARGET_CLOSEST_CREATURE:
|
|
case SMART_TARGET_CLOSEST_PLAYER:
|
|
case SMART_TARGET_PLAYER_RANGE:
|
|
case SMART_TARGET_PLAYER_DISTANCE:
|
|
_targets = GetTargets(e);
|
|
break;
|
|
default:
|
|
return;
|
|
}
|
|
|
|
if (!_targets)
|
|
return;
|
|
|
|
Unit* target = nullptr;
|
|
|
|
for (ObjectList::const_iterator itr = _targets->begin(); itr != _targets->end(); ++itr)
|
|
{
|
|
if (IsUnit(*itr) && me->IsFriendlyTo((*itr)->ToUnit()) && (*itr)->ToUnit()->IsAlive() && (*itr)->ToUnit()->IsInCombat())
|
|
{
|
|
uint32 healthPct = uint32((*itr)->ToUnit()->GetHealthPct());
|
|
|
|
if (healthPct > e.event.friendlyHealthPct.maxHpPct || healthPct < e.event.friendlyHealthPct.minHpPct)
|
|
continue;
|
|
|
|
target = (*itr)->ToUnit();
|
|
break;
|
|
}
|
|
}
|
|
|
|
delete _targets;
|
|
|
|
if (!target)
|
|
return;
|
|
|
|
ProcessTimedAction(e, e.event.friendlyHealthPct.repeatMin, e.event.friendlyHealthPct.repeatMax, target);
|
|
break;
|
|
}
|
|
case SMART_EVENT_DISTANCE_CREATURE:
|
|
{
|
|
if (!me)
|
|
return;
|
|
|
|
Creature* creature = nullptr;
|
|
|
|
if (e.event.distance.guid != 0)
|
|
{
|
|
creature = FindCreatureNear(me, e.event.distance.guid);
|
|
if (!creature)
|
|
return;
|
|
|
|
if (!me->IsInRange(creature, 0, static_cast<float>(e.event.distance.dist)))
|
|
return;
|
|
}
|
|
else if (e.event.distance.entry != 0)
|
|
{
|
|
std::list<Creature*> list;
|
|
me->GetCreatureListWithEntryInGrid(list, e.event.distance.entry, static_cast<float>(e.event.distance.dist));
|
|
|
|
if (!list.empty())
|
|
creature = list.front();
|
|
}
|
|
|
|
if (creature)
|
|
ProcessTimedAction(e, e.event.distance.repeat, e.event.distance.repeat, creature);
|
|
|
|
break;
|
|
}
|
|
case SMART_EVENT_DISTANCE_GAMEOBJECT:
|
|
{
|
|
if (!me)
|
|
return;
|
|
|
|
GameObject* gameobject = nullptr;
|
|
|
|
if (e.event.distance.guid != 0)
|
|
{
|
|
gameobject = FindGameObjectNear(me, e.event.distance.guid);
|
|
if (!gameobject)
|
|
return;
|
|
|
|
if (!me->IsInRange(gameobject, 0, static_cast<float>(e.event.distance.dist)))
|
|
return;
|
|
}
|
|
else if (e.event.distance.entry != 0)
|
|
{
|
|
std::list<GameObject*> list;
|
|
me->GetGameObjectListWithEntryInGrid(list, e.event.distance.entry, static_cast<float>(e.event.distance.dist));
|
|
|
|
if (!list.empty())
|
|
gameobject = list.front();
|
|
}
|
|
|
|
if (gameobject)
|
|
ProcessTimedAction(e, e.event.distance.repeat, e.event.distance.repeat, nullptr, 0, 0, false, nullptr, gameobject);
|
|
|
|
break;
|
|
}
|
|
case SMART_EVENT_COUNTER_SET:
|
|
if (GetCounterId(e.event.counter.id) != 0 && GetCounterValue(e.event.counter.id) == e.event.counter.value)
|
|
ProcessTimedAction(e, e.event.counter.cooldownMin, e.event.counter.cooldownMax);
|
|
break;
|
|
case SMART_EVENT_SCENE_START:
|
|
case SMART_EVENT_SCENE_CANCEL:
|
|
case SMART_EVENT_SCENE_COMPLETE:
|
|
{
|
|
ProcessAction(e, unit);
|
|
break;
|
|
}
|
|
case SMART_EVENT_SCENE_TRIGGER:
|
|
{
|
|
if (e.event.param_string != varString)
|
|
return;
|
|
|
|
ProcessAction(e, unit, var0, 0, false, nullptr, nullptr, varString);
|
|
break;
|
|
}
|
|
default:
|
|
TC_LOG_ERROR("sql.sql", "SmartScript::ProcessEvent: Unhandled Event type %u", e.GetEventType());
|
|
break;
|
|
}
|
|
}
|
|
|
|
void SmartScript::InitTimer(SmartScriptHolder& e)
|
|
{
|
|
switch (e.GetEventType())
|
|
{
|
|
//set only events which have initial timers
|
|
case SMART_EVENT_UPDATE:
|
|
case SMART_EVENT_UPDATE_IC:
|
|
case SMART_EVENT_UPDATE_OOC:
|
|
RecalcTimer(e, e.event.minMaxRepeat.min, e.event.minMaxRepeat.max);
|
|
break;
|
|
case SMART_EVENT_DISTANCE_CREATURE:
|
|
case SMART_EVENT_DISTANCE_GAMEOBJECT:
|
|
RecalcTimer(e, e.event.distance.repeat, e.event.distance.repeat);
|
|
break;
|
|
default:
|
|
e.active = true;
|
|
break;
|
|
}
|
|
}
|
|
void SmartScript::RecalcTimer(SmartScriptHolder& e, uint32 min, uint32 max)
|
|
{
|
|
// min/max was checked at loading!
|
|
e.timer = urand(min, max);
|
|
e.active = e.timer ? false : true;
|
|
}
|
|
|
|
void SmartScript::UpdateTimer(SmartScriptHolder& e, uint32 const diff)
|
|
{
|
|
if (e.GetEventType() == SMART_EVENT_LINK)
|
|
return;
|
|
|
|
if (e.event.event_phase_mask && !IsInPhase(e.event.event_phase_mask))
|
|
return;
|
|
|
|
if (e.GetEventType() == SMART_EVENT_UPDATE_IC && (!me || !me->IsInCombat()))
|
|
return;
|
|
|
|
if (e.GetEventType() == SMART_EVENT_UPDATE_OOC && (me && me->IsInCombat())) //can be used with me=nullptr (go script)
|
|
return;
|
|
|
|
if (e.timer < diff)
|
|
{
|
|
// delay spell cast event if another spell is being cast
|
|
if (e.GetActionType() == SMART_ACTION_CAST)
|
|
{
|
|
if (!(e.action.cast.castFlags & SMARTCAST_INTERRUPT_PREVIOUS))
|
|
{
|
|
if (me && me->HasUnitState(UNIT_STATE_CASTING))
|
|
{
|
|
e.timer = 1;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Delay flee for assist event if stunned or rooted
|
|
if (e.GetActionType() == SMART_ACTION_FLEE_FOR_ASSIST)
|
|
{
|
|
if (me && me->HasUnitState(UNIT_STATE_ROOT | UNIT_STATE_STUNNED))
|
|
{
|
|
e.timer = 1;
|
|
return;
|
|
}
|
|
}
|
|
|
|
e.active = true;//activate events with cooldown
|
|
switch (e.GetEventType())//process ONLY timed events
|
|
{
|
|
case SMART_EVENT_UPDATE:
|
|
case SMART_EVENT_UPDATE_OOC:
|
|
case SMART_EVENT_UPDATE_IC:
|
|
case SMART_EVENT_HEALT_PCT:
|
|
case SMART_EVENT_TARGET_HEALTH_PCT:
|
|
case SMART_EVENT_MANA_PCT:
|
|
case SMART_EVENT_TARGET_MANA_PCT:
|
|
case SMART_EVENT_RANGE:
|
|
case SMART_EVENT_VICTIM_CASTING:
|
|
case SMART_EVENT_FRIENDLY_HEALTH:
|
|
case SMART_EVENT_FRIENDLY_IS_CC:
|
|
case SMART_EVENT_FRIENDLY_MISSING_BUFF:
|
|
case SMART_EVENT_HAS_AURA:
|
|
case SMART_EVENT_TARGET_BUFFED:
|
|
case SMART_EVENT_IS_BEHIND_TARGET:
|
|
case SMART_EVENT_FRIENDLY_HEALTH_PCT:
|
|
case SMART_EVENT_DISTANCE_CREATURE:
|
|
case SMART_EVENT_DISTANCE_GAMEOBJECT:
|
|
{
|
|
ProcessEvent(e);
|
|
if (e.GetScriptType() == SMART_SCRIPT_TYPE_TIMED_ACTIONLIST)
|
|
{
|
|
e.enableTimed = false;//disable event if it is in an ActionList and was processed once
|
|
for (SmartAIEventList::iterator i = mTimedActionList.begin(); i != mTimedActionList.end(); ++i)
|
|
{
|
|
//find the first event which is not the current one and enable it
|
|
if (i->event_id > e.event_id)
|
|
{
|
|
i->enableTimed = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
e.timer -= diff;
|
|
}
|
|
|
|
bool SmartScript::CheckTimer(SmartScriptHolder const& e) const
|
|
{
|
|
return e.active;
|
|
}
|
|
|
|
void SmartScript::InstallEvents()
|
|
{
|
|
if (!mInstallEvents.empty())
|
|
{
|
|
for (SmartAIEventList::iterator i = mInstallEvents.begin(); i != mInstallEvents.end(); ++i)
|
|
mEvents.push_back(*i);//must be before UpdateTimers
|
|
|
|
mInstallEvents.clear();
|
|
}
|
|
}
|
|
|
|
void SmartScript::RemoveStoredEvent(uint32 id)
|
|
{
|
|
if (!mStoredEvents.empty())
|
|
{
|
|
for (SmartAIEventList::iterator i = mStoredEvents.begin(); i != mStoredEvents.end(); ++i)
|
|
{
|
|
if (i->event_id == id)
|
|
{
|
|
mStoredEvents.erase(i);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
WorldObject* SmartScript::GetBaseObject()
|
|
{
|
|
WorldObject* obj = nullptr;
|
|
if (me)
|
|
obj = me;
|
|
else if (go)
|
|
obj = go;
|
|
return obj;
|
|
}
|
|
|
|
WorldObject* SmartScript::GetBaseObjectOrUnit(Unit* unit)
|
|
{
|
|
WorldObject* summoner = GetBaseObject();
|
|
|
|
if (!summoner && unit)
|
|
return unit;
|
|
|
|
return summoner;
|
|
}
|
|
|
|
bool SmartScript::IsUnit(WorldObject* obj)
|
|
{
|
|
return obj && (obj->GetTypeId() == TYPEID_UNIT || obj->GetTypeId() == TYPEID_PLAYER);
|
|
}
|
|
|
|
bool SmartScript::IsPlayer(WorldObject* obj)
|
|
{
|
|
return obj && obj->GetTypeId() == TYPEID_PLAYER;
|
|
}
|
|
|
|
bool SmartScript::IsCreature(WorldObject* obj)
|
|
{
|
|
return obj && obj->GetTypeId() == TYPEID_UNIT;
|
|
}
|
|
|
|
bool SmartScript::IsCharmedCreature(WorldObject* obj)
|
|
{
|
|
if (!obj)
|
|
return false;
|
|
|
|
if (Creature* creatureObj = obj->ToCreature())
|
|
return creatureObj->IsCharmed();
|
|
|
|
return false;
|
|
}
|
|
|
|
bool SmartScript::IsGameObject(WorldObject* obj)
|
|
{
|
|
return obj && obj->GetTypeId() == TYPEID_GAMEOBJECT;
|
|
}
|
|
|
|
void SmartScript::OnUpdate(uint32 const diff)
|
|
{
|
|
if ((mScriptType == SMART_SCRIPT_TYPE_CREATURE || mScriptType == SMART_SCRIPT_TYPE_GAMEOBJECT) && !GetBaseObject())
|
|
return;
|
|
|
|
InstallEvents();//before UpdateTimers
|
|
|
|
for (SmartAIEventList::iterator i = mEvents.begin(); i != mEvents.end(); ++i)
|
|
UpdateTimer(*i, diff);
|
|
|
|
if (!mStoredEvents.empty())
|
|
for (SmartAIEventList::iterator i = mStoredEvents.begin(); i != mStoredEvents.end(); ++i)
|
|
UpdateTimer(*i, diff);
|
|
|
|
bool needCleanup = true;
|
|
if (!mTimedActionList.empty())
|
|
{
|
|
isProcessingTimedActionList = true;
|
|
for (SmartAIEventList::iterator i = mTimedActionList.begin(); i != mTimedActionList.end(); ++i)
|
|
{
|
|
if ((*i).enableTimed)
|
|
{
|
|
UpdateTimer(*i, diff);
|
|
needCleanup = false;
|
|
}
|
|
}
|
|
|
|
isProcessingTimedActionList = false;
|
|
}
|
|
if (needCleanup)
|
|
mTimedActionList.clear();
|
|
|
|
if (!mRemIDs.empty())
|
|
{
|
|
for (std::list<uint32>::iterator i = mRemIDs.begin(); i != mRemIDs.end(); ++i)
|
|
{
|
|
RemoveStoredEvent((*i));
|
|
}
|
|
}
|
|
if (mUseTextTimer && me)
|
|
{
|
|
if (mTextTimer < diff)
|
|
{
|
|
uint32 textID = mLastTextID;
|
|
mLastTextID = 0;
|
|
uint32 entry = mTalkerEntry;
|
|
mTalkerEntry = 0;
|
|
mTextTimer = 0;
|
|
mUseTextTimer = false;
|
|
ProcessEventsFor(SMART_EVENT_TEXT_OVER, nullptr, textID, entry);
|
|
} else mTextTimer -= diff;
|
|
}
|
|
}
|
|
|
|
void SmartScript::FillScript(SmartAIEventList e, WorldObject* obj, AreaTriggerEntry const* at, SceneTemplate const* scene)
|
|
{
|
|
if (e.empty())
|
|
{
|
|
if (obj)
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript: EventMap for Entry %u is empty but is using SmartScript.", obj->GetEntry());
|
|
if (at)
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript: EventMap for AreaTrigger %u is empty but is using SmartScript.", at->ID);
|
|
if (scene)
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript: EventMap for SceneId %u is empty but is using SmartScript.", scene->SceneId);
|
|
return;
|
|
}
|
|
for (SmartAIEventList::iterator i = e.begin(); i != e.end(); ++i)
|
|
{
|
|
#ifndef TRINITY_DEBUG
|
|
if ((*i).event.event_flags & SMART_EVENT_FLAG_DEBUG_ONLY)
|
|
continue;
|
|
#endif
|
|
|
|
if ((*i).event.event_flags & SMART_EVENT_FLAG_DIFFICULTY_ALL)//if has instance flag add only if in it
|
|
{
|
|
if (obj && obj->GetMap()->IsDungeon())
|
|
{
|
|
// TODO: fix it for new maps and difficulties
|
|
switch (obj->GetMap()->GetDifficultyID())
|
|
{
|
|
case DIFFICULTY_NORMAL:
|
|
case DIFFICULTY_10_N:
|
|
if (i->event.event_flags & SMART_EVENT_FLAG_DIFFICULTY_0)
|
|
mEvents.emplace_back(std::move(*i));
|
|
break;
|
|
case DIFFICULTY_HEROIC:
|
|
case DIFFICULTY_25_N:
|
|
if (i->event.event_flags & SMART_EVENT_FLAG_DIFFICULTY_1)
|
|
mEvents.emplace_back(std::move(*i));
|
|
break;
|
|
case DIFFICULTY_10_HC:
|
|
if (i->event.event_flags & SMART_EVENT_FLAG_DIFFICULTY_2)
|
|
mEvents.emplace_back(std::move(*i));
|
|
break;
|
|
case DIFFICULTY_25_HC:
|
|
if (i->event.event_flags & SMART_EVENT_FLAG_DIFFICULTY_3)
|
|
mEvents.emplace_back(std::move(*i));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
continue;
|
|
}
|
|
mEvents.push_back((*i));//NOTE: 'world(0)' events still get processed in ANY instance mode
|
|
}
|
|
}
|
|
|
|
void SmartScript::GetScript()
|
|
{
|
|
SmartAIEventList e;
|
|
if (me)
|
|
{
|
|
e = sSmartScriptMgr->GetScript(-((int32)me->GetSpawnId()), mScriptType);
|
|
if (e.empty())
|
|
e = sSmartScriptMgr->GetScript((int32)me->GetEntry(), mScriptType);
|
|
FillScript(std::move(e), me, nullptr, nullptr);
|
|
}
|
|
else if (go)
|
|
{
|
|
e = sSmartScriptMgr->GetScript(-((int32)go->GetSpawnId()), mScriptType);
|
|
if (e.empty())
|
|
e = sSmartScriptMgr->GetScript((int32)go->GetEntry(), mScriptType);
|
|
FillScript(std::move(e), go, nullptr, nullptr);
|
|
}
|
|
else if (trigger)
|
|
{
|
|
e = sSmartScriptMgr->GetScript((int32)trigger->ID, mScriptType);
|
|
FillScript(std::move(e), nullptr, trigger, nullptr);
|
|
}
|
|
else if (sceneTemplate)
|
|
{
|
|
e = sSmartScriptMgr->GetScript(sceneTemplate->SceneId, mScriptType);
|
|
FillScript(std::move(e), nullptr, nullptr, sceneTemplate);
|
|
}
|
|
}
|
|
|
|
void SmartScript::OnInitialize(WorldObject* obj, AreaTriggerEntry const* at, SceneTemplate const* scene)
|
|
{
|
|
if (obj)//handle object based scripts
|
|
{
|
|
switch (obj->GetTypeId())
|
|
{
|
|
case TYPEID_UNIT:
|
|
mScriptType = SMART_SCRIPT_TYPE_CREATURE;
|
|
me = obj->ToCreature();
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::OnInitialize: source is Creature %u", me->GetEntry());
|
|
break;
|
|
case TYPEID_GAMEOBJECT:
|
|
mScriptType = SMART_SCRIPT_TYPE_GAMEOBJECT;
|
|
go = obj->ToGameObject();
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::OnInitialize: source is GameObject %u", go->GetEntry());
|
|
break;
|
|
default:
|
|
TC_LOG_ERROR("misc", "SmartScript::OnInitialize: Unhandled TypeID !WARNING!");
|
|
return;
|
|
}
|
|
}
|
|
else if (at)
|
|
{
|
|
mScriptType = SMART_SCRIPT_TYPE_AREATRIGGER;
|
|
trigger = at;
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::OnInitialize: source is AreaTrigger %u", trigger->ID);
|
|
}
|
|
else if (scene)
|
|
{
|
|
mScriptType = SMART_SCRIPT_TYPE_SCENE;
|
|
sceneTemplate = scene;
|
|
TC_LOG_DEBUG("scripts.ai", "SmartScript::OnInitialize: source is Scene with id %u", scene->SceneId);
|
|
}
|
|
else
|
|
{
|
|
TC_LOG_ERROR("misc", "SmartScript::OnInitialize: !WARNING! Initialized objects are NULL.");
|
|
return;
|
|
}
|
|
|
|
GetScript();//load copy of script
|
|
|
|
for (SmartAIEventList::iterator i = mEvents.begin(); i != mEvents.end(); ++i)
|
|
InitTimer((*i));//calculate timers for first time use
|
|
|
|
ProcessEventsFor(SMART_EVENT_AI_INIT);
|
|
InstallEvents();
|
|
ProcessEventsFor(SMART_EVENT_JUST_CREATED);
|
|
}
|
|
|
|
void SmartScript::OnMoveInLineOfSight(Unit* who)
|
|
{
|
|
if (!me)
|
|
return;
|
|
|
|
ProcessEventsFor(me->IsInCombat() ? SMART_EVENT_IC_LOS : SMART_EVENT_OOC_LOS, who);
|
|
}
|
|
// SmartScript end
|
|
|
|
Unit* SmartScript::DoSelectLowestHpFriendly(float range, uint32 MinHPDiff)
|
|
{
|
|
if (!me)
|
|
return nullptr;
|
|
|
|
Unit* unit = nullptr;
|
|
Trinity::MostHPMissingInRange u_check(me, range, MinHPDiff);
|
|
Trinity::UnitLastSearcher<Trinity::MostHPMissingInRange> searcher(me, unit, u_check);
|
|
Cell::VisitGridObjects(me, searcher, range);
|
|
return unit;
|
|
}
|
|
|
|
void SmartScript::DoFindFriendlyCC(std::list<Creature*>& _list, float range)
|
|
{
|
|
if (!me)
|
|
return;
|
|
|
|
Trinity::FriendlyCCedInRange u_check(me, range);
|
|
Trinity::CreatureListSearcher<Trinity::FriendlyCCedInRange> searcher(me, _list, u_check);
|
|
Cell::VisitGridObjects(me, searcher, range);
|
|
}
|
|
|
|
void SmartScript::DoFindFriendlyMissingBuff(std::list<Creature*>& list, float range, uint32 spellid)
|
|
{
|
|
if (!me)
|
|
return;
|
|
|
|
Trinity::FriendlyMissingBuffInRange u_check(me, range, spellid);
|
|
Trinity::CreatureListSearcher<Trinity::FriendlyMissingBuffInRange> searcher(me, list, u_check);
|
|
Cell::VisitGridObjects(me, searcher, range);
|
|
}
|
|
|
|
Unit* SmartScript::DoFindClosestFriendlyInRange(float range, bool playerOnly)
|
|
{
|
|
if (!me)
|
|
return nullptr;
|
|
|
|
Unit* unit = nullptr;
|
|
Trinity::AnyFriendlyUnitInObjectRangeCheck u_check(me, me, range, playerOnly);
|
|
Trinity::UnitLastSearcher<Trinity::AnyFriendlyUnitInObjectRangeCheck> searcher(me, unit, u_check);
|
|
Cell::VisitAllObjects(me, searcher, range);
|
|
return unit;
|
|
}
|
|
|
|
void SmartScript::SetScript9(SmartScriptHolder& e, uint32 entry)
|
|
{
|
|
//do NOT clear mTimedActionList if it's being iterated because it will invalidate the iterator and delete
|
|
// any SmartScriptHolder contained like the "e" parameter passed to this function
|
|
if (isProcessingTimedActionList)
|
|
{
|
|
TC_LOG_ERROR("scripts.ai", "Entry " SI64FMTD " SourceType %u Event %u Action %u is trying to overwrite timed action list from a timed action, this is not allowed!.", e.entryOrGuid, e.GetScriptType(), e.GetEventType(), e.GetActionType());
|
|
return;
|
|
}
|
|
|
|
mTimedActionList.clear();
|
|
mTimedActionList = sSmartScriptMgr->GetScript(entry, SMART_SCRIPT_TYPE_TIMED_ACTIONLIST);
|
|
if (mTimedActionList.empty())
|
|
return;
|
|
for (SmartAIEventList::iterator i = mTimedActionList.begin(); i != mTimedActionList.end(); ++i)
|
|
{
|
|
i->enableTimed = i == mTimedActionList.begin();//enable processing only for the first action
|
|
|
|
if (e.action.timedActionList.timerType == 0)
|
|
i->event.type = SMART_EVENT_UPDATE_OOC;
|
|
else if (e.action.timedActionList.timerType == 1)
|
|
i->event.type = SMART_EVENT_UPDATE_IC;
|
|
else if (e.action.timedActionList.timerType > 1)
|
|
i->event.type = SMART_EVENT_UPDATE;
|
|
|
|
InitTimer((*i));
|
|
}
|
|
}
|
|
|
|
Unit* SmartScript::GetLastInvoker()
|
|
{
|
|
WorldObject* lookupRoot = me;
|
|
if (!lookupRoot)
|
|
lookupRoot = go;
|
|
|
|
if (lookupRoot)
|
|
return ObjectAccessor::GetUnit(*lookupRoot, mLastInvoker);
|
|
|
|
return ObjectAccessor::FindPlayer(mLastInvoker);
|
|
}
|