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
 
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 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< 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

◆ HandleSummon()

void spell_wintergrasp_create_vehicle::HandleSummon ( SpellEffIndex  effIndex)
inlineprivate
945 {
946 PreventHitEffect(effIndex);
947
948 if (Unit* caster = GetCaster())
949 {
950 Unit* originalCaster = GetOriginalCaster();
951 if (!originalCaster)
952 {
953 return;
954 }
955
956 SummonPropertiesEntry const* properties = sSummonPropertiesStore.LookupEntry(GetSpellInfo()->Effects[effIndex].MiscValueB);
957 if (!properties)
958 {
959 return;
960 }
961
962 uint32 entry = GetSpellInfo()->Effects[effIndex].MiscValue;
963 int32 duration = GetSpellInfo()->GetDuration();
964 if (TempSummon* summon = caster->GetMap()->SummonCreature(entry, *GetHitDest(), properties, duration, originalCaster, GetSpellInfo()->Id))
965 {
966 if (summon->IsInMap(caster))
967 {
968 summon->SetCreatorGUID(originalCaster->GetGUID());
969 summon->HandleSpellClick(caster);
970 }
971 }
972 }
973 }
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:2188
static ObjectGuid GetGUID(Object const *o)
Definition Object.h:114
std::array< SpellEffectInfo, MAX_SPELL_EFFECTS > Effects
Definition SpellInfo.h:417
int32 GetDuration() const
Definition SpellInfo.cpp:2738
SpellInfo const * GetSpellInfo()
Definition SpellScript.cpp:411
void PreventHitEffect(SpellEffIndex effIndex)
Definition SpellScript.cpp:579
WorldLocation * GetHitDest()
Definition SpellScript.cpp:504
Unit * GetOriginalCaster()
Definition SpellScript.cpp:406
Unit * GetCaster()
Definition SpellScript.cpp:401
Definition TemporarySummon.h:50
Definition Unit.h:664
Map * GetMap() const
Definition Object.h:625
Definition DBCStructure.h:1909

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.

976 {
978 }
@ 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:944

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


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