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

Private Member Functions

 PrepareSpellScript (spell_wintergrasp_create_vehicle)
 
void HandleSummon (SpellEffIndex effIndex)
 
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 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 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

◆ HandleSummon()

void spell_wintergrasp_create_vehicle::HandleSummon ( SpellEffIndex  effIndex)
inlineprivate
954 {
955 PreventHitEffect(effIndex);
956
957 if (Unit* caster = GetCaster())
958 {
959 Unit* originalCaster = GetOriginalCaster();
960 if (!originalCaster)
961 {
962 return;
963 }
964
965 SummonPropertiesEntry const* properties = sSummonPropertiesStore.LookupEntry(GetSpellInfo()->Effects[effIndex].MiscValueB);
966 if (!properties)
967 {
968 return;
969 }
970
971 uint32 entry = GetSpellInfo()->Effects[effIndex].MiscValue;
972 int32 duration = GetSpellInfo()->GetDuration();
973 if (TempSummon* summon = caster->GetMap()->SummonCreature(entry, *GetHitDest(), properties, duration, originalCaster, GetSpellInfo()->Id))
974 {
975 if (summon->IsInMap(caster))
976 {
977 summon->SetCreatorGUID(originalCaster->GetGUID());
978 summon->HandleSpellClick(caster);
979 }
980 }
981 }
982 }
DBCStorage< SummonPropertiesEntry > sSummonPropertiesStore(SummonPropertiesfmt)
std::int32_t int32
Definition Define.h:103
std::uint32_t uint32
Definition Define.h:107
TempSummon * SummonCreature(uint32 entry, Position const &pos, SummonPropertiesEntry const *properties=nullptr, uint32 duration=0, WorldObject *summoner=nullptr, uint32 spellId=0, uint32 vehId=0, bool visibleBySummonerOnly=false)
Definition Object.cpp:2246
static ObjectGuid GetGUID(Object const *o)
Definition Object.h:120
std::array< SpellEffectInfo, MAX_SPELL_EFFECTS > Effects
Definition SpellInfo.h:417
int32 GetDuration() const
Definition SpellInfo.cpp:2764
SpellInfo const * GetSpellInfo()
Definition SpellScript.cpp:416
void PreventHitEffect(SpellEffIndex effIndex)
Definition SpellScript.cpp:584
WorldLocation * GetHitDest()
Definition SpellScript.cpp:509
Unit * GetOriginalCaster()
Definition SpellScript.cpp:411
Unit * GetCaster()
Definition SpellScript.cpp:401
Definition TemporarySummon.h:50
Definition Unit.h:665
Map * GetMap() const
Definition Object.h:637
Definition DBCStructure.h:1945

References SpellInfo::Effects, SpellScript::GetCaster(), SpellInfo::GetDuration(), Object::GetGUID(), SpellScript::GetHitDest(), WorldObject::GetMap(), SpellScript::GetOriginalCaster(), SpellScript::GetSpellInfo(), SpellScript::PreventHitEffect(), sSummonPropertiesStore, and Map::SummonCreature().

Referenced by Register().

◆ PrepareSpellScript()

spell_wintergrasp_create_vehicle::PrepareSpellScript ( spell_wintergrasp_create_vehicle  )
private

◆ Register()

void spell_wintergrasp_create_vehicle::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

985 {
987 }
@ EFFECT_1
Definition SharedDefines.h:32
@ SPELL_EFFECT_SUMMON
Definition SharedDefines.h:794
#define SpellEffectFn(F, I, N)
Definition SpellScript.h:337
HookList< EffectHandler > OnEffectHit
Definition SpellScript.h:335
void HandleSummon(SpellEffIndex effIndex)
Definition zone_wintergrasp.cpp:953

References EFFECT_1, HandleSummon(), SpellScript::OnEffectHit, SPELL_EFFECT_SUMMON, and SpellEffectFn.


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