[7819] | 1 | /*! |
---|
| 2 | * @file cr_engine.h |
---|
| 3 | * @brief The collision reaction engine, defining generic collision reactions to collision events |
---|
[8190] | 4 | * |
---|
| 5 | * some parts of this module are tuned for efficiency. They are probably not self-explenatory anymore :D |
---|
| 6 | * - Collision/ CollisionEvent objects recycling: This class contains a class of precached objects of these types |
---|
| 7 | * they are used for fast registration of collision events: These objects can be get by the interface functions and |
---|
| 8 | * are returned after one cycle automaticly by reseting the cached lists to its initial state. So do not wonder :D |
---|
| 9 | */ |
---|
[7819] | 10 | |
---|
| 11 | #ifndef _CR_ENGINE_ |
---|
| 12 | #define _CR_ENGINE_ |
---|
| 13 | |
---|
| 14 | #include "base_object.h" |
---|
[8190] | 15 | |
---|
[7865] | 16 | #include <vector> |
---|
[7819] | 17 | |
---|
[7865] | 18 | class WorldEntity; |
---|
[7819] | 19 | |
---|
[10013] | 20 | |
---|
| 21 | namespace CoRe |
---|
[7839] | 22 | { |
---|
[10013] | 23 | class Collision; |
---|
| 24 | class CollisionEvent; |
---|
| 25 | class CollisionReaction; |
---|
[7865] | 26 | |
---|
[10013] | 27 | |
---|
| 28 | //! A default singleton class. |
---|
| 29 | class CREngine : public BaseObject |
---|
| 30 | { |
---|
| 31 | ObjectListDeclaration(CREngine); |
---|
| 32 | |
---|
| 33 | typedef std::vector<CollisionEvent*> CollisionEventVector; |
---|
| 34 | typedef std::vector<Collision*> CollisionVector; |
---|
| 35 | typedef std::vector<Collision*>::iterator CollisionIterator; |
---|
| 36 | typedef std::vector<CollisionEvent*>::iterator CollisionEventIterator; |
---|
| 37 | |
---|
| 38 | |
---|
[7927] | 39 | public: |
---|
[10013] | 40 | typedef enum ReactionType { |
---|
| 41 | CR_PHYSICS_MOMENTUM = 0, //!< physical reaction: conservervation of momentum |
---|
| 42 | CR_PHYSICS_STEP_BACK, //!< physical reaction: just go to the last position without collisions |
---|
| 43 | CR_PHYSICS_GROUND_WALK, //!< physical reaction: stand on the ground, no movement: simple normal force away from the gravity force |
---|
| 44 | CR_PHYSICS_FULL_WALK, //!< physical reaction: walking on the ground (inkl. hills etc) |
---|
| 45 | CR_PHYSICS_DAMAGE, //!< physical reaction: daling damage according to the object energy and their structural stability |
---|
[7839] | 46 | |
---|
[10013] | 47 | CR_OBJECT_DAMAGE, //!< object raction: deals damage according to the objects specific damage potential (like weapons, nukes, etc.) |
---|
| 48 | CR_OBJECT_PICKUP, //!< object rection: calling the objects pickup functions, let them handle the collision (once!) |
---|
[7839] | 49 | |
---|
[10013] | 50 | CR_VERTEX_TRAFO, //!< vertex trafo: transforming the vertex according to the damage |
---|
[7839] | 51 | |
---|
[10013] | 52 | CR_SPECIAL_CALLBACK, //!< special: call a callback function |
---|
[7839] | 53 | |
---|
[10013] | 54 | CR_NUMBER |
---|
| 55 | }; |
---|
[7839] | 56 | |
---|
[10013] | 57 | typedef enum CollisionType { |
---|
| 58 | CR_COLLISION_TYPE_AXIS_X = 0, //!< collision on x axis |
---|
| 59 | CR_COLLISION_TYPE_AXIS_X_NEG, //!< collision on negative x axis |
---|
| 60 | CR_COLLISION_TYPE_AXIS_Y, //!< collision on y axis |
---|
| 61 | CR_COLLISION_TYPE_AXIS_Y_NEG, //!< collision on negative y axis |
---|
| 62 | CR_COLLISION_TYPE_AXIS_Z, //!< collision on z axis |
---|
| 63 | CR_COLLISION_TYPE_AXIS_Z_NEG, //!< collision on negative z axis |
---|
| 64 | CR_COLLISION_TYPE_OBB, //!< object aligned bounding box collide |
---|
[7865] | 65 | |
---|
[10013] | 66 | CR_COLLISION_TYPE_NUMBER |
---|
| 67 | }; |
---|
[7819] | 68 | |
---|
[7865] | 69 | |
---|
[10013] | 70 | virtual ~CREngine(void); |
---|
[7819] | 71 | |
---|
[10013] | 72 | /** @returns a Pointer to the only object of this Class */ |
---|
| 73 | inline static CREngine* getInstance() { if (!singletonRef) singletonRef = new CREngine(); return singletonRef; }; |
---|
[8190] | 74 | |
---|
[10013] | 75 | Collision* popCollisionObject(); |
---|
| 76 | CollisionEvent* popCollisionEventObject(); |
---|
[7839] | 77 | |
---|
[10013] | 78 | void handleCollisions(); |
---|
[7841] | 79 | |
---|
[10013] | 80 | void debug(); |
---|
[7839] | 81 | |
---|
| 82 | |
---|
[10013] | 83 | private: |
---|
| 84 | CREngine(); |
---|
| 85 | void init(); |
---|
[8190] | 86 | |
---|
[10013] | 87 | void reset(); |
---|
[8190] | 88 | |
---|
| 89 | |
---|
[10013] | 90 | private: |
---|
| 91 | static CREngine* singletonRef; //!< the reference to the CREngine object (singleton) |
---|
[7839] | 92 | |
---|
[10013] | 93 | CollisionVector collisionsUsed; //!< a list of used, cached collisions |
---|
| 94 | CollisionVector collisionsUnused; //!< a list of unused, cached collisions |
---|
[7927] | 95 | |
---|
[10013] | 96 | CollisionEventVector collisionEventsUsed; //!< a list of used, cached collision events |
---|
| 97 | CollisionEventVector collisionEventsUnused; //!< a list of unused, cached collision events |
---|
[8190] | 98 | |
---|
[10013] | 99 | CollisionReaction* _reactionList[CREngine::CR_NUMBER]; //!< the collision reaction list containing all reactions types |
---|
[7865] | 100 | |
---|
[8190] | 101 | |
---|
[10013] | 102 | }; |
---|
[8190] | 103 | |
---|
[10013] | 104 | } |
---|
[7819] | 105 | #endif /* _CR_ENGINE_ */ |
---|