1 | #ifndef _KdTree_H__
|
---|
2 | #define _KdTree_H__
|
---|
3 |
|
---|
4 | #include <functional>
|
---|
5 | //
|
---|
6 |
|
---|
7 | #include "Containers.h"
|
---|
8 | #include "AxisAlignedBox3.h"
|
---|
9 | #include "Ray.h"
|
---|
10 | //#include "ObjectPvs.h"
|
---|
11 | #include "ViewCell.h"
|
---|
12 | #include "VssRay.h"
|
---|
13 | //#include "IntersectableWrapper.h"
|
---|
14 | #include "gzstream.h"
|
---|
15 |
|
---|
16 | namespace GtpVisibilityPreprocessor {
|
---|
17 |
|
---|
18 | class KdNode;
|
---|
19 | class KdLeaf;
|
---|
20 | class KdInterior;
|
---|
21 | class Intersectable;
|
---|
22 | class KdIntersectable;
|
---|
23 | class Beam;
|
---|
24 | class KdTree;
|
---|
25 | //class KdViewCell;
|
---|
26 |
|
---|
27 | // KdTree *SceneKdTree;
|
---|
28 |
|
---|
29 | // --------------------------------------------------------------
|
---|
30 | // Static statistics for kd-tree search
|
---|
31 | // --------------------------------------------------------------
|
---|
32 | class KdTreeStatistics
|
---|
33 | {
|
---|
34 | public:
|
---|
35 | // total number of nodes
|
---|
36 | int nodes;
|
---|
37 | // number of splits along each of the axes
|
---|
38 | int splits[7];
|
---|
39 | // totals number of rays
|
---|
40 | int rays;
|
---|
41 | // total number of query domains
|
---|
42 | int queryDomains;
|
---|
43 | // total number of ray references
|
---|
44 | int rayRefs;
|
---|
45 | // refs in non empty leafs
|
---|
46 | int rayRefsNonZeroQuery;
|
---|
47 | // total number of query references
|
---|
48 | int objectRefs;
|
---|
49 | // nodes with zero queries
|
---|
50 | int zeroQueryNodes;
|
---|
51 | // max depth nodes
|
---|
52 | int maxDepthNodes;
|
---|
53 | // max depth nodes
|
---|
54 | int minCostNodes;
|
---|
55 | // max number of rays per node
|
---|
56 | int maxObjectRefs;
|
---|
57 | // number of dynamically added ray refs
|
---|
58 | int addedRayRefs;
|
---|
59 | // number of dynamically removed ray refs
|
---|
60 | int removedRayRefs;
|
---|
61 |
|
---|
62 | // Constructor
|
---|
63 | KdTreeStatistics() {
|
---|
64 | Reset();
|
---|
65 | }
|
---|
66 |
|
---|
67 | int Nodes() const {return nodes;}
|
---|
68 | int Interior() const { return nodes / 2; }
|
---|
69 | int Leaves() const { return (nodes / 2) + 1; }
|
---|
70 |
|
---|
71 | void Reset() {
|
---|
72 | nodes = 0;
|
---|
73 | for (int i=0; i<7; i++)
|
---|
74 | splits[i] = 0;
|
---|
75 | rays = queryDomains = 0;
|
---|
76 | rayRefs = rayRefsNonZeroQuery = objectRefs = 0;
|
---|
77 | zeroQueryNodes = 0;
|
---|
78 | maxDepthNodes = 0;
|
---|
79 | minCostNodes = 0;
|
---|
80 | maxObjectRefs = 0;
|
---|
81 | addedRayRefs = removedRayRefs = 0;
|
---|
82 | }
|
---|
83 |
|
---|
84 | void
|
---|
85 | Print(std::ostream &app) const;
|
---|
86 |
|
---|
87 | friend std::ostream &operator<<(std::ostream &s, const KdTreeStatistics &stat) {
|
---|
88 | stat.Print(s);
|
---|
89 | return s;
|
---|
90 | }
|
---|
91 |
|
---|
92 | };
|
---|
93 |
|
---|
94 |
|
---|
95 | class KdInterior;
|
---|
96 | /** Abstract class for kd-tree node */
|
---|
97 | class KdNode {
|
---|
98 |
|
---|
99 | public:
|
---|
100 | static int sMailId;
|
---|
101 | static int sReservedMailboxes;
|
---|
102 | int mMailbox;
|
---|
103 |
|
---|
104 | static int sMailId2;
|
---|
105 | static int sReservedMailboxes2;
|
---|
106 | int mMailbox2;
|
---|
107 |
|
---|
108 | KdIntersectable *mIntersectable;
|
---|
109 |
|
---|
110 | void Mail() { mMailbox = sMailId; }
|
---|
111 | //static void NewMail() { sMailId ++; }
|
---|
112 | bool Mailed() const { return mMailbox == sMailId; }
|
---|
113 |
|
---|
114 | static void NewMail(const int reserve = 1) {
|
---|
115 | sMailId += sReservedMailboxes;
|
---|
116 | sReservedMailboxes = reserve;
|
---|
117 | }
|
---|
118 | void Mail(const int mailbox) { mMailbox = sMailId + mailbox; }
|
---|
119 | bool Mailed(const int mailbox) const { return mMailbox == sMailId + mailbox; }
|
---|
120 |
|
---|
121 |
|
---|
122 | static void NewMail2(const int reserve = 1) {
|
---|
123 | sMailId2 += sReservedMailboxes;
|
---|
124 | sReservedMailboxes2 = reserve;
|
---|
125 | }
|
---|
126 |
|
---|
127 | void Mail2() { mMailbox2 = sMailId2; }
|
---|
128 | bool Mailed2() const { return mMailbox2 == sMailId2; }
|
---|
129 |
|
---|
130 | void Mail2(const int mailbox) { mMailbox2 = sMailId2 + mailbox; }
|
---|
131 | bool Mailed2(const int mailbox) const { return mMailbox2 == sMailId2 + mailbox; }
|
---|
132 |
|
---|
133 |
|
---|
134 | virtual ~KdNode(){};
|
---|
135 | KdNode(KdInterior *parent);
|
---|
136 |
|
---|
137 | /** Determines whether this node is a leaf or interior node
|
---|
138 | @return true if leaf
|
---|
139 | */
|
---|
140 | virtual bool IsLeaf() const = 0;
|
---|
141 |
|
---|
142 | /** Determines whether this node is the root of the tree
|
---|
143 | @return true if root
|
---|
144 | */
|
---|
145 | virtual bool IsRoot() const {
|
---|
146 | return mParent == NULL;
|
---|
147 | }
|
---|
148 |
|
---|
149 | /** Parent of the node - the parent is a little overhead for maintanance of the tree,
|
---|
150 | but allows various optimizations of tree traversal algorithms */
|
---|
151 | KdInterior *mParent;
|
---|
152 | short mDepth;
|
---|
153 | short mPvsTermination;
|
---|
154 | };
|
---|
155 |
|
---|
156 | /** Implementation of the kd-tree interior node */
|
---|
157 | class KdInterior : public KdNode {
|
---|
158 |
|
---|
159 | public:
|
---|
160 |
|
---|
161 | KdInterior(KdInterior *parent):KdNode(parent), mBack(NULL), mFront(NULL) {}
|
---|
162 |
|
---|
163 | ~KdInterior();
|
---|
164 |
|
---|
165 | /** \sa KdNode::IsLeaf() */
|
---|
166 | virtual bool IsLeaf() const { return false; }
|
---|
167 |
|
---|
168 | /** splitting axis */
|
---|
169 | int mAxis;
|
---|
170 | /** splitting position, absolute position within the bounding box of this node */
|
---|
171 | float mPosition;
|
---|
172 | /** bounding box of interior node */
|
---|
173 | AxisAlignedBox3 mBox;
|
---|
174 |
|
---|
175 | /** back node */
|
---|
176 | KdNode *mBack;
|
---|
177 | /** front node */
|
---|
178 | KdNode *mFront;
|
---|
179 |
|
---|
180 | void SetupChildLinks(KdNode *b, KdNode *f) {
|
---|
181 | mBack = b;
|
---|
182 | mFront = f;
|
---|
183 | b->mParent = f->mParent = this;
|
---|
184 | }
|
---|
185 |
|
---|
186 | void ReplaceChildLink(KdNode *oldChild, KdNode *newChild) {
|
---|
187 | if (mBack == oldChild)
|
---|
188 | mBack = newChild;
|
---|
189 | else
|
---|
190 | mFront = newChild;
|
---|
191 | }
|
---|
192 |
|
---|
193 |
|
---|
194 | };
|
---|
195 |
|
---|
196 | class SubdivisionCandidate;
|
---|
197 |
|
---|
198 | /** Implementation of the kd-tree leaf node */
|
---|
199 | class KdLeaf : public KdNode {
|
---|
200 | public:
|
---|
201 | KdLeaf(KdInterior *parent, const int objects):
|
---|
202 | KdNode(parent), mViewCell(NULL), mVboId(-1),
|
---|
203 | mIndexBufferStart(0), mIndexBufferSize(0) {
|
---|
204 | mObjects.reserve(objects);
|
---|
205 | }
|
---|
206 |
|
---|
207 | void AddPassingRay(const Ray &ray, const int contributions) {
|
---|
208 | mPassingRays.AddRay(ray, contributions);
|
---|
209 | // Debug << "adding passing ray" << endl;
|
---|
210 | }
|
---|
211 |
|
---|
212 | ~KdLeaf();
|
---|
213 |
|
---|
214 | void AddPassingRay2(const Ray &ray,
|
---|
215 | const int objects,
|
---|
216 | const int viewcells
|
---|
217 | ) {
|
---|
218 | mPassingRays.AddRay2(ray, objects, viewcells);
|
---|
219 | // Debug << "adding passing ray" << endl;
|
---|
220 | }
|
---|
221 |
|
---|
222 | /** \sa KdNode::IsLeaf()
|
---|
223 | */
|
---|
224 | virtual bool IsLeaf() const { return true; }
|
---|
225 |
|
---|
226 |
|
---|
227 | /// pointers to occluders contained in this node
|
---|
228 | ObjectContainer mObjects;
|
---|
229 | /// Ray set description of the rays passing through this node
|
---|
230 | PassingRaySet mPassingRays;
|
---|
231 | /// pointer to view cell.
|
---|
232 | KdViewCell *mViewCell;
|
---|
233 | /// rays intersecting this leaf
|
---|
234 | VssRayContainer mVssRays;
|
---|
235 | /// Objects that are referenced in more than one leaf.
|
---|
236 | ObjectContainer mMultipleObjects;
|
---|
237 | /// universal counter
|
---|
238 | int mCounter;
|
---|
239 |
|
---|
240 | /// hack
|
---|
241 | unsigned int mVboId;
|
---|
242 |
|
---|
243 | unsigned int mIndexBufferStart;
|
---|
244 | unsigned int mIndexBufferSize;
|
---|
245 | };
|
---|
246 |
|
---|
247 |
|
---|
248 | /** KdTree for indexing scene entities - occluders/occludees/viewcells */
|
---|
249 | class KdTree {
|
---|
250 |
|
---|
251 | protected:
|
---|
252 | struct TraversalData
|
---|
253 | {
|
---|
254 | KdNode *mNode;
|
---|
255 | AxisAlignedBox3 mBox;
|
---|
256 | int mDepth;
|
---|
257 | float mPriority;
|
---|
258 |
|
---|
259 | TraversalData() {}
|
---|
260 |
|
---|
261 | TraversalData(KdNode *n, const float p):
|
---|
262 | mNode(n), mPriority(p)
|
---|
263 | {}
|
---|
264 |
|
---|
265 | TraversalData(KdNode *n,
|
---|
266 | const AxisAlignedBox3 &b,
|
---|
267 | const int d):
|
---|
268 | mNode(n), mBox(b), mDepth(d) {}
|
---|
269 |
|
---|
270 |
|
---|
271 | bool operator<(const TraversalData &b) const {
|
---|
272 | KdLeaf *leafa = (KdLeaf *) mNode;
|
---|
273 | KdLeaf *leafb = (KdLeaf *) b.mNode;
|
---|
274 | return
|
---|
275 | leafa->mObjects.size()*mBox.SurfaceArea()
|
---|
276 | <
|
---|
277 | leafb->mObjects.size()*b.mBox.SurfaceArea();
|
---|
278 | }
|
---|
279 |
|
---|
280 |
|
---|
281 | // comparator for the
|
---|
282 | struct less_priority : public
|
---|
283 | std::binary_function<const TraversalData, const TraversalData, bool> {
|
---|
284 |
|
---|
285 | bool operator()(const TraversalData a, const TraversalData b) {
|
---|
286 | return a.mPriority < b.mPriority;
|
---|
287 | }
|
---|
288 |
|
---|
289 | };
|
---|
290 |
|
---|
291 | };
|
---|
292 |
|
---|
293 |
|
---|
294 |
|
---|
295 | public:
|
---|
296 |
|
---|
297 | enum {SPLIT_OBJECT_MEDIAN,
|
---|
298 | SPLIT_SPATIAL_MEDIAN,
|
---|
299 | SPLIT_SAH};
|
---|
300 |
|
---|
301 | KdTree();
|
---|
302 |
|
---|
303 | ~KdTree();
|
---|
304 |
|
---|
305 | /** Insert view cell into the tree */
|
---|
306 | virtual void InsertViewCell(ViewCell *viewCell) {
|
---|
307 | // mRoot->mViewcells.push_back(viewCell);
|
---|
308 | }
|
---|
309 |
|
---|
310 | virtual bool Construct();
|
---|
311 |
|
---|
312 | /** Check whether subdivision criteria are met for the given subtree.
|
---|
313 | If not subdivide the leafs of the subtree. The criteria are specified in
|
---|
314 | the environment as well as the subdivision method. By default surface area
|
---|
315 | heuristics is used.
|
---|
316 |
|
---|
317 | @param subtree root of the subtree
|
---|
318 |
|
---|
319 | @return true if subdivision was performed, false if subdivision criteria
|
---|
320 | were already met
|
---|
321 | */
|
---|
322 | virtual KdNode *Subdivide(const TraversalData &tdata);
|
---|
323 |
|
---|
324 | /** Get the root of the tree */
|
---|
325 | KdNode *GetRoot() const {
|
---|
326 | return mRoot;
|
---|
327 | }
|
---|
328 |
|
---|
329 |
|
---|
330 | AxisAlignedBox3 GetBox() const { return mBox; }
|
---|
331 |
|
---|
332 | int
|
---|
333 | CastRay(
|
---|
334 | Ray &ray
|
---|
335 | );
|
---|
336 |
|
---|
337 |
|
---|
338 | int
|
---|
339 | CastBeam(
|
---|
340 | Beam &beam
|
---|
341 | );
|
---|
342 |
|
---|
343 |
|
---|
344 | /** Casts line segment into tree.
|
---|
345 | @returns intersected view cells.
|
---|
346 | */
|
---|
347 | int CastLineSegment(const Vector3 &origin,
|
---|
348 | const Vector3 &termination,
|
---|
349 | vector<ViewCell *> &viewcells);
|
---|
350 |
|
---|
351 | // old version
|
---|
352 | int CastLineSegment2(const Vector3 &origin,
|
---|
353 | const Vector3 &termination,
|
---|
354 | vector<ViewCell *> &viewcells);
|
---|
355 |
|
---|
356 | const KdTreeStatistics &GetStatistics() const {
|
---|
357 | return mStat;
|
---|
358 | }
|
---|
359 |
|
---|
360 | /** Returns or creates a new intersectable for use in a kd based pvs.
|
---|
361 | */
|
---|
362 | KdIntersectable *GetOrCreateKdIntersectable(KdNode *node);
|
---|
363 |
|
---|
364 |
|
---|
365 | void
|
---|
366 | SetPvsTerminationNodes(const float maxArea);
|
---|
367 |
|
---|
368 | float
|
---|
369 | GetPvsArea() const;
|
---|
370 |
|
---|
371 | KdNode *
|
---|
372 | GetPvsNode(const Vector3 &point) const;
|
---|
373 |
|
---|
374 |
|
---|
375 | void
|
---|
376 | CollectKdObjects(const AxisAlignedBox3 &box,
|
---|
377 | ObjectContainer &objects
|
---|
378 | );
|
---|
379 |
|
---|
380 | // colect objects which are in the bounding box by explictly specifying the
|
---|
381 | // allowed size of the boxes. If this size is smaller than size used for pvs entries
|
---|
382 | // filtering will be more precise
|
---|
383 | void
|
---|
384 | CollectSmallKdObjects(const AxisAlignedBox3 &box,
|
---|
385 | ObjectContainer &objects,
|
---|
386 | const float maxArea
|
---|
387 | );
|
---|
388 |
|
---|
389 | void
|
---|
390 | CollectObjects(KdNode *n, ObjectContainer &objects);
|
---|
391 | void
|
---|
392 | CollectObjectsWithoutMail(KdNode *n, ObjectContainer &objects);
|
---|
393 | void
|
---|
394 | CollectObjects(const AxisAlignedBox3 &box, ObjectContainer &objects);
|
---|
395 |
|
---|
396 | void
|
---|
397 | CollectLeaves(vector<KdLeaf *> &leaves);
|
---|
398 |
|
---|
399 | /** If the kd tree is used as view cell container, this
|
---|
400 | methods creates the view cells.
|
---|
401 | @returns the newly created view cells in a view cell container
|
---|
402 | */
|
---|
403 | void
|
---|
404 | CreateAndCollectViewCells(ViewCellContainer &viewCells) const;
|
---|
405 |
|
---|
406 | AxisAlignedBox3 GetBox(const KdNode *node) const {
|
---|
407 | KdInterior *parent = node->mParent;
|
---|
408 | if (parent == NULL)
|
---|
409 | return mBox;
|
---|
410 |
|
---|
411 | if (!node->IsLeaf())
|
---|
412 | return ((KdInterior *)node)->mBox;
|
---|
413 |
|
---|
414 | AxisAlignedBox3 box(parent->mBox);
|
---|
415 | if (parent->mFront == node)
|
---|
416 | box.SetMin(parent->mAxis, parent->mPosition);
|
---|
417 | else
|
---|
418 | box.SetMax(parent->mAxis, parent->mPosition);
|
---|
419 | return box;
|
---|
420 | }
|
---|
421 |
|
---|
422 | float GetSurfaceArea(const KdNode *node) const {
|
---|
423 | return GetBox(node).SurfaceArea();
|
---|
424 | }
|
---|
425 |
|
---|
426 |
|
---|
427 | KdNode *
|
---|
428 | FindRandomNeighbor(KdNode *n,
|
---|
429 | bool onlyUnmailed
|
---|
430 | );
|
---|
431 |
|
---|
432 | KdNode *
|
---|
433 | GetRandomLeaf(const Plane3 &halfspace);
|
---|
434 |
|
---|
435 | KdNode *
|
---|
436 | GetRandomLeaf(const bool onlyUnmailed = false);
|
---|
437 |
|
---|
438 |
|
---|
439 | KdNode *
|
---|
440 | GetNode(const Vector3 &point, const float maxArea) const;
|
---|
441 |
|
---|
442 | void GetBoxIntersections(const AxisAlignedBox3 &box,
|
---|
443 | vector<KdLeaf *> &leaves);
|
---|
444 |
|
---|
445 | int
|
---|
446 | FindNeighbors(KdNode *n,
|
---|
447 | vector<KdNode *> &neighbors,
|
---|
448 | bool onlyUnmailed
|
---|
449 | );
|
---|
450 |
|
---|
451 | bool ExportBinTree(const std::string &filename);
|
---|
452 | /** loads kd tree from disk. note: sorts objects by id
|
---|
453 | */
|
---|
454 | bool ImportBinTree(const std::string &filename, ObjectContainer &object);
|
---|
455 |
|
---|
456 | protected:
|
---|
457 |
|
---|
458 | struct RayData {
|
---|
459 | // pointer to the actual ray
|
---|
460 | Ray *ray;
|
---|
461 |
|
---|
462 | // endpoints - do we need them?
|
---|
463 | #if USE_FIXEDPOINT_T
|
---|
464 | short tmin, tmax;
|
---|
465 | #else
|
---|
466 | float tmin, tmax;
|
---|
467 | #endif
|
---|
468 |
|
---|
469 | RayData():ray(NULL) {}
|
---|
470 | RayData(Ray *r):ray(r), tmin(0),
|
---|
471 |
|
---|
472 | #if USE_FIXEDPOINT_T
|
---|
473 | #define FIXEDPOINT_ONE 0x7FFE
|
---|
474 | // tmax(0xFFFF)
|
---|
475 | tmax(FIXEDPOINT_ONE)
|
---|
476 | #else
|
---|
477 | tmax(1.0f)
|
---|
478 | #endif
|
---|
479 | {}
|
---|
480 |
|
---|
481 | RayData(Ray *r,
|
---|
482 | const float _min,
|
---|
483 | const float _max
|
---|
484 | ):ray(r) {
|
---|
485 | SetTMin(_min);
|
---|
486 | SetTMax(_max);
|
---|
487 | }
|
---|
488 |
|
---|
489 | RayData(Ray *r,
|
---|
490 | const short _min,
|
---|
491 | const float _max
|
---|
492 | ):ray(r), tmin(_min) {
|
---|
493 | SetTMax(_max);
|
---|
494 | }
|
---|
495 |
|
---|
496 | RayData(Ray *r,
|
---|
497 | const float _min,
|
---|
498 | const short _max
|
---|
499 | ):ray(r), tmax(_max) {
|
---|
500 | SetTMin(_min);
|
---|
501 | }
|
---|
502 |
|
---|
503 | friend bool operator<(const RayData &a, const RayData &b) {
|
---|
504 | return a.ray < b.ray;
|
---|
505 | }
|
---|
506 |
|
---|
507 |
|
---|
508 | float ExtrapOrigin(const int axis) const {
|
---|
509 | return ray->GetLoc(axis) + GetTMin()*ray->GetDir(axis);
|
---|
510 | }
|
---|
511 |
|
---|
512 | float ExtrapTermination(const int axis) const {
|
---|
513 | return ray->GetLoc(axis) + GetTMax()*ray->GetDir(axis);
|
---|
514 | }
|
---|
515 |
|
---|
516 | #if USE_FIXEDPOINT_T
|
---|
517 | float GetTMin () const { return tmin/(float)(FIXEDPOINT_ONE); }
|
---|
518 | float GetTMax () const { return tmax/(float)(FIXEDPOINT_ONE); }
|
---|
519 |
|
---|
520 | void SetTMin (const float t) {
|
---|
521 | tmin = (short) (t*(float)(FIXEDPOINT_ONE));
|
---|
522 | }
|
---|
523 |
|
---|
524 | void SetTMax (const float t) {
|
---|
525 | tmax = (short) (t*(float)(FIXEDPOINT_ONE));
|
---|
526 | tmax++;
|
---|
527 | // if (tmax!=0xFFFF)
|
---|
528 | // tmax++;
|
---|
529 | }
|
---|
530 | #else
|
---|
531 | float GetTMin () const { return tmin; }
|
---|
532 | float GetTMax () const { return tmax; }
|
---|
533 |
|
---|
534 | void SetTMin (const float t) { tmin = t; }
|
---|
535 | void SetTMax (const float t) { tmax = t; }
|
---|
536 | #endif
|
---|
537 | };
|
---|
538 |
|
---|
539 | struct RayTraversalData {
|
---|
540 | KdNode *mNode;
|
---|
541 | Vector3 mExitPoint;
|
---|
542 | float mMaxT;
|
---|
543 |
|
---|
544 | RayTraversalData() {}
|
---|
545 | RayTraversalData(KdNode *n,
|
---|
546 | const Vector3 &p,
|
---|
547 | const float maxt):
|
---|
548 | mNode(n), mExitPoint(p), mMaxT(maxt) {}
|
---|
549 | };
|
---|
550 |
|
---|
551 | // --------------------------------------------------------------
|
---|
552 | // For sorting objects
|
---|
553 | // --------------------------------------------------------------
|
---|
554 | struct SortableEntry
|
---|
555 | {
|
---|
556 | enum {
|
---|
557 | BOX_MIN,
|
---|
558 | BOX_MAX
|
---|
559 | };
|
---|
560 |
|
---|
561 | int type;
|
---|
562 | float value;
|
---|
563 | Intersectable *intersectable;
|
---|
564 |
|
---|
565 | SortableEntry() {}
|
---|
566 | SortableEntry(const int t, const float v, Intersectable *i):
|
---|
567 | type(t), value(v), intersectable(i)
|
---|
568 | { }
|
---|
569 |
|
---|
570 | bool operator<(const SortableEntry &b) const {
|
---|
571 | return value < b.value;
|
---|
572 | }
|
---|
573 |
|
---|
574 | };
|
---|
575 |
|
---|
576 | inline static bool iltS(SortableEntry *a, SortableEntry *b)
|
---|
577 | {
|
---|
578 | return a->value < b->value;
|
---|
579 | }
|
---|
580 |
|
---|
581 | // reusable array of split candidates
|
---|
582 | vector<SortableEntry *> *splitCandidates;
|
---|
583 |
|
---|
584 | float
|
---|
585 | BestCostRatio(
|
---|
586 | KdLeaf *node,
|
---|
587 | const AxisAlignedBox3 &box,
|
---|
588 | const int axis,
|
---|
589 | float &position,
|
---|
590 | int &objectsBack,
|
---|
591 | int &objectsFront
|
---|
592 | );
|
---|
593 |
|
---|
594 | void
|
---|
595 | SortSubdivisionCandidates(
|
---|
596 | KdLeaf *node,
|
---|
597 | const int axis
|
---|
598 | );
|
---|
599 |
|
---|
600 | void
|
---|
601 | EvaluateLeafStats(const TraversalData &data);
|
---|
602 |
|
---|
603 | KdNode *
|
---|
604 | SubdivideNode(
|
---|
605 | KdLeaf *leaf,
|
---|
606 | const AxisAlignedBox3 &box,
|
---|
607 | AxisAlignedBox3 &backBBox,
|
---|
608 | AxisAlignedBox3 &frontBBox
|
---|
609 | );
|
---|
610 |
|
---|
611 | bool
|
---|
612 | TerminationCriteriaMet(const KdLeaf *leaf);
|
---|
613 |
|
---|
614 | int
|
---|
615 | SelectPlane(KdLeaf *leaf,
|
---|
616 | const AxisAlignedBox3 &box,
|
---|
617 | float &position
|
---|
618 | );
|
---|
619 |
|
---|
620 | /** does some post processing on the objects in the new child leaves.
|
---|
621 | */
|
---|
622 | void ProcessMultipleRefs(KdLeaf *leaf) const;
|
---|
623 |
|
---|
624 |
|
---|
625 | //////////
|
---|
626 | // binary import / export
|
---|
627 |
|
---|
628 | void ExportBinLeaf(OUT_STREAM &stream, KdLeaf *leaf);
|
---|
629 |
|
---|
630 | void ExportBinInterior(OUT_STREAM &stream, KdInterior *interior);
|
---|
631 |
|
---|
632 | KdLeaf *ImportBinLeaf(IN_STREAM &stream, KdInterior *parent,
|
---|
633 | const ObjectContainer &objects);
|
---|
634 |
|
---|
635 | KdInterior *ImportBinInterior(IN_STREAM &stream, KdInterior *parent);
|
---|
636 |
|
---|
637 | KdNode *ImportNextNode(IN_STREAM &stream, KdInterior *parent,
|
---|
638 | const ObjectContainer &objects);
|
---|
639 |
|
---|
640 | /** Adds this objects to the kd leaf objects.
|
---|
641 | @warning: Can corrupt the tree
|
---|
642 | */
|
---|
643 | void InsertObjects(KdNode *node, const ObjectContainer &objects);
|
---|
644 |
|
---|
645 | int mTermMaxNodes;
|
---|
646 | float mSplitBorder;
|
---|
647 | int mTermMaxDepth;
|
---|
648 | int mTermMinCost;
|
---|
649 | float mMaxCostRatio;
|
---|
650 | float mCt_div_ci;
|
---|
651 | int mSplitMethod;
|
---|
652 | bool mSahUseFaces;
|
---|
653 | float mKdPvsArea;
|
---|
654 | /// root of the tree
|
---|
655 | KdNode *mRoot;
|
---|
656 | /// bounding box of the tree root
|
---|
657 | AxisAlignedBox3 mBox;
|
---|
658 | KdTreeStatistics mStat;
|
---|
659 |
|
---|
660 | public:
|
---|
661 | /// stores the kd node intersectables used for pvs
|
---|
662 | vector<KdIntersectable *> mKdIntersectables;
|
---|
663 |
|
---|
664 | };
|
---|
665 |
|
---|
666 |
|
---|
667 | }
|
---|
668 |
|
---|
669 | #endif
|
---|