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

Private Member Functions

 PrepareSpellScript (spell_sha_fire_nova)
 
bool Validate (SpellInfo const *spellInfo) override
 
SpellCastResult CheckFireTotem ()
 
void HandleDummy (SpellEffIndex)
 
void Register () override
 

Additional Inherited Members

- Public Member Functions inherited from SpellScript
bool _Validate (SpellInfo const *entry) override
 
bool _Load (Spell *spell)
 
void _InitHit ()
 
bool _IsEffectPrevented (SpellEffIndex effIndex)
 
bool _IsDefaultEffectPrevented (SpellEffIndex effIndex)
 
void _PrepareScriptCall (SpellScriptHookType hookType)
 
void _FinishScriptCall ()
 
bool IsInCheckCastHook () const
 
bool IsInTargetHook () const
 
bool IsInHitPhase () const
 
bool IsInEffectHook () const
 
UnitGetCaster ()
 
UnitGetOriginalCaster ()
 
SpellInfo const * GetSpellInfo ()
 
SpellValue const * GetSpellValue ()
 
WorldLocation const * GetExplTargetDest ()
 
void SetExplTargetDest (WorldLocation &loc)
 
WorldObjectGetExplTargetWorldObject ()
 
UnitGetExplTargetUnit ()
 
GameObjectGetExplTargetGObj ()
 
ItemGetExplTargetItem ()
 
UnitGetHitUnit ()
 
CreatureGetHitCreature ()
 
PlayerGetHitPlayer ()
 
ItemGetHitItem ()
 
GameObjectGetHitGObj ()
 
WorldLocationGetHitDest ()
 
int32 GetHitDamage ()
 
void SetHitDamage (int32 damage)
 
void PreventHitDamage ()
 
int32 GetHitHeal ()
 
void SetHitHeal (int32 heal)
 
void PreventHitHeal ()
 
SpellGetSpell ()
 
AuraGetHitAura ()
 
void PreventHitAura ()
 
void PreventHitEffect (SpellEffIndex effIndex)
 
void PreventHitDefaultEffect (SpellEffIndex effIndex)
 
int32 GetEffectValue () const
 
void SetEffectValue (int32 value)
 
ItemGetCastItem ()
 
void CreateItem (uint32 effIndex, uint32 itemId)
 
SpellInfo const * GetTriggeringSpell ()
 
void FinishCast (SpellCastResult result)
 
void Cancel ()
 
void SetCustomCastResultMessage (SpellCustomErrors result)
 
- 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 ()
 
- 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 SpellScript
HookList< CastHandlerBeforeCast
 
HookList< CastHandlerOnCast
 
HookList< CastHandlerAfterCast
 
HookList< CheckCastHandlerOnCheckCast
 
HookList< EffectHandlerOnEffectLaunch
 
HookList< EffectHandlerOnEffectLaunchTarget
 
HookList< EffectHandlerOnEffectHit
 
HookList< EffectHandlerOnEffectHitTarget
 
HookList< BeforeHitHandlerBeforeHit
 
HookList< HitHandlerOnHit
 
HookList< HitHandlerAfterHit
 
HookList< ObjectAreaTargetSelectHandlerOnObjectAreaTargetSelect
 
HookList< ObjectTargetSelectHandlerOnObjectTargetSelect
 
HookList< DestinationTargetSelectHandlerOnDestinationTargetSelect
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string const * m_scriptName
 
uint32 m_scriptSpellId
 

Detailed Description

Member Function Documentation

◆ CheckFireTotem()

SpellCastResult spell_sha_fire_nova::CheckFireTotem ( )
inlineprivate
711 {
712 // fire totem
713 Unit* caster = GetCaster();
714 if (Creature* totem = caster->GetMap()->GetCreature(caster->m_SummonSlot[1]))
715 {
716 if (!caster->IsWithinDistInMap(totem, caster->GetSpellMaxRangeForTarget(totem, GetSpellInfo())))
718 return SPELL_CAST_OK;
719 }
720 else
721 {
724 }
725 }
@ SPELL_CUSTOM_ERROR_MUST_HAVE_FIRE_TOTEM
Definition SharedDefines.h:1226
@ SPELL_FAILED_CUSTOM_ERROR
Definition SharedDefines.h:1121
@ SPELL_FAILED_OUT_OF_RANGE
Definition SharedDefines.h:1046
@ SPELL_CAST_OK
Definition SharedDefines.h:1138
Definition Creature.h:43
Creature * GetCreature(ObjectGuid const guid)
Definition Map.cpp:2498
SpellInfo const * GetSpellInfo()
Definition SpellScript.cpp:411
void SetCustomCastResultMessage(SpellCustomErrors result)
Definition SpellScript.cpp:646
Unit * GetCaster()
Definition SpellScript.cpp:401
Definition Unit.h:636
float GetSpellMaxRangeForTarget(Unit const *target, SpellInfo const *spellInfo) const
Definition Unit.cpp:15199
ObjectGuid m_SummonSlot[MAX_SUMMON_SLOT]
Definition Unit.h:1994
Map * GetMap() const
Definition Object.h:536
bool IsWithinDistInMap(WorldObject const *obj, float dist2compare, bool is3D=true, bool useBoundingRadius=true) const
Definition Object.cpp:1332

