[1237] | 1 | #ifndef _BvHierarchy_H__
|
---|
| 2 | #define _BvHierarchy_H__
|
---|
| 3 |
|
---|
| 4 | #include <stack>
|
---|
| 5 |
|
---|
| 6 | #include "Mesh.h"
|
---|
| 7 | #include "Containers.h"
|
---|
| 8 | #include "Statistics.h"
|
---|
| 9 | #include "VssRay.h"
|
---|
| 10 | #include "RayInfo.h"
|
---|
| 11 | #include "gzstream.h"
|
---|
[1239] | 12 | #include "SubdivisionCandidate.h"
|
---|
[1237] | 13 | #include "AxisAlignedBox3.h"
|
---|
[1315] | 14 | #include "IntersectableWrapper.h"
|
---|
[1237] | 15 |
|
---|
| 16 |
|
---|
| 17 | namespace GtpVisibilityPreprocessor {
|
---|
| 18 |
|
---|
| 19 |
|
---|
| 20 | class ViewCellLeaf;
|
---|
| 21 | class Plane3;
|
---|
| 22 | class AxisAlignedBox3;
|
---|
| 23 | class Ray;
|
---|
| 24 | class ViewCellsStatistics;
|
---|
| 25 | class ViewCellsManager;
|
---|
| 26 | class MergeCandidate;
|
---|
| 27 | class Beam;
|
---|
| 28 | class ViewCellsTree;
|
---|
| 29 | class Environment;
|
---|
| 30 | class BvhInterior;
|
---|
| 31 | class BvhLeaf;
|
---|
| 32 | class BvhNode;
|
---|
| 33 | class BvhIntersectable;
|
---|
| 34 | class BvhTree;
|
---|
| 35 | class VspTree;
|
---|
| 36 | class ViewCellsContainer;
|
---|
[1302] | 37 | //class BvhSubdivisionCandidate;
|
---|
[1237] | 38 |
|
---|
[1297] | 39 |
|
---|
[1237] | 40 | /** View space partition statistics.
|
---|
| 41 | */
|
---|
| 42 | class BvhStatistics: public StatisticsBase
|
---|
| 43 | {
|
---|
| 44 | public:
|
---|
| 45 | // total number of nodes
|
---|
| 46 | int nodes;
|
---|
| 47 | // number of splits
|
---|
| 48 | int splits;
|
---|
| 49 | // maximal reached depth
|
---|
| 50 | int maxDepth;
|
---|
| 51 | // minimal depth
|
---|
| 52 | int minDepth;
|
---|
| 53 | // max depth nodes
|
---|
| 54 | int maxDepthNodes;
|
---|
| 55 | // minimum depth nodes
|
---|
| 56 | int minDepthNodes;
|
---|
[1288] | 57 | // nodes with minimum objects
|
---|
| 58 | int minObjectsNodes;
|
---|
[1237] | 59 | // minimum area nodes
|
---|
| 60 | int minProbabilityNodes;
|
---|
| 61 | /// nodes termination because of max cost ratio;
|
---|
| 62 | int maxCostNodes;
|
---|
| 63 | // max number of rays per node
|
---|
| 64 | int maxObjectRefs;
|
---|
| 65 | /// number of invalid leaves
|
---|
| 66 | int invalidLeaves;
|
---|
| 67 | /// accumulated number of rays refs
|
---|
| 68 | //int accumRays;
|
---|
| 69 | // accumulated depth (used to compute average)
|
---|
| 70 | int accumDepth;
|
---|
| 71 | /// object references
|
---|
| 72 | int objectRefs;
|
---|
| 73 |
|
---|
| 74 | // Constructor
|
---|
| 75 | BvhStatistics()
|
---|
| 76 | {
|
---|
| 77 | Reset();
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | int Nodes() const {return nodes;}
|
---|
| 81 | int Interior() const { return nodes / 2; }
|
---|
| 82 | int Leaves() const { return (nodes / 2) + 1; }
|
---|
| 83 |
|
---|
| 84 | // TODO: computation wrong
|
---|
| 85 | double AvgDepth() const
|
---|
| 86 | { return accumDepth / (double)Leaves(); }
|
---|
| 87 |
|
---|
| 88 | void Reset()
|
---|
| 89 | {
|
---|
| 90 | nodes = 0;
|
---|
| 91 | splits = 0;
|
---|
| 92 |
|
---|
| 93 | maxDepth = 0;
|
---|
| 94 | minDepth = 99999;
|
---|
| 95 | accumDepth = 0;
|
---|
| 96 | maxDepthNodes = 0;
|
---|
[1288] | 97 | minObjectsNodes = 0;
|
---|
[1237] | 98 | minProbabilityNodes = 0;
|
---|
| 99 | maxCostNodes = 0;
|
---|
| 100 | invalidLeaves = 0;
|
---|
| 101 | maxObjectRefs = 0;
|
---|
| 102 | objectRefs = 0;
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | void Print(ostream &app) const;
|
---|
| 106 |
|
---|
| 107 | friend ostream &operator<<(ostream &s, const BvhStatistics &stat)
|
---|
| 108 | {
|
---|
| 109 | stat.Print(s);
|
---|
| 110 | return s;
|
---|
| 111 | }
|
---|
| 112 | };
|
---|
| 113 |
|
---|
| 114 |
|
---|
| 115 | /**
|
---|
| 116 | VspNode abstract class serving for interior and leaf node implementation
|
---|
| 117 | */
|
---|
| 118 | class BvhNode
|
---|
| 119 | {
|
---|
| 120 | public:
|
---|
| 121 |
|
---|
| 122 | // types of vsp nodes
|
---|
| 123 | enum {Interior, Leaf};
|
---|
| 124 |
|
---|
[1297] | 125 | BvhNode();
|
---|
[1237] | 126 | BvhNode(const AxisAlignedBox3 &bbox);
|
---|
| 127 | BvhNode(const AxisAlignedBox3 &bbox, BvhInterior *parent);
|
---|
| 128 |
|
---|
| 129 | virtual ~BvhNode(){};
|
---|
| 130 |
|
---|
| 131 | /** Determines whether this node is a leaf or not
|
---|
| 132 | @return true if leaf
|
---|
| 133 | */
|
---|
| 134 | virtual bool IsLeaf() const = 0;
|
---|
| 135 |
|
---|
| 136 | /** Determines whether this node is a root
|
---|
| 137 | @return true if root
|
---|
| 138 | */
|
---|
| 139 | virtual bool IsRoot() const;
|
---|
| 140 |
|
---|
| 141 | /** Returns parent node.
|
---|
| 142 | */
|
---|
| 143 | BvhInterior *GetParent();
|
---|
| 144 |
|
---|
| 145 | /** Sets parent node.
|
---|
| 146 | */
|
---|
| 147 | void SetParent(BvhInterior *parent);
|
---|
| 148 |
|
---|
| 149 | /** The bounding box specifies the node extent.
|
---|
| 150 | */
|
---|
| 151 | AxisAlignedBox3 GetBoundingBox() const
|
---|
| 152 | { return mBoundingBox; }
|
---|
| 153 |
|
---|
| 154 |
|
---|
| 155 | void SetBoundingBox(const AxisAlignedBox3 &boundingBox)
|
---|
| 156 | { mBoundingBox = boundingBox; }
|
---|
| 157 |
|
---|
| 158 |
|
---|
[1291] | 159 | /////////////////////////////////////
|
---|
[1237] | 160 | //-- mailing options
|
---|
[1291] | 161 |
|
---|
| 162 | static void NewMail(const int reserve = 1) {
|
---|
| 163 | sMailId += sReservedMailboxes;
|
---|
| 164 | sReservedMailboxes = reserve;
|
---|
| 165 | }
|
---|
| 166 |
|
---|
[1237] | 167 | void Mail() { mMailbox = sMailId; }
|
---|
| 168 | bool Mailed() const { return mMailbox == sMailId; }
|
---|
| 169 |
|
---|
[1291] | 170 | void Mail(const int mailbox) { mMailbox = sMailId + mailbox; }
|
---|
| 171 | bool Mailed(const int mailbox) const { return mMailbox == sMailId + mailbox; }
|
---|
| 172 |
|
---|
| 173 | int IncMail() { return ++ mMailbox - sMailId; }
|
---|
| 174 |
|
---|
[1237] | 175 | static int sMailId;
|
---|
| 176 | int mMailbox;
|
---|
[1291] | 177 | static int sReservedMailboxes;
|
---|
[1237] | 178 |
|
---|
| 179 | ///////////////////////////////////
|
---|
| 180 |
|
---|
| 181 | protected:
|
---|
| 182 |
|
---|
| 183 | /// the bounding box of the node
|
---|
| 184 | AxisAlignedBox3 mBoundingBox;
|
---|
| 185 | /// parent of this node
|
---|
| 186 | BvhInterior *mParent;
|
---|
| 187 | };
|
---|
| 188 |
|
---|
| 189 |
|
---|
| 190 | /** BSP interior node implementation
|
---|
| 191 | */
|
---|
| 192 | class BvhInterior: public BvhNode
|
---|
| 193 | {
|
---|
| 194 | public:
|
---|
| 195 | /** Standard contructor taking a bounding box as argument.
|
---|
| 196 | */
|
---|
| 197 | BvhInterior(const AxisAlignedBox3 &bbox);
|
---|
| 198 | BvhInterior(const AxisAlignedBox3 &bbox, BvhInterior *parent);
|
---|
| 199 |
|
---|
| 200 | ~BvhInterior();
|
---|
| 201 | /** @return false since it is an interior node
|
---|
| 202 | */
|
---|
| 203 | bool IsLeaf() const;
|
---|
[1294] | 204 |
|
---|
[1237] | 205 | BvhNode *GetBack() { return mBack; }
|
---|
| 206 | BvhNode *GetFront() { return mFront; }
|
---|
| 207 |
|
---|
| 208 | /** Replace front or back child with new child.
|
---|
| 209 | */
|
---|
| 210 | void ReplaceChildLink(BvhNode *oldChild, BvhNode *newChild);
|
---|
| 211 |
|
---|
| 212 | /** Replace front and back child.
|
---|
| 213 | */
|
---|
| 214 | void SetupChildLinks(BvhNode *front, BvhNode *back);
|
---|
| 215 |
|
---|
| 216 | friend ostream &operator<<(ostream &s, const BvhInterior &A)
|
---|
| 217 | {
|
---|
| 218 | return s << A.mBoundingBox;
|
---|
| 219 | }
|
---|
| 220 |
|
---|
| 221 | protected:
|
---|
| 222 |
|
---|
| 223 | /// back node
|
---|
| 224 | BvhNode *mBack;
|
---|
| 225 | /// front node
|
---|
| 226 | BvhNode *mFront;
|
---|
| 227 | };
|
---|
| 228 |
|
---|
| 229 |
|
---|
| 230 | /** BSP leaf node implementation.
|
---|
| 231 | */
|
---|
| 232 | class BvhLeaf: public BvhNode
|
---|
| 233 | {
|
---|
| 234 | public:
|
---|
| 235 | /** Standard contructor taking a bounding box as argument.
|
---|
| 236 | */
|
---|
| 237 | BvhLeaf(const AxisAlignedBox3 &bbox);
|
---|
| 238 | BvhLeaf(const AxisAlignedBox3 &bbox, BvhInterior *parent);
|
---|
| 239 | BvhLeaf(const AxisAlignedBox3 &bbox, BvhInterior *parent, const int numObjects);
|
---|
| 240 |
|
---|
| 241 | ~BvhLeaf();
|
---|
| 242 |
|
---|
| 243 | /** @return true since it is an interior node
|
---|
| 244 | */
|
---|
| 245 | bool IsLeaf() const;
|
---|
| 246 |
|
---|
[1297] | 247 | SubdivisionCandidate *GetSubdivisionCandidate()// const
|
---|
[1237] | 248 | {
|
---|
| 249 | return mSubdivisionCandidate;
|
---|
| 250 | }
|
---|
| 251 |
|
---|
[1297] | 252 | void SetSubdivisionCandidate(SubdivisionCandidate *candidate)
|
---|
| 253 | {
|
---|
| 254 | mSubdivisionCandidate = candidate;
|
---|
| 255 | }
|
---|
| 256 |
|
---|
[1237] | 257 | public:
|
---|
| 258 |
|
---|
| 259 | /// Rays piercing this leaf.
|
---|
| 260 | VssRayContainer mVssRays;
|
---|
| 261 | /// objects
|
---|
| 262 | ObjectContainer mObjects;
|
---|
[1259] | 263 | /// universal counter
|
---|
| 264 | int mCounter;
|
---|
[1287] | 265 |
|
---|
[1237] | 266 | protected:
|
---|
| 267 |
|
---|
| 268 | /// pointer to a split plane candidate splitting this leaf
|
---|
| 269 | SubdivisionCandidate *mSubdivisionCandidate;
|
---|
| 270 | };
|
---|
| 271 |
|
---|
| 272 |
|
---|
| 273 | typedef map<BvhNode *, BvhIntersectable *> BvhIntersectableMap;
|
---|
| 274 |
|
---|
| 275 |
|
---|
| 276 | /** View Space Partitioning tree.
|
---|
| 277 | */
|
---|
| 278 | class BvHierarchy
|
---|
| 279 | {
|
---|
| 280 | friend class ViewCellsParseHandlers;
|
---|
| 281 | friend class HierarchyManager;
|
---|
| 282 |
|
---|
| 283 | public:
|
---|
| 284 |
|
---|
| 285 | /** Additional data which is passed down the BSP tree during traversal.
|
---|
| 286 | */
|
---|
| 287 | class BvhTraversalData
|
---|
| 288 | {
|
---|
| 289 | public:
|
---|
[1294] | 290 |
|
---|
[1237] | 291 | BvhTraversalData():
|
---|
| 292 | mNode(NULL),
|
---|
| 293 | mDepth(0),
|
---|
[1287] | 294 | mProbability(0.0),
|
---|
[1237] | 295 | mMaxCostMisses(0),
|
---|
| 296 | mPriority(0),
|
---|
| 297 | mAxis(0)
|
---|
| 298 | {}
|
---|
| 299 |
|
---|
| 300 | BvhTraversalData(BvhLeaf *node,
|
---|
| 301 | const int depth,
|
---|
[1287] | 302 | const AxisAlignedBox3 &box,
|
---|
[1237] | 303 | const float v):
|
---|
| 304 | mNode(node),
|
---|
| 305 | mDepth(depth),
|
---|
[1287] | 306 | mBoundingBox(box),
|
---|
| 307 | mProbability(v),
|
---|
[1237] | 308 | mMaxCostMisses(0),
|
---|
| 309 | mPriority(0),
|
---|
| 310 | mAxis(0)
|
---|
| 311 | {}
|
---|
| 312 |
|
---|
| 313 |
|
---|
| 314 | /** Returns cost of the traversal data.
|
---|
| 315 | */
|
---|
| 316 | float GetCost() const
|
---|
| 317 | {
|
---|
| 318 | return mPriority;
|
---|
| 319 | }
|
---|
| 320 |
|
---|
| 321 | /// deletes contents and sets them to NULL
|
---|
| 322 | void Clear()
|
---|
| 323 | {
|
---|
[1294] | 324 | DEL_PTR(mNode);
|
---|
[1237] | 325 | }
|
---|
| 326 |
|
---|
[1294] | 327 | /// the current node
|
---|
| 328 | BvhLeaf *mNode;
|
---|
| 329 | /// current depth
|
---|
| 330 | int mDepth;
|
---|
| 331 | /// the probability that this node is seen
|
---|
| 332 | float mProbability;
|
---|
| 333 | /// the bounding box of the node
|
---|
| 334 | AxisAlignedBox3 mBoundingBox;
|
---|
| 335 | /// how often this branch has missed the max-cost ratio
|
---|
| 336 | int mMaxCostMisses;
|
---|
| 337 | /// current axis
|
---|
| 338 | int mAxis;
|
---|
| 339 | /// current priority
|
---|
| 340 | float mPriority;
|
---|
| 341 |
|
---|
| 342 |
|
---|
[1237] | 343 | friend bool operator<(const BvhTraversalData &a, const BvhTraversalData &b)
|
---|
| 344 | {
|
---|
| 345 | return a.GetCost() < b.GetCost();
|
---|
| 346 | }
|
---|
| 347 | };
|
---|
| 348 |
|
---|
| 349 | /** Candidate for a view space split.
|
---|
| 350 | */
|
---|
| 351 | class BvhSubdivisionCandidate: public SubdivisionCandidate
|
---|
| 352 | {
|
---|
| 353 | public:
|
---|
| 354 |
|
---|
[1294] | 355 | BvhSubdivisionCandidate(const BvhTraversalData &tData): mParentData(tData)
|
---|
[1237] | 356 | {};
|
---|
| 357 |
|
---|
[1305] | 358 | ~BvhSubdivisionCandidate()
|
---|
| 359 | {
|
---|
| 360 | mParentData.Clear();
|
---|
| 361 | }
|
---|
[1294] | 362 |
|
---|
[1237] | 363 | int Type() const { return OBJECT_SPACE; }
|
---|
| 364 |
|
---|
| 365 | void EvalPriority()
|
---|
| 366 | {
|
---|
| 367 | sBvHierarchy->EvalSubdivisionCandidate(*this);
|
---|
| 368 | }
|
---|
| 369 |
|
---|
| 370 | bool GlobalTerminationCriteriaMet() const
|
---|
| 371 | {
|
---|
| 372 | return sBvHierarchy->GlobalTerminationCriteriaMet(mParentData);
|
---|
| 373 | }
|
---|
| 374 |
|
---|
| 375 | BvhSubdivisionCandidate(
|
---|
| 376 | const ObjectContainer &frontObjects,
|
---|
| 377 | const ObjectContainer &backObjects,
|
---|
| 378 | const BvhTraversalData &tData):
|
---|
| 379 | mFrontObjects(frontObjects), mBackObjects(backObjects), mParentData(tData)
|
---|
| 380 | {}
|
---|
[1294] | 381 |
|
---|
[1305] | 382 | /// pointer to parent tree.
|
---|
[1294] | 383 | static BvHierarchy *sBvHierarchy;
|
---|
| 384 | /// parent data
|
---|
| 385 | BvhTraversalData mParentData;
|
---|
[1305] | 386 | /// the objects on the front of the potential split
|
---|
[1294] | 387 | ObjectContainer mFrontObjects;
|
---|
[1305] | 388 | /// the objects on the back of the potential split
|
---|
[1294] | 389 | ObjectContainer mBackObjects;
|
---|
[1237] | 390 | };
|
---|
| 391 |
|
---|
| 392 | /** Struct for traversing line segment.
|
---|
| 393 | */
|
---|
| 394 | struct LineTraversalData
|
---|
| 395 | {
|
---|
| 396 | BvhNode *mNode;
|
---|
| 397 | Vector3 mExitPoint;
|
---|
| 398 |
|
---|
| 399 | float mMaxT;
|
---|
| 400 |
|
---|
| 401 | LineTraversalData () {}
|
---|
| 402 | LineTraversalData (BvhNode *n, const Vector3 &p, const float maxt):
|
---|
| 403 | mNode(n), mExitPoint(p), mMaxT(maxt) {}
|
---|
| 404 | };
|
---|
| 405 |
|
---|
| 406 |
|
---|
| 407 | /** Default constructor creating an empty tree.
|
---|
| 408 | */
|
---|
| 409 | BvHierarchy();
|
---|
| 410 |
|
---|
| 411 | /** Default destructor.
|
---|
| 412 | */
|
---|
| 413 | ~BvHierarchy();
|
---|
| 414 |
|
---|
| 415 | /** Returns tree statistics.
|
---|
| 416 | */
|
---|
| 417 | const BvhStatistics &GetStatistics() const;
|
---|
| 418 |
|
---|
| 419 | /** Returns bounding box of the specified node.
|
---|
| 420 | */
|
---|
| 421 | AxisAlignedBox3 GetBoundingBox(BvhNode *node) const;
|
---|
| 422 |
|
---|
| 423 | /** Reads parameters from environment singleton.
|
---|
| 424 | */
|
---|
| 425 | void ReadEnvironment();
|
---|
| 426 |
|
---|
| 427 | /** Evaluates candidate for splitting.
|
---|
| 428 | */
|
---|
| 429 | void EvalSubdivisionCandidate(BvhSubdivisionCandidate &splitData);
|
---|
| 430 |
|
---|
| 431 | /** Returns list of leaves with pvs smaller than
|
---|
| 432 | a certain threshold.
|
---|
| 433 | @param onlyUnmailed if only the unmailed leaves should be considered
|
---|
| 434 | @param maxPvs the maximal pvs of a leaf to be added (-1 means unlimited)
|
---|
| 435 | */
|
---|
| 436 | void CollectLeaves(vector<BvhLeaf *> &leaves) const;
|
---|
| 437 |
|
---|
| 438 | /** Returns bounding box of the whole tree (= bbox of root node)
|
---|
| 439 | */
|
---|
| 440 | AxisAlignedBox3 GetBoundingBox()const;
|
---|
| 441 |
|
---|
| 442 | /** Returns root of the view space partitioning tree.
|
---|
| 443 | */
|
---|
| 444 | BvhNode *GetRoot() const;
|
---|
| 445 |
|
---|
| 446 | /** A ray is cast possible intersecting the tree.
|
---|
| 447 | @param the ray that is cast.
|
---|
| 448 | @returns the number of intersections with objects stored in the tree.
|
---|
| 449 | */
|
---|
| 450 | //int CastRay(Ray &ray);
|
---|
| 451 |
|
---|
| 452 | /** finds neighbouring leaves of this tree node.
|
---|
| 453 | */
|
---|
| 454 | int FindNeighbors(BvhLeaf *n,
|
---|
| 455 | vector<BvhLeaf *> &neighbors,
|
---|
| 456 | const bool onlyUnmailed) const;
|
---|
| 457 |
|
---|
| 458 | /** Returns random leaf of BSP tree.
|
---|
| 459 | @param halfspace defines the halfspace from which the leaf is taken.
|
---|
| 460 | */
|
---|
| 461 | BvhLeaf *GetRandomLeaf(const Plane3 &halfspace);
|
---|
| 462 |
|
---|
| 463 | /** Returns random leaf of BSP tree.
|
---|
| 464 | @param onlyUnmailed if only unmailed leaves should be returned.
|
---|
| 465 | */
|
---|
| 466 | BvhLeaf *GetRandomLeaf(const bool onlyUnmailed = false);
|
---|
| 467 |
|
---|
| 468 | /** Casts line segment into the tree.
|
---|
| 469 | @param origin the origin of the line segment
|
---|
| 470 | @param termination the end point of the line segment
|
---|
| 471 | @returns view cells intersecting the line segment.
|
---|
| 472 | */
|
---|
| 473 | int CastLineSegment(const Vector3 &origin,
|
---|
| 474 | const Vector3 &termination,
|
---|
| 475 | ViewCellContainer &viewcells);
|
---|
| 476 |
|
---|
| 477 | /** Sets pointer to view cells manager.
|
---|
| 478 | */
|
---|
| 479 | void SetViewCellsManager(ViewCellsManager *vcm);
|
---|
| 480 |
|
---|
| 481 | /** Writes tree to output stream
|
---|
| 482 | */
|
---|
| 483 | bool Export(OUT_STREAM &stream);
|
---|
| 484 |
|
---|
| 485 | /** Returns or creates a new intersectable for use in a kd based pvs.
|
---|
| 486 | The OspTree is responsible for destruction of the intersectable.
|
---|
| 487 | */
|
---|
| 488 | BvhIntersectable *GetOrCreateBvhIntersectable(BvhNode *node);
|
---|
| 489 |
|
---|
| 490 | /** Collects rays.
|
---|
| 491 | */
|
---|
| 492 | void CollectRays(const ObjectContainer &objects, VssRayContainer &rays) const;
|
---|
| 493 |
|
---|
| 494 | /** Intersects box with the tree and returns the number of intersected boxes.
|
---|
| 495 | @returns number of view cells found
|
---|
| 496 | */
|
---|
[1259] | 497 | int ComputeBoxIntersections(
|
---|
| 498 | const AxisAlignedBox3 &box,
|
---|
| 499 | ViewCellContainer &viewCells) const;
|
---|
[1237] | 500 |
|
---|
| 501 |
|
---|
| 502 | /** Returns leaf the point pt lies in, starting from root.
|
---|
| 503 | */
|
---|
| 504 | BvhLeaf *GetLeaf(Intersectable *obj, BvhNode *root = NULL) const;
|
---|
| 505 |
|
---|
| 506 | ViewCellsTree *GetViewCellsTree() const { return mViewCellsTree; }
|
---|
| 507 |
|
---|
| 508 | void SetViewCellsTree(ViewCellsTree *vt) { mViewCellsTree = vt; }
|
---|
| 509 |
|
---|
[1259] | 510 | /** Add the bvh leaf to the pvs of the view cell.
|
---|
| 511 | */
|
---|
| 512 | bool AddLeafToPvs(
|
---|
| 513 | BvhLeaf *leaf,
|
---|
| 514 | ViewCell *vc,
|
---|
| 515 | const float pdf,
|
---|
| 516 | float &contribution);
|
---|
[1237] | 517 |
|
---|
| 518 | protected:
|
---|
| 519 |
|
---|
| 520 | /** Returns true if tree can be terminated.
|
---|
| 521 | */
|
---|
[1251] | 522 | bool LocalTerminationCriteriaMet(const BvhTraversalData &data) const;
|
---|
[1237] | 523 |
|
---|
| 524 | /** Returns true if global tree can be terminated.
|
---|
| 525 | */
|
---|
[1251] | 526 | bool GlobalTerminationCriteriaMet(const BvhTraversalData &data) const;
|
---|
[1237] | 527 |
|
---|
[1287] | 528 | /** For sorting the objects during the heuristics
|
---|
| 529 | */
|
---|
[1237] | 530 | struct SortableEntry
|
---|
| 531 | {
|
---|
[1287] | 532 | Intersectable *mObject;
|
---|
[1237] | 533 | float mPos;
|
---|
| 534 |
|
---|
| 535 | SortableEntry() {}
|
---|
| 536 |
|
---|
[1287] | 537 | SortableEntry(Intersectable *obj, const float pos):
|
---|
| 538 | mObject(obj), mPos(pos)
|
---|
[1237] | 539 | {}
|
---|
| 540 |
|
---|
| 541 | bool operator<(const SortableEntry &b) const
|
---|
| 542 | {
|
---|
| 543 | return mPos < b.mPos;
|
---|
| 544 | }
|
---|
| 545 | };
|
---|
| 546 |
|
---|
[1287] | 547 | /** Evaluate balanced object partition.
|
---|
[1237] | 548 | */
|
---|
[1287] | 549 | float EvalLocalObjectPartition(
|
---|
| 550 | const BvhTraversalData &tData,
|
---|
| 551 | const int axis,
|
---|
| 552 | ObjectContainer &objectsFront,
|
---|
| 553 | ObjectContainer &objectsBack);
|
---|
[1237] | 554 |
|
---|
[1323] | 555 | float EvalSah(
|
---|
| 556 | const BvhTraversalData &tData,
|
---|
| 557 | const int axis,
|
---|
| 558 | ObjectContainer &objectsFront,
|
---|
| 559 | ObjectContainer &objectsBack);
|
---|
| 560 |
|
---|
[1237] | 561 | /** Computes priority of the traversal data and stores it in tData.
|
---|
| 562 | */
|
---|
| 563 | void EvalPriority(BvhTraversalData &tData) const;
|
---|
| 564 |
|
---|
[1287] | 565 | /** Evaluates render cost of next split.
|
---|
[1237] | 566 | */
|
---|
[1287] | 567 | float EvalRenderCost(
|
---|
[1237] | 568 | const BvhTraversalData &tData,
|
---|
[1287] | 569 | const ObjectContainer &objectsLeft,
|
---|
| 570 | const ObjectContainer &objectsRight) const;
|
---|
[1237] | 571 |
|
---|
| 572 | /** Evaluates tree stats in the BSP tree leafs.
|
---|
| 573 | */
|
---|
| 574 | void EvaluateLeafStats(const BvhTraversalData &data);
|
---|
| 575 |
|
---|
| 576 | /** Subdivides node using a best split priority queue.
|
---|
| 577 | @param tQueue the best split priority queue
|
---|
| 578 | @param splitCandidate the candidate for the next split
|
---|
| 579 | @param globalCriteriaMet if the global termination criteria were already met
|
---|
| 580 | @returns new root of the subtree
|
---|
| 581 | */
|
---|
| 582 | BvhNode *Subdivide(
|
---|
| 583 | SplitQueue &tQueue,
|
---|
| 584 | SubdivisionCandidate *splitCandidate,
|
---|
| 585 | const bool globalCriteriaMet);
|
---|
| 586 |
|
---|
| 587 | /** Subdivides leaf.
|
---|
| 588 | @param leaf the leaf to be subdivided
|
---|
| 589 |
|
---|
| 590 | @param polys the polygons to be split
|
---|
| 591 | @param frontPolys returns the polygons in front of the split plane
|
---|
| 592 | @param backPolys returns the polygons in the back of the split plane
|
---|
| 593 |
|
---|
| 594 | @param rays the polygons to be filtered
|
---|
| 595 | @param frontRays returns the polygons in front of the split plane
|
---|
| 596 | @param backRays returns the polygons in the back of the split plane
|
---|
| 597 |
|
---|
| 598 | @returns the root of the subdivision
|
---|
| 599 | */
|
---|
| 600 | BvhInterior *SubdivideNode(
|
---|
| 601 | const ObjectContainer &frontObjects,
|
---|
| 602 | const ObjectContainer &backObjects,
|
---|
| 603 | const BvhTraversalData &tData,
|
---|
| 604 | BvhTraversalData &frontData,
|
---|
| 605 | BvhTraversalData &backData);
|
---|
| 606 |
|
---|
| 607 | /** Splits the objects for the next subdivision.
|
---|
| 608 | @returns cost for this split
|
---|
| 609 | */
|
---|
| 610 | float SelectObjectPartition(
|
---|
| 611 | const BvhTraversalData &tData,
|
---|
| 612 | ObjectContainer &frontObjects,
|
---|
| 613 | ObjectContainer &backObjects);
|
---|
| 614 |
|
---|
| 615 | /** Writes the node to disk
|
---|
| 616 | @note: should be implemented as visitor.
|
---|
| 617 | */
|
---|
| 618 | void ExportNode(BvhNode *node, OUT_STREAM &stream);
|
---|
| 619 |
|
---|
[1286] | 620 | void ExportObjects(BvhLeaf *leaf, OUT_STREAM &stream);
|
---|
| 621 |
|
---|
[1237] | 622 | /** Returns estimated memory usage of tree.
|
---|
| 623 | */
|
---|
| 624 | float GetMemUsage() const;
|
---|
| 625 |
|
---|
[1294] | 626 | /** Creates new root of hierarchy.
|
---|
| 627 | */
|
---|
| 628 | void CreateRoot(const ObjectContainer &objects);
|
---|
[1237] | 629 |
|
---|
| 630 | /////////////////////////////
|
---|
| 631 | // Helper functions for local cost heuristics
|
---|
| 632 |
|
---|
| 633 |
|
---|
| 634 | /** Sorts split candidates for cost heuristics using axis aligned splits.
|
---|
| 635 | @param node the current node
|
---|
| 636 | @param axis the current split axis
|
---|
| 637 | */
|
---|
| 638 | void SortSubdivisionCandidates(
|
---|
| 639 | const BvhTraversalData &data,
|
---|
[1287] | 640 | const int axis);
|
---|
[1237] | 641 |
|
---|
| 642 | /** Computes best cost for axis aligned planes.
|
---|
| 643 | */
|
---|
| 644 | float EvalLocalCostHeuristics(
|
---|
| 645 | const BvhTraversalData &tData,
|
---|
| 646 | const int axis,
|
---|
| 647 | ObjectContainer &objectsFront,
|
---|
| 648 | ObjectContainer &objectsFBack);
|
---|
| 649 |
|
---|
[1287] | 650 | /** Evaluates the contribution to the front and back volume
|
---|
| 651 | when this object is changing sides in the bvs.
|
---|
[1237] | 652 |
|
---|
[1287] | 653 | @param object the object
|
---|
| 654 | @param volLeft updates the left pvs
|
---|
| 655 | @param volPvs updates the right pvs
|
---|
[1237] | 656 | */
|
---|
| 657 | void EvalHeuristicsContribution(
|
---|
[1287] | 658 | Intersectable *obj,
|
---|
[1237] | 659 | float &volLeft,
|
---|
[1287] | 660 | float &volRight);
|
---|
[1237] | 661 |
|
---|
| 662 | /** Prepares objects for the cost heuristics.
|
---|
| 663 | @returns sum of volume of associated view cells
|
---|
| 664 | */
|
---|
[1287] | 665 | float PrepareHeuristics(const BvhTraversalData &tData, const int axis);
|
---|
[1237] | 666 |
|
---|
[1287] | 667 |
|
---|
[1237] | 668 | ////////////////////////////////////////////////
|
---|
| 669 |
|
---|
| 670 |
|
---|
| 671 | /** Prepares construction for vsp and osp trees.
|
---|
| 672 | */
|
---|
[1287] | 673 | AxisAlignedBox3 ComputeBoundingBox(
|
---|
| 674 | const ObjectContainer &objects,
|
---|
| 675 | const AxisAlignedBox3 *parentBox = NULL);
|
---|
[1237] | 676 |
|
---|
[1287] | 677 | void CollectDirtyCandidates(
|
---|
| 678 | BvhSubdivisionCandidate *sc,
|
---|
[1237] | 679 | vector<SubdivisionCandidate *> &dirtyList);
|
---|
| 680 |
|
---|
[1287] | 681 | /** Collect view cells which see this bvh leaf.
|
---|
[1237] | 682 | */
|
---|
[1287] | 683 | void CollectViewCells(
|
---|
| 684 | const ObjectContainer &objects,
|
---|
| 685 | ViewCellContainer &viewCells,
|
---|
| 686 | const bool setCounter = false) const;
|
---|
[1237] | 687 |
|
---|
[1287] | 688 | /** Collects view cells which see an object.
|
---|
| 689 | */
|
---|
| 690 | void CollectViewCells(
|
---|
| 691 | Intersectable *object,
|
---|
| 692 | ViewCellContainer &viewCells,
|
---|
| 693 | const bool useMailBoxing,
|
---|
| 694 | const bool setCounter = false) const;
|
---|
| 695 |
|
---|
[1237] | 696 | /** Rays will be clipped to the bounding box.
|
---|
| 697 | */
|
---|
| 698 | void PreprocessRays(
|
---|
| 699 | BvhLeaf *root,
|
---|
| 700 | const VssRayContainer &sampleRays,
|
---|
| 701 | RayInfoContainer &rays);
|
---|
| 702 |
|
---|
[1287] | 703 | /** Print the subdivision stats in the subdivison log.
|
---|
| 704 | */
|
---|
| 705 | void PrintSubdivisionStats(const SubdivisionCandidate &tData);
|
---|
[1237] | 706 |
|
---|
| 707 | void AddSubdivisionStats(
|
---|
| 708 | const int viewCells,
|
---|
| 709 | const float renderCostDecr,
|
---|
| 710 | const float totalRenderCost);
|
---|
| 711 |
|
---|
| 712 | void AssociateObjectsWithRays(const VssRayContainer &rays);
|
---|
| 713 |
|
---|
| 714 | bool IsObjectInLeaf(BvhLeaf *, Intersectable *object) const;
|
---|
| 715 |
|
---|
[1287] | 716 | SubdivisionCandidate *PrepareConstruction(
|
---|
| 717 | const VssRayContainer &sampleRays,
|
---|
| 718 | const ObjectContainer &objects
|
---|
| 719 | );
|
---|
[1237] | 720 |
|
---|
[1287] | 721 | float EvalViewCellsVolume(const ObjectContainer &objects) const;
|
---|
[1237] | 722 |
|
---|
[1259] | 723 |
|
---|
[1237] | 724 | protected:
|
---|
| 725 |
|
---|
| 726 | /// pointer to the hierarchy of view cells
|
---|
| 727 | ViewCellsTree *mViewCellsTree;
|
---|
| 728 |
|
---|
| 729 | VspTree *mVspTree;
|
---|
| 730 |
|
---|
| 731 | /// The view cells manager
|
---|
| 732 | ViewCellsManager *mViewCellsManager;
|
---|
| 733 |
|
---|
| 734 | /// candidates for placing split planes during cost heuristics
|
---|
| 735 | vector<SortableEntry> *mSubdivisionCandidates;
|
---|
| 736 |
|
---|
| 737 | /// Pointer to the root of the tree
|
---|
| 738 | BvhNode *mRoot;
|
---|
| 739 |
|
---|
| 740 | /// Statistics for the object space partition
|
---|
| 741 | BvhStatistics mBvhStats;
|
---|
| 742 |
|
---|
| 743 | /// box around the whole view domain
|
---|
| 744 | AxisAlignedBox3 mBoundingBox;
|
---|
| 745 |
|
---|
| 746 |
|
---|
| 747 | //-- local termination
|
---|
| 748 |
|
---|
| 749 | /// maximal possible depth
|
---|
| 750 | int mTermMaxDepth;
|
---|
| 751 | /// mininum probability
|
---|
[1287] | 752 | float mTermMinProbability;
|
---|
[1237] | 753 | /// minimal number of objects
|
---|
| 754 | int mTermMinObjects;
|
---|
| 755 | /// maximal contribution per ray
|
---|
| 756 | float mTermMaxRayContribution;
|
---|
| 757 | /// maximal acceptable cost ratio
|
---|
| 758 | float mTermMaxCostRatio;
|
---|
| 759 | /// tolerance value indicating how often the max cost ratio can be failed
|
---|
| 760 | int mTermMissTolerance;
|
---|
| 761 |
|
---|
| 762 |
|
---|
| 763 | //-- global criteria
|
---|
| 764 |
|
---|
| 765 | float mTermMinGlobalCostRatio;
|
---|
| 766 | int mTermGlobalCostMissTolerance;
|
---|
| 767 | int mGlobalCostMisses;
|
---|
| 768 |
|
---|
| 769 | /// maximal number of view cells
|
---|
| 770 | int mTermMaxLeaves;
|
---|
| 771 | /// maximal tree memory
|
---|
| 772 | float mMaxMemory;
|
---|
| 773 | /// the tree is out of memory
|
---|
| 774 | bool mOutOfMemory;
|
---|
| 775 |
|
---|
| 776 |
|
---|
| 777 | //-- split heuristics based parameters
|
---|
| 778 |
|
---|
| 779 | bool mUseCostHeuristics;
|
---|
| 780 | /// balancing factor for PVS criterium
|
---|
| 781 | float mCtDivCi;
|
---|
| 782 | /// if only driving axis should be used for split
|
---|
| 783 | bool mOnlyDrivingAxis;
|
---|
| 784 |
|
---|
| 785 | /// current time stamp (used for keeping split history)
|
---|
| 786 | int mTimeStamp;
|
---|
| 787 | // if rays should be stored in leaves
|
---|
| 788 | bool mStoreRays;
|
---|
| 789 |
|
---|
| 790 | /// epsilon for geometric comparisons
|
---|
| 791 | float mEpsilon;
|
---|
| 792 |
|
---|
| 793 | /// subdivision stats output file
|
---|
| 794 | ofstream mSubdivisionStats;
|
---|
| 795 | /// keeps track of cost during subdivision
|
---|
| 796 | float mTotalCost;
|
---|
| 797 | /// keeps track of overall pvs size during subdivision
|
---|
| 798 | int mTotalPvsSize;
|
---|
| 799 | /// number of currenly generated view cells
|
---|
| 800 | int mCreatedLeaves;
|
---|
| 801 |
|
---|
| 802 | /// represents min and max band for sweep
|
---|
| 803 | float mSplitBorder;
|
---|
| 804 |
|
---|
| 805 | /// weight between render cost decrease and node render cost
|
---|
| 806 | float mRenderCostDecreaseWeight;
|
---|
| 807 |
|
---|
| 808 | /// stores the kd node intersectables used for pvs
|
---|
| 809 | BvhIntersectableMap mBvhIntersectables;
|
---|
| 810 |
|
---|
| 811 | };
|
---|
| 812 |
|
---|
| 813 | }
|
---|
| 814 |
|
---|
| 815 | #endif
|
---|