summaryrefslogtreecommitdiff
path: root/src/scripts/Pet/pet_dk.cpp
blob: 25daa39fafd7fb6afd68c5ef6c1b23b22b470d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/*
 * Copyright (C) 
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program. If not, see <http://www.gnu.org/licenses/>.
 */

/*
 * Ordered alphabetically using scriptname.
 * Scriptnames of files in this file should be prefixed with "npc_pet_dk_".
 */

#include "ScriptMgr.h"
#include "ScriptedCreature.h"
#include "CombatAI.h"
#include "Cell.h"
#include "CellImpl.h"
#include "GridNotifiers.h"
#include "GridNotifiersImpl.h"

enum DeathKnightSpells
{
    SPELL_DK_SUMMON_GARGOYLE_1      = 49206,
    SPELL_DK_SUMMON_GARGOYLE_2      = 50514,
    SPELL_DK_DISMISS_GARGOYLE       = 50515,
    SPELL_DK_SANCTUARY              = 54661,
    SPELL_DK_NIGHT_OF_THE_DEAD      = 62137,
    SPELL_DK_PET_SCALING            = 61017
};

class npc_pet_dk_ebon_gargoyle : public CreatureScript
{
    public:
        npc_pet_dk_ebon_gargoyle() : CreatureScript("npc_pet_dk_ebon_gargoyle") { }

        struct npc_pet_dk_ebon_gargoyleAI : ScriptedAI
        {
            npc_pet_dk_ebon_gargoyleAI(Creature* creature) : ScriptedAI(creature)
            {
                _despawnTimer = 36000; // 30 secs + 4 fly out + 2 initial attack timer
                _despawning = false;
                _initialSelection = true;
                _targetGUID = 0;
            }

            void MovementInform(uint32 type, uint32 point)
            {
                if (type == POINT_MOTION_TYPE && point == 1)
                {
                    me->SetCanFly(false);
                    me->SetDisableGravity(false);
                }
            }

            void InitializeAI()
            {
                ScriptedAI::InitializeAI();
                Unit* owner = me->GetOwner();
                if (!owner)
                    return;

                // Xinef: Night of the Dead avoidance
                if (Aura *aur = me->GetAura(SPELL_DK_NIGHT_OF_THE_DEAD))
                    if (Unit* owner = me->GetOwner())
                        if (AuraEffect *aurEff = owner->GetAuraEffect(SPELL_AURA_ADD_FLAT_MODIFIER, SPELLFAMILY_DEATHKNIGHT, 2718, 0))
                            if (aur->GetEffect(0))
                                aur->GetEffect(0)->SetAmount(-aurEff->GetSpellInfo()->Effects[EFFECT_2].CalcValue());
                
                float tz = me->GetMap()->GetHeight(me->GetPhaseMask(), me->GetPositionX(), me->GetPositionY(), me->GetPositionZ(), true, MAX_FALL_DISTANCE);
                me->GetMotionMaster()->MoveCharge(me->GetPositionX(), me->GetPositionY(), tz, 7.0f, 1);
                me->AddUnitState(UNIT_STATE_NO_ENVIRONMENT_UPD);
                me->SetCanFly(true);
                me->SetDisableGravity(true);
                _selectionTimer = 2000;
                _initialCastTimer = 0;
            }

            uint64 GetGhoulTargetGUID()
            {
                uint64 ghoulTargetGUID = 0;

                std::list<Unit*> targets;
                Trinity::AnyFriendlyUnitInObjectRangeCheck ghoul_check(me, me, 50);
                Trinity::UnitListSearcher<Trinity::AnyFriendlyUnitInObjectRangeCheck> searcher(me, targets, ghoul_check);
                me->VisitNearbyObject(50, searcher);
                for (std::list<Unit*>::const_iterator iter = targets.begin(); iter != targets.end(); ++iter)
                {
                    if ((*iter)->GetEntry() == 26125) // ghoul entry
                        if ((*iter)->GetOwnerGUID() == me->GetOwnerGUID()) // same owner
                        {
                            ghoulTargetGUID = (*iter)->GetTarget();
                            break;
                        }
                }

                return ghoulTargetGUID;
            }

