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

Private Member Functions

 PrepareAuraScript (spell_warl_generic_scaling)
 
void CalculateResistanceAmount (AuraEffect const *aurEff, int32 &amount, bool &)
 
void CalculateStatAmount (AuraEffect const *aurEff, int32 &amount, bool &)
 
void CalculateAPAmount (AuraEffect const *aurEff, int32 &amount, bool &)
 
void CalculateSPAmount (AuraEffect const *, int32 &amount, bool &)
 
void CalcPeriodic (AuraEffect const *, bool &isPeriodic, int32 &amplitude)
 
void HandlePeriodic (AuraEffect const *aurEff)
 
void Register () override
 

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 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
 
- Protected Attributes inherited from _SpellScript
uint8 m_currentScriptState
 
std::string const * m_scriptName
 
uint32 m_scriptSpellId
 

Detailed Description

Member Function Documentation

◆ CalcPeriodic()

void spell_warl_generic_scaling::CalcPeriodic ( AuraEffect const *  ,
bool &  isPeriodic,
int32 amplitude 
)
inlineprivate
365 {
366 isPeriodic = true;
367 amplitude = 2 * IN_MILLISECONDS;
368 }
constexpr auto IN_MILLISECONDS
Definition Common.h:53

References IN_MILLISECONDS.

Referenced by Register().

◆ CalculateAPAmount()

void spell_warl_generic_scaling::CalculateAPAmount ( AuraEffect const *  aurEff,
int32 amount,
bool &   
)
inlineprivate
325 {
326 if (Unit* pet = GetUnitOwner())
327 {
328 // by default warlock pet inherits 57% of max(SP FIRE, SP SHADOW) as AP
329 if (Unit* owner = pet->GetOwner())
330 {
331 int32 fire = owner->SpellBaseDamageBonusDone(SPELL_SCHOOL_MASK_FIRE);
332 int32 shadow = owner->SpellBaseDamageBonusDone(SPELL_SCHOOL_MASK_SHADOW);
333 int32 maximum = (fire > shadow) ? fire : shadow;
334 amount = CalculatePct(std::max<int32>(0, maximum), 57);
335
336 // Glyph of felguard, 99% sure this is a HACK
337 if (pet->GetEntry() == NPC_FELGUARD)
338 {
339 if (AuraEffect* glyph = owner->GetAuraEffect(SPELL_GLYPH_OF_FELGUARD, EFFECT_0))
340 {
341 amount += CalculatePct(pet->GetTotalAuraModValue(UNIT_MOD_ATTACK_POWER) - aurEff->GetAmount() + amount, glyph->GetAmount());
342 }
343 }
344 }
345 }
346 }
std::int32_t int32
Definition Define.h:103
@ SPELL_GLYPH_OF_FELGUARD
Definition PetDefines.h:153
@ NPC_FELGUARD
Definition PetDefines.h:101
@ EFFECT_0
Definition SharedDefines.h:31
@ SPELL_SCHOOL_MASK_SHADOW
Definition SharedDefines.h:313
@ SPELL_SCHOOL_MASK_FIRE
Definition SharedDefines.h:310
@ UNIT_MOD_ATTACK_POWER
Definition Unit.h:170
T CalculatePct(T base, U pct)
Definition Util.h:52
Definition SpellAuraEffects.h:39
Unit * GetUnitOwner() const
Definition SpellScript.cpp:1030
Definition Unit.h:655
Unit * GetOwner() const
Definition Unit.cpp:10804

References CalculatePct(), EFFECT_0, AuraEffect::GetAmount(), Unit::GetOwner(), AuraScript::GetUnitOwner(), NPC_FELGUARD, SPELL_GLYPH_OF_FELGUARD, SPELL_SCHOOL_MASK_FIRE, SPELL_SCHOOL_MASK_SHADOW, and UNIT_MOD_ATTACK_POWER.

Referenced by Register().

◆ CalculateResistanceAmount()

void spell_warl_generic_scaling::CalculateResistanceAmount ( AuraEffect const *  aurEff,
int32 amount,
bool &   
)
inlineprivate
298 {
299 // pet inherits 40% of resistance from owner and 35% of armor
300 if (Unit* owner = GetUnitOwner()->GetOwner())
301 {
302 SpellSchoolMask schoolMask = SpellSchoolMask(aurEff->GetSpellInfo()->Effects[aurEff->GetEffIndex()].MiscValue);
303 int32 modifier = schoolMask == SPELL_SCHOOL_MASK_NORMAL ? 35 : 40;
304 amount = CalculatePct(std::max<int32>(0, owner->GetResistance(schoolMask)), modifier);
305 if (owner->HasAura(SPELL_WARLOCK_PET_VOID_STAR_TALISMAN) && schoolMask != SPELL_SCHOOL_MASK_NORMAL)
306 {
307 SpellInfo const* spellInfo = sSpellMgr->GetSpellInfo(SPELL_WARLOCK_PET_VOID_STAR_TALISMAN);
308 amount += spellInfo->Effects[EFFECT_0].CalcValue(); // 130
309 }
310 }
311 }
SpellSchoolMask
Definition SharedDefines.h:306
@ SPELL_SCHOOL_MASK_NORMAL
Definition SharedDefines.h:308
#define sSpellMgr
Definition SpellMgr.h:825
WorldObject * GetOwner() const
Definition SpellScript.cpp:1025
Definition SpellInfo.h:316
std::array< SpellEffectInfo, MAX_SPELL_EFFECTS > Effects
Definition SpellInfo.h:393
@ SPELL_WARLOCK_PET_VOID_STAR_TALISMAN
Definition spell_warlock.cpp:77

