source: GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.cpp @ 1581

Revision 1581, 24.1 KB checked in by bittner, 18 years ago (diff)

Qtglwidget changes - second view + trackball - ray casting seems not functional

Line 
1#include "SceneGraph.h"
2#include "Exporter.h"
3#include "UnigraphicsParser.h"
4#include "X3dParser.h"
5#include "Preprocessor.h"
6#include "ViewCell.h"
7#include "Environment.h"
8#include "ViewCellsManager.h"
9#include "ViewCellBsp.h"
10#include "VspBspTree.h"
11#include "RenderSimulator.h"
12#include "GlRenderer.h"
13#include "PlyParser.h"
14#include "SamplingStrategy.h"
15#include "VspTree.h"
16#include "OspTree.h"
17#include "ObjParser.h"
18#include "BvHierarchy.h"
19#include "HierarchyManager.h"
20#include "VssRay.h"
21#include "IntelRayCaster.h"
22#include "InternalRayCaster.h"
23
24
25
26#define DEBUG_RAYCAST 0
27
28
29namespace GtpVisibilityPreprocessor {
30
31const static bool ADDITIONAL_GEOMETRY_HACK = false;
32
33
34// HACK: Artificially modify scene to watch rendercost changes
35static void AddGeometry(SceneGraph *scene)
36{
37        scene->GetRoot()->UpdateBox();
38
39        AxisAlignedBox3 sceneBox = scene->GetBox();
40
41        int n = 200;
42
43        if (0)
44        {
45                // form grid of boxes
46                for (int i = 0; i < n; ++ i)
47                {
48                        for (int j = 0; j < n; ++ j)
49                        {
50                                const Vector3 scale2((float)j * 0.8f / n + 0.1f,  0.05f, (float)i * 0.8f  / (float)n + 0.1f);
51
52                                const Vector3 pt2 = sceneBox.Min() + scale2 * (sceneBox.Max() - sceneBox.Min());
53
54                                const Vector3 boxSize = sceneBox.Size() * Vector3(0.0025f, 0.01f, 0.0025f);
55                                AxisAlignedBox3 box(pt2, pt2 + boxSize);
56                                Mesh *mesh = CreateMeshFromBox(box);
57
58                                mesh->Preprocess();
59
60                                MeshInstance *mi = new MeshInstance(mesh);
61                                scene->GetRoot()->mGeometry.push_back(mi);
62                        }
63                }
64
65                for (int i = 0; i < n; ++ i)
66                {
67                        for (int j = 0; j < n; ++ j)
68                        {
69                                const Vector3 scale2(0.15f, (float)j * 0.8f / n + 0.1f, (float)i * 0.8f  / (float)n + 0.1f);
70
71                                Vector3 pt2 = sceneBox.Min() + scale2 * (sceneBox.Max() - sceneBox.Min());
72
73                                Vector3 boxSize = sceneBox.Size() * Vector3(0.0025f, 0.01f, 0.0025f);
74                                AxisAlignedBox3 box(pt2, pt2 + boxSize);
75                                Mesh *mesh = CreateMeshFromBox(box);
76
77                                mesh->Preprocess();
78
79                                MeshInstance *mi = new MeshInstance(mesh);
80                                scene->GetRoot()->mGeometry.push_back(mi);
81                        }
82                }
83
84                for (int i = 0; i < n; ++ i)
85                {
86                        const Vector3 scale2(2, 0.2f, (float)i * 0.8f  / (float)n + 0.1f);
87
88                        Vector3 pt2 = sceneBox.Min() + scale2 * (sceneBox.Max() - sceneBox.Min());
89
90                        //Vector3 boxSize = sceneBox.Size() * Vector3(0.0025, 0.01, 0.0025);
91                        Vector3 boxSize = sceneBox.Size() * Vector3(0.005f, 0.02f, 0.005f);
92
93                        AxisAlignedBox3 box(pt2 + 0.1f, pt2 + boxSize);
94                        Mesh *mesh = CreateMeshFromBox(box);
95
96                        mesh->Preprocess();
97
98                        MeshInstance *mi = new MeshInstance(mesh);
99                        scene->GetRoot()->mGeometry.push_back(mi);
100                }
101
102                scene->GetRoot()->UpdateBox();
103        }
104
105        if (1)
106        {
107                // plane separating view space regions
108                const Vector3 scale(1.0f, 0.0, 0);
109
110                Vector3 pt = sceneBox.Min() + scale * (sceneBox.Max() - sceneBox.Min());
111
112                Plane3 cuttingPlane(Vector3(1, 0, 0), pt);
113                Mesh *planeMesh = new Mesh();
114
115                Polygon3 *poly = sceneBox.CrossSection(cuttingPlane);
116                IncludePolyInMesh(*poly, *planeMesh);
117
118                planeMesh->Preprocess();
119
120                MeshInstance *planeMi = new MeshInstance(planeMesh);
121                scene->GetRoot()->mGeometry.push_back(planeMi);
122        }       
123}
124
125
126Preprocessor::Preprocessor():
127mKdTree(NULL),
128mBspTree(NULL),
129mVspBspTree(NULL),
130mHierarchyManager(NULL),
131mViewCellsManager(NULL),
132mRenderSimulator(NULL),
133mPass(0),
134mSceneGraph(NULL),
135mRayCaster(NULL)
136{
137        Environment::GetSingleton()->GetBoolValue("Preprocessor.useGlRenderer", mUseGlRenderer);
138 
139        // renderer will be constructed when the scene graph and viewcell manager will be known
140        renderer = NULL;
141 
142        Environment::GetSingleton()->GetBoolValue("Preprocessor.useGlDebugger", mUseGlDebugger);
143        Environment::GetSingleton()->GetBoolValue("Preprocessor.loadMeshes", mLoadMeshes);
144        Environment::GetSingleton()->GetBoolValue("Preprocessor.quitOnFinish", mQuitOnFinish);
145        Environment::GetSingleton()->GetBoolValue("Preprocessor.computeVisibility", mComputeVisibility);
146        Environment::GetSingleton()->GetBoolValue("Preprocessor.detectEmptyViewSpace", mDetectEmptyViewSpace);
147        Environment::GetSingleton()->GetBoolValue("Preprocessor.exportVisibility", mExportVisibility );
148       
149        char buffer[256];
150        Environment::GetSingleton()->GetStringValue("Preprocessor.visibilityFile",  buffer);
151   
152        mVisibilityFileName = buffer;
153        Environment::GetSingleton()->GetBoolValue("Preprocessor.applyVisibilityFilter", mApplyVisibilityFilter );
154        Environment::GetSingleton()->GetBoolValue("Preprocessor.applyVisibilitySpatialFilter",
155                                                          mApplyVisibilitySpatialFilter );
156        Environment::GetSingleton()->GetFloatValue("Preprocessor.visibilityFilterWidth", mVisibilityFilterWidth);
157
158        Debug << "detect empty view space=" << mDetectEmptyViewSpace << endl;
159        Debug << "load meshes: " << mLoadMeshes << endl;
160}
161
162
163Preprocessor::~Preprocessor()
164{
165        cout << "cleaning up" << endl;
166
167        cout << "Deleting view cells manager ... \n";
168        DEL_PTR(mViewCellsManager);
169        cout << "done.\n";
170
171        cout << "Deleting bsp tree ... \n";
172        DEL_PTR(mBspTree);
173        cout << "done.\n";
174
175        cout << "Deleting kd tree...\n";
176        DEL_PTR(mKdTree);
177        cout << "done.\n";
178
179        cout << "Deleting hierarchy manager...\n";
180        DEL_PTR(mHierarchyManager);
181        cout << "done.\n";
182
183        cout << "Deleting vspbsp tree...\n";
184        DEL_PTR(mVspBspTree);
185        cout << "done.\n";
186
187        cout << "Deleting scene graph...\n";
188        DEL_PTR(mSceneGraph);
189        cout << "done.\n";
190
191        DEL_PTR(mRenderSimulator);
192        DEL_PTR(renderer);
193        DEL_PTR(mRayCaster);
194}
195
196
197GlRendererBuffer *Preprocessor::GetRenderer()
198{
199        return renderer;
200}
201
202
203static int SplitFilenames(const string str, vector<string> &filenames)
204{
205        int pos = 0;
206
207        while(1) {
208                int npos = (int)str.find(';', pos);
209               
210                if (npos < 0 || npos - pos < 1)
211                        break;
212                filenames.push_back(string(str, pos, npos - pos));
213                pos = npos + 1;
214        }
215       
216        filenames.push_back(string(str, pos, str.size() - pos));
217        return (int)filenames.size();
218}
219
220
221bool
222Preprocessor::LoadScene(const string filename)
223{
224        // use leaf nodes of the original spatial hierarchy as occludees
225        mSceneGraph = new SceneGraph;
226 
227        Parser *parser;
228        vector<string> filenames;
229        const int files = SplitFilenames(filename, filenames);
230        cout << "number of input files: " << files << endl;
231        bool result = false;
232
233        // root for different files
234        mSceneGraph->SetRoot(new SceneGraphNode());
235
236        // intel ray caster can only trace triangles
237        int rayCastMethod;
238        Environment::GetSingleton()->GetIntValue("Preprocessor.rayCastMethod", rayCastMethod);
239        vector<FaceParentInfo> *fi = (rayCastMethod == RayCaster::INTEL_RAYCASTER) ?
240                &mFaceParents : NULL;
241
242        if (files == 1) {
243               
244                if (strstr(filename.c_str(), ".x3d"))
245                  parser = new X3dParser;
246                else
247                  if (strstr(filename.c_str(), ".ply") || strstr(filename.c_str(), ".plb"))
248                        parser = new PlyParser;
249                  else if (strstr(filename.c_str(), ".obj"))
250                          parser = new ObjParser;
251                  else
252                          parser = new UnigraphicsParser;
253
254                cout << filename << endl;
255               
256                result = parser->ParseFile(
257                                filename,
258                                mSceneGraph->GetRoot(),
259                                mLoadMeshes,
260                                fi);
261                       
262                delete parser;
263
264        }
265        else {
266                vector<string>::const_iterator fit, fit_end = filenames.end();
267               
268                for (fit = filenames.begin(); fit != fit_end; ++ fit)
269                {
270                        const string filename = *fit;
271
272                        cout << "parsing file " << filename.c_str() << endl;
273                        if (strstr(filename.c_str(), ".x3d"))
274                                parser = new X3dParser;
275                        else
276                                parser = new UnigraphicsParser;
277
278                        SceneGraphNode *node = new SceneGraphNode();
279                        const bool success = parser->ParseFile(
280                                filename,
281                                node,
282                                mLoadMeshes,
283                                fi);
284
285                        if (success)
286                        {
287                                mSceneGraph->GetRoot()->mChildren.push_back(node);
288                                result = true; // at least one file parsed
289                        }
290
291                        delete parser;
292                }
293        }
294       
295        if (result)
296        {
297                // HACK
298                if (ADDITIONAL_GEOMETRY_HACK)
299                        AddGeometry(mSceneGraph);
300
301                mSceneGraph->AssignObjectIds();
302 
303                int intersectables, faces;
304                mSceneGraph->GetStatistics(intersectables, faces);
305 
306                cout<<filename<<" parsed successfully."<<endl;
307                cout<<"#NUM_OBJECTS (Total numner of objects)\n"<<intersectables<<endl;
308                cout<<"#NUM_FACES (Total numner of faces)\n"<<faces<<endl;
309                mSceneGraph->CollectObjects(&mObjects);
310                mSceneGraph->GetRoot()->UpdateBox();
311 
312                if (0)
313                {
314                        Exporter *exporter = Exporter::GetExporter("testload.x3d");
315                        if (exporter)
316                        {
317                                exporter->ExportGeometry(mObjects);
318                                delete exporter;
319                        }
320                }
321        }
322
323        return result;
324}
325
326bool
327Preprocessor::ExportPreprocessedData(const string filename)
328{
329        mViewCellsManager->ExportViewCells(filename, true, mObjects);
330        return true;
331}
332
333
334bool
335Preprocessor::PostProcessVisibility()
336{
337 
338  if (mApplyVisibilityFilter || mApplyVisibilitySpatialFilter) {
339        cout<<"Applying visibility filter ...";
340        cout<<"filter width = " << mVisibilityFilterWidth << endl;
341       
342        if (!mViewCellsManager)
343          return false;
344       
345        mViewCellsManager->ApplyFilter(mKdTree,
346                                                                   mApplyVisibilityFilter ? mVisibilityFilterWidth : -1.0f,
347                                                                   mApplyVisibilitySpatialFilter ? mVisibilityFilterWidth : -1.0f);
348        cout << "done." << endl;
349  }
350 
351  // export the preprocessed information to a file
352  if (mExportVisibility)
353  {
354          ExportPreprocessedData(mVisibilityFileName);
355  }
356
357  return true;
358}
359
360
361bool
362Preprocessor::BuildKdTree()
363{
364  mKdTree = new KdTree;
365
366  // add mesh instances of the scene graph to the root of the tree
367  KdLeaf *root = (KdLeaf *)mKdTree->GetRoot();
368       
369  mSceneGraph->CollectObjects(&root->mObjects);
370 
371  const long startTime = GetTime();
372  cout << "building kd tree ... " << endl;
373
374  mKdTree->Construct();
375
376  cout << "finished kd tree construction in " << TimeDiff(startTime, GetTime()) * 1e-3
377           << " secs " << endl;
378
379  return true;
380}
381
382
383void
384Preprocessor::KdTreeStatistics(ostream &s)
385{
386  s<<mKdTree->GetStatistics();
387}
388
389void
390Preprocessor::BspTreeStatistics(ostream &s)
391{
392        s << mBspTree->GetStatistics();
393}
394
395bool
396Preprocessor::Export( const string filename,
397                                          const bool scene,
398                                          const bool kdtree
399                                          )
400{
401  Exporter *exporter = Exporter::GetExporter(filename);
402       
403  if (exporter) {
404    if (2 && scene)
405      exporter->ExportScene(mSceneGraph->GetRoot());
406
407    if (1 && kdtree) {
408      exporter->SetWireframe();
409      exporter->ExportKdTree(*mKdTree);
410    }
411
412    delete exporter;
413    return true;
414  }
415
416  return false;
417}
418
419
420bool Preprocessor::PrepareViewCells()
421{
422        ///////
423        //-- parse view cells construction method
424
425        Environment::GetSingleton()->GetBoolValue("ViewCells.loadFromFile", mLoadViewCells);
426        char buf[100];
427       
428        if (mLoadViewCells)
429        {       
430          Environment::GetSingleton()->GetStringValue("ViewCells.filename", buf);
431          cout << "loading view cells from " << buf << endl;
432         
433          mViewCellsManager = ViewCellsManager::LoadViewCells(buf, &mObjects, true);
434         
435          if (!mViewCellsManager)
436                return false;
437        }
438        else
439        {
440                // parse type of view cell container
441                Environment::GetSingleton()->GetStringValue("ViewCells.type", buf);             
442            mViewCellsManager = CreateViewCellsManager(buf);
443
444                // default view space is the extent of the scene
445                AxisAlignedBox3 box = mSceneGraph->GetBox();
446                                       
447                if (0)
448                {
449                        // use a small box outside of the scene
450                        box.Scale(Vector3(0.1f,0.5f,0.5f));
451                        box.Translate(Vector3(Magnitude(mSceneGraph->GetBox().Size())*0.5f, 0, 0));
452                }
453
454                mViewCellsManager->SetViewSpaceBox(box);
455         
456                bool loadVcGeometry;
457                Environment::GetSingleton()->GetBoolValue("ViewCells.loadGeometry", loadVcGeometry);
458
459                bool extrudeBaseTriangles;
460                Environment::GetSingleton()->GetBoolValue("ViewCells.useBaseTrianglesAsGeometry", extrudeBaseTriangles);
461
462                char vcGeomFilename[100];
463                Environment::GetSingleton()->GetStringValue("ViewCells.geometryFilename", vcGeomFilename);
464               
465                if (mViewCellsManager->GetType() == ViewCellsManager::BSP)
466                {
467                        if (!mViewCellsManager->LoadViewCellsGeometry(vcGeomFilename, extrudeBaseTriangles))
468                        {
469                                cerr << "loading view cells geometry failed" << endl;
470                        }
471                }
472                else
473                {
474                        cerr << "loading view cells geometry is not implemented for this manager" << endl;
475                }
476        }
477       
478        ////////
479        //-- evaluation of render cost heuristics
480        float objRenderCost = 0, vcOverhead = 0, moveSpeed = 0;
481
482        Environment::GetSingleton()->GetFloatValue("Simulation.objRenderCost",objRenderCost);
483        Environment::GetSingleton()->GetFloatValue("Simulation.vcOverhead", vcOverhead);
484        Environment::GetSingleton()->GetFloatValue("Simulation.moveSpeed", moveSpeed);
485       
486        mRenderSimulator =
487                new RenderSimulator(mViewCellsManager, objRenderCost, vcOverhead, moveSpeed);
488
489        mViewCellsManager->SetRenderer(mRenderSimulator);
490       
491        if (mUseGlRenderer || mUseGlDebugger)
492          {
493                // NOTE: render texture should be power of 2 and square
494                // renderer must be initialised
495                // $$matt
496                //              renderer = new GlRendererBuffer(1024, 768, mSceneGraph, mViewCellsManager, mKdTree);
497                //              renderer->makeCurrent();
498               
499          }
500
501        mViewCellsManager->SetPreprocessor(this);
502        return true;
503}
504
505 
506bool Preprocessor::ConstructViewCells()
507{
508  // construct view cells using it's own set of samples
509  mViewCellsManager->Construct(this);
510 
511  // visualizations and statistics
512  Debug << "finished view cells:" << endl;
513  mViewCellsManager->PrintStatistics(Debug);
514 
515  return true;
516}
517
518
519HierarchyManager *Preprocessor::CreateHierarchyManager(const char *name)
520{
521        HierarchyManager *hierarchyManager;
522
523        if (strcmp(name, "osp") == 0)
524        {
525                Debug << "hierarchy manager: osp" << endl;
526                // HACK for testing if per kd evaluation works!!
527                const bool ishack = false;
528                if (ishack)
529                        hierarchyManager = new HierarchyManager(mKdTree);
530                else
531                        hierarchyManager = new HierarchyManager(HierarchyManager::KD_BASED_OBJ_SUBDIV);
532        }
533        else if (strcmp(name, "bvh") == 0)
534        {
535                Debug << "hierarchy manager: bvh" << endl;
536                hierarchyManager = new HierarchyManager(HierarchyManager::BV_BASED_OBJ_SUBDIV);
537        }
538        else // only view space partition
539        {
540                Debug << "hierarchy manager: obj" << endl;
541                hierarchyManager = new HierarchyManager(HierarchyManager::NO_OBJ_SUBDIV);
542        }
543
544        return hierarchyManager;
545}
546
547
548ViewCellsManager *Preprocessor::CreateViewCellsManager(const char *name)
549{
550        ViewCellsTree *vcTree = new ViewCellsTree;
551
552        if (strcmp(name, "kdTree") == 0)
553        {
554                mViewCellsManager = new KdViewCellsManager(vcTree, mKdTree);
555        }
556        else if (strcmp(name, "bspTree") == 0)
557        {
558                Debug << "view cell type: Bsp" << endl;
559
560                mBspTree = new BspTree();
561                mViewCellsManager = new BspViewCellsManager(vcTree, mBspTree);
562        }
563        else if (strcmp(name, "vspBspTree") == 0)
564        {
565                Debug << "view cell type: VspBsp" << endl;
566
567                mVspBspTree = new VspBspTree();
568                mViewCellsManager = new VspBspViewCellsManager(vcTree, mVspBspTree);
569        }
570        else if (strcmp(name, "vspOspTree") == 0)
571        {
572                Debug << "view cell type: VspOsp" << endl;
573                char buf[100];         
574                Environment::GetSingleton()->GetStringValue("Hierarchy.type", buf);     
575
576                HierarchyManager *mHierarchyManager = CreateHierarchyManager(buf);
577                mViewCellsManager = new VspOspViewCellsManager(vcTree, mHierarchyManager);
578        }
579        else if (strcmp(name, "sceneDependent") == 0) //TODO
580        {
581                Debug << "view cell type: Bsp" << endl;
582               
583                mBspTree = new BspTree();
584                mViewCellsManager = new BspViewCellsManager(vcTree, mBspTree);
585        }
586        else
587        {
588                cerr << "Wrong view cells type " << name << "!!!" << endl;
589                exit(1);
590        }
591
592        return mViewCellsManager;
593}
594
595
596// use ascii format to store rays
597#define USE_ASCII 0
598
599
600static inline bool ilt(Intersectable *obj1, Intersectable *obj2)
601{
602        return obj1->mId < obj2->mId;
603}
604
605
606bool Preprocessor::LoadKdTree(const string filename)
607{
608        mKdTree = new KdTree();
609        return mKdTree->LoadBinTree(filename.c_str(), mObjects);
610}
611
612
613bool Preprocessor::ExportKdTree(const string filename)
614{
615        return mKdTree->ExportBinTree(filename.c_str());
616}
617
618
619bool Preprocessor::LoadSamples(VssRayContainer &samples,
620                                                           ObjectContainer &objects) const
621{
622        std::stable_sort(objects.begin(), objects.end(), ilt);
623        char fileName[100];
624        Environment::GetSingleton()->GetStringValue("Preprocessor.samplesFilename", fileName);
625       
626    Vector3 origin, termination;
627        // HACK: needed only for lower_bound algorithm to find the
628        // intersected objects
629        MeshInstance sObj(NULL);
630        MeshInstance tObj(NULL);
631
632#if USE_ASCII
633        ifstream samplesIn(fileName);
634        if (!samplesIn.is_open())
635                return false;
636
637        string buf;
638        while (!(getline(samplesIn, buf)).eof())
639        {
640                sscanf(buf.c_str(), "%f %f %f %f %f %f %d %d",
641                           &origin.x, &origin.y, &origin.z,
642                           &termination.x, &termination.y, &termination.z,
643                           &(sObj.mId), &(tObj.mId));
644               
645                Intersectable *sourceObj = NULL;
646                Intersectable *termObj = NULL;
647               
648                if (sObj.mId >= 0)
649                {
650                        ObjectContainer::iterator oit =
651                                lower_bound(objects.begin(), objects.end(), &sObj, ilt);
652                        sourceObj = *oit;
653                }
654               
655                if (tObj.mId >= 0)
656                {
657                        ObjectContainer::iterator oit =
658                                lower_bound(objects.begin(), objects.end(), &tObj, ilt);
659                        termObj = *oit;
660                }
661
662                samples.push_back(new VssRay(origin, termination, sourceObj, termObj));
663        }
664#else
665        ifstream samplesIn(fileName, ios::binary);
666        if (!samplesIn.is_open())
667                return false;
668
669        while (1)
670        {
671                 samplesIn.read(reinterpret_cast<char *>(&origin), sizeof(Vector3));
672                 samplesIn.read(reinterpret_cast<char *>(&termination), sizeof(Vector3));
673                 samplesIn.read(reinterpret_cast<char *>(&(sObj.mId)), sizeof(int));
674                 samplesIn.read(reinterpret_cast<char *>(&(tObj.mId)), sizeof(int));
675               
676                 if (samplesIn.eof())
677                        break;
678
679                Intersectable *sourceObj = NULL;
680                Intersectable *termObj = NULL;
681               
682                if (sObj.mId >= 0)
683                {
684                        ObjectContainer::iterator oit =
685                                lower_bound(objects.begin(), objects.end(), &sObj, ilt);
686                        sourceObj = *oit;
687                }
688               
689                if (tObj.mId >= 0)
690                {
691                        ObjectContainer::iterator oit =
692                                lower_bound(objects.begin(), objects.end(), &tObj, ilt);
693                        termObj = *oit;
694                }
695
696                samples.push_back(new VssRay(origin, termination, sourceObj, termObj));
697        }
698
699#endif
700        samplesIn.close();
701
702        return true;
703}
704
705
706bool Preprocessor::ExportSamples(const VssRayContainer &samples) const
707{
708        char fileName[100];
709        Environment::GetSingleton()->GetStringValue("Preprocessor.samplesFilename", fileName);
710       
711
712        VssRayContainer::const_iterator it, it_end = samples.end();
713       
714#if USE_ASCII
715        ofstream samplesOut(fileName);
716        if (!samplesOut.is_open())
717                return false;
718
719        for (it = samples.begin(); it != it_end; ++ it)
720        {
721                VssRay *ray = *it;
722                int sourceid = ray->mOriginObject ? ray->mOriginObject->mId : -1;               
723                int termid = ray->mTerminationObject ? ray->mTerminationObject->mId : -1;       
724
725                samplesOut << ray->GetOrigin().x << " " << ray->GetOrigin().y << " " << ray->GetOrigin().z << " "
726                                   << ray->GetTermination().x << " " << ray->GetTermination().y << " " << ray->GetTermination().z << " "
727                                   << sourceid << " " << termid << "\n";
728        }
729#else
730        ofstream samplesOut(fileName, ios::binary);
731        if (!samplesOut.is_open())
732                return false;
733
734        for (it = samples.begin(); it != it_end; ++ it)
735        {       
736                VssRay *ray = *it;
737                Vector3 origin(ray->GetOrigin());
738                Vector3 termination(ray->GetTermination());
739               
740                int sourceid = ray->mOriginObject ? ray->mOriginObject->mId : -1;               
741                int termid = ray->mTerminationObject ? ray->mTerminationObject->mId : -1;               
742
743                samplesOut.write(reinterpret_cast<char *>(&origin), sizeof(Vector3));
744                samplesOut.write(reinterpret_cast<char *>(&termination), sizeof(Vector3));
745                samplesOut.write(reinterpret_cast<char *>(&sourceid), sizeof(int));
746                samplesOut.write(reinterpret_cast<char *>(&termid), sizeof(int));
747    }
748#endif
749        samplesOut.close();
750
751        return true;
752}
753
754bool Preprocessor::GenerateRays(const int number,
755                                                                const int sampleType,
756                                                                SimpleRayContainer &rays)
757{
758        const int startSize = (int)rays.size();
759        SamplingStrategy *strategy = GenerateSamplingStrategy(sampleType);
760
761        if (!strategy)
762        {
763                return false;
764        }
765
766        for (int i=0; (int)rays.size() - startSize < number; ++ i)
767        {
768                SimpleRay newRay;
769
770                if (strategy->GenerateSample(newRay))
771                {
772#if 1
773                        rays.AddRay(newRay);
774#else
775                        GenerateRayBundle(rays, newRay, 16, 0);
776#endif
777                }       
778        }
779
780        delete strategy;
781    return true;
782}
783
784
785SamplingStrategy *Preprocessor::GenerateSamplingStrategy(const int strategyId) const
786{
787        switch (strategyId)
788        {
789        case SamplingStrategy::OBJECT_BASED_DISTRIBUTION:
790                return new ObjectBasedDistribution(*this);
791        case SamplingStrategy::OBJECT_DIRECTION_BASED_DISTRIBUTION:
792                return new ObjectDirectionBasedDistribution(*this);
793        case SamplingStrategy::DIRECTION_BASED_DISTRIBUTION:
794                return new DirectionBasedDistribution(*this);
795        case SamplingStrategy::DIRECTION_BOX_BASED_DISTRIBUTION:
796                return new DirectionBoxBasedDistribution(*this);
797        case SamplingStrategy::SPATIAL_BOX_BASED_DISTRIBUTION:
798                return new SpatialBoxBasedDistribution(*this);
799        //case OBJECTS_INTERIOR_DISTRIBUTION:
800        //      return new ObjectsInteriorDistribution(*this);
801        default: // no valid strategy
802                Debug << "warning: no valid sampling strategy" << endl;
803                return NULL;
804        }
805
806        return NULL; // should never come here
807}
808
809
810bool Preprocessor::InitRayCast(const string externKdTree, const string internkdtree)
811{
812        bool loadKdTree;
813        Environment::GetSingleton()->GetBoolValue("Preprocessor.loadKdTree", loadKdTree);
814       
815        if (!loadKdTree)
816        {       
817                //-- build new kd tree from scene geometry
818                BuildKdTree();
819                KdTreeStatistics(cout);
820        }
821        else
822        {
823                const long startTime = GetTime();
824                cout << "loading kd tree file " << internkdtree << " ... ";
825
826                if (!LoadKdTree(internkdtree))
827                {
828                        cout << "error loading kd tree with filename " << internkdtree << ", rebuilding it instead ..." << endl;
829
830                        BuildKdTree();
831                        KdTreeStatistics(cout);
832                }
833
834                cout << "finished in " << TimeDiff(startTime, GetTime()) * 1e-3 << " secs" << endl;
835
836                if (0)
837                {
838                        Exporter *exporter = Exporter::GetExporter("dummykd.x3d");
839                       
840                        if (exporter)
841                        {
842                                exporter->ExportKdTree(*mKdTree, true);
843                                delete exporter;
844                        }
845                }
846        }
847
848        int rayCastMethod;
849        Environment::GetSingleton()->GetIntValue("Preprocessor.rayCastMethod", rayCastMethod);
850
851        if (rayCastMethod == 0)
852        {
853                mRayCaster = new InternalRayCaster(*this, mKdTree);
854                cout << "ray cast method: internal" << endl;
855        }
856        else
857        {
858#ifdef GTP_INTERNAL
859                mRayCaster = new IntelRayCaster(*this, externKdTree);
860                cout << "ray cast method: intel" << endl;
861#endif
862        }
863
864        return true;
865}
866
867
868void
869Preprocessor::CastRays(
870                                           SimpleRayContainer &rays,
871                                           VssRayContainer &vssRays,
872                                           const bool castDoubleRays,
873                                           const bool pruneInvalidRays
874                                           )
875{
876        const long t1 = GetTime();
877
878        for (int i = 0; i < (int)rays.size();)
879        {
880                if (i + 16 < (int)rays.size())
881                {
882                        mRayCaster->CastRays16(
883                                i,
884                                rays,                           
885                                vssRays,
886                                mViewCellsManager->GetViewSpaceBox(),
887                                castDoubleRays,
888                                pruneInvalidRays);
889                        i += 16;
890                }
891                else
892                {
893                        mRayCaster->CastRay(
894                                rays[i],
895                                vssRays,
896                                mViewCellsManager->GetViewSpaceBox(),
897                                castDoubleRays,
898                                pruneInvalidRays);
899                        i ++;
900                }
901        }
902
903        if (i % 10000 == 0)
904                cout<<".";
905
906#if DEBUB_RAYCAST
907        long t2 = GetTime();
908        if (castDoubleRays)
909                cout << 2 * rays.size() / (1e3f * TimeDiff(t1, t2)) << "M rays/s" << endl;
910        else
911                cout << rays.size() / (1e3f * TimeDiff(t1, t2)) << "M rays/s" << endl;
912#endif 
913}
914
915
916bool Preprocessor::GenerateRayBundle(SimpleRayContainer &rayBundle,                                                                     
917                                                                         const SimpleRay &mainRay,
918                                                                         const int number,
919                                                                         const int pertubType) const
920{
921        rayBundle.push_back(mainRay);
922
923        const float pertubOrigin = 0.0f;
924        const float pertubDir = 0.2f;
925
926        for (int i = 0; i < number - 1; ++ i)
927        {
928                Vector3 pertub;
929
930                pertub.x = RandomValue(0.0f, pertubDir);
931                pertub.y = RandomValue(0.0f, pertubDir);
932                pertub.z = RandomValue(0.0f, pertubDir);
933                const Vector3 newDir = mainRay.mDirection + pertub;
934                //const Vector3 newDir = mainRay.mDirection;
935
936                pertub.x = RandomValue(0.0f, pertubOrigin);
937                pertub.y = RandomValue(0.0f, pertubOrigin);
938                pertub.z = RandomValue(0.0f, pertubOrigin);
939                const Vector3 newOrigin = mainRay.mOrigin + pertub;
940                //const Vector3 newOrigin = mainRay.mOrigin;
941
942                rayBundle.push_back(SimpleRay(newOrigin, newDir, 0));
943        }
944
945        return true;
946}
947
948
949void Preprocessor::SetupRay(Ray &ray,
950                                                        const Vector3 &point,
951                                                        const Vector3 &direction
952                                                        ) const
953{
954        ray.Clear();
955        // do not store anything else then intersections at the ray
956        ray.Init(point, direction, Ray::LOCAL_RAY);
957}
958
959
960}
Note: See TracBrowser for help on using the repository browser.