            void MySelectNextTarget()
            {
                Unit* owner = me->GetOwner();
                if (owner && owner->GetTypeId() == TYPEID_PLAYER)
                {
                    Unit* ghoulTarget = ObjectAccessor::GetUnit(*me, GetGhoulTargetGUID());
                    Unit* dkTarget = owner->ToPlayer()->GetSelectedUnit();

                    if (ghoulTarget && ghoulTarget != me->GetVictim() && me->IsValidAttackTarget(ghoulTarget))
                    {
                        me->GetMotionMaster()->Clear(false);
                        SwitchTargetAndAttack(ghoulTarget);
                        return;
                    }
                    
                    if (dkTarget && dkTarget != me->GetVictim() && me->IsValidAttackTarget(dkTarget))
                    {
                        me->GetMotionMaster()->Clear(false);
                        SwitchTargetAndAttack(dkTarget);
                        return;
                    }
                    
                    if (!me->GetVictim() || !owner->CanSeeOrDetect(me->GetVictim()))
                    {
                        me->CombatStop(true);
                        me->GetMotionMaster()->Clear(false);
                        me->GetMotionMaster()->MoveFollow(owner, PET_FOLLOW_DIST, 0.0f);
                        RemoveTargetAura();
                        return;
                    }
                }
            }

            void SwitchTargetAndAttack(Unit* who) 
            {
                RemoveTargetAura();
                _targetGUID = who->GetGUID();

                me->AddAura(SPELL_DK_SUMMON_GARGOYLE_1, who);
                ScriptedAI::AttackStart(who);
                me->SetReactState(REACT_PASSIVE);
            }

            void RemoveTargetAura()
            {
                if (Unit* target = ObjectAccessor::GetUnit(*me, _targetGUID))
                    target->RemoveAura(SPELL_DK_SUMMON_GARGOYLE_1, me->GetGUID());
            }

            void Reset()
            {
                _selectionTimer = 0;
                me->SetReactState(REACT_PASSIVE);
                MySelectNextTarget();
            }

            // Fly away when dismissed
            void FlyAway()
            {
                RemoveTargetAura();

                // Stop Fighting
                me->CombatStop(true);
                me->ApplyModFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NON_ATTACKABLE, true);

                // Sanctuary
                me->CastSpell(me, SPELL_DK_SANCTUARY, true);
                me->SetReactState(REACT_PASSIVE);

                me->SetSpeed(MOVE_FLIGHT, 1.0f, true);
                me->SetSpeed(MOVE_RUN, 1.0f, true);
                float x = me->GetPositionX() + 20 * cos(me->GetOrientation());
                float y = me->GetPositionY() + 20 * sin(me->GetOrientation());
                float z = me->GetPositionZ() + 40;
                me->DisableSpline();
                me->GetMotionMaster()->Clear(false);

                me->GetMotionMaster()->MoveCharge(x, y, z, 7.0f, 1);
                me->SetCanFly(true);
                me->SetDisableGravity(true);

                _despawning = true;
            }

            void UpdateAI(uint32 diff)
            {
                if (_initialSelection)
                {
                    _initialSelection = false;
                    // Find victim of Summon Gargoyle spell
                    std::list<Unit*> targets;
                    Trinity::AnyUnfriendlyUnitInObjectRangeCheck u_check(me, me, 50);
                    Trinity::UnitListSearcher<Trinity::AnyUnfriendlyUnitInObjectRangeCheck> searcher(me, targets, u_check);
                    me->VisitNearbyObject(50, searcher);
                    for (std::list<Unit*>::const_iterator iter = targets.begin(); iter != targets.end(); ++iter)
                        if ((*iter)->GetAura(SPELL_DK_SUMMON_GARGOYLE_1, me->GetOwnerGUID()))
                        {
                            SwitchTargetAndAttack((*iter));
                            break;
                        }
                }

                if (_despawnTimer > 4000)
                {
                    _despawnTimer -= diff;

                    _initialCastTimer += diff;
                    _selectionTimer += diff;

                    if (_selectionTimer >= 1000)
                    {
                        MySelectNextTarget();
                        _selectionTimer = 0;
                    }
                    // check start timer and if not casting
                    if(_initialCastTimer >= 2000 && !me->HasUnitState(UNIT_STATE_CASTING))
                        if (!(me->HasAuraType(SPELL_AURA_MOD_FEAR) || me->HasAuraType(SPELL_AURA_MOD_ROOT) || me->HasAuraType(SPELL_AURA_MOD_CONFUSE) || me->HasAuraType(SPELL_AURA_MOD_STUN)))
                            if (_initialCastTimer >= 2000 && !me->HasUnitState(UNIT_STATE_LOST_CONTROL) && me->GetMotionMaster()->GetMotionSlotType(MOTION_SLOT_CONTROLLED) == NULL_MOTION_TYPE)
                                me->CastSpell(me->GetVictim(), 51963, false);
                }
                else
                {
                    if (!_despawning)
                        FlyAway();

                    if (_despawnTimer > diff)
                        _despawnTimer -= diff;
                    else
                        me->DespawnOrUnsummon();
                }
            }