References CalculatePct(), EFFECT_0, SpellInfo::Effects, AuraEffect::GetEffIndex(), AuraScript::GetOwner(), AuraEffect::GetSpellInfo(), AuraScript::GetUnitOwner(), SPELL_SCHOOL_MASK_NORMAL, SPELL_WARLOCK_PET_VOID_STAR_TALISMAN, and sSpellMgr.

Referenced by Register().

◆ CalculateSPAmount()

void spell_warl_generic_scaling::CalculateSPAmount ( AuraEffect const *  ,
int32 amount,
bool &   
)
inlineprivate
349 {
350 // by default warlock pet inherits 15% of max(SP FIRE, SP SHADOW) as SP
351 if (Unit* owner = GetUnitOwner()->GetOwner())
352 {
353 int32 fire = owner->SpellBaseDamageBonusDone(SPELL_SCHOOL_MASK_FIRE);
354 int32 shadow = owner->SpellBaseDamageBonusDone(SPELL_SCHOOL_MASK_SHADOW);
355 int32 maximum = (fire > shadow) ? fire : shadow;
356 amount = CalculatePct(std::max<int32>(0, maximum), 15);
357
358 // Update appropriate player field
359 if (owner->IsPlayer())
360 owner->SetUInt32Value(PLAYER_PET_SPELL_POWER, (uint32)amount);
361 }
362 }
std::uint32_t uint32
Definition Define.h:107
@ PLAYER_PET_SPELL_POWER
Definition UpdateFields.h:391

References CalculatePct(), AuraScript::GetOwner(), AuraScript::GetUnitOwner(), PLAYER_PET_SPELL_POWER, SPELL_SCHOOL_MASK_FIRE, and SPELL_SCHOOL_MASK_SHADOW.

Referenced by Register().

◆ CalculateStatAmount()

void spell_warl_generic_scaling::CalculateStatAmount ( AuraEffect const *  aurEff,
int32 amount,
bool &   
)
inlineprivate
314 {
315 // by default warlock pet inherits 75% of stamina and 30% of intellect
316 if (Unit* owner = GetUnitOwner()->GetOwner())
317 {
318 Stats stat = Stats(aurEff->GetSpellInfo()->Effects[aurEff->GetEffIndex()].MiscValue);
319 int32 modifier = stat == STAT_STAMINA ? 75 : 30;
320 amount = CalculatePct(std::max<int32>(0, owner->GetStat(stat)), modifier);
321 }
322 }
Stats
Definition SharedDefines.h:268
@ STAT_STAMINA
Definition SharedDefines.h:271

References CalculatePct(), SpellInfo::Effects, AuraEffect::GetEffIndex(), AuraScript::GetOwner(), AuraEffect::GetSpellInfo(), AuraScript::GetUnitOwner(), and STAT_STAMINA.

Referenced by Register().

◆ HandlePeriodic()

void spell_warl_generic_scaling::HandlePeriodic ( AuraEffect const *  aurEff)
inlineprivate
371 {
373 if (aurEff->GetAuraType() == SPELL_AURA_MOD_STAT && (aurEff->GetMiscValue() == STAT_STAMINA || aurEff->GetMiscValue() == STAT_INTELLECT))
374 {
375 int32 currentAmount = aurEff->GetAmount();
376 int32 newAmount = GetEffect(aurEff->GetEffIndex())->CalculateAmount(GetCaster());
377 if (newAmount != currentAmount)
378 {
379 if (aurEff->GetMiscValue() == STAT_STAMINA)
380 {
381 uint32 actStat = GetUnitOwner()->GetHealth();
382 GetEffect(aurEff->GetEffIndex())->ChangeAmount(newAmount, false);
383 GetUnitOwner()->SetHealth(std::min<uint32>(GetUnitOwner()->GetMaxHealth(), actStat));
384 }
385 else
386 {
388 GetEffect(aurEff->GetEffIndex())->ChangeAmount(newAmount, false);
389 GetUnitOwner()->SetPower(POWER_MANA, std::min<uint32>(GetUnitOwner()->GetMaxPower(POWER_MANA), actStat));
390 }
391 }
392 }
393 else
394 GetEffect(aurEff->GetEffIndex())->RecalculateAmount();
395 }
@ POWER_MANA
Definition SharedDefines.h:280
@ STAT_INTELLECT
Definition SharedDefines.h:272
@ SPELL_AURA_MOD_STAT
Definition SpellAuraDefines.h:92
void ChangeAmount(int32 newAmount, bool mark=true, bool onStackOrReapply=false)
Definition SpellAuraEffects.cpp:714
int32 CalculateAmount(Unit *caster)
Definition SpellAuraEffects.cpp:452
void RecalculateAmount()
Definition SpellAuraEffects.h:76
void PreventDefaultAction()
Definition SpellScript.cpp:985
Unit * GetCaster() const
Definition SpellScript.cpp:1020
AuraEffect * GetEffect(uint8 effIndex) const
Definition SpellScript.cpp:1155
void SetPower(Powers power, uint32 val, bool withPowerUpdate=true, bool fromRegenerate=false)
Definition Unit.cpp:15801
void SetHealth(uint32 val)
Definition Unit.cpp:15713
uint32 GetHealth() const
Definition Unit.h:1093
uint32 GetPower(Powers power) const
Definition Unit.h:1120

References AuraEffect::CalculateAmount(), AuraEffect::ChangeAmount(), AuraEffect::GetAmount(), AuraEffect::GetAuraType(), AuraScript::GetCaster(), AuraScript::GetEffect(), AuraEffect::GetEffIndex(), Unit::GetHealth(), AuraEffect::GetMiscValue(), Unit::GetPower(), AuraScript::GetUnitOwner(), POWER_MANA, AuraScript::PreventDefaultAction(), AuraEffect::RecalculateAmount(), Unit::SetHealth(), Unit::SetPower(), SPELL_AURA_MOD_STAT, STAT_INTELLECT, and STAT_STAMINA.

Referenced by Register().

◆ PrepareAuraScript()

spell_warl_generic_scaling::PrepareAuraScript ( spell_warl_generic_scaling  )
private

◆ Register()

void spell_warl_generic_scaling::Register ( )
inlineoverrideprivatevirtual

Implements _SpellScript.

398 {
399 if (m_scriptSpellId != 34947)
401
402 if (m_scriptSpellId == 34947 || m_scriptSpellId == 34956)
404
405 if (m_scriptSpellId == 34947)
406 {
409 }
410
413 }
#define EFFECT_ALL
Definition SharedDefines.h:38
@ SPELL_AURA_MOD_ATTACK_POWER
Definition SpellAuraDefines.h:162
@ SPELL_AURA_MOD_RESISTANCE
Definition SpellAuraDefines.h:85
@ SPELL_AURA_MOD_DAMAGE_DONE
Definition SpellAuraDefines.h:76
#define AuraEffectCalcAmountFn(F, I, N)
Definition SpellScript.h:772
#define AuraEffectPeriodicFn(F, I, N)
Definition SpellScript.h:760
#define AuraEffectCalcPeriodicFn(F, I, N)
Definition SpellScript.h:778
#define SPELL_AURA_ANY
Definition SpellScript.h:43
HookList< EffectCalcPeriodicHandler > DoEffectCalcPeriodic
Definition SpellScript.h:777
HookList< EffectPeriodicHandler > OnEffectPeriodic
Definition SpellScript.h:759
HookList< EffectCalcAmountHandler > DoEffectCalcAmount
Definition SpellScript.h:771
uint32 m_scriptSpellId
Definition SpellScript.h:107
void CalculateSPAmount(AuraEffect const *, int32 &amount, bool &)
Definition spell_warlock.cpp:348
void CalculateResistanceAmount(AuraEffect const *aurEff, int32 &amount, bool &)
Definition spell_warlock.cpp:297
void CalculateAPAmount(AuraEffect const *aurEff, int32 &amount, bool &)
Definition spell_warlock.cpp:324
void CalculateStatAmount(AuraEffect const *aurEff, int32 &amount, bool &)
Definition spell_warlock.cpp:313
void CalcPeriodic(AuraEffect const *, bool &isPeriodic, int32 &amplitude)
Definition spell_warlock.cpp:364
void HandlePeriodic(AuraEffect const *aurEff)
Definition spell_warlock.cpp:370

References AuraEffectCalcAmountFn, AuraEffectCalcPeriodicFn, AuraEffectPeriodicFn, CalcPeriodic(), CalculateAPAmount(), CalculateResistanceAmount(), CalculateSPAmount(), CalculateStatAmount(), AuraScript::DoEffectCalcAmount, AuraScript::DoEffectCalcPeriodic, EFFECT_ALL, HandlePeriodic(), _SpellScript::m_scriptSpellId, AuraScript::OnEffectPeriodic, SPELL_AURA_ANY, SPELL_AURA_MOD_ATTACK_POWER, SPELL_AURA_MOD_DAMAGE_DONE, SPELL_AURA_MOD_RESISTANCE, and SPELL_AURA_MOD_STAT.


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