source: GTP/trunk/Lib/Vis/Preprocessing/src/Pvs.cpp @ 1740

Revision 1740, 3.6 KB checked in by mattausch, 18 years ago (diff)

exchanged pvs implementation: using vectors instead of maps

RevLine 
[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]11namespace GtpVisibilityPreprocessor {
[860]12
[1189]13int MailablePvsData::sMailId = 1;
14int MailablePvsData::sReservedMailboxes = 1;
[1141]15
[1189]16
[1141]17int 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*/
[1586]25static int EvalKdNodeContribution(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
[1703]78/** Returns the the number of new (unmailed) objects in the leaves of the node.
79        We eliminate already accounted bvh nodes and objects using mailboxing.
[1233]80*/
[1707]81static float EvalBvhNodeContribution(BvhIntersectable *bvhobj)
[1233]82{
[1707]83        BvhLeaf *leaf = bvhobj->GetItem();
84        BvhNode *node = leaf->GetActiveNode();
[1233]85
86        // early exit
[1707]87        if (node == leaf)       
[1233]88        {
[1291]89                // objects already accounted for
[1707]90                if (leaf->Mailed())
[1233]91                        return 0;
[1291]92
[1707]93                leaf->Mail();
94                return BvHierarchy::EvalAbsCost(leaf->mObjects);
[1284]95        }                       
[1141]96
[1233]97        // compute leaf pvs
[1707]98        float pvs = 0;
[1233]99        stack<BvhNode *> tStack;
[1707]100        tStack.push(node);
[1233]101
102        while (!tStack.empty())
103        {
[1707]104                node = tStack.top();
[1233]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                        {
[1707]114                                leaf = dynamic_cast<BvhLeaf *>(node);
[1586]115
[1233]116                                // add #objects exclusivly in this node
[1703]117                                pvs += BvHierarchy::EvalAbsCost(leaf->mObjects);
[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        }
[1586]128
[1141]129        return pvs;
130}
131
[1233]132
[1707]133float ObjectPvs::EvalPvsCost() const
[1233]134{
[1707]135        float pvs = 0;
[1233]136
137        Intersectable::NewMail();
138        KdLeaf::NewMail();
139        BvhLeaf::NewMail();
140
[1738]141        ObjectPvsEntries::const_iterator it, it_end = mEntries.end();
[1233]142
143        for (it = mEntries.begin(); it != it_end; ++ it)
144        {
[1740]145                Intersectable *obj = (*it).mObject;
[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);
[1586]153                                        pvs += EvalKdNodeContribution(kdObj);   
[1233]154                                        break;
155                                }
156                        case Intersectable::BVH_INTERSECTABLE:
157                                {
158                                        BvhIntersectable *bvhObj = dynamic_cast<BvhIntersectable *>(obj);
[1586]159                                        pvs += EvalBvhNodeContribution(bvhObj);
[1233]160                                        break;
161                                }
[1293]162                        default:
[1233]163                                ++ pvs;
164                                break;
165                }
166        }
167
168        return pvs;
169}
170
[311]171}
Note: See TracBrowser for help on using the repository browser.