        private:
            uint64 _targetGUID;
            uint32 _despawnTimer;
            uint32 _selectionTimer;
            uint32 _initialCastTimer;
            bool _despawning;
            bool _initialSelection;
        };

        CreatureAI* GetAI(Creature* creature) const
        {
            return new npc_pet_dk_ebon_gargoyleAI(creature);
        }
};

class npc_pet_dk_ghoul : public CreatureScript
{
    public:
        npc_pet_dk_ghoul() : CreatureScript("npc_pet_dk_ghoul") { }

        struct npc_pet_dk_ghoulAI : public CombatAI
        {
            npc_pet_dk_ghoulAI(Creature *c) : CombatAI(c) { }

            void JustDied(Unit *who)
            {
                if (me->IsGuardian() || me->IsSummon())
                    me->ToTempSummon()->UnSummon();
            }
        };

        CreatureAI* GetAI(Creature* pCreature) const
        {
            return new npc_pet_dk_ghoulAI (pCreature);
        }
};

class npc_pet_dk_army_of_the_dead : public CreatureScript
{
    public:
        npc_pet_dk_army_of_the_dead() : CreatureScript("npc_pet_dk_army_of_the_dead") { }

        struct npc_pet_dk_army_of_the_deadAI : public CombatAI
        {
            npc_pet_dk_army_of_the_deadAI(Creature* creature) : CombatAI(creature) { }

            void InitializeAI()
            {
                CombatAI::InitializeAI();
                ((Minion*)me)->SetFollowAngle(rand_norm()*2*M_PI);

                // Heroism / Bloodlust immunity
                me->ApplySpellImmune(0, IMMUNITY_ID, 32182, true);
                me->ApplySpellImmune(0, IMMUNITY_ID, 2825, true);
            }
        };

        CreatureAI* GetAI(Creature* creature) const
        {
            return new npc_pet_dk_army_of_the_deadAI (creature);
        }
};

class npc_pet_dk_dancing_rune_weapon : public CreatureScript
{
    public:
        npc_pet_dk_dancing_rune_weapon() : CreatureScript("npc_pet_dk_dancing_rune_weapon") { }

        struct npc_pet_dk_dancing_rune_weaponAI : public NullCreatureAI
        {
            npc_pet_dk_dancing_rune_weaponAI(Creature* creature) : NullCreatureAI(creature) { }

            void InitializeAI()
            {
                // Xinef: Hit / Expertise scaling
                me->AddAura(61017, me);
                if (Unit* owner = me->GetOwner())
                {
                    me->GetMotionMaster()->MoveFollow(owner, 0.01f, me->GetFollowAngle(), MOTION_SLOT_CONTROLLED);
                    if (Player* player = owner->ToPlayer())
                        player->setRuneWeaponGUID(me->GetGUID());
                }
                   
                NullCreatureAI::InitializeAI();
            }
        };

        CreatureAI* GetAI(Creature* creature) const
        {
            return new npc_pet_dk_dancing_rune_weaponAI (creature);
        }
};

void AddSC_deathknight_pet_scripts()
{
    new npc_pet_dk_ebon_gargoyle();
    new npc_pet_dk_ghoul();
    new npc_pet_dk_army_of_the_dead();
    new npc_pet_dk_dancing_rune_weapon();
}