References SpellScript::GetCaster(), Map::GetCreature(), WorldObject::GetMap(), SpellScript::GetSpellInfo(), Unit::GetSpellMaxRangeForTarget(), WorldObject::IsWithinDistInMap(), Unit::m_SummonSlot, SpellScript::SetCustomCastResultMessage(), SPELL_CAST_OK, SPELL_CUSTOM_ERROR_MUST_HAVE_FIRE_TOTEM, SPELL_FAILED_CUSTOM_ERROR, and SPELL_FAILED_OUT_OF_RANGE.

Referenced by Register().

◆ HandleDummy()

void spell_sha_fire_nova::HandleDummy ( SpellEffIndex  )
inlineprivate
728 {
729 Unit* caster = GetCaster();
730 if (Creature* totem = caster->GetMap()->GetCreature(caster->m_SummonSlot[1]))
731 {
732 uint8 rank = GetSpellInfo()->GetRank();
733 if (totem->IsTotem())
734 caster->CastSpell(totem, sSpellMgr->GetSpellWithRank(SPELL_SHAMAN_FIRE_NOVA_TRIGGERED_R1, rank), true);
735 }
736 }
std::uint8_t uint8
Definition Define.h:109
#define sSpellMgr
Definition SpellMgr.h:825
uint8 GetRank() const
Definition SpellInfo.cpp:2494
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:1178
@ SPELL_SHAMAN_FIRE_NOVA_TRIGGERED_R1
Definition spell_shaman.cpp:42

References Unit::CastSpell(), SpellScript::GetCaster(), Map::GetCreature(), WorldObject::GetMap(), SpellInfo::GetRank(), SpellScript::GetSpellInfo(), Unit::m_SummonSlot, SPELL_SHAMAN_FIRE_NOVA_TRIGGERED_R1, and sSpellMgr.

Referenced by Register().

◆ PrepareSpellScript()

spell_sha_fire_nova::PrepareSpellScript ( spell_sha_fire_nova  )
private

◆ Register()

void spell_sha_fire_nova::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

739 {
742 }
@ EFFECT_0
Definition SharedDefines.h:31
@ SPELL_EFFECT_DUMMY
Definition SharedDefines.h:781
#define SpellCheckCastFn(F)
Definition SpellScript.h:329
#define SpellEffectFn(F, I, N)
Definition SpellScript.h:337
HookList< CheckCastHandler > OnCheckCast
Definition SpellScript.h:328
HookList< EffectHandler > OnEffectHitTarget
Definition SpellScript.h:336
void HandleDummy(SpellEffIndex)
Definition spell_shaman.cpp:727
SpellCastResult CheckFireTotem()
Definition spell_shaman.cpp:710

References CheckFireTotem(), EFFECT_0, HandleDummy(), SpellScript::OnCheckCast, SpellScript::OnEffectHitTarget, SPELL_EFFECT_DUMMY, SpellCheckCastFn, and SpellEffectFn.

◆ Validate()

bool spell_sha_fire_nova::Validate ( SpellInfo const *  spellInfo)
inlineoverrideprivatevirtual

Reimplemented from _SpellScript.

699 {
700 SpellInfo const* firstRankSpellInfo = sSpellMgr->GetSpellInfo(SPELL_SHAMAN_FIRE_NOVA_R1);
701 if (!firstRankSpellInfo || !spellInfo->IsRankOf(firstRankSpellInfo))
702 return false;
703
704 uint8 rank = spellInfo->GetRank();
705 if (!sSpellMgr->GetSpellWithRank(SPELL_SHAMAN_FIRE_NOVA_TRIGGERED_R1, rank, true))
706 return false;
707 return true;
708 }
Definition SpellInfo.h:316
@ SPELL_SHAMAN_FIRE_NOVA_R1
Definition spell_shaman.cpp:41

References SpellInfo::GetRank(), SpellInfo::IsRankOf(), SPELL_SHAMAN_FIRE_NOVA_R1, SPELL_SHAMAN_FIRE_NOVA_TRIGGERED_R1, and sSpellMgr.


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