[177] | 1 | #include <iostream>
|
---|
[1141] | 2 | #include <stack>
|
---|
[177] | 3 | #include "Pvs.h"
|
---|
[1141] | 4 | #include "Intersectable.h"
|
---|
[1315] | 5 | #include "IntersectableWrapper.h"
|
---|
[1141] | 6 | #include "KdTree.h"
|
---|
| 7 | #include "common.h"
|
---|
[1233] | 8 | #include "BvHierarchy.h"
|
---|
[177] | 9 |
|
---|
[1141] | 10 |
|
---|
[863] | 11 | namespace GtpVisibilityPreprocessor {
|
---|
[860] | 12 |
|
---|
[1189] | 13 | int MailablePvsData::sMailId = 1;
|
---|
| 14 | int MailablePvsData::sReservedMailboxes = 1;
|
---|
[1141] | 15 |
|
---|
[1189] | 16 |
|
---|
[1141] | 17 | int KdPvs::Compress()
|
---|
[177] | 18 | {
|
---|
[311] | 19 | return 0; // TODO
|
---|
[860] | 20 | }
|
---|
| 21 |
|
---|
[1233] | 22 | /** the pvs is the number of different objects in the node leaves
|
---|
| 23 | We eliminate already accounted kd nodes and objects using mailboxing.
|
---|
| 24 | */
|
---|
| 25 | static int CountNewObjectsInKdNode(KdIntersectable *kdobj)
|
---|
[1141] | 26 | {
|
---|
| 27 | int pvs = 0;
|
---|
[1233] | 28 | stack<KdNode *> tStack;
|
---|
[1141] | 29 |
|
---|
[1233] | 30 | tStack.push(kdobj->GetItem());
|
---|
[1141] | 31 |
|
---|
[1233] | 32 | while (!tStack.empty())
|
---|
[1141] | 33 | {
|
---|
[1233] | 34 | KdNode *node = tStack.top();
|
---|
| 35 | tStack.pop();
|
---|
[1141] | 36 |
|
---|
[1233] | 37 | // already processed node (=> objects already in pvs)?
|
---|
| 38 | if (!node->Mailed())
|
---|
[1141] | 39 | {
|
---|
[1233] | 40 | node->Mail();
|
---|
[1141] | 41 |
|
---|
[1233] | 42 | if (node->IsLeaf())
|
---|
[1141] | 43 | {
|
---|
[1233] | 44 | KdLeaf *leaf = dynamic_cast<KdLeaf *>(node);
|
---|
| 45 |
|
---|
| 46 | // add #objects exclusivly in this node
|
---|
| 47 | pvs += (int)(leaf->mObjects.size() - leaf->mMultipleObjects.size());
|
---|
[1141] | 48 |
|
---|
[1233] | 49 | // Objects already accounted for can only be found among those
|
---|
| 50 | // which are referenced in more than one leaf
|
---|
| 51 | ObjectContainer::const_iterator oit, oit_end = leaf->mMultipleObjects.end();
|
---|
| 52 |
|
---|
| 53 | for (oit = leaf->mMultipleObjects.begin(); oit != oit_end; ++ oit)
|
---|
[1141] | 54 | {
|
---|
[1233] | 55 | Intersectable *object = *oit;
|
---|
[1168] | 56 |
|
---|
[1233] | 57 | if (!object->Mailed())
|
---|
[1168] | 58 | {
|
---|
[1233] | 59 | object->Mail();
|
---|
| 60 | ++ pvs;
|
---|
[1168] | 61 | }
|
---|
[1141] | 62 | }
|
---|
| 63 | }
|
---|
[1233] | 64 | else // traverse tree
|
---|
| 65 | {
|
---|
| 66 | KdInterior *interior = dynamic_cast<KdInterior *>(node);
|
---|
| 67 |
|
---|
| 68 | tStack.push(interior->mFront);
|
---|
| 69 | tStack.push(interior->mBack);
|
---|
| 70 | }
|
---|
[1141] | 71 | }
|
---|
[1233] | 72 | }
|
---|
| 73 |
|
---|
| 74 | return pvs;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 |
|
---|
| 78 | /** the pvs is the number of different objects in the node leaves
|
---|
| 79 | We eliminate already accounted kd nodes and objects using mailboxing.
|
---|
| 80 | */
|
---|
| 81 | static int CountNewObjectsInBvhNode(BvhIntersectable *bvhobj)
|
---|
| 82 | {
|
---|
| 83 | BvhNode *node= bvhobj->GetItem();
|
---|
| 84 |
|
---|
| 85 | // early exit
|
---|
| 86 | if (node->IsLeaf())
|
---|
| 87 | {
|
---|
[1291] | 88 | // objects already accounted for
|
---|
| 89 | if (node->Mailed())
|
---|
[1233] | 90 | return 0;
|
---|
[1291] | 91 |
|
---|
| 92 | node->Mail();
|
---|
[1486] | 93 | BvhLeaf *leaf = dynamic_cast<BvhLeaf *>(node);
|
---|
| 94 | return (int)leaf->mObjects.size();
|
---|
[1284] | 95 | }
|
---|
[1141] | 96 |
|
---|
[1233] | 97 | // compute leaf pvs
|
---|
| 98 | int pvs = 0;
|
---|
| 99 | stack<BvhNode *> tStack;
|
---|
| 100 | tStack.push(bvhobj->GetItem());
|
---|
| 101 |
|
---|
| 102 | while (!tStack.empty())
|
---|
| 103 | {
|
---|
| 104 | BvhNode *node = tStack.top();
|
---|
| 105 | tStack.pop();
|
---|
| 106 |
|
---|
| 107 | // already processed node (=> objects already in pvs)?
|
---|
| 108 | if (!node->Mailed())
|
---|
| 109 | {
|
---|
| 110 | node->Mail();
|
---|
| 111 |
|
---|
| 112 | if (node->IsLeaf())
|
---|
| 113 | {
|
---|
| 114 | BvhLeaf *leaf = dynamic_cast<BvhLeaf *>(node);
|
---|
| 115 |
|
---|
| 116 | // add #objects exclusivly in this node
|
---|
[1284] | 117 | pvs += (int)leaf->mObjects.size();
|
---|
[1233] | 118 | }
|
---|
| 119 | else // traverse tree
|
---|
| 120 | {
|
---|
| 121 | BvhInterior *interior = dynamic_cast<BvhInterior *>(node);
|
---|
| 122 |
|
---|
| 123 | tStack.push(interior->GetFront());
|
---|
| 124 | tStack.push(interior->GetBack());
|
---|
| 125 | }
|
---|
| 126 | }
|
---|
| 127 | }
|
---|
[1141] | 128 | return pvs;
|
---|
| 129 | }
|
---|
| 130 |
|
---|
[1233] | 131 |
|
---|
| 132 |
|
---|
| 133 | int ObjectPvs::CountObjectsInPvs() const
|
---|
| 134 | {
|
---|
| 135 | int pvs = 0;
|
---|
| 136 |
|
---|
| 137 | Intersectable::NewMail();
|
---|
| 138 | KdLeaf::NewMail();
|
---|
| 139 | BvhLeaf::NewMail();
|
---|
| 140 |
|
---|
| 141 | ObjectPvsMap::const_iterator it, it_end = mEntries.end();
|
---|
| 142 |
|
---|
| 143 | for (it = mEntries.begin(); it != it_end; ++ it)
|
---|
| 144 | {
|
---|
| 145 | Intersectable *obj = (*it).first;
|
---|
[1486] | 146 |
|
---|
[1233] | 147 | switch (obj->Type())
|
---|
| 148 | {
|
---|
| 149 | case Intersectable::KD_INTERSECTABLE:
|
---|
| 150 | {
|
---|
| 151 | // found kd node
|
---|
| 152 | KdIntersectable *kdObj = dynamic_cast<KdIntersectable *>(obj);
|
---|
| 153 | pvs += CountNewObjectsInKdNode(kdObj);
|
---|
| 154 | break;
|
---|
| 155 | }
|
---|
| 156 | case Intersectable::BVH_INTERSECTABLE:
|
---|
| 157 | {
|
---|
| 158 | BvhIntersectable *bvhObj = dynamic_cast<BvhIntersectable *>(obj);
|
---|
| 159 | pvs += CountNewObjectsInBvhNode(bvhObj);
|
---|
| 160 | break;
|
---|
| 161 | }
|
---|
[1293] | 162 | default:
|
---|
[1233] | 163 | ++ pvs;
|
---|
| 164 | break;
|
---|
| 165 | }
|
---|
| 166 | }
|
---|
| 167 |
|
---|
| 168 | return pvs;
|
---|
| 169 | }
|
---|
| 170 |
|
---|
[311] | 171 | } |
---|