Last change
on this file since 8024 was
7927,
checked in by patrick, 18 years ago
|
trunk: added more cr framework, i will branche soon with this stuff so the trunk dosn't get involved to much in the development phase
|
File size:
1.8 KB
|
Rev | Line | |
---|
[7819] | 1 | /*! |
---|
| 2 | * @file cr_engine.h |
---|
| 3 | * @brief The collision reaction engine, defining generic collision reactions to collision events |
---|
| 4 | */ |
---|
| 5 | |
---|
| 6 | #ifndef _CR_ENGINE_ |
---|
| 7 | #define _CR_ENGINE_ |
---|
| 8 | |
---|
| 9 | #include "base_object.h" |
---|
[7865] | 10 | #include <stdarg.h> |
---|
| 11 | #include <vector> |
---|
[7819] | 12 | |
---|
| 13 | // FORWARD DECLARATION |
---|
[7839] | 14 | class CollisionHandle; |
---|
| 15 | class Collision; |
---|
[7865] | 16 | class WorldEntity; |
---|
[7819] | 17 | |
---|
| 18 | //! A default singleton class. |
---|
[7839] | 19 | class CREngine : public BaseObject |
---|
| 20 | { |
---|
[7865] | 21 | |
---|
[7927] | 22 | public: |
---|
[7839] | 23 | typedef enum CRType { |
---|
[7927] | 24 | CR_PHYSICS_MOMENTUM = 0, |
---|
| 25 | CR_PHYSICS_GROUND, |
---|
| 26 | CR_PHYSICS_GROUND_WALK, |
---|
[7839] | 27 | |
---|
| 28 | CR_OBJECT_DAMAGE, |
---|
| 29 | CR_OBJECT_PICKUP, |
---|
| 30 | |
---|
| 31 | CR_VERTEX_TRAFO, |
---|
| 32 | |
---|
[7927] | 33 | CR_SPECIAL_CALLBACK, |
---|
[7839] | 34 | |
---|
| 35 | CR_NUMBER |
---|
| 36 | }; |
---|
| 37 | |
---|
[7927] | 38 | virtual ~CREngine(void); |
---|
[7865] | 39 | |
---|
[7819] | 40 | /** @returns a Pointer to the only object of this Class */ |
---|
| 41 | inline static CREngine* getInstance(void) { if (!singletonRef) singletonRef = new CREngine(); return singletonRef; }; |
---|
| 42 | |
---|
[7865] | 43 | |
---|
[7841] | 44 | CollisionHandle* subscribeReaction(WorldEntity* worldEntity, CRType type, int nrOfTargets, ...); |
---|
[7819] | 45 | |
---|
[7839] | 46 | bool unsubscribeReaction(WorldEntity* worldEntity); |
---|
| 47 | bool unsubscribeReaction(CollisionHandle* collisionHandle); |
---|
| 48 | |
---|
| 49 | |
---|
[7841] | 50 | void handleCollisions(); |
---|
| 51 | |
---|
[7839] | 52 | /** @returns an instance to a collision object. instead of creating new object this ones can be resycled */ |
---|
[7843] | 53 | inline Collision* getCollisionObject() { /* return the first element of the cache list*/ } |
---|
[7839] | 54 | /** @param collision: returns the Collision object back to the cache list */ |
---|
| 55 | inline void putCollisionObject(Collision* collision) { this->cachedCollisions.push_back(collision); } |
---|
| 56 | |
---|
| 57 | |
---|
| 58 | private: |
---|
[7865] | 59 | CREngine(void); |
---|
[7839] | 60 | |
---|
[7927] | 61 | |
---|
[7865] | 62 | private: |
---|
[7839] | 63 | std::vector<CollisionHandle*> collisionHandles; //!< list with the collision handles |
---|
| 64 | std::vector<Collision*> cachedCollisions; //!< a list of unused, cached collision events |
---|
[7865] | 65 | |
---|
[7843] | 66 | static CREngine* singletonRef; //!< the reference to the CREngine object (singleton) |
---|
[7819] | 67 | }; |
---|
| 68 | |
---|
| 69 | #endif /* _CR_ENGINE_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.