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 | |
---|
23 | using namespace std; |
---|
24 | |
---|
25 | |
---|
26 | /** |
---|
27 | \brief standard constructor |
---|
28 | */ |
---|
29 | CDEngine::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 | */ |
---|
41 | CDEngine* CDEngine::singletonRef = NULL; |
---|
42 | |
---|
43 | /** |
---|
44 | \brief standard deconstructor |
---|
45 | |
---|
46 | */ |
---|
47 | CDEngine::~CDEngine () |
---|
48 | { |
---|
49 | CDEngine::singletonRef = NULL; |
---|
50 | |
---|
51 | } |
---|
52 | |
---|
53 | |
---|
54 | |
---|
55 | void 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 | |
---|
65 | void 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 | |
---|
75 | void CDEngine::debugSpawnTree(int depth, sVec3D* vertices, int numVertices) |
---|
76 | { |
---|
77 | this->rootTree->spawnBVTree(depth, vertices, numVertices); |
---|
78 | } |
---|