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

Private Member Functions

 PrepareSpellScript (spell_class_call_polymorph)
 
void FilterTargets (std::list< WorldObject * > &targets)
 
void FilterTargetsEff (std::list< WorldObject * > &targets)
 
void Register () override
 

Private Attributes

std::list< WorldObject * > targetList
 

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_class_call_polymorph::FilterTargets ( std::list< WorldObject * > &  targets)
inlineprivate
1114 {
1115 targets.remove_if([&](WorldObject const* target) -> bool
1116 {
1117 return !target->IsPlayer() || target->ToPlayer()->IsGameMaster() || target->ToPlayer()->HasAura(SPELL_POLYMORPH);
1118 });
1119
1120 if (!targets.empty())
1121 {
1123 targetList.clear();
1124 targetList = targets;
1125 }
1126 }
@ SPELL_POLYMORPH
Definition: boss_nefarian.cpp:177
void RandomResize(C &container, std::size_t requestedSize)
Definition: Containers.h:79
bool IsPlayer() const
Definition: Object.h:200
Player * ToPlayer()
Definition: Object.h:201
Definition: Object.h:410
bool IsGameMaster() const
Definition: Player.h:1175
bool HasAura(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, ObjectGuid itemCasterGUID=ObjectGuid::Empty, uint8 reqEffMask=0) const
Definition: Unit.cpp:5698
std::list< WorldObject * > targetList
Definition: boss_nefarian.cpp:1111

References Unit::HasAura(), Player::IsGameMaster(), Object::IsPlayer(), Acore::Containers::RandomResize(), SPELL_POLYMORPH, targetList, and Object::ToPlayer().

Referenced by Register().

◆ FilterTargetsEff()

void spell_class_call_polymorph::FilterTargetsEff ( std::list< WorldObject * > &  targets)
inlineprivate
1129 {
1130 targets.clear();
1131 targets = targetList;
1132 }

References targetList.

Referenced by Register().

◆ PrepareSpellScript()

spell_class_call_polymorph::PrepareSpellScript ( spell_class_call_polymorph  )
private

◆ Register()

void spell_class_call_polymorph::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

1135 {
1139 }
@ EFFECT_1
Definition: SharedDefines.h:32
@ EFFECT_0
Definition: SharedDefines.h:31
@ EFFECT_2
Definition: SharedDefines.h:33
@ TARGET_UNIT_SRC_AREA_ALLY
Definition: SharedDefines.h:1434
#define SpellObjectAreaTargetSelectFn(F, I, N)
Definition: SpellScript.h:354
HookList< ObjectAreaTargetSelectHandler > OnObjectAreaTargetSelect
Definition: SpellScript.h:353
void FilterTargets(std::list< WorldObject * > &targets)
Definition: boss_nefarian.cpp:1113
void FilterTargetsEff(std::list< WorldObject * > &targets)
Definition: boss_nefarian.cpp:1128

References EFFECT_0, EFFECT_1, EFFECT_2, FilterTargets(), FilterTargetsEff(), SpellScript::OnObjectAreaTargetSelect, SpellObjectAreaTargetSelectFn, and TARGET_UNIT_SRC_AREA_ALLY.

Member Data Documentation

◆ targetList

std::list<WorldObject*> spell_class_call_polymorph::targetList
private

Referenced by FilterTargets(), and FilterTargetsEff().