Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/collision_detection/obb_tree.cc @ 4696

Last change on this file since 4696 was 4696, checked in by patrick, 19 years ago

orxonox/trunk: started calculating the prjection axis

File size: 3.5 KB
Line 
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
11   ### File Specific:
12   main-programmer: Patrick Boenzli
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_COLLISION
17
18#include "obb_tree.h"
19#include "obb_tree_node.h"
20#include "obb.h"
21#include "debug.h"
22#include "compiler.h"
23#include "material.h"
24
25using namespace std;
26
27
28/**
29   \brief standard constructor
30*/
31OBBTree::OBBTree ()
32{
33  this->init();
34}
35
36OBBTree::OBBTree(int depth, sVec3D *verticesList, const int length)
37{
38  this->init();
39  this->spawnBVTree(depth, verticesList, length);
40}
41
42
43
44void OBBTree::init()
45{
46  this->setClassID(CL_OBB_TREE, "OBBTree");
47
48  material = new Material*[5];
49  for(int i = 0; i < 5; ++i)
50  {
51    material[i] = new Material();
52    material[i]->setIllum(3);
53  }
54  material[0]->setAmbient(0.0, 0.3, 0.0);
55  material[1]->setAmbient(0.4, 0.0, 0.2);
56  material[2]->setAmbient(1.0, 0.0, 0.0);
57  material[3]->setAmbient(5.0, 3.0, 1.0);
58  material[4]->setAmbient(1.0, 0.0, 7.0);
59
60
61  transparentMaterial = new Material*[5];
62  for(int i = 0; i < 5; ++i)
63  {
64    transparentMaterial[i] = new Material();
65    transparentMaterial[i]->setIllum(3);
66    transparentMaterial[i]->setTransparency(0.2);
67  }
68  transparentMaterial[0]->setAmbient(0.0, 0.3, 0.0);
69  transparentMaterial[1]->setAmbient(0.4, 0.0, 0.2);
70  transparentMaterial[2]->setAmbient(1.0, 0.0, 0.0);
71  transparentMaterial[3]->setAmbient(5.0, 3.0, 1.0);
72  transparentMaterial[4]->setAmbient(1.0, 0.0, 7.0);
73
74  this->id = 0;
75}
76
77/**
78   \brief standard deconstructor
79
80*/
81OBBTree::~OBBTree ()
82{
83  // delete what has to be deleted here
84}
85
86
87void OBBTree::spawnBVTree(int depth, sVec3D *verticesList, const int length)
88{
89  if( unlikely(this->rootNode != NULL))
90    {
91      PRINTF(2)("The BVTree has already been spawned, flushing and respawning again...\n");
92      this->flushTree();
93    }
94  OBBTreeNode* node = new OBBTreeNode();
95  this->rootNode = node;
96  this->rootNode->setTreeRef(this);
97  this->rootNode->spawnBVTree(--depth, verticesList, length);
98}
99
100
101void OBBTree:: flushTree()
102{}
103
104
105void OBBTree::collideWith(BVTree* tree)
106{
107  this->rootNode->collideWith(((OBBTree*)tree)->getRootNode());
108}
109
110
111void OBBTree::drawBV(int depth, int drawMode) const
112{
113  if( likely(this->rootNode != NULL))
114  {
115    this->rootNode->drawBV(depth, drawMode);
116  }
117}
118
119
120
121void OBBTree::debug()
122{
123  PRINT(0)("\n==============================| OBBTree::debug() |===\n");
124  PRINT(0)("=  Spawning Tree: Start\n");
125
126  /* generate some test vertices */
127  int const length = 9;
128  sVec3D* vertList = new sVec3D[length];
129//   sVec3D data[length]  = {{0.0, 0.0, 0.0},{1.0, 2.0, 5.0},{0.0, 6.0, 9.0},
130//                           {1.0, 4.0, 12.0}, {1.0, 2.0, 16.0}, {0.0, 0.0, 19.0},
131//                           {0.0, 3.0, 23.0}, {1.0, 5.0, 30.0}, {0.0, 10.0, 35.0}};
132
133  sVec3D data[length]  = {{0.0, 0.0, 0.0},{1.0, 2.0, 5.0},{1.0, 5.0, 30.0},
134                          {0.0, 3.0, 23.0}, {0.0, 6.0, 9.0}, {0.0, 10.0, 35.0},
135                          {1.0, 4.0, 12.0}, {1.0, 2.0, 16.0}, {0.0, 0.0, 19.0}};
136
137  for(int i = 0; i < length; ++i)
138    {
139      vertList[i][0] = data[i][0];
140      vertList[i][1] = data[i][1];
141      vertList[i][2] = data[i][2];
142    }
143
144  this->spawnBVTree(3, vertList, length);
145
146  PRINT(0)("=  Spawning Tree: Finished\n");
147  PRINT(0)("=======================================================\n");
148
149}
Note: See TracBrowser for help on using the repository browser.