1 | #include <queue>
|
---|
2 | #include <stack>
|
---|
3 | #include <fstream>
|
---|
4 | #include <iostream>
|
---|
5 |
|
---|
6 | #include "BvhLoader.h"
|
---|
7 | #include "gzstream.h"
|
---|
8 |
|
---|
9 |
|
---|
10 | #ifdef _CRT_SET
|
---|
11 | #define _CRTDBG_MAP_ALLOC
|
---|
12 | #include <stdlib.h>
|
---|
13 | #include <crtdbg.h>
|
---|
14 |
|
---|
15 | // redefine new operator
|
---|
16 | #define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
|
---|
17 | #define new DEBUG_NEW
|
---|
18 | #endif
|
---|
19 |
|
---|
20 |
|
---|
21 | namespace CHCDemoEngine
|
---|
22 | {
|
---|
23 |
|
---|
24 | using namespace std;
|
---|
25 |
|
---|
26 |
|
---|
27 | #define TYPE_INTERIOR -2
|
---|
28 | #define TYPE_LEAF -3
|
---|
29 |
|
---|
30 |
|
---|
31 |
|
---|
32 | BvhNode *BvhLoader::LoadNextNode(igzstream &stream, BvhInterior *parent)
|
---|
33 | {
|
---|
34 | int nodeType;
|
---|
35 | stream.read(reinterpret_cast<char *>(&nodeType), sizeof(int));
|
---|
36 |
|
---|
37 | BvhNode *node;
|
---|
38 |
|
---|
39 | if (nodeType == TYPE_LEAF)
|
---|
40 | node = new BvhLeaf(parent);
|
---|
41 | else if (nodeType == TYPE_INTERIOR)
|
---|
42 | node = new BvhInterior(parent);
|
---|
43 | else
|
---|
44 | cerr << "error: wrong node type: " << nodeType << endl;
|
---|
45 |
|
---|
46 |
|
---|
47 | Vector3 bMin, bMax;
|
---|
48 |
|
---|
49 | stream.read(reinterpret_cast<char *>(&(node->mFirst)), sizeof(int));
|
---|
50 | stream.read(reinterpret_cast<char *>(&(node->mLast)), sizeof(int));
|
---|
51 |
|
---|
52 | stream.read(reinterpret_cast<char *>(&bMin), sizeof(Vector3));
|
---|
53 | stream.read(reinterpret_cast<char *>(&bMax), sizeof(Vector3));
|
---|
54 |
|
---|
55 | node->mBox = AxisAlignedBox3(bMin, bMax);
|
---|
56 | node->mArea = node->mBox.SurfaceArea();
|
---|
57 |
|
---|
58 | //cout << "box: " << node->mBox << " area: " << node->mArea << endl;
|
---|
59 |
|
---|
60 | return node;
|
---|
61 | }
|
---|
62 |
|
---|
63 |
|
---|
64 | Bvh *BvhLoader::Load(const string &filename,
|
---|
65 | const SceneEntityContainer &staticEntities,
|
---|
66 | const SceneEntityContainer &dynamicEntities,
|
---|
67 | int maxDepthForTestingChildren)
|
---|
68 | {
|
---|
69 | queue<BvhNode *> tQueue;
|
---|
70 | igzstream stream(filename.c_str());
|
---|
71 |
|
---|
72 | if (!stream.is_open()) return NULL;
|
---|
73 |
|
---|
74 | cout << "loading bvh" << endl;
|
---|
75 |
|
---|
76 | Bvh *bvh = new Bvh(staticEntities, dynamicEntities, maxDepthForTestingChildren);
|
---|
77 |
|
---|
78 | BvhNode *root = LoadNextNode(stream, NULL);
|
---|
79 |
|
---|
80 | bvh->mStaticRoot = root;
|
---|
81 | // we have at least the root, the static and the dynamic branch
|
---|
82 | bvh->mNumNodes = 3;
|
---|
83 |
|
---|
84 | tQueue.push(root);
|
---|
85 |
|
---|
86 | while(!tQueue.empty())
|
---|
87 | {
|
---|
88 | BvhNode *node = tQueue.front();
|
---|
89 | tQueue.pop();
|
---|
90 |
|
---|
91 | if (!node->IsLeaf())
|
---|
92 | {
|
---|
93 | bvh->mNumNodes += 2;
|
---|
94 |
|
---|
95 | BvhInterior *interior = static_cast<BvhInterior *>(node);
|
---|
96 |
|
---|
97 | BvhNode *front = LoadNextNode(stream, interior);
|
---|
98 | BvhNode *back = LoadNextNode(stream, interior);
|
---|
99 |
|
---|
100 | interior->mFront = front;
|
---|
101 | interior->mBack = back;
|
---|
102 |
|
---|
103 | front->mDepth = interior->mDepth + 1;
|
---|
104 | back->mDepth = interior->mDepth + 1;
|
---|
105 |
|
---|
106 | tQueue.push(front);
|
---|
107 | tQueue.push(back);
|
---|
108 | }
|
---|
109 | }
|
---|
110 |
|
---|
111 | ///////////
|
---|
112 | //-- create dynamic part of the hierarchy
|
---|
113 |
|
---|
114 | bvh->CreateDynamicBranch();
|
---|
115 |
|
---|
116 | ///////////
|
---|
117 | //-- post process nodes
|
---|
118 |
|
---|
119 | bvh->PostProcess();
|
---|
120 |
|
---|
121 | cout << "... finished loading " << bvh->mNumNodes << " nodes" << endl;
|
---|
122 | cout << "scene box: " << bvh->mBox << endl;
|
---|
123 |
|
---|
124 | return bvh;
|
---|
125 | }
|
---|
126 |
|
---|
127 |
|
---|
128 | }
|
---|