AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
spell_eoe_ph3_surge_of_power::spell_eoe_ph3_surge_of_power_SpellScript Class Reference
Inheritance diagram for spell_eoe_ph3_surge_of_power::spell_eoe_ph3_surge_of_power_SpellScript:
SpellScript _SpellScript

Private Member Functions

 PrepareSpellScript (spell_eoe_ph3_surge_of_power_SpellScript)
 
bool Load () override
 
void FilterTargets (std::list< WorldObject * > &targets)
 
void Register () override
 

Private Attributes

ObjectGuid DrakeGUID [3]
 

Additional Inherited Members

- Public Member Functions inherited from SpellScript
bool _Validate (SpellInfo const *entry) override
 
bool _Load (Spell *spell)
 
void _InitHit ()
 
bool _IsEffectPrevented (SpellEffIndex effIndex)
 
bool _IsDefaultEffectPrevented (SpellEffIndex effIndex)
 
void _PrepareScriptCall (SpellScriptHookType hookType)
 
void _FinishScriptCall ()
 
bool IsInCheckCastHook () const
 
bool IsInTargetHook () const
 
bool IsInHitPhase () const
 
bool IsInEffectHook () const
 
UnitGetCaster ()
 
UnitGetOriginalCaster ()
 
SpellInfo const * GetSpellInfo ()
 
SpellValue const * GetSpellValue ()
 
WorldLocation const * GetExplTargetDest ()
 
void SetExplTargetDest (WorldLocation &loc)
 
WorldObjectGetExplTargetWorldObject ()
 
UnitGetExplTargetUnit ()
 
GameObjectGetExplTargetGObj ()
 
ItemGetExplTargetItem ()
 
UnitGetHitUnit ()
 
CreatureGetHitCreature ()
 
PlayerGetHitPlayer ()
 
ItemGetHitItem ()
 
GameObjectGetHitGObj ()
 
WorldLocationGetHitDest ()
 
int32 GetHitDamage ()
 
void SetHitDamage (int32 damage)
 
void PreventHitDamage ()
 
int32 GetHitHeal ()
 
void SetHitHeal (int32 heal)
 
void PreventHitHeal ()
 
SpellGetSpell ()
 
AuraGetHitAura ()
 
void PreventHitAura ()
 
void PreventHitEffect (SpellEffIndex effIndex)
 
void PreventHitDefaultEffect (SpellEffIndex effIndex)
 
int32 GetEffectValue () const
 
void SetEffectValue (int32 value)
 
ItemGetCastItem ()
 
void CreateItem (uint32 effIndex, uint32 itemId)
 
SpellInfo const * GetTriggeringSpell ()
 
void FinishCast (SpellCastResult result)
 
void Cancel ()
 
void SetCustomCastResultMessage (SpellCustomErrors result)
 
- Public Member Functions inherited from _SpellScript
 _SpellScript ()
 
virtual ~_SpellScript ()
 
virtual void _Register ()
 
virtual void _Unload ()
 
virtual void _Init (std::string const *scriptname, uint32 spellId)
 
std::string const * _GetScriptName () const
 
virtual void Register ()=0
 
virtual bool Validate (SpellInfo const *)
 
virtual bool Load ()
 
virtual void Unload ()
 
- Static Public Member Functions inherited from _SpellScript
static bool ValidateSpellInfo (std::initializer_list< uint32 > spellIds)
 
template<class T >
static bool ValidateSpellInfo (T const &spellIds)
 
- Public Attributes inherited from SpellScript
HookList< CastHandlerBeforeCast
 
HookList< CastHandlerOnCast
 
HookList< CastHandlerAfterCast
 
HookList< CheckCastHandlerOnCheckCast
 
HookList< EffectHandlerOnEffectLaunch
 
HookList< EffectHandlerOnEffectLaunchTarget
 
HookList< EffectHandlerOnEffectHit
 
HookList< EffectHandlerOnEffectHitTarget
 
HookList< BeforeHitHandlerBeforeHit
 
HookList< HitHandlerOnHit
 
HookList< HitHandlerAfterHit
 
HookList< ObjectAreaTargetSelectHandlerOnObjectAreaTargetSelect
 
HookList< ObjectTargetSelectHandlerOnObjectTargetSelect
 
