Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/cr/src/lib/collision_reaction/cr_engine.h @ 7946

Last change on this file since 7946 was 7946, checked in by patrick, 18 years ago

cr: more cr cleanup

File size: 1.8 KB
Line 
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"
10
11#include <vector>
12
13// FORWARD DECLARATION
14class CollisionHandle;
15class Collision;
16class WorldEntity;
17
18//! A default singleton class.
19class CREngine : public BaseObject
20{
21
22  public:
23  typedef enum CRType {
24    CR_PHYSICS_MOMENTUM   = 0,
25    CR_PHYSICS_GROUND,
26    CR_PHYSICS_GROUND_WALK,
27
28    CR_OBJECT_DAMAGE,
29    CR_OBJECT_PICKUP,
30
31    CR_VERTEX_TRAFO,
32
33    CR_SPECIAL_CALLBACK,
34
35    CR_NUMBER
36  };
37
38  virtual ~CREngine(void);
39
40  /** @returns a Pointer to the only object of this Class */
41  inline static CREngine* getInstance() { if (!singletonRef) singletonRef = new CREngine();  return singletonRef; };
42
43  void reset();
44
45
46  CollisionHandle* subscribeReaction(WorldEntity* worldEntity, CRType type);
47
48  bool unsubscribeReaction(CollisionHandle* collisionHandle);
49
50  void handleCollisions();
51
52  /** @returns an instance to a collision object. instead of creating new object this ones can be resycled */
53  inline Collision* popCollisionObject() { if(!this->cachedCollisions.empty()) { this->cachedCollisions.back(); this->cachedCollisions.pop_back();} else return NULL; }
54  /** @param collision: returns the Collision object back to the cache list */
55  inline void pushCollisionObject(Collision* collision) { this->cachedCollisions.push_back(collision); }
56
57
58  void debug();
59
60
61private:
62  CREngine();
63  void init();
64
65
66private:
67  std::vector<CollisionHandle*>       collisionHandles;         //!< list with the collision handles
68  std::vector<Collision*>             cachedCollisions;         //!< a list of unused, cached collision events
69
70  static CREngine*                    singletonRef;             //!< the reference to the CREngine object (singleton)
71};
72
73#endif /* _CR_ENGINE_ */
Note: See TracBrowser for help on using the repository browser.