[9581] Fixed apply damage reduction to melee/ranged damage.
[getmangos.git] / src / game / IdleMovementGenerator.cpp
blobecb63023ba0eeee719244854fae9a34b1107efb8
1 /*
2 * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include "IdleMovementGenerator.h"
20 #include "CreatureAI.h"
21 #include "Creature.h"
23 IdleMovementGenerator si_idleMovement;
25 void
26 IdleMovementGenerator::Reset(Unit& /*owner*/)
30 void
31 DistractMovementGenerator::Initialize(Unit& owner)
33 owner.addUnitState(UNIT_STAT_DISTRACTED);
36 void
37 DistractMovementGenerator::Finalize(Unit& owner)
39 owner.clearUnitState(UNIT_STAT_DISTRACTED);
42 void
43 DistractMovementGenerator::Reset(Unit& owner)
45 Initialize(owner);
48 void
49 DistractMovementGenerator::Interrupt(Unit& /*owner*/)
53 bool
54 DistractMovementGenerator::Update(Unit& /*owner*/, const uint32& time_diff)
56 if(time_diff > m_timer)
57 return false;
59 m_timer -= time_diff;
60 return true;
63 void
64 AssistanceDistractMovementGenerator::Finalize(Unit &unit)
66 unit.clearUnitState(UNIT_STAT_DISTRACTED);
67 if (Unit* victim = unit.getVictim())
69 if (unit.isAlive())
71 unit.AttackStop(true);
72 ((Creature*)&unit)->AI()->AttackStart(victim);