[9188] Implement MoveGen::Interrupt call.
[getmangos.git] / src / game / ConfusedMovementGenerator.h
blobe4cd7e65d94ebca41a9a84def0515a7562b629d0
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 #ifndef MANGOS_RANDOMMOTIONGENERATOR_H
20 #define MANGOS_RANDOMMOTIONGENERATOR_H
22 #include "MovementGenerator.h"
23 #include "DestinationHolder.h"
24 #include "Traveller.h"
26 #define MAX_CONF_WAYPOINTS 24
28 template<class T>
29 class MANGOS_DLL_SPEC ConfusedMovementGenerator
30 : public MovementGeneratorMedium< T, ConfusedMovementGenerator<T> >
32 public:
33 explicit ConfusedMovementGenerator() : i_nextMoveTime(0) {}
35 void Initialize(T &);
36 void Finalize(T &);
37 void Interrupt(T &);
38 void Reset(T &);
39 bool Update(T &, const uint32 &);
41 MovementGeneratorType GetMovementGeneratorType() { return CONFUSED_MOTION_TYPE; }
42 private:
43 void _InitSpecific(T &, bool &, bool &);
44 TimeTracker i_nextMoveTime;
45 float i_waypoints[MAX_CONF_WAYPOINTS+1][3];
46 DestinationHolder< Traveller<T> > i_destinationHolder;
47 uint32 i_nextMove;
49 #endif