1 | /*! |
---|
2 | \file object_manager.h |
---|
3 | * 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 |
---|
10 | |
---|
11 | TO ADD SUPPORT FOR A CLASS do the following steps: |
---|
12 | 1. include the hader file : #include "class_header.h" |
---|
13 | 2. add the class to the type enum classID {}; in class_id.h |
---|
14 | 3. define a function void mCache( ClassName ) in class ObjectManager |
---|
15 | |
---|
16 | */ |
---|
17 | |
---|
18 | |
---|
19 | #ifndef _OBJECT_MANAGER_H |
---|
20 | #define _OBJECT_MANAGER_H |
---|
21 | |
---|
22 | #include "base_object.h" |
---|
23 | #include "projectile.h" |
---|
24 | #include "list.h" |
---|
25 | |
---|
26 | class GarbageCollector; |
---|
27 | |
---|
28 | |
---|
29 | //! This defines the "template" macro function for cache(...) |
---|
30 | #define mCache( Class ) \ |
---|
31 | cache(ClassID index, int number, Class * copyObject) \ |
---|
32 | { \ |
---|
33 | this->managedObjectList[index] = new tList<BaseObject>(); \ |
---|
34 | for(int i = 0; i < number; ++i)\ |
---|
35 | {\ |
---|
36 | this->managedObjectList[index]->add(new Class (*copyObject));\ |
---|
37 | }\ |
---|
38 | } |
---|
39 | |
---|
40 | |
---|
41 | |
---|
42 | //! the object manager itself |
---|
43 | class ObjectManager : public BaseObject { |
---|
44 | |
---|
45 | public: |
---|
46 | virtual ~ObjectManager(); |
---|
47 | /** @returns a Pointer to the only object of this Class */ |
---|
48 | inline static ObjectManager* getInstance() { if (!singletonRef) singletonRef = new ObjectManager(); return singletonRef; }; |
---|
49 | |
---|
50 | void registerClass(ClassID classID); |
---|
51 | |
---|
52 | /** a class handled by the objectManage */ |
---|
53 | void mCache(Projectile); |
---|
54 | void addToDeadList(int index, BaseObject* object); |
---|
55 | BaseObject* getFromDeadList(int index, int number = 1); |
---|
56 | |
---|
57 | void debug() const; |
---|
58 | |
---|
59 | private: |
---|
60 | ObjectManager(); |
---|
61 | |
---|
62 | private: |
---|
63 | static ObjectManager* singletonRef; //!< The singleton reference to the only reference of this class |
---|
64 | |
---|
65 | tList<BaseObject>** managedObjectList; //!< A list of managed objects (handles different types and lists of them) |
---|
66 | }; |
---|
67 | |
---|
68 | |
---|
69 | |
---|
70 | #endif /* _OBJECT_MANAGER_H */ |
---|