[4615] | 1 | /*! |
---|
[5039] | 2 | * @file cd_engine.h |
---|
[4836] | 3 | * Definition of the collision detection engine |
---|
[4615] | 4 | |
---|
[4510] | 5 | */ |
---|
| 6 | |
---|
[4511] | 7 | #ifndef _CD_ENGINE_H |
---|
| 8 | #define _CD_ENGINE_H |
---|
[4510] | 9 | |
---|
| 10 | #include "base_object.h" |
---|
[4522] | 11 | #include "collision_defs.h" |
---|
[6022] | 12 | #include "model.h" |
---|
[4510] | 13 | |
---|
[6142] | 14 | #include <list> |
---|
[5026] | 15 | |
---|
[4523] | 16 | class WorldEntity; |
---|
[4551] | 17 | class OBBTree; |
---|
[4918] | 18 | class Terrain; |
---|
[5915] | 19 | //class Player; |
---|
[4510] | 20 | |
---|
[4526] | 21 | |
---|
[4523] | 22 | //! featured state options, they are all additive |
---|
[4522] | 23 | typedef enum cdState |
---|
| 24 | { |
---|
| 25 | CD_DEBUG_DRAW_ALL = 1, |
---|
| 26 | CD_DEBUG_DRAW_POLYGONS = 1<<1, |
---|
| 27 | CD_DEBUG_DRAW_BLENDED = 1<<2, |
---|
| 28 | CD_DEBUG_DRAW_HIT_BV = 1<<3, |
---|
[4541] | 29 | CD_DEBUG_VERBOSE = 1<<4, |
---|
| 30 | |
---|
| 31 | CD_STORE_VERTICES = 1<<5 |
---|
[4522] | 32 | }; |
---|
| 33 | |
---|
| 34 | |
---|
[4511] | 35 | //! The class representing the collision detection system of orxonox |
---|
| 36 | class CDEngine : public BaseObject { |
---|
[4510] | 37 | |
---|
[5026] | 38 | friend class WorldEntity; |
---|
| 39 | |
---|
[4510] | 40 | public: |
---|
[4746] | 41 | virtual ~CDEngine(); |
---|
[4836] | 42 | /** @returns a Pointer to the only object of this Class */ |
---|
[4746] | 43 | static CDEngine* getInstance() { if (!singletonRef) singletonRef = new CDEngine(); return singletonRef; } |
---|
[4522] | 44 | void init(); |
---|
[4510] | 45 | |
---|
[4688] | 46 | inline void setState(const int newState) { this->state = newState; } |
---|
| 47 | inline const int getState() const { return this->state; } |
---|
| 48 | inline void enable(const int options) { this->state |= options; } |
---|
| 49 | inline void disable(const int options) { int temp = this->state & options; this->state ^= temp; } |
---|
[4522] | 50 | |
---|
[4918] | 51 | inline void setTerrain(Terrain* terrain) { this->terrain = terrain; } |
---|
[5915] | 52 | // inline void setPlayer(Player* player) { this->player = player; } /* only for debug purposes \todo: delete*/ |
---|
[4688] | 53 | |
---|
[4635] | 54 | void drawBV(int depth, int drawMode) const; |
---|
[4522] | 55 | |
---|
[6142] | 56 | // void checkCollisions(); |
---|
| 57 | void checkCollisions(std::list<WorldEntity*>& list1, std::list<WorldEntity*>& list2); |
---|
[4522] | 58 | |
---|
[6316] | 59 | void drawBV(const std::list<WorldEntity*>& drawList ) const; |
---|
[4546] | 60 | void debug(); |
---|
| 61 | |
---|
[4924] | 62 | |
---|
[4510] | 63 | private: |
---|
[4746] | 64 | CDEngine(); |
---|
[4511] | 65 | static CDEngine* singletonRef; |
---|
[4522] | 66 | |
---|
[4523] | 67 | void spawnBVTree(int depth = MAX_BV_TREE_DEPTH); |
---|
[4522] | 68 | |
---|
[4523] | 69 | void checkCollisionObjects(); |
---|
| 70 | void checkCollisionGround(); |
---|
[4522] | 71 | |
---|
[4924] | 72 | void debugSpawnTree(int depth, sVec3D* vertices, int numVertices); |
---|
| 73 | void debugDraw(int depth, int drawMode); |
---|
[4523] | 74 | |
---|
[4924] | 75 | |
---|
[4522] | 76 | private: |
---|
[4523] | 77 | int state; //!< the current state of the cd engine |
---|
[4551] | 78 | OBBTree* rootTree; //!< for testing purposes a root tree |
---|
[4918] | 79 | |
---|
| 80 | Terrain* terrain; //!< this it a ref to the terrain, serving as a ground for all WE |
---|
[5915] | 81 | // Player* player; |
---|
[4510] | 82 | }; |
---|
| 83 | |
---|
[4511] | 84 | #endif /* _CD_ENGINE_H */ |
---|