TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
spell_yogg_saron_brain_link::spell_yogg_saron_brain_link_AuraScript Class Reference

Private Member Functions

 PrepareAuraScript (spell_yogg_saron_brain_link_AuraScript)
 
bool Validate (SpellInfo const *) override
 
void OnRemove (AuraEffect const *, AuraEffectHandleModes)
 
void DummyTick (AuraEffect const *aurEff)
 
void Register () override
 

Additional Inherited Members

- Public Member Functions inherited from AuraScript
 AuraScript ()
 
bool _Validate (SpellInfo const *entry) override
 
bool _Load (Aura *aura)
 
void _PrepareScriptCall (AuraScriptHookType hookType, AuraApplication const *aurApp=NULL)
 
void _FinishScriptCall ()
 
bool _IsDefaultActionPrevented ()
 
void PreventDefaultAction ()
 
SpellInfo constGetSpellInfo () const
 
uint32 GetId () const
 
ObjectGuid GetCasterGUID () const
 
UnitGetCaster () const
 
WorldObjectGetOwner () const
 
UnitGetUnitOwner () const
 
DynamicObjectGetDynobjOwner () const
 
void Remove (AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
AuraGetAura () const
 
AuraObjectType GetType () const
 
int32 GetDuration () const
 
void SetDuration (int32 duration, bool withMods=false)
 
void RefreshDuration ()
 
time_t GetApplyTime () const
 
int32 GetMaxDuration () const
 
void SetMaxDuration (int32 duration)
 
int32 CalcMaxDuration () const
 
bool IsExpired () const
 
bool IsPermanent () const
 
uint8 GetCharges () const
 
void SetCharges (uint8 charges)
 
uint8 CalcMaxCharges () const
 
bool ModCharges (int8 num, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
bool DropCharge (AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
uint8 GetStackAmount () const
 
void SetStackAmount (uint8 num)
 
bool ModStackAmount (int32 num, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
 
bool IsPassive () const
 
bool IsDeathPersistent () const
 
bool HasEffect (uint8 effIndex) const
 
AuraEffectGetEffect (uint8 effIndex) const
 
bool HasEffectType (AuraType type) const
 
UnitGetTarget () const
 
AuraApplication constGetTargetApplication () const
 
- 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 bool Load ()
 
virtual void Unload ()
 
- Public Attributes inherited from AuraScript
HookList< CheckAreaTargetHandlerDoCheckAreaTarget
 
HookList< AuraDispelHandlerOnDispel
 
HookList< AuraDispelHandlerAfterDispel
 
HookList< EffectApplyHandlerOnEffectApply
 
HookList< EffectApplyHandlerAfterEffectApply
 
HookList< EffectApplyHandlerOnEffectRemove
 
HookList< EffectApplyHandlerAfterEffectRemove
 
HookList< EffectPeriodicHandlerOnEffectPeriodic
 
HookList
< EffectUpdatePeriodicHandler
OnEffectUpdatePeriodic
 
HookList< EffectCalcAmountHandlerDoEffectCalcAmount
 
HookList
< EffectCalcPeriodicHandler
DoEffectCalcPeriodic
 
HookList
< EffectCalcSpellModHandler
DoEffectCalcSpellMod
 
HookList< EffectAbsorbHandlerOnEffectAbsorb
 
HookList< EffectAbsorbHandlerAfterEffectAbsorb
 
HookList< EffectManaShieldHandlerOnEffectManaShield
 
HookList< EffectManaShieldHandlerAfterEffectManaShield
 
HookList< EffectSplitHandlerOnEffectSplit
 
HookList< CheckProcHandlerDoCheckProc
 
HookList< AuraProcHandlerDoPrepareProc
 
HookList< AuraProcHandlerOnProc
 
HookList< AuraProcHandlerAfterProc
 
HookList< EffectProcHandlerOnEffectProc
 
HookList< EffectProcHandlerAfterEffectProc
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string constm_scriptName
 
uint32 m_scriptSpellId
 

Member Function Documentation

void spell_yogg_saron_brain_link::spell_yogg_saron_brain_link_AuraScript::DummyTick ( AuraEffect const aurEff)
inlineprivate
2149  {
2150  Unit* caster = GetCaster();
2151  if (!caster)
2152  return;
2153 
2154  SaraAI* ai = CAST_AI(SaraAI, caster->GetAI());
2155  if (!ai)
2156  return;
2157 
2158  Player* linked = ObjectAccessor::GetPlayer(*GetTarget(), ai->GetLinkedPlayerGUID(GetTarget()->GetGUID()));
2159  if (!linked)
2160  return;
2161 
2162  GetTarget()->CastSpell(linked, (GetTarget()->GetDistance(linked) > (float)aurEff->GetAmount()) ? SPELL_BRAIN_LINK_DAMAGE : SPELL_BRAIN_LINK_NO_DAMAGE, true);
2163  }
Definition: boss_yogg_saron.cpp:132
ObjectGuid GetLinkedPlayerGUID(ObjectGuid guid) const
Definition: boss_yogg_saron.cpp:676
Definition: boss_yogg_saron.cpp:672
#define CAST_AI(a, b)
Definition: ScriptedCreature.h:28
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
TC_GAME_API Player * GetPlayer(Map const *, ObjectGuid const &guid)
Definition: ObjectAccessor.cpp:184
UnitAI * GetAI()
Definition: Unit.h:1331
Unit * GetCaster() const
Definition: SpellScript.cpp:1006
Definition: Unit.h:1305
void CastSpell(SpellCastTargets const &targets, SpellInfo const *spellInfo, CustomSpellValues const *value, TriggerCastFlags triggerFlags=TRIGGERED_NONE, Item *castItem=NULL, AuraEffect const *triggeredByAura=NULL, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition: Unit.cpp:869
Definition: boss_yogg_saron.cpp:131

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_yogg_saron_brain_link::spell_yogg_saron_brain_link_AuraScript::OnRemove ( AuraEffect const ,
AuraEffectHandleModes   
)
inlineprivate
2128  {
2129  Unit* caster = GetCaster();
2130  if (!caster)
2131  return;
2132 
2133  if (SaraAI* ai = CAST_AI(SaraAI, caster->GetAI()))
2134  {
2136  ai->RemoveLinkFrom(GetTarget()->GetGUID());
2137  else
2138  {
2139  if (Player* player = ObjectAccessor::GetPlayer(*GetTarget(), ai->GetLinkedPlayerGUID(GetTarget()->GetGUID())))
2140  {
2141  ai->RemoveLinkFrom(GetTarget()->GetGUID());
2142  player->RemoveAurasDueToSpell(SPELL_BRAIN_LINK);
2143  }
2144  }
2145  }
2146  }
Definition: boss_yogg_saron.cpp:130
Definition: boss_yogg_saron.cpp:672
AuraApplication const * GetTargetApplication() const
Definition: SpellScript.cpp:1179
#define CAST_AI(a, b)
Definition: ScriptedCreature.h:28
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
TC_GAME_API Player * GetPlayer(Map const *, ObjectGuid const &guid)
Definition: ObjectAccessor.cpp:184
UnitAI * GetAI()
Definition: Unit.h:1331
Definition: Unit.h:454
Unit * GetCaster() const
Definition: SpellScript.cpp:1006
Definition: Unit.h:1305
AuraRemoveMode GetRemoveMode() const
Definition: SpellAuras.h:86

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

spell_yogg_saron_brain_link::spell_yogg_saron_brain_link_AuraScript::PrepareAuraScript ( spell_yogg_saron_brain_link_AuraScript  )
private
void spell_yogg_saron_brain_link::spell_yogg_saron_brain_link_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

2166  {
2169  }
Definition: SharedDefines.h:28
#define AuraEffectRemoveFn(F, I, N, M)
Definition: SpellScript.h:704
HookList< EffectApplyHandler > OnEffectRemove
Definition: SpellScript.h:699
Definition: SpellAuraDefines.h:286
Definition: SpellAuraDefines.h:39
HookList< EffectPeriodicHandler > OnEffectPeriodic
Definition: SpellScript.h:709
#define AuraEffectPeriodicFn(F, I, N)
Definition: SpellScript.h:710

+ Here is the call graph for this function:

bool spell_yogg_saron_brain_link::spell_yogg_saron_brain_link_AuraScript::Validate ( SpellInfo const )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

2119  {
2120  if (!sSpellMgr->GetSpellInfo(SPELL_BRAIN_LINK_DAMAGE))
2121  return false;
2122  if (!sSpellMgr->GetSpellInfo(SPELL_BRAIN_LINK_NO_DAMAGE))
2123  return false;
2124  return true;
2125  }
Definition: boss_yogg_saron.cpp:132
#define sSpellMgr
Definition: SpellMgr.h:756
Definition: boss_yogg_saron.cpp:131

The documentation for this class was generated from the following file: