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

Private Member Functions

 PrepareAuraScript (spell_oculus_rider_auraAuraScript)
 
void HandleOnEffectApply (AuraEffect const *aurEff, AuraEffectHandleModes)
 
void HandleOnEffectRemove (AuraEffect const *, AuraEffectHandleModes)
 
void Register () override
 

Private Attributes

ObjectGuid _drakeGUID
 

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 (uint32 removeMode=0)
 
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 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 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< AfterCheckProcHandlerDoAfterCheckProc
 
HookList< AuraProcHandlerDoPrepareProc
 
HookList< AuraProcHandlerOnProc
 
HookList< AuraProcHandlerAfterProc
 
HookList< EffectProcHandlerOnEffectProc
 
HookList< EffectProcHandlerAfterEffectProc
 
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

◆ HandleOnEffectApply()

void spell_oculus_rider_aura::spell_oculus_rider_auraAuraScript::HandleOnEffectApply ( AuraEffect const *  aurEff,
AuraEffectHandleModes   
)
inlineprivate
919 {
920 Unit* caster = GetCaster();
921 if (!caster)
922 return;
923
924 Creature* drake = caster->GetVehicleCreatureBase();
925
926 if (!drake)
927 return;
928
929 switch (aurEff->GetEffIndex())
930 {
931 case EFFECT_1:
932 _drakeGUID = drake->GetGUID();
933 caster->AddAura(SPELL_DRAKE_FLAG_VISUAL, caster);
936 drake->CastSpell(drake, SPELL_SOAR_TRIGGER);
937 if (drake->GetEntry() == NPC_RUBY_DRAKE)
938 drake->CastSpell(drake, SPELL_RUBY_EVASIVE_AURA);
939 break;
940 case EFFECT_2:
941 caster->AddAura(SPELL_SCALE_STATS, drake);
943 break;
944 }
945 }
@ UNIT_FLAG_NON_ATTACKABLE
Definition: Unit.h:449
@ SPELL_AURA_MOD_SHAPESHIFT
Definition: SpellAuraDefines.h:99
@ SPELL_DRAKE_FLAG_VISUAL
Definition: oculus.cpp:47
@ SPELL_SCALE_STATS
Definition: oculus.cpp:50
@ SPELL_RUBY_EVASIVE_AURA
Definition: oculus.cpp:52
@ SPELL_SOAR_TRIGGER
Definition: oculus.cpp:48
@ NPC_RUBY_DRAKE
Definition: oculus.h:63
@ EFFECT_1
Definition: SharedDefines.h:31
@ EFFECT_2
Definition: SharedDefines.h:32
Definition: Creature.h:46
uint32 GetEntry() const
Definition: Object.h:109
static ObjectGuid GetGUID(Object const *o)
Definition: Object.h:106
Definition: Unit.h:1290
Creature * GetVehicleCreatureBase() const
Definition: Unit.cpp:18915
Aura * AddAura(uint32 spellId, Unit *target)
Definition: Unit.cpp:19031
SpellCastResult CastSpell(SpellCastTargets const &targets, SpellInfo const *spellInfo, CustomSpellValues const *value, TriggerCastFlags triggerFlags=TRIGGERED_NONE, Item *castItem=nullptr, AuraEffect const *triggeredByAura=nullptr, ObjectGuid originalCaster=ObjectGuid::Empty)
Definition: Unit.cpp:1169
void RemoveAurasByType(AuraType auraType, ObjectGuid casterGUID=ObjectGuid::Empty, Aura *except=nullptr, bool negative=true, bool positive=true)
Definition: Unit.cpp:5025
void SetUnitFlag(UnitFlags flags)
Definition: Unit.h:1481
void PreventDefaultAction()
Definition: SpellScript.cpp:985
Unit * GetCaster() const
Definition: SpellScript.cpp:1020
ObjectGuid _drakeGUID
Definition: oculus.cpp:916

