| 1 | /*! | 
|---|
| 2 |  * @file cd_engine.h | 
|---|
| 3 |   *  Definition of the collision detection engine | 
|---|
| 4 |  | 
|---|
| 5 | */ | 
|---|
| 6 |  | 
|---|
| 7 | #ifndef _CD_ENGINE_H | 
|---|
| 8 | #define _CD_ENGINE_H | 
|---|
| 9 |  | 
|---|
| 10 | #include "base_object.h" | 
|---|
| 11 | #include "collision_defs.h" | 
|---|
| 12 | #include "model.h" | 
|---|
| 13 |  | 
|---|
| 14 | #include <list> | 
|---|
| 15 |  | 
|---|
| 16 | class WorldEntity; | 
|---|
| 17 | class OBBTree; | 
|---|
| 18 | class Terrain; | 
|---|
| 19 | class BspManager; | 
|---|
| 20 | //class Player; | 
|---|
| 21 |  | 
|---|
| 22 |  | 
|---|
| 23 | //! featured state options, they are all additive | 
|---|
| 24 | typedef enum cdState | 
|---|
| 25 |   { | 
|---|
| 26 |     CD_DEBUG_DRAW_ALL = 1, | 
|---|
| 27 |     CD_DEBUG_DRAW_POLYGONS = 1<<1, | 
|---|
| 28 |     CD_DEBUG_DRAW_BLENDED = 1<<2, | 
|---|
| 29 |     CD_DEBUG_DRAW_HIT_BV = 1<<3, | 
|---|
| 30 |     CD_DEBUG_VERBOSE = 1<<4, | 
|---|
| 31 |  | 
|---|
| 32 |     CD_STORE_VERTICES = 1<<5 | 
|---|
| 33 |   }; | 
|---|
| 34 |  | 
|---|
| 35 |  | 
|---|
| 36 | //! The class representing the collision detection system of orxonox | 
|---|
| 37 | class CDEngine : public BaseObject { | 
|---|
| 38 |   ObjectListDeclaration(CDEngine); | 
|---|
| 39 |  | 
|---|
| 40 |   friend class WorldEntity; | 
|---|
| 41 |  | 
|---|
| 42 |  public: | 
|---|
| 43 |   virtual ~CDEngine(); | 
|---|
| 44 |   /** @returns a Pointer to the only object of this Class */ | 
|---|
| 45 |   static CDEngine* getInstance() { if (!singletonRef) singletonRef = new CDEngine(); return singletonRef; } | 
|---|
| 46 |   void init(); | 
|---|
| 47 |  | 
|---|
| 48 |   inline void setState(const int newState) { this->state = newState; } | 
|---|
| 49 |   inline const int getState() const { return this->state; } | 
|---|
| 50 |   inline void enable(const int options) { this->state |= options; } | 
|---|
| 51 |   inline void disable(const int options) { int temp = this->state & options; this->state ^= temp; } | 
|---|
| 52 |  | 
|---|
| 53 |   inline void setTerrain(Terrain* terrain) { this->terrain = terrain; } | 
|---|
| 54 |   inline void setBSPModel(BspManager* bspManager) { this->bspManager = bspManager; } | 
|---|
| 55 |  | 
|---|
| 56 |   void checkCollisions(std::list<WorldEntity*>& list1, std::list<WorldEntity*>& list2); | 
|---|
| 57 |   void checkCollisionGround(std::list<WorldEntity*>& list1); | 
|---|
| 58 |  | 
|---|
| 59 |   void drawBV(const std::list<WorldEntity*>& drawList, int level) const; | 
|---|
| 60 |   void debug(); | 
|---|
| 61 |  | 
|---|
| 62 |   /** @returns true if cd alg returns after detecting first error (default behavour) */ | 
|---|
| 63 |   inline bool isAbordOnFirstCollision() const { return this->bAbordOnFirstCollision; } | 
|---|
| 64 |   /** sets @param flag true if the alg should return after detection of the first error */ | 
|---|
| 65 |   inline void setAbordOnFirstCollision(bool flag) { this->bAbordOnFirstCollision = flag; } | 
|---|
| 66 |  | 
|---|
| 67 |  | 
|---|
| 68 |  private: | 
|---|
| 69 |   CDEngine(); | 
|---|
| 70 |   static CDEngine* singletonRef; | 
|---|
| 71 |  | 
|---|
| 72 |   void spawnBVTree(int depth = MAX_BV_TREE_DEPTH); | 
|---|
| 73 |  | 
|---|
| 74 |   void checkCollisionObjects(); | 
|---|
| 75 |  | 
|---|
| 76 |  | 
|---|
| 77 |   void debugSpawnTree(int depth, sVec3D* vertices, int numVertices); | 
|---|
| 78 |   void debugDraw(int depth, int drawMode); | 
|---|
| 79 |  | 
|---|
| 80 |  | 
|---|
| 81 |  private: | 
|---|
| 82 |   int                     state;                            //!< the current state of the cd engine | 
|---|
| 83 |   bool                    bAbordOnFirstCollision;           //!< abords the collision detection on first collision event => more speed but less accurate infomations | 
|---|
| 84 |   OBBTree*                rootTree;                         //!< for testing purposes a root tree | 
|---|
| 85 |  | 
|---|
| 86 |   Terrain*                terrain;                          //!< this it a ref to the terrain, serving as a ground for all WE | 
|---|
| 87 |   BspManager*             bspManager; | 
|---|
| 88 | }; | 
|---|
| 89 |  | 
|---|
| 90 | #endif /* _CD_ENGINE_H */ | 
|---|