[4245] | 1 | /*! |
---|
| 2 | \file object_manager.h |
---|
| 3 | \brief this manager will ceep track of the objects in the world |
---|
| 4 | |
---|
| 5 | This is specially designed to: |
---|
| 6 | - Give an interface to the world data |
---|
| 7 | - separate the world data from the world build,update,draw process |
---|
| 8 | - recycle deleted objects: specific for Projectils since there is a lot of world entity creation/deletion (and this needs a lot of time) |
---|
| 9 | - control the garbage collector |
---|
[4313] | 10 | |
---|
| 11 | TO ADD SUPPORT FOR A CLASS do the following steps: |
---|
| 12 | 1. include the hader file : #include "class_header.h" |
---|
[4315] | 13 | 2. add the class to the type enum classList {}; in class_list.h |
---|
[4313] | 14 | 3. define a function void mCache( ClassName ) in class ObjectManager |
---|
| 15 | |
---|
[4245] | 16 | */ |
---|
| 17 | |
---|
| 18 | |
---|
| 19 | #ifndef _OBJECT_MANAGER_H |
---|
| 20 | #define _OBJECT_MANAGER_H |
---|
| 21 | |
---|
| 22 | #include "base_object.h" |
---|
[4312] | 23 | #include "projectile.h" |
---|
| 24 | #include "list.h" |
---|
[4245] | 25 | |
---|
[4315] | 26 | #include "class_list.h" |
---|
[4311] | 27 | |
---|
| 28 | |
---|
[4288] | 29 | class WorldEntity; |
---|
| 30 | class GarbageCollector; |
---|
[4285] | 31 | |
---|
[4312] | 32 | |
---|
[4485] | 33 | //! This defines the "template" macro function for cache(...) |
---|
[4311] | 34 | #define mCache( Class ) \ |
---|
[4312] | 35 | cache(classList index, int number, Class * copyObject) \ |
---|
| 36 | { \ |
---|
| 37 | this->managedObjectList[index] = new tList<BaseObject>(); \ |
---|
| 38 | for(int i = 0; i < number; ++i)\ |
---|
| 39 | {\ |
---|
| 40 | this->managedObjectList[index]->add(new Class (*copyObject));\ |
---|
| 41 | }\ |
---|
| 42 | } |
---|
[4311] | 43 | |
---|
| 44 | |
---|
| 45 | |
---|
[4245] | 46 | //! the object manager itself |
---|
| 47 | class ObjectManager : public BaseObject { |
---|
| 48 | |
---|
| 49 | public: |
---|
| 50 | virtual ~ObjectManager(void); |
---|
[4519] | 51 | /** \returns a Pointer to the only object of this Class */ |
---|
| 52 | inline static ObjectManager* getInstance(void) { if (!singletonRef) singletonRef = new ObjectManager(); return singletonRef; }; |
---|
[4285] | 53 | |
---|
[4485] | 54 | /** a class handled by the objectManage */ |
---|
[4311] | 55 | void mCache(Projectile); |
---|
[4322] | 56 | void addToDeadList(int index, BaseObject* object); |
---|
| 57 | BaseObject* getFromDeadList(int index, int number = 1); |
---|
[4245] | 58 | |
---|
[4485] | 59 | void debug(void) const; |
---|
[4287] | 60 | |
---|
[4245] | 61 | private: |
---|
| 62 | ObjectManager(void); |
---|
[4311] | 63 | |
---|
[4485] | 64 | private: |
---|
| 65 | static ObjectManager* singletonRef; //!< The singleton reference to the only reference of this class |
---|
[4245] | 66 | |
---|
[4485] | 67 | tList<BaseObject>** managedObjectList; //!< A list of managed objects (handles different types and lists of them) |
---|
| 68 | GarbageCollector* garbageCollector; //!< reference to the GrabageCollector |
---|
[4285] | 69 | }; |
---|
[4245] | 70 | |
---|
| 71 | |
---|
| 72 | |
---|
| 73 | #endif /* _OBJECT_MANAGER_H */ |
---|