References _drakeGUID, Unit::AddAura(), Unit::CastSpell(), EFFECT_1, EFFECT_2, AuraScript::GetCaster(), AuraEffect::GetEffIndex(), Object::GetEntry(), Object::GetGUID(), Unit::GetVehicleCreatureBase(), NPC_RUBY_DRAKE, AuraScript::PreventDefaultAction(), Unit::RemoveAurasByType(), Unit::SetUnitFlag(), SPELL_AURA_MOD_SHAPESHIFT, SPELL_DRAKE_FLAG_VISUAL, SPELL_RUBY_EVASIVE_AURA, SPELL_SCALE_STATS, SPELL_SOAR_TRIGGER, and UNIT_FLAG_NON_ATTACKABLE.

Referenced by Register().

◆ HandleOnEffectRemove()

void spell_oculus_rider_aura::spell_oculus_rider_auraAuraScript::HandleOnEffectRemove ( AuraEffect const *  ,
AuraEffectHandleModes   
)
inlineprivate
948 {
949 Unit* caster = GetCaster();
950
951 if (!caster)
952 return;
953
955
956 if (drake)
957 {
962 }
965 }
@ UNIT_FLAG_POSSESSED
Definition: Unit.h:472
Creature * GetCreature(WorldObject const &u, ObjectGuid const guid)
Definition: ObjectAccessor.cpp:215
void RemoveAurasDueToSpell(uint32 spellId, ObjectGuid casterGUID=ObjectGuid::Empty, uint8 reqEffMask=0, AuraRemoveMode removeMode=AURA_REMOVE_BY_DEFAULT)
Definition: Unit.cpp:4835
void RemoveUnitFlag(UnitFlags flags)
Definition: Unit.h:1482
uint32 GetId() const
Definition: SpellScript.cpp:1010

References _drakeGUID, AuraScript::GetCaster(), ObjectAccessor::GetCreature(), AuraScript::GetId(), Unit::RemoveAurasDueToSpell(), Unit::RemoveUnitFlag(), SPELL_DRAKE_FLAG_VISUAL, SPELL_RUBY_EVASIVE_AURA, SPELL_SOAR_TRIGGER, UNIT_FLAG_NON_ATTACKABLE, and UNIT_FLAG_POSSESSED.

Referenced by Register().

◆ PrepareAuraScript()

spell_oculus_rider_aura::spell_oculus_rider_auraAuraScript::PrepareAuraScript ( spell_oculus_rider_auraAuraScript  )
private

◆ Register()

void spell_oculus_rider_aura::spell_oculus_rider_auraAuraScript::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

968 {
972 }
@ SPELL_AURA_LINKED
Definition: SpellAuraDefines.h:347
@ SPELL_AURA_DUMMY
Definition: SpellAuraDefines.h:67
@ AURA_EFFECT_HANDLE_REAL_OR_REAPPLY_MASK
Definition: SpellAuraDefines.h:51
#define AuraEffectApplyFn(F, I, N, M)
Definition: SpellScript.h:743
#define AuraEffectRemoveFn(F, I, N, M)
Definition: SpellScript.h:754
HookList< EffectApplyHandler > OnEffectRemove
Definition: SpellScript.h:749
HookList< EffectApplyHandler > OnEffectApply
Definition: SpellScript.h:738
void HandleOnEffectApply(AuraEffect const *aurEff, AuraEffectHandleModes)
Definition: oculus.cpp:918
void HandleOnEffectRemove(AuraEffect const *, AuraEffectHandleModes)
Definition: oculus.cpp:947

References AURA_EFFECT_HANDLE_REAL_OR_REAPPLY_MASK, AuraEffectApplyFn, AuraEffectRemoveFn, EFFECT_1, EFFECT_2, HandleOnEffectApply(), HandleOnEffectRemove(), AuraScript::OnEffectApply, AuraScript::OnEffectRemove, SPELL_AURA_DUMMY, and SPELL_AURA_LINKED.

Member Data Documentation

◆ _drakeGUID

ObjectGuid spell_oculus_rider_aura::spell_oculus_rider_auraAuraScript::_drakeGUID
private