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

Private Member Functions

 PrepareAuraScript (spell_pal_light_s_beacon_AuraScript)
 
bool Validate (SpellInfo const *) override
 
bool CheckProc (ProcEventInfo &eventInfo)
 
void HandleProc (AuraEffect const *aurEff, ProcEventInfo &eventInfo)
 
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

bool spell_pal_light_s_beacon::spell_pal_light_s_beacon_AuraScript::CheckProc ( ProcEventInfo eventInfo)
inlineprivate
914  {
915  if (!eventInfo.GetActionTarget())
916  return false;
917  if (eventInfo.GetActionTarget()->HasAura(SPELL_PALADIN_BEACON_OF_LIGHT, eventInfo.GetActor()->GetGUID()))
918  return false;
919  return true;
920  }
bool HasAura(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, ObjectGuid itemCasterGUID=ObjectGuid::Empty, uint32 reqEffMask=0) const
Definition: Unit.cpp:4240
Unit * GetActionTarget() const
Definition: Unit.h:992
Unit * GetActor()
Definition: Unit.h:991
ObjectGuid const & GetGUID() const
Definition: Object.h:105
Definition: spell_paladin.cpp:35

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_pal_light_s_beacon::spell_pal_light_s_beacon_AuraScript::HandleProc ( AuraEffect const aurEff,
ProcEventInfo eventInfo 
)
inlineprivate
923  {
925 
926  uint32 heal = CalculatePct(eventInfo.GetHealInfo()->GetHeal(), aurEff->GetAmount());
927 
928  Unit::AuraList const& auras = GetCaster()->GetSingleCastAuras();
929  for (Unit::AuraList::const_iterator itr = auras.begin(); itr != auras.end(); ++itr)
930  {
931  if ((*itr)->GetId() == SPELL_PALADIN_BEACON_OF_LIGHT)
932  {
933  std::list<AuraApplication*> applications;
934  (*itr)->GetApplicationList(applications);
935  if (!applications.empty())
936  eventInfo.GetActor()->CastCustomSpell(SPELL_PALADIN_BEACON_OF_LIGHT_HEAL, SPELLVALUE_BASE_POINT0, heal, applications.front()->GetTarget(), true);
937  return;
938  }
939  }
940  }
void PreventDefaultAction()
Definition: SpellScript.cpp:971
std::list< Aura * > AuraList
Definition: Unit.h:1323
uint32 GetHeal() const
Definition: Unit.h:978
uint32_t uint32
Definition: Define.h:150
AuraList & GetSingleCastAuras()
Definition: Unit.h:1833
T CalculatePct(T base, U pct)
Definition: Util.h:92
Unit * GetActor()
Definition: Unit.h:991
Unit * GetCaster() const
Definition: SpellScript.cpp:1006
HealInfo * GetHealInfo() const
Definition: Unit.h:1004
Definition: spell_paladin.cpp:36
void CastCustomSpell(Unit *victim, uint32 spellId, int32 const *bp0, int32 const *bp1, int32 const *bp2, bool triggered, Item *castItem=NULL, AuraEffect const *triggeredByAura=NULL, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition: Unit.cpp:920
Definition: Unit.h:129
Definition: spell_paladin.cpp:35

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

spell_pal_light_s_beacon::spell_pal_light_s_beacon_AuraScript::PrepareAuraScript ( spell_pal_light_s_beacon_AuraScript  )
private
void spell_pal_light_s_beacon::spell_pal_light_s_beacon_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

943  {
946  }
Definition: SharedDefines.h:28
bool CheckProc(ProcEventInfo &eventInfo)
Definition: spell_paladin.cpp:913
HookList< CheckProcHandler > DoCheckProc
Definition: SpellScript.h:767
#define AuraEffectProcFn(F, I, N)
Definition: SpellScript.h:792
Definition: SpellAuraDefines.h:64
HookList< EffectProcHandler > OnEffectProc
Definition: SpellScript.h:787
#define AuraCheckProcFn(F)
Definition: SpellScript.h:768
void HandleProc(AuraEffect const *aurEff, ProcEventInfo &eventInfo)
Definition: spell_paladin.cpp:922

+ Here is the call graph for this function:

bool spell_pal_light_s_beacon::spell_pal_light_s_beacon_AuraScript::Validate ( SpellInfo const )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

906  {
907  if (!sSpellMgr->GetSpellInfo(SPELL_PALADIN_BEACON_OF_LIGHT)
909  return false;
910  return true;
911  }
#define sSpellMgr
Definition: SpellMgr.h:756
Definition: spell_paladin.cpp:36
Definition: spell_paladin.cpp:35

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