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
 
Unit * GetCaster ()
 
GameObject * GetGObjCaster ()
 
Unit * GetOriginalCaster ()
 
SpellInfo const * GetSpellInfo ()
 
SpellValue const * GetSpellValue ()
 
WorldLocation const * GetExplTargetDest ()
 
void SetExplTargetDest (WorldLocation &loc)
 
WorldObject * GetExplTargetWorldObject ()
 
Unit * GetExplTargetUnit ()
 
GameObject * GetExplTargetGObj ()
 
Item * GetExplTargetItem ()
 
Unit * GetHitUnit ()
 
Creature * GetHitCreature ()
 
Player * GetHitPlayer ()
 
Item * GetHitItem ()
 
GameObject * GetHitGObj ()
 
WorldLocation * GetHitDest ()
 
int32 GetHitDamage ()
 
void SetHitDamage (int32 damage)
 
void PreventHitDamage ()
 
int32 GetHitHeal ()
 
void SetHitHeal (int32 heal)
 
void PreventHitHeal ()
 
Spell * GetSpell ()
 
Aura * GetHitAura ()
 
void PreventHitAura ()
 
void PreventHitEffect (SpellEffIndex effIndex)
 
void PreventHitDefaultEffect (SpellEffIndex effIndex)
 
int32 GetEffectValue () const
 
void SetEffectValue (int32 value)
 
Item * GetCastItem ()
 
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< CastHandler > BeforeCast
 
HookList< CastHandler > OnCast
 
HookList< CastHandler > AfterCast
 
HookList< CheckCastHandler > OnCheckCast
 
HookList< EffectHandler > OnEffectLaunch
 
HookList< EffectHandler > OnEffectLaunchTarget
 
HookList< EffectHandler > OnEffectHit
 
HookList< EffectHandler > OnEffectHitTarget
 
HookList< BeforeHitHandler > BeforeHit
 
HookList< HitHandler > OnHit
 
HookList< HitHandler > AfterHit
 
HookList< ObjectAreaTargetSelectHandler > OnObjectAreaTargetSelect
 
HookList< ObjectTargetSelectHandler > OnObjectTargetSelect
 
HookList< DestinationTargetSelectHandler > OnDestinationTargetSelect
 
- 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
774 {
775 // fire totem
776 Unit* caster = GetCaster();
777 if (Creature* totem = caster->GetMap()->GetCreature(caster->m_SummonSlot[1]))
778 {
779 if (!caster->IsWithinDistInMap(totem, caster->GetSpellMaxRangeForTarget(totem, GetSpellInfo())))
781 return SPELL_CAST_OK;
782 }
783 else
784 {
787 }
788 }
@ SPELL_CUSTOM_ERROR_MUST_HAVE_FIRE_TOTEM
Definition SharedDefines.h:1214
@ SPELL_FAILED_CUSTOM_ERROR
Definition SharedDefines.h:1109
@ SPELL_FAILED_OUT_OF_RANGE
Definition SharedDefines.h:1034
@ SPELL_CAST_OK
Definition SharedDefines.h:1126
Definition Creature.h:47
Creature * GetCreature(ObjectGuid const &guid)
Definition Map.cpp:2442
SpellInfo const * GetSpellInfo()
Definition SpellScript.cpp:416
void SetCustomCastResultMessage(SpellCustomErrors result)
Definition SpellScript.cpp:651
Unit * GetCaster()
Definition SpellScript.cpp:401
Definition Unit.h:667
float GetSpellMaxRangeForTarget(Unit const *target, SpellInfo const *spellInfo) const
Definition Unit.cpp:11493
ObjectGuid m_SummonSlot[MAX_SUMMON_SLOT]
Definition Unit.h:2085
Map * GetMap() const
Definition Object.h:637
bool IsWithinDistInMap(WorldObject const *obj, float dist2compare, bool is3D=true, bool incOwnRadius=true, bool incTargetRadius=true) const
Definition Object.cpp:1386

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
791 {
792 Unit* caster = GetCaster();
793 if (Creature* totem = caster->GetMap()->GetCreature(caster->m_SummonSlot[1]))
794 {
795 uint8 rank = GetSpellInfo()->GetRank();
796 if (totem->IsTotem())
797 caster->CastSpell(totem, sSpellMgr->GetSpellWithRank(SPELL_SHAMAN_FIRE_NOVA_TRIGGERED_R1, rank), true);
798 }
799 }
std::uint8_t uint8
Definition Define.h:109
#define sSpellMgr
Definition SpellMgr.h:847
uint8 GetRank() const
Definition SpellInfo.cpp:2927
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:1372
@ SPELL_SHAMAN_FIRE_NOVA_TRIGGERED_R1
Definition spell_shaman.cpp:45

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.

802 {
805 }
@ EFFECT_0
Definition SharedDefines.h:31
@ SPELL_EFFECT_DUMMY
Definition SharedDefines.h:769
#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:790
SpellCastResult CheckFireTotem()
Definition spell_shaman.cpp:773

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.

762 {
763 SpellInfo const* firstRankSpellInfo = sSpellMgr->GetSpellInfo(SPELL_SHAMAN_FIRE_NOVA_R1);
764 if (!firstRankSpellInfo || !spellInfo->IsRankOf(firstRankSpellInfo))
765 return false;
766
767 uint8 rank = spellInfo->GetRank();
768 if (!sSpellMgr->GetSpellWithRank(SPELL_SHAMAN_FIRE_NOVA_TRIGGERED_R1, rank, true))
769 return false;
770 return true;
771 }
Definition SpellInfo.h:340
@ SPELL_SHAMAN_FIRE_NOVA_R1
Definition spell_shaman.cpp:44

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: