[4790] | 1 | /* |
---|
| 2 | orxonox - the future of 3D-vertical-scrollers |
---|
| 3 | |
---|
| 4 | Copyright (C) 2004 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 | |
---|
[4924] | 11 | ### File Specific: |
---|
[4790] | 12 | main-programmer: Patrick Boenzli |
---|
| 13 | co-programmer: ... |
---|
| 14 | */ |
---|
| 15 | |
---|
[4808] | 16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_SPATIAL_SEPARATION |
---|
[4790] | 17 | |
---|
| 18 | #include "quadtree.h" |
---|
[4923] | 19 | |
---|
[4845] | 20 | #include "quadtree_node.h" |
---|
[4917] | 21 | #include "vector.h" |
---|
[4790] | 22 | |
---|
[4924] | 23 | #include "material.h" |
---|
[5075] | 24 | #include "debug.h" |
---|
[4924] | 25 | |
---|
[4790] | 26 | using namespace std; |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | /** |
---|
[4836] | 30 | * standard constructor |
---|
[4924] | 31 | */ |
---|
[4898] | 32 | Quadtree::Quadtree (modelInfo* pModelInfo, const int treeDepth) |
---|
[4790] | 33 | { |
---|
[4924] | 34 | this->setClassID(CL_QUADTREE, "Quadtree"); |
---|
| 35 | this->pModelInfo = pModelInfo; |
---|
| 36 | this->treeDepth = treeDepth; |
---|
[4845] | 37 | |
---|
[4924] | 38 | /* initialize the materials for debug draw */ |
---|
| 39 | this->materials = new Material*[4]; |
---|
| 40 | for(int i = 0; i < 4; ++i) |
---|
| 41 | { |
---|
| 42 | materials[i] = new Material(); |
---|
| 43 | materials[i]->setIllum(3); |
---|
| 44 | } |
---|
| 45 | materials[0]->setAmbient(0.0, 0.3, 0.0); |
---|
| 46 | materials[1]->setAmbient(0.4, 0.0, 0.2); |
---|
| 47 | materials[2]->setAmbient(1.0, 0.0, 0.0); |
---|
| 48 | materials[3]->setAmbient(5.0, 3.0, 1.0); |
---|
[4901] | 49 | |
---|
[4924] | 50 | /* build the tree */ |
---|
| 51 | this->rootNode = new QuadtreeNode(this->pModelInfo, this, this->treeDepth); |
---|
[4901] | 52 | |
---|
[4924] | 53 | /* make an array with access to the leafs of the Quad-Tree */ |
---|
| 54 | this->nodes = new QuadtreeNode*[(int)pow(4, treeDepth)]; |
---|
[5215] | 55 | int index = 0; //new int; *index = 0; // !!changed by bensch!! |
---|
[4924] | 56 | for(int i = 0; i < (int)pow(2, treeDepth); ++i) |
---|
| 57 | { |
---|
[5215] | 58 | this->rootNode->buildHashTable(this->nodes, &index); |
---|
[4924] | 59 | } |
---|
| 60 | /* sort and revert the hash table to fit the right position */ |
---|
| 61 | this->sortHashTable(this->nodes); |
---|
| 62 | this->revertHashTable(this->nodes); |
---|
[4920] | 63 | |
---|
[4924] | 64 | /* define some important and often used variables */ |
---|
| 65 | this->quadLength = this->nodes[0]->getDimension()->getAxis() * 2.0f; |
---|
| 66 | Rectangle* r = this->rootNode->getDimension(); |
---|
[5215] | 67 | // Vector* offset = new Vector(); // unused removed by bensch |
---|
| 68 | float xOff = r->getCenter().x - r->getAxis(); |
---|
| 69 | float yOff = r->getCenter().z - r->getAxis(); |
---|
[4925] | 70 | this->offset = new Vector(); |
---|
[4924] | 71 | this->offset->x = xOff; |
---|
| 72 | this->offset->z = yOff; |
---|
| 73 | this->maxIndex = (int)pow(2, this->treeDepth); |
---|
[4790] | 74 | } |
---|
| 75 | |
---|
| 76 | |
---|
| 77 | /** |
---|
[4836] | 78 | * standard deconstructor |
---|
[4924] | 79 | */ |
---|
[4790] | 80 | Quadtree::~Quadtree () |
---|
| 81 | { |
---|
| 82 | // delete what has to be deleted here |
---|
[4907] | 83 | delete [] this->nodes; |
---|
| 84 | delete this->rootNode; |
---|
[4922] | 85 | delete offset; |
---|
[4790] | 86 | } |
---|
[4812] | 87 | |
---|
| 88 | |
---|
| 89 | /** |
---|
[4924] | 90 | * this function rotates the array and mirrors it in the middle |
---|
| 91 | * @param nodes: the nodes to translate |
---|
[4915] | 92 | |
---|
| 93 | since the original matrix is counted from the right upper edge to the right lower one, we have to reorganize the elements |
---|
| 94 | to be able to easily correlate the hashtable array indexes with the coorindates. |
---|
| 95 | */ |
---|
| 96 | void Quadtree::revertHashTable(QuadtreeNode** nodes) |
---|
| 97 | { |
---|
| 98 | int len = (int)pow(2, this->treeDepth); //!< the length of a quadtree side |
---|
| 99 | int iterator = 0; //!< iterator used for mapping |
---|
| 100 | QuadtreeNode* tmpNode = NULL; //!< temp saving place |
---|
| 101 | int offset = 0; //!< offset used in the calc |
---|
| 102 | |
---|
| 103 | for(int i = len - 1; i >= 0; --i) |
---|
| 104 | { |
---|
| 105 | for(int j = len - 1; j >= 0; --j) |
---|
| 106 | { |
---|
| 107 | offset = j * len + i; |
---|
| 108 | /* only swap the elements in one direction */ |
---|
| 109 | if( offset > iterator) |
---|
| 110 | { |
---|
| 111 | tmpNode = nodes[offset]; |
---|
| 112 | nodes[offset] = nodes[iterator]; |
---|
| 113 | nodes[iterator] = tmpNode; |
---|
| 114 | } |
---|
| 115 | ++iterator; |
---|
| 116 | } |
---|
| 117 | } |
---|
| 118 | } |
---|
| 119 | |
---|
[4924] | 120 | |
---|
[4922] | 121 | /** |
---|
[4924] | 122 | * sorts the hash table using their positions |
---|
| 123 | * @param nodes the nodes to use |
---|
[4922] | 124 | */ |
---|
[4920] | 125 | void Quadtree::sortHashTable(QuadtreeNode** nodes) |
---|
| 126 | { |
---|
| 127 | int len = (int)pow(2, this->treeDepth); //!< the length of a quadtree side |
---|
[4922] | 128 | float a; //!< temp place for float a |
---|
| 129 | float b; //!< temp place for float b |
---|
| 130 | QuadtreeNode* tmpNode; //!< tmp place for a QuadtreeNode |
---|
[4920] | 131 | |
---|
[4922] | 132 | for( int i = 0; i < len; ++i) |
---|
[4920] | 133 | { |
---|
[4922] | 134 | for( int j = 0; j < len; ++j) |
---|
[4920] | 135 | { |
---|
[4922] | 136 | for( int k = j + 1; k < len; ++k) |
---|
[4920] | 137 | { |
---|
[5215] | 138 | a = this->nodes[i * len + j]->getDimension()->getCenter().z; |
---|
| 139 | b = this->nodes[i * len + k]->getDimension()->getCenter().z; |
---|
[4920] | 140 | |
---|
| 141 | if( b > a) |
---|
| 142 | { |
---|
| 143 | tmpNode = this->nodes[i * len + j]; |
---|
| 144 | this->nodes[i * len + j] = this->nodes[i * len + k]; |
---|
| 145 | this->nodes[i * len + k] = tmpNode; |
---|
| 146 | } |
---|
| 147 | } |
---|
| 148 | } |
---|
[4922] | 149 | } |
---|
[4920] | 150 | |
---|
| 151 | } |
---|
| 152 | |
---|
| 153 | |
---|
[4922] | 154 | /** |
---|
[4924] | 155 | * maps a position to a quadtree |
---|
| 156 | * @param position the position so look for |
---|
| 157 | * @return the quadtree |
---|
[4920] | 158 | |
---|
[4922] | 159 | this function will return the quadtree that contains the position |
---|
| 160 | */ |
---|
[4956] | 161 | QuadtreeNode* Quadtree::getQuadtreeFromPosition(const Vector& position) const |
---|
[4917] | 162 | { |
---|
[4920] | 163 | /* shift into model space */ |
---|
[4922] | 164 | Vector v = position - *this->offset; |
---|
[4920] | 165 | /* map */ |
---|
[4922] | 166 | int i = (int)(v.x / quadLength); |
---|
| 167 | int j = (int)(v.z / quadLength); |
---|
[4917] | 168 | |
---|
[4929] | 169 | /* check if object is still inside the terrain - this check is not complete @todo check all 4 bounds */ |
---|
[4968] | 170 | if( i < this->maxIndex && j < this->maxIndex && i >= 0 && j >= 0) |
---|
| 171 | return this->nodes[i + j * this->maxIndex]; |
---|
| 172 | |
---|
| 173 | |
---|
| 174 | PRINTF(4)("Object has left terrain\n"); |
---|
| 175 | return NULL; |
---|
[4917] | 176 | } |
---|
| 177 | |
---|
| 178 | |
---|
[4915] | 179 | /** |
---|
[4929] | 180 | * maps a position to a triangle |
---|
| 181 | * @param position the position so look for |
---|
| 182 | * @return the triangle |
---|
| 183 | |
---|
| 184 | this function will return the quadtree that contains the position |
---|
| 185 | */ |
---|
[4956] | 186 | sTriangleExt* Quadtree::getTriangleFromPosition(const Vector& position) const |
---|
[4929] | 187 | { |
---|
| 188 | QuadtreeNode* q = this->getQuadtreeFromPosition(position); |
---|
[4968] | 189 | |
---|
| 190 | if( likely(q != NULL)) |
---|
| 191 | return q->getTriangle(position - *this->offset); |
---|
| 192 | return NULL; |
---|
[4929] | 193 | } |
---|
| 194 | |
---|
| 195 | |
---|
| 196 | /** |
---|
[4836] | 197 | * draws the debug quadtree boxes around the model |
---|
[4812] | 198 | */ |
---|
[4922] | 199 | void Quadtree::drawTree() const |
---|
[4889] | 200 | { |
---|
[4925] | 201 | //this->rootNode->drawTree(); |
---|
| 202 | for(int i = 0; i < (int)pow(4, this->treeDepth); ++i) |
---|
| 203 | { |
---|
| 204 | this->nodes[i]->draw(); |
---|
| 205 | } |
---|
[4889] | 206 | } |
---|