| 1 | /* |
|---|
| 2 | orxonox - the future of 3D-vertical-scrollers |
|---|
| 3 | |
|---|
| 4 | Copyright (C) 2006 orx |
|---|
| 5 | |
|---|
| 6 | This program is free software; you can redistribute it and/or modify |
|---|
| 7 | it under the terms of the GNU General Public License as published by |
|---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
|---|
| 9 | any later version. |
|---|
| 10 | |
|---|
| 11 | ### File Specific: |
|---|
| 12 | main-programmer: bottac@ee.ethz.ch |
|---|
| 13 | |
|---|
| 14 | Inspired by: |
|---|
| 15 | Rendering Q3 Maps by Morgan McGuire http://graphics.cs.brown.edu/games/quake/quake3.html |
|---|
| 16 | Unofficial Quake 3 Map Specs by Kekoa Proudfoot http://graphics.stanford.edu/~kekoa/q3/ |
|---|
| 17 | |
|---|
| 18 | Collision detection adapted from: |
|---|
| 19 | Quake 3 Collision Detection by Nathan Ostgard http://www.devmaster.net/articles/quake3collision/ |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | #ifndef _BSP_MANAGER_H |
|---|
| 23 | #define _BSP_MANAGER_H |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | #include <vector> |
|---|
| 27 | #include <deque> |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | #define BSP_X_OFFSET 20.0f |
|---|
| 31 | #define BSP_Y_OFFSET 40.0f |
|---|
| 32 | #define BSP_Z_OFFSET 20.0f |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | // FORWARD DECLARATIONS |
|---|
| 36 | class BspFile; |
|---|
| 37 | class BspTreeLeaf; |
|---|
| 38 | class BspTreeNode; |
|---|
| 39 | class Vector; |
|---|
| 40 | class set; |
|---|
| 41 | struct face; |
|---|
| 42 | struct brush; |
|---|
| 43 | struct plane; |
|---|
| 44 | |
|---|
| 45 | class WorldEntity; |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | // Obsolete |
|---|
| 49 | struct BspCollisionEvent |
|---|
| 50 | { |
|---|
| 51 | Vector normal; //!< normal Vector, length 1 |
|---|
| 52 | Vector place; //!< Absoloute coordinates of collision |
|---|
| 53 | }; |
|---|
| 54 | |
|---|
| 55 | class BspManager |
|---|
| 56 | { |
|---|
| 57 | public: |
|---|
| 58 | // Constructors |
|---|
| 59 | BspManager(WorldEntity* parent); |
|---|
| 60 | |
|---|
| 61 | BspManager(const char* fileName, float scale = 0.4f); |
|---|
| 62 | |
|---|
| 63 | // Deconstructor |
|---|
| 64 | ~BspManager(); |
|---|
| 65 | |
|---|
| 66 | |
|---|
| 67 | |
|---|
| 68 | // Functions |
|---|
| 69 | int load(const char* fileName, float scale); |
|---|
| 70 | const void draw(); |
|---|
| 71 | const void tick(float time); |
|---|
| 72 | void draw_debug_face(int Face); |
|---|
| 73 | void draw_face(int Face); |
|---|
| 74 | void draw_patch(face* Face); |
|---|
| 75 | |
|---|
| 76 | |
|---|
| 77 | void checkCollision(WorldEntity* worldEntity); /*!< WorldEntities use this function to check wheter they collided with the BspEntity. |
|---|
| 78 | If a collision has been detected, the collides-function of worldEntity will be called.*/ |
|---|
| 79 | float checkCollisionRay(Vector StartPoint, Vector Direction, float length ) ; |
|---|
| 80 | |
|---|
| 81 | int sortTransparency; //!< sort transparent textures |
|---|
| 82 | int sortTransparencyMore; //!< sort transparent textures better |
|---|
| 83 | |
|---|
| 84 | private: |
|---|
| 85 | // collision functions |
|---|
| 86 | BspTreeNode* getLeaf(BspTreeNode* node, Vector* cam) ; //!< Traverses the tree |
|---|
| 87 | void checkCollision(BspTreeNode* node, Vector* cam); //!< Obsolete. Use this function for debugging only! |
|---|
| 88 | void checkCollisionRay(BspTreeNode * node,float startFraction, float endFraction, Vector* start, Vector* end); |
|---|
| 89 | void checkCollisionRayN(BspTreeNode * node,float startFraction, float endFraction, Vector* start, Vector* end); |
|---|
| 90 | |
|---|
| 91 | bool checkCollisionX(WorldEntity* entity); |
|---|
| 92 | bool checkCollisionY(WorldEntity* entity); |
|---|
| 93 | bool checkCollisionZ(WorldEntity* entity); |
|---|
| 94 | bool checkCollisionWay(WorldEntity* entity); |
|---|
| 95 | |
|---|
| 96 | void checkCollisionBox(void); |
|---|
| 97 | void checkBrushRay(brush* curBrush); |
|---|
| 98 | void checkBrushRayN(brush* curBrush); |
|---|
| 99 | void checkBrushRayN(brush* curBrush, Vector& inputStart, Vector& inputEnd); |
|---|
| 100 | float checkPatchAltitude(BspTreeNode* node); //! To be implemented... |
|---|
| 101 | |
|---|
| 102 | void TraceBox( Vector& inputStart, Vector& inputEnd,Vector& inputMins, Vector& inputMaxs ); |
|---|
| 103 | |
|---|
| 104 | |
|---|
| 105 | // visibility functions |
|---|
| 106 | void drawDebugCube(Vector* cam); |
|---|
| 107 | bool isAlreadyVisible(int Face); |
|---|
| 108 | void addFace(int Face); |
|---|
| 109 | |
|---|
| 110 | // Data |
|---|
| 111 | BspFile* bspFile; |
|---|
| 112 | BspTreeNode* root; |
|---|
| 113 | Vector cam; |
|---|
| 114 | Vector ship; |
|---|
| 115 | Vector viewDir; |
|---|
| 116 | plane* collPlane; |
|---|
| 117 | int lastTex; |
|---|
| 118 | |
|---|
| 119 | //obsolete: global variables for collision detection |
|---|
| 120 | bool outputStartsOut; |
|---|
| 121 | bool outputAllSolid; |
|---|
| 122 | float outputFraction; |
|---|
| 123 | Vector inputStart; |
|---|
| 124 | Vector inputEnd; |
|---|
| 125 | |
|---|
| 126 | Vector traceMins; //!< Mins of current bbox |
|---|
| 127 | Vector traceMaxs; //!< Maxs of current bbox |
|---|
| 128 | Vector traceExtents; /*!< Stores the maximum of the absolute value of each axis in the box. |
|---|
| 129 | For example, if traceMins was (-100,-3,-15) and traceMaxs was (55,22,7), traceExtents */ |
|---|
| 130 | |
|---|
| 131 | WorldEntity* parent; //!< the parent entity of the bspManager: interface to this |
|---|
| 132 | |
|---|
| 133 | bool * alreadyVisible; |
|---|
| 134 | // Deques to store the visible faces |
|---|
| 135 | ::std::vector<int> trasparent; //!< the ones with transparancy go here |
|---|
| 136 | ::std::vector<int> opal; //!< the others here. |
|---|
| 137 | |
|---|
| 138 | Vector out; //!< Stores collision coordinates |
|---|
| 139 | Vector out1; //!< For debugging only |
|---|
| 140 | Vector out2; //!< For debugging only |
|---|
| 141 | |
|---|
| 142 | int tgl; |
|---|
| 143 | }; |
|---|
| 144 | |
|---|
| 145 | #endif /* _BSP_MANAGER_H */ |
|---|