Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/collision_detection/cd_engine.cc @ 4635

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

orxonox/trunk: implemented an elegant draw function to display the tree in different ways

File size: 1.6 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 "cd_engine.h"
19#include "obb_tree.h"
20#include "debug.h"
21#include "abstract_model.h"
22
23using namespace std;
24
25
26/**
27   \brief standard constructor
28*/
29CDEngine::CDEngine ()
30{
31   this->setClassName("CDEngine");
32   this->setClassID(CL_CD_ENGINE, "CDEngine");
33
34   /* testing purposes only: */
35   this->rootTree = new OBBTree();
36}
37
38/**
39   \brief the singleton reference to this class
40*/
41CDEngine* CDEngine::singletonRef = NULL;
42
43/**
44   \brief standard deconstructor
45
46*/
47CDEngine::~CDEngine ()
48{
49  CDEngine::singletonRef = NULL;
50
51}
52
53
54
55void CDEngine::drawBV(int depth, int drawMode) const
56{
57  /* this would operate on  worldList bases, for testing purposes, we only use one OBBTree */
58  this->rootTree->drawBV(depth, drawMode);
59}
60
61
62
63
64
65void CDEngine::debug()
66{
67  PRINT(0)("\n=============================| CDEngine::debug() |===\n");
68  PRINT(0)("=  CDEngine: Spawning Tree Start\n");
69  this->rootTree->debug();
70  PRINT(0)("=  CDEngine: Spawning Tree: Finished\n");
71  PRINT(0)("=======================================================\n");
72
73}
74
75void CDEngine::debugSpawnTree(int depth, sVec3D* vertices, int numVertices)
76{
77  this->rootTree->spawnBVTree(depth, vertices, numVertices);
78}
Note: See TracBrowser for help on using the repository browser.