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

Private Member Functions

 PrepareAuraScript (spell_wailing_souls_periodic_aura)
 
bool Validate (SpellInfo const *) override
 
bool Load () override
 
void HandlePeriodicTick (AuraEffect const *aurEff)
 
void Register () override
 

Private Attributes

int8 dir = 0
 

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=nullptr)
 
void _FinishScriptCall ()
 
bool _IsDefaultActionPrevented ()
 
void PreventDefaultAction ()
 
SpellInfo const * GetSpellInfo () 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 const * GetTargetApplication () 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 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 AuraScript
HookList< CheckAreaTargetHandlerDoCheckAreaTarget
 
HookList< AuraDispelHandlerOnDispel
 
HookList< AuraDispelHandlerAfterDispel
 
HookList< EffectApplyHandlerOnEffectApply
 
HookList< EffectApplyHandlerAfterEffectApply
 
HookList< EffectApplyHandlerOnEffectRemove
 
HookList< EffectApplyHandlerAfterEffectRemove
 
HookList< EffectPeriodicHandlerOnEffectPeriodic
 
HookList< EffectUpdatePeriodicHandlerOnEffectUpdatePeriodic
 
HookList< EffectCalcAmountHandlerDoEffectCalcAmount
 
HookList< EffectCalcPeriodicHandlerDoEffectCalcPeriodic
 
HookList< EffectCalcSpellModHandlerDoEffectCalcSpellMod
 
HookList< EffectAbsorbHandlerOnEffectAbsorb
 
HookList< EffectAbsorbHandlerAfterEffectAbsorb
 
HookList< EffectManaShieldHandlerOnEffectManaShield
 
HookList< EffectManaShieldHandlerAfterEffectManaShield
 
HookList< EffectSplitHandlerOnEffectSplit
 
HookList< CheckProcHandlerDoCheckProc
 
HookList< CheckEffectProcHandlerDoCheckEffectProc
 
HookList< AfterCheckProcHandlerDoAfterCheckProc
 
HookList< AuraProcHandlerDoPrepareProc
 
HookList< AuraProcHandlerOnProc
 
HookList< AuraProcHandlerAfterProc
 
HookList< EffectProcHandlerOnEffectProc
 
HookList< EffectProcHandlerAfterEffectProc
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string const * m_scriptName
 
uint32 m_scriptSpellId
 

Detailed Description

Member Function Documentation

◆ HandlePeriodicTick()

void spell_wailing_souls_periodic_aura::HandlePeriodicTick ( AuraEffect const *  aurEff)
inlineprivate
298 {
300 if (Unit* target = GetTarget())
301 {
302 if (aurEff->GetTickNumber() < 30)
303 {
304 float diff = (2 * M_PI) / (4 * 30);
305 float newOrientation = target->GetOrientation() + diff * dir;
306 if (newOrientation >= 2 * M_PI)
307 newOrientation -= 2 * M_PI;
308 else if (newOrientation < 0)
309 newOrientation += 2 * M_PI;
310 target->UpdateOrientation(newOrientation);
311 target->SetFacingTo(newOrientation);
312 target->CastSpell(target, SPELL_WAILING_SOULS_DMG_N, true);
313 }
314 else if (aurEff->GetTickNumber() == 33)
315 {
316 target->SetControlled(false, UNIT_STATE_ROOT);
317 target->DisableRotate(false);
318 if (target->IsCreature())
319 target->ToCreature()->SetReactState(REACT_AGGRESSIVE);
320 if (target->GetVictim())
321 {
322 target->SetGuidValue(UNIT_FIELD_TARGET, target->GetVictim()->GetGUID());
323 target->GetMotionMaster()->MoveChase(target->GetVictim());
324 }
325 }
326 else if (aurEff->GetTickNumber() >= 34)
328 }
329 }
@ AURA_REMOVE_BY_EXPIRE
Definition SpellAuraDefines.h:395
@ UNIT_STATE_ROOT
Definition UnitDefines.h:183
@ REACT_AGGRESSIVE
Definition Unit.h:568
@ UNIT_FIELD_TARGET
Definition UpdateFields.h:92
@ SPELL_WAILING_SOULS_DMG_N
Definition boss_devourer_of_souls.cpp:56
void PreventDefaultAction()
Definition SpellScript.cpp:1000
Unit * GetTarget() const
Definition SpellScript.cpp:1180
void Remove(AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
Definition SpellScript.cpp:1055
Definition Unit.h:664
int8 dir
Definition boss_devourer_of_souls.cpp:289

References AURA_REMOVE_BY_EXPIRE, dir, AuraScript::GetTarget(), AuraEffect::GetTickNumber(), AuraScript::PreventDefaultAction(), REACT_AGGRESSIVE, AuraScript::Remove(), SPELL_WAILING_SOULS_DMG_N, UNIT_FIELD_TARGET, and UNIT_STATE_ROOT.

Referenced by Register().

◆ Load()

bool spell_wailing_souls_periodic_aura::Load ( )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

292 {
293 dir = urand(0, 1) ? 1 : -1;
294 return true;
295 }
uint32 urand(uint32 min, uint32 max)
Definition Random.cpp:44

References dir, and urand().

◆ PrepareAuraScript()

spell_wailing_souls_periodic_aura::PrepareAuraScript ( spell_wailing_souls_periodic_aura  )
private

◆ Register()

void spell_wailing_souls_periodic_aura::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

332 {
334 }
@ EFFECT_0
Definition SharedDefines.h:31
@ SPELL_AURA_PERIODIC_DUMMY
Definition SpellAuraDefines.h:289
#define AuraEffectPeriodicFn(F, I, N)
Definition SpellScript.h:771
HookList< EffectPeriodicHandler > OnEffectPeriodic
Definition SpellScript.h:770
void HandlePeriodicTick(AuraEffect const *aurEff)
Definition boss_devourer_of_souls.cpp:297

References AuraEffectPeriodicFn, EFFECT_0, HandlePeriodicTick(), AuraScript::OnEffectPeriodic, and SPELL_AURA_PERIODIC_DUMMY.

◆ Validate()

bool spell_wailing_souls_periodic_aura::Validate ( SpellInfo const *  )
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

285 {
287 }
static bool ValidateSpellInfo(std::initializer_list< uint32 > spellIds)
Definition SpellScript.h:125

References SPELL_WAILING_SOULS_DMG_N, and _SpellScript::ValidateSpellInfo().

Member Data Documentation

◆ dir

int8 spell_wailing_souls_periodic_aura::dir = 0
private

Referenced by HandlePeriodicTick(), and Load().


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