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

Public Member Functions

void AddTarget (Unit *target)
 
- 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 ()
 

Private Member Functions

 PrepareAuraScript (spell_rog_killing_spree_AuraScript)
 
bool Validate (SpellInfo const *) override
 
void HandleApply (AuraEffect const *, AuraEffectHandleModes)
 
void HandleEffectPeriodic (AuraEffect const *)
 
void HandleRemove (AuraEffect const *, AuraEffectHandleModes)
 
void Register () override
 

Private Attributes

GuidList _targets
 

Additional Inherited Members

- 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_rog_killing_spree::spell_rog_killing_spree_AuraScript::AddTarget ( Unit target)
inline
444  {
445  _targets.push_back(target->GetGUID());
446  }
ObjectGuid const & GetGUID() const
Definition: Object.h:105
GuidList _targets
Definition: spell_rogue.cpp:449

+ Here is the call graph for this function:

void spell_rog_killing_spree::spell_rog_killing_spree_AuraScript::HandleApply ( AuraEffect const ,
AuraEffectHandleModes   
)
inlineprivate
410  {
412  }
Definition: spell_rogue.cpp:41
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
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

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_rog_killing_spree::spell_rog_killing_spree_AuraScript::HandleEffectPeriodic ( AuraEffect const )
inlineprivate
415  {
416  while (!_targets.empty())
417  {
419  if (Unit* target = ObjectAccessor::GetUnit(*GetTarget(), guid))
420  {
423  break;
424  }
425  else
426  _targets.remove(guid);
427  }
428  }
TC_GAME_API Unit * GetUnit(WorldObject const &, ObjectGuid const &guid)
Definition: ObjectAccessor.cpp:163
C::value_type const & SelectRandomContainerElement(C const &container)
Definition: Containers.h:68
Definition: spell_rogue.cpp:40
Definition: spell_rogue.cpp:39
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
GuidList _targets
Definition: spell_rogue.cpp:449
Definition: ObjectGuid.h:189
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

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void spell_rog_killing_spree::spell_rog_killing_spree_AuraScript::HandleRemove ( AuraEffect const ,
AuraEffectHandleModes   
)
inlineprivate
431  {
433  }
Definition: spell_rogue.cpp:41
Unit * GetTarget() const
Definition: SpellScript.cpp:1151
void RemoveAurasDueToSpell(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, uint32 reqEffMask=0, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
Definition: Unit.cpp:3586

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

spell_rog_killing_spree::spell_rog_killing_spree_AuraScript::PrepareAuraScript ( spell_rog_killing_spree_AuraScript  )
private
void spell_rog_killing_spree::spell_rog_killing_spree_AuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

436  {
440  }
HookList< EffectApplyHandler > AfterEffectApply
Definition: SpellScript.h:692
Definition: SharedDefines.h:28
void HandleRemove(AuraEffect const *, AuraEffectHandleModes)
Definition: spell_rogue.cpp:430
#define AuraEffectRemoveFn(F, I, N, M)
Definition: SpellScript.h:704
Definition: SpellAuraDefines.h:286
HookList< EffectApplyHandler > AfterEffectRemove
Definition: SpellScript.h:703
void HandleEffectPeriodic(AuraEffect const *)
Definition: spell_rogue.cpp:414
Definition: SpellAuraDefines.h:39
HookList< EffectPeriodicHandler > OnEffectPeriodic
Definition: SpellScript.h:709
#define AuraEffectApplyFn(F, I, N, M)
Definition: SpellScript.h:693
void HandleApply(AuraEffect const *, AuraEffectHandleModes)
Definition: spell_rogue.cpp:409
#define AuraEffectPeriodicFn(F, I, N)
Definition: SpellScript.h:710

+ Here is the call graph for this function:

bool spell_rog_killing_spree::spell_rog_killing_spree_AuraScript::Validate ( SpellInfo const )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

401  {
405  return false;
406  return true;
407  }
Definition: spell_rogue.cpp:41
Definition: spell_rogue.cpp:40
Definition: spell_rogue.cpp:39
#define sSpellMgr
Definition: SpellMgr.h:756

Member Data Documentation

GuidList spell_rog_killing_spree::spell_rog_killing_spree_AuraScript::_targets
private

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