HookList< DestinationTargetSelectHandlerOnDestinationTargetSelect
 
virtual bool _Validate (SpellInfo const *entry)
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string const * m_scriptName
 
uint32 m_scriptSpellId
 

Detailed Description

Member Function Documentation

◆ FilterTargets()

void spell_eoe_ph3_surge_of_power::spell_eoe_ph3_surge_of_power_SpellScript::FilterTargets ( std::list< WorldObject * > &  targets)
inlineprivate
1527 {
1528 if (Unit* caster = GetCaster())
1529 {
1530 targets.clear();
1531 for (uint8 i = 0; i < 3; ++i)
1532 if (DrakeGUID[i])
1533 if (Unit* u = ObjectAccessor::GetUnit(*caster, DrakeGUID[i]))
1534 targets.push_back(u);
1535 }
1536 }
std::uint8_t uint8
Definition: Define.h:110
Unit * GetUnit(WorldObject const &, ObjectGuid const guid)
Definition: ObjectAccessor.cpp:204
Definition: Unit.h:1290
Unit * GetCaster()
Definition: SpellScript.cpp:401
ObjectGuid DrakeGUID[3]
Definition: boss_malygos.cpp:1503

References DrakeGUID, SpellScript::GetCaster(), and ObjectAccessor::GetUnit().

Referenced by Register().

◆ Load()

bool spell_eoe_ph3_surge_of_power::spell_eoe_ph3_surge_of_power_SpellScript::Load ( )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

1506 {
1507 if (Unit* caster = GetCaster())
1508 if (Creature* c = caster->ToCreature())
1509 {
1510 uint8 i = 0;
1511 std::list<Unit*> drakes;
1512 c->AI()->SelectTargetList(drakes, (c->GetMap()->GetSpawnMode() == 0 ? 1 : 3), SelectTargetMethod::Random, 0, 0.0f, false, true, 57403 /*only drakes have this aura*/);
1513 for (std::list<Unit*>::iterator itr = drakes.begin(); itr != drakes.end() && i < 3; ++itr)
1514 {
1515 DrakeGUID[i++] = (*itr)->GetGUID();
1516 if (Vehicle* v = (*itr)->GetVehicleKit())
1517 if (Unit* p = v->GetPassenger(0))
1518 if (Player* plr = p->ToPlayer())
1519 c->AI()->Talk(EMOTE_SURGE_OF_POWER_WARNING_P3, plr);
1520 }
1521 }
1522
1523 return true;
1524 }
@ EMOTE_SURGE_OF_POWER_WARNING_P3
Definition: boss_malygos.cpp:165
Definition: Creature.h:46
Player * ToPlayer()
Definition: Object.h:195
Creature * ToCreature()
Definition: Object.h:197
Definition: Player.h:1046
Definition: Vehicle.h:30

References DrakeGUID, EMOTE_SURGE_OF_POWER_WARNING_P3, SpellScript::GetCaster(), Object::ToCreature(), and Object::ToPlayer().

◆ PrepareSpellScript()

spell_eoe_ph3_surge_of_power::spell_eoe_ph3_surge_of_power_SpellScript::PrepareSpellScript ( spell_eoe_ph3_surge_of_power_SpellScript  )
private

◆ Register()

void spell_eoe_ph3_surge_of_power::spell_eoe_ph3_surge_of_power_SpellScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

1539 {
1541 }
#define SpellObjectAreaTargetSelectFn(F, I, N)
Definition: SpellScript.h:354
@ EFFECT_0
Definition: SharedDefines.h:30
@ TARGET_UNIT_SRC_AREA_ENEMY
Definition: SharedDefines.h:1392
HookList< ObjectAreaTargetSelectHandler > OnObjectAreaTargetSelect
Definition: SpellScript.h:353
void FilterTargets(std::list< WorldObject * > &targets)
Definition: boss_malygos.cpp:1526

References EFFECT_0, FilterTargets(), SpellScript::OnObjectAreaTargetSelect, SpellObjectAreaTargetSelectFn, and TARGET_UNIT_SRC_AREA_ENEMY.

Member Data Documentation

◆ DrakeGUID

ObjectGuid spell_eoe_ph3_surge_of_power::spell_eoe_ph3_surge_of_power_SpellScript::DrakeGUID[3]
private

Referenced by FilterTargets(), and Load().