Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: further work on the test env, cdengine draw functions, debug functions

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