source: GTP/trunk/Lib/Vis/Preprocessing/src/KdTree.cpp @ 1344

Revision 1344, 30.8 KB checked in by mattausch, 18 years ago (diff)

worked on triangle processing. logical units will be created by grouping objects
using their visibility definitions.

Line 
1#include <stack>
2#include <algorithm>
3#include <queue>
4#include "Environment.h"
5#include "Mesh.h"
6#include "KdTree.h"
7#include "ViewCell.h"
8#include "Beam.h"
9
10
11
12namespace GtpVisibilityPreprocessor {
13
14int KdNode::sMailId = 1;
15int KdNode::sReservedMailboxes = 1;
16
17inline static bool ilt(Intersectable *obj1, Intersectable *obj2)
18{
19        return obj1->mId < obj2->mId;
20}
21
22
23KdNode::KdNode(KdInterior *parent):mParent(parent), mMailbox(0)
24{
25  if (parent)
26    mDepth = parent->mDepth+1;
27  else
28    mDepth = 0;
29}
30
31
32KdInterior::~KdInterior()
33{
34        // recursivly destroy children
35        DEL_PTR(mFront);
36        DEL_PTR(mBack);
37}
38
39
40KdTree::KdTree()
41{
42
43 
44  mRoot = new KdLeaf(NULL, 0);
45  Environment::GetSingleton()->GetIntValue("KdTree.Termination.maxNodes", mTermMaxNodes);
46  Environment::GetSingleton()->GetIntValue("KdTree.Termination.maxDepth", mTermMaxDepth);
47  Environment::GetSingleton()->GetIntValue("KdTree.Termination.minCost", mTermMinCost);
48  Environment::GetSingleton()->GetFloatValue("KdTree.Termination.maxCostRatio", mMaxCostRatio);
49  Environment::GetSingleton()->GetFloatValue("KdTree.Termination.ct_div_ci", mCt_div_ci);
50  Environment::GetSingleton()->GetFloatValue("KdTree.splitBorder", mSplitBorder);
51
52  Environment::GetSingleton()->GetBoolValue("KdTree.sahUseFaces", mSahUseFaces);
53
54  char splitType[64];
55  Environment::GetSingleton()->GetStringValue("KdTree.splitMethod", splitType);
56 
57  mSplitMethod = SPLIT_SPATIAL_MEDIAN;
58  if (strcmp(splitType, "spatialMedian") == 0)
59    mSplitMethod = SPLIT_SPATIAL_MEDIAN;
60  else
61    if (strcmp(splitType, "objectMedian") == 0)
62      mSplitMethod = SPLIT_OBJECT_MEDIAN;
63    else
64      if (strcmp(splitType, "SAH") == 0)
65        mSplitMethod = SPLIT_SAH;
66      else {
67        cerr<<"Wrong kd split type "<<splitType<<endl;
68        exit(1);
69      }
70  splitCandidates = NULL;
71}
72
73
74KdTree::~KdTree()
75{
76        DEL_PTR(mRoot);
77}
78
79
80bool
81KdTree::Construct()
82{
83
84  if (!splitCandidates)
85    splitCandidates = new vector<SortableEntry>;
86
87  // first construct a leaf that will get subdivide
88  KdLeaf *leaf = (KdLeaf *) mRoot;
89
90  mStat.nodes = 1;
91
92  mBox.Initialize();
93  ObjectContainer::const_iterator mi;
94  for ( mi = leaf->mObjects.begin();
95        mi != leaf->mObjects.end();
96        mi++) {
97        //      cout<<(*mi)->GetBox()<<endl;
98        mBox.Include((*mi)->GetBox());
99  }
100
101  cout <<"KdTree Root Box:"<<mBox<<endl;
102  mRoot = Subdivide(TraversalData(leaf, mBox, 0));
103
104  // remove the allocated array
105  delete splitCandidates;
106
107  return true;
108}
109
110KdNode *
111KdTree::Subdivide(const TraversalData &tdata)
112{
113
114  KdNode *result = NULL;
115
116  priority_queue<TraversalData> tStack;
117  //  stack<STraversalData> tStack;
118 
119  tStack.push(tdata);
120  AxisAlignedBox3 backBox, frontBox;
121
122  while (!tStack.empty()) {
123        //      cout<<mStat.Nodes()<<" "<<mTermMaxNodes<<endl;
124        if (mStat.Nodes() > mTermMaxNodes) {
125          //    if ( GetMemUsage() > maxMemory ) {
126      // count statistics on unprocessed leafs
127      while (!tStack.empty()) {
128                EvaluateLeafStats(tStack.top());
129                tStack.pop();
130      }
131      break;
132    }
133         
134       
135    TraversalData data = tStack.top();
136    tStack.pop();
137   
138    KdNode *node = SubdivideNode((KdLeaf *) data.mNode,
139                                                                 data.mBox,
140                                                                 backBox,
141                                                                 frontBox
142                                                                 );
143
144        if (result == NULL)
145      result = node;
146   
147    if (!node->IsLeaf()) {
148
149      KdInterior *interior = (KdInterior *) node;
150      // push the children on the stack
151      tStack.push(TraversalData(interior->mBack, backBox, data.mDepth+1));
152      tStack.push(TraversalData(interior->mFront, frontBox, data.mDepth+1));
153     
154    } else {
155      EvaluateLeafStats(data);
156    }
157  }
158 
159  return result;
160
161}
162
163
164
165bool
166KdTree::TerminationCriteriaMet(const KdLeaf *leaf)
167{
168  //  cerr<<"\n OBJECTS="<<leaf->mObjects.size()<<endl;
169  return
170    ((int)leaf->mObjects.size() <= mTermMinCost) ||
171    (leaf->mDepth >= mTermMaxDepth);
172 
173}
174
175
176int
177KdTree::SelectPlane(KdLeaf *leaf,
178                                        const AxisAlignedBox3 &box,
179                                        float &position
180                                        )
181{
182  int axis = -1;
183 
184  switch (mSplitMethod)
185    {
186    case SPLIT_SPATIAL_MEDIAN: {
187      axis = box.Size().DrivingAxis();
188      position = (box.Min()[axis] + box.Max()[axis])*0.5f;
189      break;
190    }
191    case SPLIT_SAH: {
192      int objectsBack, objectsFront;
193      float costRatio;
194      bool mOnlyDrivingAxis = false;
195      if (mOnlyDrivingAxis) {
196                axis = box.Size().DrivingAxis();
197                costRatio = BestCostRatio(leaf,
198                                                                  box,
199                                                                  axis,
200                                                                  position,
201                                                                  objectsBack,
202                                                                  objectsFront);
203      } else {
204                costRatio = MAX_FLOAT;
205                for (int i=0; i < 3; i++) {
206                  float p;
207                  float r = BestCostRatio(leaf,
208                                                                  box,
209                                                                  i,
210                                                                  p,
211                                                                  objectsBack,
212                                                                  objectsFront);
213                  if (r < costRatio) {
214                        costRatio = r;
215                        axis = i;
216                        position = p;
217                  }
218                }
219      }
220     
221      if (costRatio > mMaxCostRatio) {
222                //cout<<"Too big cost ratio "<<costRatio<<endl;
223                axis = -1;
224      }
225      break;
226    }
227   
228    }
229  return axis;
230}
231
232KdNode *
233KdTree::SubdivideNode(
234                      KdLeaf *leaf,
235                      const AxisAlignedBox3 &box,
236                      AxisAlignedBox3 &backBBox,
237                      AxisAlignedBox3 &frontBBox
238                      )
239{
240 
241  if (TerminationCriteriaMet(leaf))
242          return leaf;
243
244  float position;
245 
246  // select subdivision axis
247  int axis = SelectPlane( leaf, box, position );
248
249  if (axis == -1) {
250    return leaf;
251  }
252 
253  mStat.nodes+=2;
254  mStat.splits[axis]++;
255 
256  // add the new nodes to the tree
257  KdInterior *node = new KdInterior(leaf->mParent);
258
259  node->mAxis = axis;
260  node->mPosition = position;
261  node->mBox = box;
262 
263  backBBox = box;
264  frontBBox = box;
265 
266  // first count ray sides
267  int objectsBack = 0;
268  int objectsFront = 0;
269 
270  backBBox.SetMax(axis, position);
271  frontBBox.SetMin(axis, position);
272
273  ObjectContainer::const_iterator mi;
274
275  for ( mi = leaf->mObjects.begin();
276        mi != leaf->mObjects.end();
277        mi++) {
278    // determine the side of this ray with respect to the plane
279    AxisAlignedBox3 box = (*mi)->GetBox();
280    if (box.Max(axis) > position )
281      objectsFront++;
282   
283    if (box.Min(axis) < position )
284      objectsBack++;
285  }
286
287 
288  KdLeaf *back = new KdLeaf(node, objectsBack);
289  KdLeaf *front = new KdLeaf(node, objectsFront);
290
291 
292  // replace a link from node's parent
293  if (  leaf->mParent )
294    leaf->mParent->ReplaceChildLink(leaf, node);
295
296  // and setup child links
297  node->SetupChildLinks(back, front);
298 
299  for (mi = leaf->mObjects.begin();
300       mi != leaf->mObjects.end();
301       mi++) {
302    // determine the side of this ray with respect to the plane
303    AxisAlignedBox3 box = (*mi)->GetBox();
304               
305        // for handling multiple objects: keep track of references
306        if (leaf->IsRoot())
307                (*mi)->mReferences = 1; // initialise references at root
308       
309        -- (*mi)->mReferences; // remove parent ref
310
311
312        if (box.Max(axis) >= position )
313        {
314      front->mObjects.push_back(*mi);
315          ++ (*mi)->mReferences;
316        }
317       
318    if (box.Min(axis) < position )
319        {
320      back->mObjects.push_back(*mi);
321          ++ (*mi)->mReferences;
322        }
323
324    mStat.objectRefs -= (int)leaf->mObjects.size();
325    mStat.objectRefs += objectsBack + objectsFront;
326  }
327
328        // store objects referenced in more than one leaf
329        // for easy access
330        ProcessMultipleRefs(back);
331        ProcessMultipleRefs(front);
332
333        delete leaf;
334        return node;
335}
336
337
338void KdTree::ProcessMultipleRefs(KdLeaf *leaf) const
339{
340        // find objects from multiple kd-leaves
341        ObjectContainer::const_iterator oit, oit_end = leaf->mObjects.end();
342
343        for (oit = leaf->mObjects.begin(); oit != oit_end; ++ oit)
344        {
345                Intersectable *object = *oit;
346               
347                if (object->mReferences > 1)
348                {
349                        leaf->mMultipleObjects.push_back(object);
350                }
351        }
352}
353
354
355void
356KdTreeStatistics::Print(ostream &app) const
357{
358  app << "===== KdTree statistics ===============\n";
359
360  app << "#N_NODES ( Number of nodes )\n" << nodes << "\n";
361
362  app << "#N_LEAVES ( Number of leaves )\n" << Leaves() << "\n";
363
364  app << "#N_SPLITS ( Number of splits in axes x y z dx dy dz)\n";
365  for (int i=0; i<7; i++)
366    app << splits[i] <<" ";
367  app <<endl;
368
369  app << "#N_RAYREFS ( Number of rayRefs )\n" <<
370    rayRefs << "\n";
371
372  app << "#N_RAYRAYREFS  ( Number of rayRefs / ray )\n" <<
373    rayRefs/(double)rays << "\n";
374
375  app << "#N_LEAFRAYREFS  ( Number of rayRefs / leaf )\n" <<
376    rayRefs/(double)Leaves() << "\n";
377
378  app << "#N_MAXOBJECTREFS  ( Max number of object refs / leaf )\n" <<
379    maxObjectRefs << "\n";
380
381  app << "#N_NONEMPTYRAYREFS  ( Number of rayRefs in nonEmpty leaves / non empty leaf )\n" <<
382    rayRefsNonZeroQuery/(double)(Leaves() - zeroQueryNodes) << "\n";
383
384  app << "#N_LEAFDOMAINREFS  ( Number of query domain Refs / leaf )\n" <<
385    objectRefs/(double)Leaves() << "\n";
386
387  //  app << setprecision(4);
388
389  app << "#N_PEMPTYLEAVES  ( Percentage of leaves with zero query domains )\n"<<
390    zeroQueryNodes*100/(double)Leaves()<<endl;
391
392  app << "#N_PMAXDEPTHLEAVES ( Percentage of leaves at maxdepth )\n"<<
393    maxDepthNodes*100/(double)Leaves()<<endl;
394
395  app << "#N_PMINCOSTLEAVES  ( Percentage of leaves with minCost )\n"<<
396    minCostNodes*100/(double)Leaves()<<endl;
397
398  app << "#N_ADDED_RAYREFS  (Number of dynamically added ray references )\n"<<
399    addedRayRefs<<endl;
400
401  app << "#N_REMOVED_RAYREFS  (Number of dynamically removed ray references )\n"<<
402    removedRayRefs<<endl;
403
404  //  app << setprecision(4);
405
406  //  app << "#N_CTIME  ( Construction time [s] )\n"
407  //      << Time() << " \n";
408
409  app << "===== END OF KdTree statistics ==========\n";
410
411}
412
413
414
415void
416KdTree::EvaluateLeafStats(const TraversalData &data)
417{
418
419  // the node became a leaf -> evaluate stats for leafs
420  KdLeaf *leaf = (KdLeaf *)data.mNode;
421
422  if (data.mDepth > mTermMaxDepth)
423    mStat.maxDepthNodes++;
424 
425  if ( (int)(leaf->mObjects.size()) < mTermMinCost)
426    mStat.minCostNodes++;
427 
428 
429  if ( (int)(leaf->mObjects.size()) > mStat.maxObjectRefs)
430    mStat.maxObjectRefs = (int)leaf->mObjects.size();
431 
432}
433
434
435
436void
437KdTree::SortSubdivisionCandidates(
438                            KdLeaf *node,
439                            const int axis
440                            )
441{
442  splitCandidates->clear();
443 
444  int requestedSize = 2*(int)node->mObjects.size();
445  // creates a sorted split candidates array
446  if (splitCandidates->capacity() > 500000 &&
447      requestedSize < (int)(splitCandidates->capacity()/10) ) {
448    delete splitCandidates;
449    splitCandidates = new vector<SortableEntry>;
450  }
451 
452  splitCandidates->reserve(requestedSize);
453 
454  // insert all queries
455  for(ObjectContainer::const_iterator mi = node->mObjects.begin();
456      mi != node->mObjects.end();
457      mi++) {
458    AxisAlignedBox3 box = (*mi)->GetBox();
459
460    splitCandidates->push_back(SortableEntry(SortableEntry::BOX_MIN,
461                                                                                         box.Min(axis),
462                                                                                         *mi)
463                                                           );
464   
465   
466    splitCandidates->push_back(SortableEntry(SortableEntry::BOX_MAX,
467                                                                                         box.Max(axis),
468                                                                                         *mi)
469                                                           );
470  }
471 
472  stable_sort(splitCandidates->begin(), splitCandidates->end());
473}
474
475
476float
477KdTree::BestCostRatio(
478                                          KdLeaf *node,
479                                          const AxisAlignedBox3 &box,
480                                          const int axis,
481                                          float &position,
482                                          int &objectsBack,
483                                          int &objectsFront
484                                          )
485{
486
487  SortSubdivisionCandidates(node, axis);
488 
489  // go through the lists, count the number of objects left and right
490  // and evaluate the following cost funcion:
491  // C = ct_div_ci  + (ol + or)/queries
492
493  float totalIntersections = 0.0f;
494  vector<SortableEntry>::const_iterator ci;
495
496  for(ci = splitCandidates->begin();
497      ci < splitCandidates->end();
498      ci++)
499    if ((*ci).type == SortableEntry::BOX_MIN) {
500      totalIntersections += (*ci).intersectable->IntersectionComplexity();
501    }
502       
503  float intersectionsLeft = 0;
504  float intersectionsRight = totalIntersections;
505       
506  int objectsLeft = 0, objectsRight = (int)node->mObjects.size();
507 
508  float minBox = box.Min(axis);
509  float maxBox = box.Max(axis);
510  float boxArea = box.SurfaceArea();
511 
512  float minBand = minBox + mSplitBorder*(maxBox - minBox);
513  float maxBand = minBox + (1.0f - mSplitBorder)*(maxBox - minBox);
514 
515  float minSum = 1e20f;
516 
517  for(ci = splitCandidates->begin();
518      ci < splitCandidates->end();
519      ci++) {
520    switch ((*ci).type) {
521    case SortableEntry::BOX_MIN:
522      objectsLeft++;
523      intersectionsLeft += (*ci).intersectable->IntersectionComplexity();
524      break;
525    case SortableEntry::BOX_MAX:
526      objectsRight--;
527      intersectionsRight -= (*ci).intersectable->IntersectionComplexity();
528      break;
529    }
530
531    if ((*ci).value > minBand && (*ci).value < maxBand) {
532      AxisAlignedBox3 lbox = box;
533      AxisAlignedBox3 rbox = box;
534      lbox.SetMax(axis, (*ci).value);
535      rbox.SetMin(axis, (*ci).value);
536
537      float sum;
538      if (mSahUseFaces)
539                sum = intersectionsLeft*lbox.SurfaceArea() + intersectionsRight*rbox.SurfaceArea();
540      else
541                sum = objectsLeft*lbox.SurfaceArea() + objectsRight*rbox.SurfaceArea();
542     
543      //      cout<<"pos="<<(*ci).value<<"\t q=("<<ql<<","<<qr<<")\t r=("<<rl<<","<<rr<<")"<<endl;
544      //      cout<<"cost= "<<sum<<endl;
545     
546      if (sum < minSum) {
547                minSum = sum;
548                position = (*ci).value;
549               
550                objectsBack = objectsLeft;
551                objectsFront = objectsRight;
552      }
553    }
554  }
555 
556  float oldCost = mSahUseFaces ? totalIntersections : node->mObjects.size();
557  float newCost = mCt_div_ci + minSum/boxArea;
558  float ratio = newCost/oldCost;
559 
560#if 0
561  cout<<"===================="<<endl;
562  cout<<"costRatio="<<ratio<<" pos="<<position<<" t="<<(position - minBox)/(maxBox - minBox)
563      <<"\t o=("<<objectsBack<<","<<objectsFront<<")"<<endl;
564#endif
565  return ratio;
566}
567
568int
569KdTree::CastRay(
570                                Ray &ray
571                                )
572{
573  int hits = 0;
574 
575  stack<RayTraversalData> tStack;
576 
577  float maxt = 1e6;
578  float mint = 0;
579 
580  Intersectable::NewMail();
581
582  if (!mBox.GetMinMaxT(ray, &mint, &maxt))
583    return 0;
584
585  if (mint < 0)
586    mint = 0;
587 
588  maxt += Limits::Threshold;
589 
590  Vector3 entp = ray.Extrap(mint);
591  Vector3 extp = ray.Extrap(maxt);
592 
593  KdNode *node = mRoot;
594  KdNode *farChild;
595  float position;
596  int axis;
597
598 
599  while (1) {
600    if (!node->IsLeaf()) {
601      KdInterior *in = (KdInterior *) node;
602      position = in->mPosition;
603      axis = in->mAxis;
604
605      if (entp[axis] <= position) {
606                if (extp[axis] <= position) {
607                  node = in->mBack;
608                  // cases N1,N2,N3,P5,Z2,Z3
609                  continue;
610                } else {
611                  // case N4
612                  node = in->mBack;
613                  farChild = in->mFront;
614                }
615      }
616      else {
617                if (position <= extp[axis]) {
618                  node = in->mFront;
619                  // cases P1,P2,P3,N5,Z1
620                  continue;
621                } else {
622                  node = in->mFront;
623                  farChild = in->mBack;
624                  // case P4
625                }
626          }
627      // $$ modification 3.5.2004 - hints from Kamil Ghais
628      // case N4 or P4
629      float tdist = (position - ray.GetLoc(axis)) / ray.GetDir(axis);
630      tStack.push(RayTraversalData(farChild, extp, maxt));
631      extp = ray.GetLoc() + ray.GetDir()*tdist;
632      maxt = tdist;
633        } else {
634          // compute intersection with all objects in this leaf
635          KdLeaf *leaf = (KdLeaf *) node;
636          if (ray.mFlags & Ray::STORE_KDLEAVES)
637                ray.kdLeaves.push_back(leaf);
638         
639          ObjectContainer::const_iterator mi;
640          for ( mi = leaf->mObjects.begin();
641                        mi != leaf->mObjects.end();
642                        mi++) {
643                Intersectable *object = *mi;
644                if (!object->Mailed() ) {
645                  object->Mail();
646                  if (ray.mFlags & Ray::STORE_TESTED_OBJECTS)
647                        ray.testedObjects.push_back(object);
648
649                  static int oi=1;
650                  if (MeshDebug)
651                        cout<<"Object "<<oi++;
652                 
653                  hits += object->CastRay(ray);
654
655                  if (MeshDebug) {
656                        if (!ray.intersections.empty())
657                        cout<<"nearest t="<<ray.intersections[0].mT<<endl;
658                  else
659                        cout<<"nearest t=-INF"<<endl;
660                  }       
661                }
662          }
663         
664          if (hits && ray.GetType() == Ray::LOCAL_RAY)
665                if (ray.intersections[0].mT <= maxt)
666                  break;
667         
668          // get the next node from the stack
669          if (tStack.empty())
670                break;
671         
672          entp = extp;
673          mint = maxt;
674          if (ray.GetType() == Ray::LINE_SEGMENT && mint > 1.0f)
675                break;
676         
677          RayTraversalData &s  = tStack.top();
678          node = s.mNode;
679          extp = s.mExitPoint;
680          maxt = s.mMaxT;
681          tStack.pop();
682        }
683  }
684  return hits;
685}
686
687int KdTree::CastLineSegment(const Vector3 &origin,
688                                                        const Vector3 &termination,
689                                                        ViewCellContainer &viewcells)
690{
691        int hits = 0;
692
693        float mint = 0.0f, maxt = 1.0f;
694        const Vector3 dir = termination - origin;
695
696        stack<RayTraversalData> tStack;
697
698        Intersectable::NewMail();
699
700        //maxt += Limits::Threshold;
701
702        Vector3 entp = origin;
703        Vector3 extp = termination;
704
705        KdNode *node = mRoot;
706        KdNode *farChild;
707
708        float position;
709        int axis;
710
711        while (1)
712        {
713                if (!node->IsLeaf())
714                {
715                        KdInterior *in = dynamic_cast<KdInterior *>(node);
716                        position = in->mPosition;
717                        axis = in->mAxis;
718
719                        if (entp[axis] <= position)
720                        {
721                                if (extp[axis] <= position)
722                                {
723                                        node = in->mBack;
724                                        // cases N1,N2,N3,P5,Z2,Z3
725                                        continue;
726                                }
727                                else
728                                {
729                                        // case N4
730                                        node = in->mBack;
731                                        farChild = in->mFront;
732                                }
733                        }
734                        else
735                        {
736                                if (position <= extp[axis])
737                                {
738                                        node = in->mFront;
739                                        // cases P1,P2,P3,N5,Z1
740                                        continue;
741                                }
742                                else
743                                {
744                                        node = in->mFront;
745                                        farChild = in->mBack;
746                                        // case P4
747                                }
748                        }
749
750                        // $$ modification 3.5.2004 - hints from Kamil Ghais
751                        // case N4 or P4
752                        float tdist = (position - origin[axis]) / dir[axis];
753                        //tStack.push(RayTraversalData(farChild, extp, maxt)); //TODO
754                        extp = origin + dir * tdist;
755                        maxt = tdist;
756                }
757                else
758                {
759                        // compute intersection with all objects in this leaf
760                        KdLeaf *leaf = dynamic_cast<KdLeaf *>(node);
761
762                        // add view cell to intersections
763                        ViewCell *vc = leaf->mViewCell;
764
765                        if (!vc->Mailed())
766                        {
767                                vc->Mail();
768                                viewcells.push_back(vc);
769                                ++ hits;
770                        }
771
772                        // get the next node from the stack
773                        if (tStack.empty())
774                                break;
775
776                        entp = extp;
777                        mint = maxt;
778                       
779                        RayTraversalData &s  = tStack.top();
780                        node = s.mNode;
781                        extp = s.mExitPoint;
782                        maxt = s.mMaxT;
783                        tStack.pop();
784                }
785        }
786
787        return hits;
788}
789
790
791void
792KdTree::CollectObjects(const AxisAlignedBox3 &box,
793                                           ObjectContainer &objects)
794{
795  stack<KdNode *> nodeStack;
796
797  nodeStack.push(mRoot);
798
799  while (!nodeStack.empty()) {
800    KdNode *node = nodeStack.top();
801    nodeStack.pop();
802    if (node->IsLeaf()) {
803      KdLeaf *leaf = (KdLeaf *)node;
804      for (int j=0; j < leaf->mObjects.size(); j++) {
805                Intersectable *object = leaf->mObjects[j];
806                if (!object->Mailed() && Overlap(box, object->GetBox())) {
807                  object->Mail();
808                  objects.push_back(object);
809                }
810      }
811    } else {
812      KdInterior *interior = (KdInterior *)node;
813
814          if ( box.Max()[interior->mAxis] > interior->mPosition )
815                nodeStack.push(interior->mFront);
816 
817          if (box.Min()[interior->mAxis] < interior->mPosition)
818                nodeStack.push(interior->mBack);
819    }
820  }
821}
822
823void
824KdTree::CollectObjects(KdNode *n, ObjectContainer &objects)
825{
826  stack<KdNode *> nodeStack;
827
828  nodeStack.push(n);
829
830  while (!nodeStack.empty()) {
831    KdNode *node = nodeStack.top();
832    nodeStack.pop();
833    if (node->IsLeaf()) {
834      KdLeaf *leaf = (KdLeaf *)node;
835      for (int j=0; j < leaf->mObjects.size(); j++) {
836                                Intersectable *object = leaf->mObjects[j];
837                                if (!object->Mailed()) {
838                                        object->Mail();
839                                        objects.push_back(object);
840                                }
841      }
842    } else {
843      KdInterior *interior = (KdInterior *)node;
844      nodeStack.push(interior->mFront);
845      nodeStack.push(interior->mBack);
846    }
847  }
848}
849
850// Find random neighbor which was not mailed
851KdNode *
852KdTree::FindRandomNeighbor(KdNode *n,
853                                                   bool onlyUnmailed
854                                                   )
855{
856  stack<KdNode *> nodeStack;
857 
858  nodeStack.push(mRoot);
859
860  AxisAlignedBox3 box = GetBox(n);
861  int mask = rand();
862
863  while (!nodeStack.empty()) {
864    KdNode *node = nodeStack.top();
865    nodeStack.pop();
866    if (node->IsLeaf()) {
867      if ( node != n && (!onlyUnmailed || !node->Mailed()) )
868        return node;
869    } else {
870      KdInterior *interior = (KdInterior *)node;
871      if (interior->mPosition > box.Max(interior->mAxis))
872        nodeStack.push(interior->mBack);
873      else
874        if (interior->mPosition < box.Min(interior->mAxis))
875          nodeStack.push(interior->mFront);
876        else {
877          // random decision
878          if (mask&1)
879            nodeStack.push(interior->mBack);
880          else
881            nodeStack.push(interior->mFront);
882          mask = mask>>1;
883        }
884    }
885  }
886 
887  return NULL;
888}
889
890int
891KdTree::FindNeighbors(KdNode *n,
892                      vector<KdNode *> &neighbors,
893                      bool onlyUnmailed
894                      )
895{
896  stack<KdNode *> nodeStack;
897 
898  nodeStack.push(mRoot);
899
900  AxisAlignedBox3 box = GetBox(n);
901
902  while (!nodeStack.empty()) {
903    KdNode *node = nodeStack.top();
904    nodeStack.pop();
905    if (node->IsLeaf()) {
906      if ( node != n && (!onlyUnmailed || !node->Mailed()) )
907        neighbors.push_back(node);
908    } else {
909      KdInterior *interior = (KdInterior *)node;
910      if (interior->mPosition > box.Max(interior->mAxis))
911                                nodeStack.push(interior->mBack);
912      else
913                                if (interior->mPosition < box.Min(interior->mAxis))
914                                        nodeStack.push(interior->mFront);
915                                else {
916                                        // random decision
917                                        nodeStack.push(interior->mBack);
918                                        nodeStack.push(interior->mFront);
919                                }
920    }
921  }
922 
923  return (int)neighbors.size();
924}
925
926// Find random neighbor which was not mailed
927KdNode *
928KdTree::GetRandomLeaf(const Plane3 &plane)
929{
930  stack<KdNode *> nodeStack;
931 
932  nodeStack.push(mRoot);
933 
934  int mask = rand();
935 
936  while (!nodeStack.empty()) {
937    KdNode *node = nodeStack.top();
938    nodeStack.pop();
939    if (node->IsLeaf()) {
940      return node;
941    } else {
942      KdInterior *interior = (KdInterior *)node;
943      KdNode *next;
944        if (GetBox(interior->mBack).Side(plane) < 0)
945          next = interior->mFront;
946        else
947          if (GetBox(interior->mFront).Side(plane) < 0)
948            next = interior->mBack;
949          else {
950            // random decision
951            if (mask&1)
952              next = interior->mBack;
953            else
954              next = interior->mFront;
955            mask = mask>>1;
956          }
957        nodeStack.push(next);
958    }
959  }
960 
961 
962  return NULL;
963}
964
965void
966KdTree::CollectLeaves(vector<KdLeaf *> &leaves)
967{
968  stack<KdNode *> nodeStack;
969  nodeStack.push(mRoot);
970
971  while (!nodeStack.empty()) {
972    KdNode *node = nodeStack.top();
973    nodeStack.pop();
974    if (node->IsLeaf()) {
975      KdLeaf *leaf = (KdLeaf *)node;
976      leaves.push_back(leaf);
977    } else {
978      KdInterior *interior = (KdInterior *)node;
979      nodeStack.push(interior->mBack);
980      nodeStack.push(interior->mFront);
981    }
982  }
983}
984
985void
986KdTree::CreateAndCollectViewCells(ViewCellContainer &vc) const
987{
988  stack<KdNode *> nodeStack;
989  nodeStack.push(mRoot);
990
991  while (!nodeStack.empty()) {
992    KdNode *node = nodeStack.top();
993    nodeStack.pop();
994    if (node->IsLeaf()) {
995      KdLeaf *leaf = (KdLeaf *)node;
996          // kdtree used as view cell container => create view cell
997          KdViewCell *viewCell = new KdViewCell();
998          leaf->mViewCell = viewCell;
999          // push back pointer to this leaf
1000          viewCell->mLeaf = leaf;
1001      vc.push_back(viewCell);
1002    } else {
1003      KdInterior *interior = (KdInterior *)node;
1004      nodeStack.push(interior->mBack);
1005      nodeStack.push(interior->mFront);
1006    }
1007  }
1008}
1009
1010int
1011KdTree::CollectLeafPvs()
1012{
1013  int totalPvsSize = 0;
1014  stack<KdNode *> nodeStack;
1015 
1016  nodeStack.push(mRoot);
1017 
1018  while (!nodeStack.empty()) {
1019    KdNode *node = nodeStack.top();
1020    nodeStack.pop();
1021    if (node->IsLeaf()) {
1022      KdLeaf *leaf = (KdLeaf *)node;
1023      for (int j=0; j < leaf->mObjects.size(); j++) {
1024        Intersectable *object = leaf->mObjects[j];
1025        if (!object->Mailed()) {
1026          object->Mail();
1027          // add this node to pvs of all nodes it can see
1028          KdPvsMap::iterator ni = object->mKdPvs.mEntries.begin();
1029          for (; ni != object->mKdPvs.mEntries.end(); ni++) {
1030            KdNode *node = (*ni).first;
1031            // $$ JB TEMPORARY solution -> should add object PVS or explictly computed
1032            // kd tree PVS
1033                float contribution;
1034                if (leaf->mKdPvs.AddSample(node, 1.0f, contribution))
1035              totalPvsSize++;
1036          }
1037        }
1038      }
1039    } else {
1040      KdInterior *interior = (KdInterior *)node;
1041      nodeStack.push(interior->mFront);
1042      nodeStack.push(interior->mBack);
1043    }
1044  }
1045
1046  return totalPvsSize;
1047}
1048
1049
1050KdNode *
1051KdTree::GetRandomLeaf(const bool onlyUnmailed)
1052{
1053  stack<KdNode *> nodeStack;
1054  nodeStack.push(mRoot);
1055 
1056  int mask = rand();
1057       
1058  while (!nodeStack.empty()) {
1059    KdNode *node = nodeStack.top();
1060    nodeStack.pop();
1061    if (node->IsLeaf()) {
1062      if ( (!onlyUnmailed || !node->Mailed()) )
1063                                return node;
1064    } else {
1065      KdInterior *interior = (KdInterior *)node;
1066                        // random decision
1067                        if (mask&1)
1068                                nodeStack.push(interior->mBack);
1069                        else
1070                                nodeStack.push(interior->mFront);
1071                        mask = mask>>1;
1072                }
1073        }
1074  return NULL;
1075}
1076
1077
1078int
1079KdTree::CastBeam(
1080                                 Beam &beam
1081                                 )
1082{
1083  stack<KdNode *> nodeStack;
1084  nodeStack.push(mRoot);
1085 
1086  while (!nodeStack.empty()) {
1087    KdNode *node = nodeStack.top();
1088    nodeStack.pop();
1089       
1090        int side = beam.ComputeIntersection(GetBox(node));
1091        switch (side) {
1092        case -1:
1093          beam.mKdNodes.push_back(node);
1094          break;
1095        case 0:
1096          if (node->IsLeaf())
1097                beam.mKdNodes.push_back(node);
1098          else {
1099                KdInterior *interior = (KdInterior *)node;
1100                KdNode *first = interior->mBack;
1101                KdNode *second = interior->mFront;
1102               
1103                if (interior->mAxis < 3) {
1104                  // spatial split -> decide on the order of the nodes
1105                  if (beam.mPlanes[0].mNormal[interior->mAxis] > 0)
1106                        swap(first, second);
1107                }
1108
1109                nodeStack.push(first);
1110                nodeStack.push(second);
1111          }
1112          break;
1113          // default: cull
1114        }
1115  }
1116
1117  if (beam.mFlags & Beam::STORE_OBJECTS)
1118  {
1119          vector<KdNode *>::const_iterator it, it_end = beam.mKdNodes.end();
1120       
1121          Intersectable::NewMail();
1122          for (it = beam.mKdNodes.begin(); it != it_end; ++ it)
1123          {
1124                  CollectObjects(*it, beam.mObjects);
1125          }
1126  }
1127
1128  return (int)beam.mKdNodes.size();
1129}
1130
1131
1132#define TYPE_INTERIOR -2
1133#define TYPE_LEAF -3
1134
1135
1136void KdTree::ExportBinLeaf(OUT_STREAM &stream, KdLeaf *leaf)
1137{
1138        ObjectContainer::const_iterator it, it_end = leaf->mObjects.end();
1139       
1140        int type = TYPE_LEAF;
1141        int size = (int)leaf->mObjects.size();
1142
1143        stream.write(reinterpret_cast<char *>(&type), sizeof(int));
1144        stream.write(reinterpret_cast<char *>(&size), sizeof(int));
1145
1146        for (it = leaf->mObjects.begin(); it != it_end; ++ it)
1147        {       
1148                Intersectable *obj = *it;
1149                int id = obj->mId;             
1150       
1151                //stream.write(reinterpret_cast<char *>(&origin), sizeof(Vector3));
1152                stream.write(reinterpret_cast<char *>(&id), sizeof(int));
1153    }
1154}
1155
1156
1157KdLeaf *KdTree::ImportBinLeaf(IN_STREAM &stream,
1158                                                          KdInterior *parent,
1159                                                          const ObjectContainer &objects)
1160{
1161        int leafId = TYPE_LEAF;
1162        int objId = leafId;
1163        int size;
1164
1165        stream.read(reinterpret_cast<char *>(&size), sizeof(int));
1166        KdLeaf *leaf = new KdLeaf(parent, size);
1167
1168        MeshInstance dummyInst(NULL);
1169        //Debug << "objects size: " << size << endl;
1170
1171        // read object ids
1172        for (int i = 0; i < size; ++ i)
1173        {       
1174                stream.read(reinterpret_cast<char *>(&objId), sizeof(int));
1175                dummyInst.SetId(objId);
1176
1177                ObjectContainer::const_iterator oit =
1178                        lower_bound(objects.begin(), objects.end(), (Intersectable *)&dummyInst, ilt);
1179                                                               
1180                if ((oit != objects.end()) && ((*oit)->GetId() == objId))
1181                {
1182                        leaf->mObjects.push_back(*oit);
1183                }
1184                else
1185                {
1186                        Debug << "error: object with id " << objId << " does not exist" << endl;
1187                }
1188        }
1189
1190        return leaf;
1191}
1192
1193
1194void KdTree::ExportBinInterior(OUT_STREAM &stream, KdInterior *interior)
1195{
1196        int interiorid = TYPE_INTERIOR;
1197        stream.write(reinterpret_cast<char *>(&interiorid), sizeof(int));
1198
1199        int axis = interior->mAxis;
1200        float pos = interior->mPosition;
1201
1202        stream.write(reinterpret_cast<char *>(&axis), sizeof(int));
1203        stream.write(reinterpret_cast<char *>(&pos), sizeof(float));
1204}
1205
1206
1207KdInterior *KdTree::ImportBinInterior(IN_STREAM  &stream, KdInterior *parent)
1208{
1209        KdInterior *interior = new KdInterior(parent);
1210
1211        int axis = interior->mAxis;
1212        float pos = interior->mPosition;
1213
1214        stream.read(reinterpret_cast<char *>(&axis), sizeof(int));
1215        stream.read(reinterpret_cast<char *>(&pos), sizeof(float));
1216
1217        interior->mAxis = axis;
1218        interior->mPosition = pos;
1219
1220        return interior;
1221}
1222
1223
1224bool KdTree::ExportBinTree(const string &filename)
1225{
1226        OUT_STREAM stream(filename.c_str(), OUT_BIN_MODE);
1227       
1228        //if (!stream.is_open()) return false;
1229
1230        // export binary version of mesh
1231        queue<KdNode *> tStack;
1232        tStack.push(mRoot);
1233
1234        while(!tStack.empty())
1235        {
1236                KdNode *node = tStack.front();
1237                tStack.pop();
1238               
1239                if (node->IsLeaf())
1240                {
1241                        //Debug << "l";
1242                        ExportBinLeaf(stream, dynamic_cast<KdLeaf *>(node));
1243                }
1244                else
1245                {
1246                        //Debug << "i";
1247                        KdInterior *interior = dynamic_cast<KdInterior *>(node);
1248
1249                        ExportBinInterior(stream, interior);
1250                       
1251                        tStack.push(interior->mFront);
1252                        tStack.push(interior->mBack);
1253                }
1254        }
1255
1256        return true;
1257}
1258
1259
1260KdNode *KdTree::LoadNextNode(IN_STREAM &stream,
1261                                                         KdInterior *parent,
1262                                                         const ObjectContainer &objects)
1263{
1264        int nodeType;
1265        stream.read(reinterpret_cast<char *>(&nodeType), sizeof(int));
1266
1267        if (nodeType == TYPE_LEAF)
1268        {
1269                return ImportBinLeaf(stream, dynamic_cast<KdInterior *>(parent), objects);
1270        }
1271
1272        if (nodeType == TYPE_INTERIOR)
1273        {
1274                return ImportBinInterior(stream, dynamic_cast<KdInterior *>(parent));
1275        }
1276
1277        Debug << "error! loading failed!" << endl;
1278       
1279        return NULL;
1280}
1281
1282
1283bool KdTree::LoadBinTree(const string &filename, ObjectContainer &objects)
1284{
1285        // export binary version of mesh
1286        queue<TraversalData> tStack;
1287        IN_STREAM stream(filename.c_str(), IN_BIN_MODE);
1288
1289        if (!stream.is_open()) return false;
1290
1291        std::stable_sort(objects.begin(), objects.end(), ilt);
1292
1293        mBox.Initialize();
1294        ObjectContainer::const_iterator oit, oit_end = objects.end();
1295
1296        //-- compute bounding box
1297    for (oit = objects.begin(); oit != oit_end; ++ oit)
1298        {
1299                Intersectable *obj = *oit;
1300                // compute bounding box of view space
1301                mBox.Include(obj->GetBox());
1302        }
1303
1304        DEL_PTR(mRoot); // we make a new root
1305 
1306        KdNode *node = LoadNextNode(stream, NULL, objects);
1307        mRoot = node;
1308
1309        tStack.push(TraversalData(node, mBox, 0));
1310        mStat.Reset();
1311        mStat.nodes = 1;
1312
1313        while(!tStack.empty())
1314        {
1315                TraversalData tData = tStack.front();
1316                tStack.pop();
1317
1318                KdNode *node = tData.mNode;
1319
1320                if (!node->IsLeaf())
1321                {
1322                        mStat.nodes += 2;
1323
1324                        //Debug << "i" ;
1325                        KdInterior *interior = dynamic_cast<KdInterior *>(node);
1326                        interior->mBox = tData.mBox;
1327
1328            KdNode *front = LoadNextNode(stream, interior, objects);
1329                        KdNode *back = LoadNextNode(stream, interior, objects);
1330       
1331                        interior->SetupChildLinks(back, front);
1332
1333                        ++ mStat.splits[interior->mAxis];
1334
1335                        // compute new bounding box
1336                        AxisAlignedBox3 frontBox, backBox;
1337                       
1338                        tData.mBox.Split(interior->mAxis,
1339                                                         interior->mPosition,
1340                                                         frontBox,
1341                                                         backBox);
1342
1343                        tStack.push(TraversalData(front, frontBox, tData.mDepth + 1));                 
1344                        tStack.push(TraversalData(back, backBox, tData.mDepth + 1));
1345                }
1346                else
1347                {
1348                        EvaluateLeafStats(tData);
1349                        //Debug << "l" << endl;
1350                }
1351        }
1352        Debug << mStat << endl;
1353
1354        return true;
1355}
1356
1357
1358}
Note: See TracBrowser for help on using the repository browser.