[7622] Added creatureAI with related database tables.
[getmangos.git] / src / game / GridNotifiers.h
blobc4eddee21cf010c67d2a4100e8aa0f71bbf03ad8
1 /*
2 * Copyright (C) 2005-2009 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_GRIDNOTIFIERS_H
20 #define MANGOS_GRIDNOTIFIERS_H
22 #include "ObjectGridLoader.h"
23 #include "ByteBuffer.h"
24 #include "UpdateData.h"
25 #include <iostream>
27 #include "Corpse.h"
28 #include "Object.h"
29 #include "DynamicObject.h"
30 #include "GameObject.h"
31 #include "Player.h"
32 #include "Unit.h"
34 class Player;
35 //class Map;
37 namespace MaNGOS
40 struct MANGOS_DLL_DECL PlayerNotifier
42 explicit PlayerNotifier(Player &pl) : i_player(pl) {}
43 void Visit(PlayerMapType &);
44 template<class SKIP> void Visit(GridRefManager<SKIP> &) {}
45 Player &i_player;
48 struct MANGOS_DLL_DECL VisibleNotifier
50 Player &i_player;
51 UpdateData i_data;
52 UpdateDataMapType i_data_updates;
53 Player::ClientGUIDs i_clientGUIDs;
54 std::set<WorldObject*> i_visibleNow;
56 explicit VisibleNotifier(Player &player) : i_player(player),i_clientGUIDs(player.m_clientGUIDs) {}
57 template<class T> void Visit(GridRefManager<T> &m);
58 void Visit(PlayerMapType &);
59 void Notify(void);
62 struct MANGOS_DLL_DECL VisibleChangesNotifier
64 WorldObject &i_object;
66 explicit VisibleChangesNotifier(WorldObject &object) : i_object(object) {}
67 template<class T> void Visit(GridRefManager<T> &) {}
68 void Visit(PlayerMapType &);
71 struct MANGOS_DLL_DECL GridUpdater
73 GridType &i_grid;
74 uint32 i_timeDiff;
75 GridUpdater(GridType &grid, uint32 diff) : i_grid(grid), i_timeDiff(diff) {}
77 template<class T> void updateObjects(GridRefManager<T> &m)
79 for(typename GridRefManager<T>::iterator iter = m.begin(); iter != m.end(); ++iter)
80 iter->getSource()->Update(i_timeDiff);
83 void Visit(PlayerMapType &m) { updateObjects<Player>(m); }
84 void Visit(CreatureMapType &m){ updateObjects<Creature>(m); }
85 void Visit(GameObjectMapType &m) { updateObjects<GameObject>(m); }
86 void Visit(DynamicObjectMapType &m) { updateObjects<DynamicObject>(m); }
87 void Visit(CorpseMapType &m) { updateObjects<Corpse>(m); }
90 struct MANGOS_DLL_DECL MessageDeliverer
92 Player &i_player;
93 WorldPacket *i_message;
94 bool i_toSelf;
95 MessageDeliverer(Player &pl, WorldPacket *msg, bool to_self) : i_player(pl), i_message(msg), i_toSelf(to_self) {}
96 void Visit(PlayerMapType &m);
97 template<class SKIP> void Visit(GridRefManager<SKIP> &) {}
100 struct MANGOS_DLL_DECL ObjectMessageDeliverer
102 uint32 i_phaseMask;
103 WorldPacket *i_message;
104 explicit ObjectMessageDeliverer(WorldObject& obj, WorldPacket *msg)
105 : i_phaseMask(obj.GetPhaseMask()), i_message(msg) {}
106 void Visit(PlayerMapType &m);
107 template<class SKIP> void Visit(GridRefManager<SKIP> &) {}
110 struct MANGOS_DLL_DECL MessageDistDeliverer
112 Player &i_player;
113 WorldPacket *i_message;
114 bool i_toSelf;
115 bool i_ownTeamOnly;
116 float i_dist;
118 MessageDistDeliverer(Player &pl, WorldPacket *msg, float dist, bool to_self, bool ownTeamOnly)
119 : i_player(pl), i_message(msg), i_toSelf(to_self), i_ownTeamOnly(ownTeamOnly), i_dist(dist) {}
120 void Visit(PlayerMapType &m);
121 template<class SKIP> void Visit(GridRefManager<SKIP> &) {}
124 struct MANGOS_DLL_DECL ObjectMessageDistDeliverer
126 WorldObject &i_object;
127 WorldPacket *i_message;
128 float i_dist;
129 ObjectMessageDistDeliverer(WorldObject &obj, WorldPacket *msg, float dist) : i_object(obj), i_message(msg), i_dist(dist) {}
130 void Visit(PlayerMapType &m);
131 template<class SKIP> void Visit(GridRefManager<SKIP> &) {}
134 struct MANGOS_DLL_DECL ObjectUpdater
136 uint32 i_timeDiff;
137 explicit ObjectUpdater(const uint32 &diff) : i_timeDiff(diff) {}
138 template<class T> void Visit(GridRefManager<T> &m);
139 void Visit(PlayerMapType &) {}
140 void Visit(CorpseMapType &) {}
141 void Visit(CreatureMapType &);
144 template<class T>
145 struct MANGOS_DLL_DECL ObjectAccessorNotifier
147 T *& i_object;
149 uint64 i_id;
150 ObjectAccessorNotifier(T * &obj, uint64 id) : i_object(obj), i_id(id)
152 i_object = NULL;
155 void Visit(GridRefManager<T> &m )
157 if( i_object == NULL )
159 GridRefManager<T> *iter = m.find(i_id);
160 if( iter != m.end() )
162 assert( iter->second != NULL );
163 i_object = iter->second;
168 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
171 struct MANGOS_DLL_DECL PlayerRelocationNotifier
173 Player &i_player;
174 PlayerRelocationNotifier(Player &pl) : i_player(pl) {}
175 template<class T> void Visit(GridRefManager<T> &) {}
176 void Visit(PlayerMapType &);
177 void Visit(CreatureMapType &);
180 struct MANGOS_DLL_DECL CreatureRelocationNotifier
182 Creature &i_creature;
183 CreatureRelocationNotifier(Creature &c) : i_creature(c) {}
184 template<class T> void Visit(GridRefManager<T> &) {}
185 #ifdef WIN32
186 template<> void Visit(PlayerMapType &);
187 #endif
190 struct MANGOS_DLL_DECL DynamicObjectUpdater
192 DynamicObject &i_dynobject;
193 Unit* i_check;
194 DynamicObjectUpdater(DynamicObject &dynobject, Unit* caster) : i_dynobject(dynobject)
196 i_check = caster;
197 Unit* owner = i_check->GetOwner();
198 if(owner)
199 i_check = owner;
202 template<class T> inline void Visit(GridRefManager<T> &) {}
203 #ifdef WIN32
204 template<> inline void Visit<Player>(PlayerMapType &);
205 template<> inline void Visit<Creature>(CreatureMapType &);
206 #endif
208 void VisitHelper(Unit* target);
211 // SEARCHERS & LIST SEARCHERS & WORKERS
213 // WorldObject searchers & workers
215 template<class Check>
216 struct MANGOS_DLL_DECL WorldObjectSearcher
218 uint32 i_phaseMask;
219 WorldObject* &i_object;
220 Check &i_check;
222 WorldObjectSearcher(WorldObject const* searcher, WorldObject* & result, Check& check)
223 : i_phaseMask(searcher->GetPhaseMask()), i_object(result),i_check(check) {}
225 void Visit(GameObjectMapType &m);
226 void Visit(PlayerMapType &m);
227 void Visit(CreatureMapType &m);
228 void Visit(CorpseMapType &m);
229 void Visit(DynamicObjectMapType &m);
231 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
234 template<class Check>
235 struct MANGOS_DLL_DECL WorldObjectListSearcher
237 uint32 i_phaseMask;
238 std::list<WorldObject*> &i_objects;
239 Check& i_check;
241 WorldObjectListSearcher(WorldObject const* searcher, std::list<WorldObject*> &objects, Check & check)
242 : i_phaseMask(searcher->GetPhaseMask()), i_objects(objects),i_check(check) {}
244 void Visit(PlayerMapType &m);
245 void Visit(CreatureMapType &m);
246 void Visit(CorpseMapType &m);
247 void Visit(GameObjectMapType &m);
248 void Visit(DynamicObjectMapType &m);
250 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
253 template<class Do>
254 struct MANGOS_DLL_DECL WorldObjectWorker
256 uint32 i_phaseMask;
257 Do const& i_do;
259 WorldObjectWorker(WorldObject const* searcher, Do const& _do)
260 : i_phaseMask(searcher->GetPhaseMask()), i_do(_do) {}
262 void Visit(GameObjectMapType &m)
264 for(GameObjectMapType::iterator itr=m.begin(); itr != m.end(); ++itr)
265 if(itr->getSource()->InSamePhase(i_phaseMask))
266 i_do(itr->getSource());
269 void Visit(PlayerMapType &m)
271 for(PlayerMapType::iterator itr=m.begin(); itr != m.end(); ++itr)
272 if(itr->getSource()->InSamePhase(i_phaseMask))
273 i_do(itr->getSource());
275 void Visit(CreatureMapType &m)
277 for(CreatureMapType::iterator itr=m.begin(); itr != m.end(); ++itr)
278 if(itr->getSource()->InSamePhase(i_phaseMask))
279 i_do(itr->getSource());
282 void Visit(CorpseMapType &m)
284 for(CorpseMapType::iterator itr=m.begin(); itr != m.end(); ++itr)
285 if(itr->getSource()->InSamePhase(i_phaseMask))
286 i_do(itr->getSource());
289 void Visit(DynamicObjectMapType &m)
291 for(DynamicObjectMapType::iterator itr=m.begin(); itr != m.end(); ++itr)
292 if(itr->getSource()->InSamePhase(i_phaseMask))
293 i_do(itr->getSource());
296 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
299 // Gameobject searchers
301 template<class Check>
302 struct MANGOS_DLL_DECL GameObjectSearcher
304 uint32 i_phaseMask;
305 GameObject* &i_object;
306 Check &i_check;
308 GameObjectSearcher(WorldObject const* searcher, GameObject* & result, Check& check)
309 : i_phaseMask(searcher->GetPhaseMask()), i_object(result),i_check(check) {}
311 void Visit(GameObjectMapType &m);
313 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
316 // Last accepted by Check GO if any (Check can change requirements at each call)
317 template<class Check>
318 struct MANGOS_DLL_DECL GameObjectLastSearcher
320 uint32 i_phaseMask;
321 GameObject* &i_object;
322 Check& i_check;
324 GameObjectLastSearcher(WorldObject const* searcher, GameObject* & result, Check& check)
325 : i_phaseMask(searcher->GetPhaseMask()), i_object(result), i_check(check) {}
327 void Visit(GameObjectMapType &m);
329 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
332 template<class Check>
333 struct MANGOS_DLL_DECL GameObjectListSearcher
335 uint32 i_phaseMask;
336 std::list<GameObject*> &i_objects;
337 Check& i_check;
339 GameObjectListSearcher(WorldObject const* searcher, std::list<GameObject*> &objects, Check & check)
340 : i_phaseMask(searcher->GetPhaseMask()), i_objects(objects), i_check(check) {}
342 void Visit(GameObjectMapType &m);
344 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
347 // Unit searchers
349 // First accepted by Check Unit if any
350 template<class Check>
351 struct MANGOS_DLL_DECL UnitSearcher
353 uint32 i_phaseMask;
354 Unit* &i_object;
355 Check & i_check;
357 UnitSearcher(WorldObject const* searcher, Unit* & result, Check & check)
358 : i_phaseMask(searcher->GetPhaseMask()), i_object(result),i_check(check) {}
360 void Visit(CreatureMapType &m);
361 void Visit(PlayerMapType &m);
363 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
366 // Last accepted by Check Unit if any (Check can change requirements at each call)
367 template<class Check>
368 struct MANGOS_DLL_DECL UnitLastSearcher
370 uint32 i_phaseMask;
371 Unit* &i_object;
372 Check & i_check;
374 UnitLastSearcher(WorldObject const* searcher, Unit* & result, Check & check)
375 : i_phaseMask(searcher->GetPhaseMask()), i_object(result),i_check(check) {}
377 void Visit(CreatureMapType &m);
378 void Visit(PlayerMapType &m);
380 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
383 // All accepted by Check units if any
384 template<class Check>
385 struct MANGOS_DLL_DECL UnitListSearcher
387 uint32 i_phaseMask;
388 std::list<Unit*> &i_objects;
389 Check& i_check;
391 UnitListSearcher(WorldObject const* searcher, std::list<Unit*> &objects, Check & check)
392 : i_phaseMask(searcher->GetPhaseMask()), i_objects(objects),i_check(check) {}
394 void Visit(PlayerMapType &m);
395 void Visit(CreatureMapType &m);
397 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
400 // Creature searchers
402 template<class Check>
403 struct MANGOS_DLL_DECL CreatureSearcher
405 uint32 i_phaseMask;
406 Creature* &i_object;
407 Check & i_check;
409 CreatureSearcher(WorldObject const* searcher, Creature* & result, Check & check)
410 : i_phaseMask(searcher->GetPhaseMask()), i_object(result),i_check(check) {}
412 void Visit(CreatureMapType &m);
414 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
417 // Last accepted by Check Creature if any (Check can change requirements at each call)
418 template<class Check>
419 struct MANGOS_DLL_DECL CreatureLastSearcher
421 uint32 i_phaseMask;
422 Creature* &i_object;
423 Check & i_check;
425 CreatureLastSearcher(WorldObject const* searcher, Creature* & result, Check & check)
426 : i_phaseMask(searcher->GetPhaseMask()), i_object(result),i_check(check) {}
428 void Visit(CreatureMapType &m);
430 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
433 template<class Check>
434 struct MANGOS_DLL_DECL CreatureListSearcher
436 uint32 i_phaseMask;
437 std::list<Creature*> &i_objects;
438 Check& i_check;
440 CreatureListSearcher(WorldObject const* searcher, std::list<Creature*> &objects, Check & check)
441 : i_phaseMask(searcher->GetPhaseMask()), i_objects(objects),i_check(check) {}
443 void Visit(CreatureMapType &m);
445 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
448 // Player searchers
450 template<class Check>
451 struct MANGOS_DLL_DECL PlayerSearcher
453 uint32 i_phaseMask;
454 Player* &i_object;
455 Check & i_check;
457 PlayerSearcher(WorldObject const* searcher, Player* & result, Check & check)
458 : i_phaseMask(searcher->GetPhaseMask()), i_object(result),i_check(check) {}
460 void Visit(PlayerMapType &m);
462 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
465 template<class Do>
466 struct MANGOS_DLL_DECL PlayerWorker
468 uint32 i_phaseMask;
469 Do& i_do;
471 PlayerWorker(WorldObject const* searcher, Do& _do)
472 : i_phaseMask(searcher->GetPhaseMask()), i_do(_do) {}
474 void Visit(PlayerMapType &m)
476 for(PlayerMapType::iterator itr=m.begin(); itr != m.end(); ++itr)
477 if(itr->getSource()->InSamePhase(i_phaseMask))
478 i_do(itr->getSource());
481 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
484 template<class Do>
485 struct MANGOS_DLL_DECL PlayerDistWorker
487 WorldObject const* i_searcher;
488 float i_dist;
489 Do& i_do;
491 PlayerDistWorker(WorldObject const* searcher, float _dist, Do& _do)
492 : i_searcher(searcher), i_dist(_dist), i_do(_do) {}
494 void Visit(PlayerMapType &m)
496 for(PlayerMapType::iterator itr=m.begin(); itr != m.end(); ++itr)
497 if(itr->getSource()->InSamePhase(i_searcher) && itr->getSource()->GetDistance(i_searcher) <= i_dist)
498 i_do(itr->getSource());
501 template<class NOT_INTERESTED> void Visit(GridRefManager<NOT_INTERESTED> &) {}
504 // CHECKS && DO classes
506 // WorldObject check classes
507 class CannibalizeObjectCheck
509 public:
510 CannibalizeObjectCheck(Unit* funit, float range) : i_funit(funit), i_range(range) {}
511 bool operator()(Player* u)
513 if( i_funit->IsFriendlyTo(u) || u->isAlive() || u->isInFlight() )
514 return false;
516 if(i_funit->IsWithinDistInMap(u, i_range) )
517 return true;
519 return false;
521 bool operator()(Corpse* u);
522 bool operator()(Creature* u)
524 if( i_funit->IsFriendlyTo(u) || u->isAlive() || u->isInFlight() ||
525 (u->GetCreatureTypeMask() & CREATURE_TYPEMASK_HUMANOID_OR_UNDEAD)==0)
526 return false;
528 if(i_funit->IsWithinDistInMap(u, i_range) )
529 return true;
531 return false;
533 template<class NOT_INTERESTED> bool operator()(NOT_INTERESTED*) { return false; }
534 private:
535 Unit* const i_funit;
536 float i_range;
539 // WorldObject do classes
541 class RespawnDo
543 public:
544 RespawnDo() {}
545 void operator()(Creature* u) const { u->Respawn(); }
546 void operator()(GameObject* u) const { u->Respawn(); }
547 void operator()(WorldObject*) const {}
548 void operator()(Corpse*) const {}
551 // GameObject checks
553 class GameObjectFocusCheck
555 public:
556 GameObjectFocusCheck(Unit const* unit,uint32 focusId) : i_unit(unit), i_focusId(focusId) {}
557 bool operator()(GameObject* go) const
559 if(go->GetGOInfo()->type != GAMEOBJECT_TYPE_SPELL_FOCUS)
560 return false;
562 if(go->GetGOInfo()->spellFocus.focusId != i_focusId)
563 return false;
565 float dist = go->GetGOInfo()->spellFocus.dist;
567 return go->IsWithinDistInMap(i_unit, dist);
569 private:
570 Unit const* i_unit;
571 uint32 i_focusId;
574 // Find the nearest Fishing hole and return true only if source object is in range of hole
575 class NearestGameObjectFishingHole
577 public:
578 NearestGameObjectFishingHole(WorldObject const& obj, float range) : i_obj(obj), i_range(range) {}
579 bool operator()(GameObject* go)
581 if(go->GetGOInfo()->type == GAMEOBJECT_TYPE_FISHINGHOLE && go->isSpawned() && i_obj.IsWithinDistInMap(go, i_range) && i_obj.IsWithinDistInMap(go, go->GetGOInfo()->fishinghole.radius))
583 i_range = i_obj.GetDistance(go);
584 return true;
586 return false;
588 float GetLastRange() const { return i_range; }
589 private:
590 WorldObject const& i_obj;
591 float i_range;
593 // prevent clone
594 NearestGameObjectFishingHole(NearestGameObjectFishingHole const&);
597 // Success at unit in range, range update for next check (this can be use with GameobjectLastSearcher to find nearest GO)
598 class NearestGameObjectEntryInObjectRangeCheck
600 public:
601 NearestGameObjectEntryInObjectRangeCheck(WorldObject const& obj,uint32 entry, float range) : i_obj(obj), i_entry(entry), i_range(range) {}
602 bool operator()(GameObject* go)
604 if(go->GetEntry() == i_entry && i_obj.IsWithinDistInMap(go, i_range))
606 i_range = i_obj.GetDistance(go); // use found GO range as new range limit for next check
607 return true;
609 return false;
611 float GetLastRange() const { return i_range; }
612 private:
613 WorldObject const& i_obj;
614 uint32 i_entry;
615 float i_range;
617 // prevent clone this object
618 NearestGameObjectEntryInObjectRangeCheck(NearestGameObjectEntryInObjectRangeCheck const&);
621 class GameObjectWithDbGUIDCheck
623 public:
624 GameObjectWithDbGUIDCheck(WorldObject const& obj,uint32 db_guid) : i_obj(obj), i_db_guid(db_guid) {}
625 bool operator()(GameObject const* go) const
627 return go->GetDBTableGUIDLow() == i_db_guid;
629 private:
630 WorldObject const& i_obj;
631 uint32 i_db_guid;
634 // Unit checks
636 class MostHPMissingInRange
638 public:
639 MostHPMissingInRange(Unit const* obj, float range, uint32 hp) : i_obj(obj), i_range(range), i_hp(hp) {}
640 bool operator()(Unit* u)
642 if(u->isAlive() && u->isInCombat() && !i_obj->IsHostileTo(u) && i_obj->IsWithinDistInMap(u, i_range) && u->GetMaxHealth() - u->GetHealth() > i_hp)
644 i_hp = u->GetMaxHealth() - u->GetHealth();
645 return true;
647 return false;
649 private:
650 Unit const* i_obj;
651 float i_range;
652 uint32 i_hp;
655 class FriendlyCCedInRange
657 public:
658 FriendlyCCedInRange(Unit const* obj, float range) : i_obj(obj), i_range(range) {}
659 bool operator()(Unit* u)
661 if(u->isAlive() && u->isInCombat() && !i_obj->IsHostileTo(u) && i_obj->IsWithinDistInMap(u, i_range) &&
662 (u->isFeared() || u->isCharmed() || u->isFrozen() || u->hasUnitState(UNIT_STAT_STUNNED) || u->hasUnitState(UNIT_STAT_CONFUSED)))
664 return true;
666 return false;
668 private:
669 Unit const* i_obj;
670 float i_range;
673 class FriendlyMissingBuffInRange
675 public:
676 FriendlyMissingBuffInRange(Unit const* obj, float range, uint32 spellid) : i_obj(obj), i_range(range), i_spell(spellid) {}
677 bool operator()(Unit* u)
679 if(u->isAlive() && u->isInCombat() && !i_obj->IsHostileTo(u) && i_obj->IsWithinDistInMap(u, i_range) &&
680 !(u->HasAura(i_spell, 0) || u->HasAura(i_spell, 1) || u->HasAura(i_spell, 2)))
682 return true;
684 return false;
686 private:
687 Unit const* i_obj;
688 float i_range;
689 uint32 i_spell;
692 class AnyUnfriendlyUnitInObjectRangeCheck
694 public:
695 AnyUnfriendlyUnitInObjectRangeCheck(WorldObject const* obj, Unit const* funit, float range) : i_obj(obj), i_funit(funit), i_range(range) {}
696 bool operator()(Unit* u)
698 if(u->isAlive() && i_obj->IsWithinDistInMap(u, i_range) && !i_funit->IsFriendlyTo(u))
699 return true;
700 else
701 return false;
703 private:
704 WorldObject const* i_obj;
705 Unit const* i_funit;
706 float i_range;
709 class AnyFriendlyUnitInObjectRangeCheck
711 public:
712 AnyFriendlyUnitInObjectRangeCheck(WorldObject const* obj, Unit const* funit, float range) : i_obj(obj), i_funit(funit), i_range(range) {}
713 bool operator()(Unit* u)
715 if(u->isAlive() && i_obj->IsWithinDistInMap(u, i_range) && i_funit->IsFriendlyTo(u))
716 return true;
717 else
718 return false;
720 private:
721 WorldObject const* i_obj;
722 Unit const* i_funit;
723 float i_range;
726 class AnyUnitInObjectRangeCheck
728 public:
729 AnyUnitInObjectRangeCheck(WorldObject const* obj, float range) : i_obj(obj), i_range(range) {}
730 bool operator()(Unit* u)
732 if(u->isAlive() && i_obj->IsWithinDistInMap(u, i_range))
733 return true;
735 return false;
737 private:
738 WorldObject const* i_obj;
739 float i_range;
742 // Success at unit in range, range update for next check (this can be use with UnitLastSearcher to find nearest unit)
743 class NearestAttackableUnitInObjectRangeCheck
745 public:
746 NearestAttackableUnitInObjectRangeCheck(WorldObject const* obj, Unit const* funit, float range) : i_obj(obj), i_funit(funit), i_range(range) {}
747 bool operator()(Unit* u)
749 if( u->isTargetableForAttack() && i_obj->IsWithinDistInMap(u, i_range) &&
750 !i_funit->IsFriendlyTo(u) && u->isVisibleForOrDetect(i_funit,false) )
752 i_range = i_obj->GetDistance(u); // use found unit range as new range limit for next check
753 return true;
756 return false;
758 private:
759 WorldObject const* i_obj;
760 Unit const* i_funit;
761 float i_range;
763 // prevent clone this object
764 NearestAttackableUnitInObjectRangeCheck(NearestAttackableUnitInObjectRangeCheck const&);
767 class AnyAoETargetUnitInObjectRangeCheck
769 public:
770 AnyAoETargetUnitInObjectRangeCheck(WorldObject const* obj, Unit const* funit, float range)
771 : i_obj(obj), i_funit(funit), i_range(range)
773 Unit const* check = i_funit;
774 Unit const* owner = i_funit->GetOwner();
775 if(owner)
776 check = owner;
777 i_targetForPlayer = ( check->GetTypeId()==TYPEID_PLAYER );
779 bool operator()(Unit* u)
781 // Check contains checks for: live, non-selectable, non-attackable flags, flight check and GM check, ignore totems
782 if (!u->isTargetableForAttack())
783 return false;
784 if(u->GetTypeId()==TYPEID_UNIT && ((Creature*)u)->isTotem())
785 return false;
787 if(( i_targetForPlayer ? !i_funit->IsFriendlyTo(u) : i_funit->IsHostileTo(u) )&& i_obj->IsWithinDistInMap(u, i_range))
788 return true;
790 return false;
792 private:
793 bool i_targetForPlayer;
794 WorldObject const* i_obj;
795 Unit const* i_funit;
796 float i_range;
799 struct AnyDeadUnitCheck
801 bool operator()(Unit* u) { return !u->isAlive(); }
804 struct AnyStealthedCheck
806 bool operator()(Unit* u) { return u->GetVisibility()==VISIBILITY_GROUP_STEALTH; }
809 // Creature checks
811 class InAttackDistanceFromAnyHostileCreatureCheck
813 public:
814 explicit InAttackDistanceFromAnyHostileCreatureCheck(Unit* funit) : i_funit(funit) {}
815 bool operator()(Creature* u)
817 if(u->isAlive() && u->IsHostileTo(i_funit) && i_funit->IsWithinDistInMap(u, u->GetAttackDistance(i_funit)))
818 return true;
820 return false;
822 private:
823 Unit* const i_funit;
826 class AnyAssistCreatureInRangeCheck
828 public:
829 AnyAssistCreatureInRangeCheck(Unit* funit, Unit* enemy, float range)
830 : i_funit(funit), i_enemy(enemy), i_range(range)
833 bool operator()(Creature* u)
835 if(u == i_funit)
836 return false;
838 if ( !u->CanAssistTo(i_funit, i_enemy) )
839 return false;
841 // too far
842 if( !i_funit->IsWithinDistInMap(u, i_range) )
843 return false;
845 // only if see assisted creature
846 if( !i_funit->IsWithinLOSInMap(u) )
847 return false;
849 return true;
851 private:
852 Unit* const i_funit;
853 Unit* const i_enemy;
854 float i_range;
857 // Success at unit in range, range update for next check (this can be use with CreatureLastSearcher to find nearest creature)
858 class NearestCreatureEntryWithLiveStateInObjectRangeCheck
860 public:
861 NearestCreatureEntryWithLiveStateInObjectRangeCheck(WorldObject const& obj,uint32 entry, bool alive, float range)
862 : i_obj(obj), i_entry(entry), i_alive(alive), i_range(range) {}
864 bool operator()(Creature* u)
866 if(u->GetEntry() == i_entry && u->isAlive()==i_alive && i_obj.IsWithinDistInMap(u, i_range))
868 i_range = i_obj.GetDistance(u); // use found unit range as new range limit for next check
869 return true;
871 return false;
873 float GetLastRange() const { return i_range; }
874 private:
875 WorldObject const& i_obj;
876 uint32 i_entry;
877 bool i_alive;
878 float i_range;
880 // prevent clone this object
881 NearestCreatureEntryWithLiveStateInObjectRangeCheck(NearestCreatureEntryWithLiveStateInObjectRangeCheck const&);
884 class AnyPlayerInObjectRangeCheck
886 public:
887 AnyPlayerInObjectRangeCheck(WorldObject const* obj, float range) : i_obj(obj), i_range(range) {}
888 bool operator()(Player* u)
890 if(u->isAlive() && i_obj->IsWithinDistInMap(u, i_range))
891 return true;
893 return false;
895 private:
896 WorldObject const* i_obj;
897 float i_range;
900 // Player checks and do
902 // Prepare using Builder localized packets with caching and send to player
903 template<class Builder>
904 class LocalizedPacketDo
906 public:
907 explicit LocalizedPacketDo(Builder& builder) : i_builder(builder) {}
909 ~LocalizedPacketDo()
911 for(size_t i = 0; i < i_data_cache.size(); ++i)
912 delete i_data_cache[i];
914 void operator()( Player* p );
916 private:
917 Builder& i_builder;
918 std::vector<WorldPacket*> i_data_cache; // 0 = default, i => i-1 locale index
921 // Prepare using Builder localized packets with caching and send to player
922 template<class Builder>
923 class LocalizedPacketListDo
925 public:
926 typedef std::vector<WorldPacket*> WorldPacketList;
927 explicit LocalizedPacketListDo(Builder& builder) : i_builder(builder) {}
929 ~LocalizedPacketListDo()
931 for(size_t i = 0; i < i_data_cache.size(); ++i)
932 for(int j = 0; j < i_data_cache[i].size(); ++j)
933 delete i_data_cache[i][j];
935 void operator()( Player* p );
937 private:
938 Builder& i_builder;
939 std::vector<WorldPacketList> i_data_cache;
940 // 0 = default, i => i-1 locale index
943 #ifndef WIN32
944 template<> void PlayerRelocationNotifier::Visit<Creature>(CreatureMapType &);
945 template<> void PlayerRelocationNotifier::Visit<Player>(PlayerMapType &);
946 template<> void CreatureRelocationNotifier::Visit<Player>(PlayerMapType &);
947 template<> void CreatureRelocationNotifier::Visit<Creature>(CreatureMapType &);
948 template<> inline void DynamicObjectUpdater::Visit<Creature>(CreatureMapType &);
949 template<> inline void DynamicObjectUpdater::Visit<Player>(PlayerMapType &);
950 #endif
952 #endif