source: GTP/trunk/App/Demos/Vis/FriendlyCulling/src/BvhLoader.cpp @ 3070

Revision 3070, 3.0 KB checked in by mattausch, 16 years ago (diff)
Line 
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
21namespace CHCDemoEngine
22{
23
24using namespace std;
25
26
27#define TYPE_INTERIOR -2
28#define TYPE_LEAF -3
29
30
31
32BvhNode *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
64Bvh *BvhLoader::Load(const string &filename, 
65                                         const SceneEntityContainer &entities)
66{
67        queue<BvhNode *> tQueue;
68        igzstream stream(filename.c_str());
69
70        if (!stream.is_open()) return NULL;
71
72        cout << "loading bvh" << endl;
73
74        Bvh *bvh = new Bvh(entities);
75
76        BvhNode *root = LoadNextNode(stream, NULL);
77
78        bvh->mRoot = root;
79        //bvh->mRoot = bvh->mStaticRoot;
80        bvh->mNumNodes = 1;
81
82        tQueue.push(bvh->mRoot);
83       
84        while(!tQueue.empty())
85        {
86                BvhNode *node = tQueue.front();
87                tQueue.pop();
88
89                if (!node->IsLeaf())
90                {
91                        bvh->mNumNodes += 2;
92
93                        BvhInterior *interior = static_cast<BvhInterior *>(node);
94
95                        BvhNode *front = LoadNextNode(stream, interior);
96                        BvhNode *back = LoadNextNode(stream, interior);
97
98                        interior->mFront = front;
99                        interior->mBack = back;
100
101                        front->mDepth = interior->mDepth + 1;
102                        back->mDepth = interior->mDepth + 1;
103
104                        tQueue.push(front);                     
105                        tQueue.push(back);
106                }
107        }
108
109
110        bvh->mBox = bvh->mRoot->GetBox();
111
112        cout << "... finished loading " << bvh->mNumNodes << " nodes" << endl;
113        cout << "scene box: " << bvh->mBox << endl;
114
115       
116        ///////////
117        //-- post process nodes
118
119        /// this function must be called once after creation
120        bvh->PostProcess();
121       
122        // set virtual leaves for specified number of triangles
123        bvh->SetVirtualLeaves(INITIAL_TRIANGLES_PER_VIRTUAL_LEAVES);
124        /// update the numleaves parameter of the bvh nodes
125        bvh->UpdateNumLeaves(bvh->mRoot);
126        // compute unique ids
127        bvh->ComputeIds();
128        // specify bounds for occlusion tests
129        bvh->RecomputeBounds();
130
131        // compute and print stats
132        bvh->ComputeBvhStats(bvh->mRoot, bvh->mBvhStats);
133        bvh->PrintBvhStats(bvh->mBvhStats);
134
135        return bvh;
136}
137
138
139}
Note: See TracBrowser for help on using the repository browser.