source: GTP/trunk/Lib/Vis/Preprocessing/src/ViewCell.cpp @ 1713

Revision 1713, 60.2 KB checked in by mattausch, 18 years ago (diff)
RevLine 
[1010]1#include <time.h>
2#include <iomanip>
3#include <stack>
4
5
[235]6#include "ViewCell.h"
7#include "Mesh.h"
[308]8#include "Intersectable.h"
[1121]9#include "KdTree.h"
[235]10#include "Triangle3.h"
[580]11#include "common.h"
12#include "Environment.h"
13#include "ViewCellsManager.h"
14#include "Exporter.h"
[1614]15#include "BvHierarchy.h"
[580]16
[235]17
[1614]18
[863]19namespace GtpVisibilityPreprocessor {
[580]20
21
[955]22
[580]23template <typename T> class myless
24{
25public:
26        bool operator() (T v1, T v2) const
27        {
[600]28                return (v1->GetMergeCost() < v2->GetMergeCost());
[580]29        }
30};
31
32
[1121]33typedef priority_queue<ViewCell *, vector<ViewCell *>,
34                                           myless<vector<ViewCell *>::value_type> > TraversalQueue;
[580]35
[1633]36int ViewCell::sMailId = 10000;//2147483647;
[580]37int ViewCell::sReservedMailboxes = 1;
38
[882]39
[580]40float MergeCandidate::sRenderCostWeight = 0;
41
42
43// pvs penalty can be different from pvs size
[1709]44inline static float EvalPvsPenalty(const float pvs,
45                                                                   const float lower,
46                                                                   const float upper)
[580]47{
48        // clamp to minmax values
[728]49        if (pvs < lower)
[580]50                return (float)lower;
51        if (pvs > upper)
52                return (float)upper;
[752]53
[580]54        return (float)pvs;
55}
56
[1586]57/** Counts contribution of the view cell to the pvs.
58*/
59inline int CountPvsContribution(ViewCell *vc)
[585]60{
61        int count = 0;
62
63        ObjectPvsMap::const_iterator it, it_end = vc->GetPvs().mEntries.end();
64        for (it = vc->GetPvs().mEntries.begin(); it != it_end; ++ it)
65        {
66                if (!(*it).first->Mailed())
67                {
68                        (*it).first->Mail();
69                        ++ count;
70                }
71        }
72
73        return count;
74}
75
[1233]76
[729]77/// Fast computation of merged pvs size
[1709]78static float ComputeMergedPvsCost(const ObjectPvs &pvs1, const ObjectPvs &pvs2)
[580]79{
[729]80        // add first pvs
[1709]81        float pvs = (float)pvs1.GetSize();
[580]82
83        ObjectPvsMap::const_iterator it, it_end =  pvs1.mEntries.end();
84
85        Intersectable::NewMail();
86
[729]87        // mail all objects in first pvs
[580]88        for (it = pvs1.mEntries.begin(); it != it_end; ++ it)
89        {
90                (*it).first->Mail();
91        }
92
93        it_end = pvs2.mEntries.end();
94
[1189]95        // look if the entries are also in second pvs
[580]96        for (it = pvs2.mEntries.begin(); it != it_end; ++ it)
97        {
98                Intersectable *obj = (*it).first;
99                if (!obj->Mailed())
100                        ++ pvs;
101        }
102
103        return pvs;
104}
105
106
[478]107ViewCell::ViewCell():
108MeshInstance(NULL),
[551]109mArea(-1),
110mVolume(-1),
[580]111mValid(true),
112mParent(NULL),
[600]113mMergeCost(0),
[1709]114mPvsCost(0),
[1160]115mEntriesInPvs(0),
[752]116mPvsSizeValid(false)
[265]117{
[1570]118        mId = -100;
[265]119}
[235]120
[478]121ViewCell::ViewCell(Mesh *mesh):
122MeshInstance(mesh),
[551]123mArea(-1),
124mVolume(-1),
[580]125mValid(true),
126mParent(NULL),
[600]127mMergeCost(0),
[1709]128mPvsCost(0),
[752]129mPvsSizeValid(false)
[1297]130//mMailbox(0)
[372]131{
[1570]132        mId = -100;
[372]133}
134
[503]135
[1551]136ViewCell::~ViewCell()
137{
138}
139
140
[469]141const ObjectPvs &ViewCell::GetPvs() const
[419]142{
143        return mPvs;
144}
145
[752]146
[469]147ObjectPvs &ViewCell::GetPvs()
[372]148{
149        return mPvs;
150}
151
[503]152
[880]153void ViewCell::SetPvs(const ObjectPvs &pvs)
154{
155        mPvs = pvs;
156}
157
158
[235]159int ViewCell::Type() const
160{
[308]161        return VIEW_CELL;
[235]162}
163
[503]164
[469]165float ViewCell::GetVolume() const
166{
167        return mVolume;
168}
169
[478]170
[469]171void ViewCell::SetVolume(float volume)
172{
173        mVolume = volume;
174}
175
[503]176
177void ViewCell::SetMesh(Mesh *mesh)
178{
179        mMesh = mesh;
180}
181
182
[478]183float ViewCell::GetArea() const
184{
185        return mArea;
186}
187
188
189void ViewCell::SetArea(float area)
190{
191        mArea = area;
192}
193
194
[752]195void ViewCell::SetColor(const RgbColor &color)
196{
197        mColor = color;
198}
199
200
201RgbColor ViewCell::GetColor() const
202{
203        return mColor;
204}
205
206
[547]207void ViewCell::SetValid(const bool valid)
208{
[564]209        mValid = valid;
[547]210}
211
212
213bool ViewCell::GetValid() const
214{
215        return mValid;
216}
217
218
[580]219void ViewCell::SetParent(ViewCellInterior *parent)
220{
221        mParent = parent;
222}
223
224
225bool ViewCell::IsRoot() const
226{
227        return !mParent;
228}
229
230
231ViewCellInterior *ViewCell::GetParent() const
232{
233        return mParent;
234}
235
236
[600]237void ViewCell::SetMergeCost(const float mergeCost)
[580]238{
[600]239        mMergeCost = mergeCost;
[580]240}
241
242
[728]243float ViewCell::GetRenderCost() const
244{
[1709]245        return mPvsCost * GetVolume();
[728]246}
247
248
[600]249float ViewCell::GetMergeCost() const
[580]250{
[600]251        return mMergeCost;
[580]252}
253
[1002]254
255bool ViewCell::AddPvsSample(Intersectable *sample,
256                                                        const float pdf,
257                                                        float &contribution)
258{
259        const bool result = mPvs.AddSample(sample, pdf, contribution);
[1586]260        // have to recompute pvs size
261        mPvsSizeValid = false;
[1002]262
263        return result;
264}
265
266
[1133]267
[462]268/************************************************************************/
[580]269/*                class ViewCellInterior implementation                 */
270/************************************************************************/
271
272
273ViewCellInterior::ViewCellInterior()
274{
275}
276
277
278ViewCellInterior::~ViewCellInterior()
279{
280        ViewCellContainer::const_iterator it, it_end = mChildren.end();
281
282        for (it = mChildren.begin(); it != it_end; ++ it)
[1545]283        {
[580]284                delete (*it);
[1545]285        }
[580]286}
287
288
289ViewCellInterior::ViewCellInterior(Mesh *mesh):
290ViewCell(mesh)
291{
292}
293
294
295bool ViewCellInterior::IsLeaf() const
296{
297        return false;
298}
299
300
[650]301void ViewCellInterior::SetupChildLink(ViewCell *vc)
[580]302{
[650]303    mChildren.push_back(vc);
[1002]304    vc->SetParent(this);
[580]305}
306
307
[586]308void ViewCellInterior::RemoveChildLink(ViewCell *l)
309{
310        // erase leaf from old view cell
311        ViewCellContainer::iterator it = mChildren.begin();
[580]312
[586]313        for (; (*it) != l; ++ it);
314        if (it == mChildren.end())
315                Debug << "error" << endl;
316        else
317                mChildren.erase(it);
318}
319
[703]320
[1286]321void ViewCellInterior::ReplaceChildLink(ViewCell *prev, ViewCell *cur)
322{
323        // erase leaf from old view cell
324        ViewCellContainer::iterator it = mChildren.begin();
325
326        for (; (*it) != prev; ++ it);
327        if (it == mChildren.end())
328        {
329                Debug << "error: child link not found" << endl;
330        }
331        else
332        {
333                (*it) = cur;
334        }
335}
336
337
[1551]338
[580]339/************************************************************************/
[462]340/*                class ViewCellsStatistics implementation              */
341/************************************************************************/
342
[580]343
[463]344void ViewCellsStatistics::Print(ostream &app) const
345{
346        app << "=========== View Cells Statistics ===============\n";
347
348        app << setprecision(4);
349
350        //app << "#N_CTIME  ( Construction time [s] )\n" << Time() << " \n";
351
[1709]352        app << "#N_OVERALLPVS ( cost of the PVS )\n" << pvsCost << endl;
[463]353
[1709]354        //app << "#N_PVSENTRIES ( entries in the PVS)\n" << pvsEntries << endl;
355
[463]356        app << "#N_PMAXPVS ( largest PVS )\n" << maxPvs << endl;
357
358        app << "#N_PMINPVS ( smallest PVS )\n" << minPvs << endl;
359
360        app << "#N_PAVGPVS ( average PVS )\n" << AvgPvs() << endl;
361
[485]362        app << "#N_PEMPTYPVS ( view cells with empty PVS )\n" << emptyPvs << endl;
[463]363
364        app << "#N_VIEWCELLS ( number of view cells)\n" << viewCells << endl;
365
366        app << "#N_AVGLEAVES (average number of leaves per view cell )\n" << AvgLeaves() << endl;
367
368        app << "#N_MAXLEAVES ( maximal number of leaves per view cell )\n" << maxLeaves << endl;
369       
[564]370        app << "#N_INVALID ( number of invalid view cells )\n" << invalid << endl;
371
[463]372        app << "========== End of View Cells Statistics ==========\n";
[580]373}
374
375
376/*************************************************************************/
377/*                    class ViewCellsTree implementation                 */
378/*************************************************************************/
379
380
[1004]381ViewCellsTree::ViewCellsTree(ViewCellsManager *vcm):
[580]382mRoot(NULL),
383mUseAreaForPvs(false),
[584]384mViewCellsManager(vcm),
[752]385#if 0
386mViewCellsStorage(PVS_IN_INTERIORS)
387#else
388mViewCellsStorage(PVS_IN_LEAVES)
389#endif
[580]390{
[1264]391        ReadEnvironment();
392        MergeCandidate::sRenderCostWeight = mRenderCostWeight;
393}
394
395
396ViewCellsTree::ViewCellsTree():
397mRoot(NULL),
398mUseAreaForPvs(false),
399mViewCellsManager(NULL),
400#if 0
401mViewCellsStorage(PVS_IN_INTERIORS)
402#else
403mViewCellsStorage(PVS_IN_LEAVES)
404#endif
405{
406        ReadEnvironment();
407        MergeCandidate::sRenderCostWeight = mRenderCostWeight;
408}
409
410
411void ViewCellsTree::ReadEnvironment()
412{
[1004]413        Environment::GetSingleton()->GetBoolValue("ViewCells.Visualization.exportMergedViewCells", mExportMergedViewCells);
414        Environment::GetSingleton()->GetFloatValue("ViewCells.maxStaticMemory", mMaxMemory);
[580]415
416        //-- merge options
[1004]417        Environment::GetSingleton()->GetFloatValue("ViewCells.PostProcess.renderCostWeight", mRenderCostWeight);
418        Environment::GetSingleton()->GetIntValue("ViewCells.PostProcess.minViewCells", mMergeMinViewCells);
419        Environment::GetSingleton()->GetFloatValue("ViewCells.PostProcess.maxCostRatio", mMergeMaxCostRatio);
420        Environment::GetSingleton()->GetBoolValue("ViewCells.PostProcess.refine", mRefineViewCells);   
[582]421
[1004]422        Environment::GetSingleton()->GetIntValue("ViewCells.PostProcess.maxMergesPerPass", mMaxMergesPerPass);
423        Environment::GetSingleton()->GetFloatValue("ViewCells.PostProcess.avgCostMaxDeviation", mAvgCostMaxDeviation);
[586]424
[938]425        Debug << "============= view cell tree options ================\n";
[582]426        Debug << "minimum view cells: " << mMergeMinViewCells << endl;
427        Debug << "max cost ratio: " << mMergeMaxCostRatio << endl;
428        Debug << "max memory: " << mMaxMemory << endl;
[586]429        Debug << "refining view cells: " << mRefineViewCells << endl;
[1027]430        Debug << "=========== end view cell tree options ===============\n";
[580]431}
432
433
[582]434// return memory usage in MB
435float ViewCellsTree::GetMemUsage() const
436{
[752]437        // TODO
[582]438        return 0;
439                /*(sizeof(ViewCellsTree) +
440                 mBspStats.Leaves() * sizeof(BspLeaf) +
441                 mBspStats.Interior() * sizeof(BspInterior) +
442                 mBspStats.accumRays * sizeof(RayInfo)) / (1024.0f * 1024.0f);*/
443}
444
445
[736]446int ViewCellsTree::GetNumInitialViewCells(ViewCell *vc) const
[580]447{
448        int vcSize = 0;
449
450        stack<ViewCell *> tstack;
451
452        tstack.push(vc);
453
454        while (!tstack.empty())
455        {
456                ViewCell *vc = tstack.top();
457                tstack.pop();
458
459                if (vc->IsLeaf())
460                {
461                        ++ vcSize;
462                }
463                else
464                {
465                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
[1233]466
[580]467                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
[1233]468                       
[580]469                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
[1233]470                        {
[580]471                                tstack.push(*it);
[1233]472                        }
[580]473                       
474                }
475        }
476
477        return vcSize;
478}
479
480
481void ViewCellsTree::CollectLeaves(ViewCell *vc, ViewCellContainer &leaves) const
482{
483        stack<ViewCell *> tstack;
484
485        tstack.push(vc);
486
487        while (!tstack.empty())
488        {
489                ViewCell *vc = tstack.top();
490                tstack.pop();
491
492                if (vc->IsLeaf())
493                {
494                        leaves.push_back(vc);
495                }
496                else
497                {
498                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
499                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
[664]500
[580]501                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
[664]502                        {
[580]503                                tstack.push(*it);
[664]504                        }
[580]505                }
506        }
507}
508
509
510ViewCellsTree::~ViewCellsTree()
511{
512        DEL_PTR(mRoot);
513}
514
515
516int ViewCellsTree::ConstructMergeTree(const VssRayContainer &rays,
517                                                                          const ObjectContainer &objects)
518{
[582]519        mNumActiveViewCells = (int)mViewCellsManager->GetViewCells().size();
[580]520
521        float variance = 0;
[1709]522        float totalPvs = 0;
[600]523        float totalRenderCost = 0;
[580]524
525        //-- compute statistics values of initial view cells
[600]526        mViewCellsManager->EvaluateRenderStatistics(totalRenderCost,
[580]527                                                                                                mExpectedCost,
528                                                                                                mDeviation,
529                                                                                                variance,
530                                                                                                totalPvs,
531                                                                                                mAvgRenderCost);
532
533
534        //-- fill merge queue
535        vector<MergeCandidate> candidates;
536
537        mViewCellsManager->CollectMergeCandidates(rays, candidates);
[703]538
[580]539        while(!candidates.empty())
540        {
541                MergeCandidate mc = candidates.back();
542                candidates.pop_back();
543                EvalMergeCost(mc);
544                mMergeQueue.push(mc);
545        }
546
547        Debug << "************************* merge ***********************************" << endl; 
548        Debug << "deviation: " << mDeviation << endl;
549        Debug << "avg render cost: " << mAvgRenderCost << endl;
[600]550        Debug << "expected cost: " << mExpectedCost << endl;
[580]551
552
553        ViewCellsManager::PvsStatistics pvsStats;
554        mViewCellsManager->GetPvsStatistics(pvsStats);
555
[605]556        //static float expectedValue = pvsStats.avgPvs;
[580]557       
[881]558        //-- the current view cells are kept in this container
559        //-- we start with the current view cells from the view cell manager.
560        //-- The active view cells will change with subsequent merges
[752]561       
[720]562        // todo: should rather take initial view cells
563    ViewCellContainer &activeViewCells = mViewCellsManager->GetViewCells();
564       
[752]565       
[580]566        ViewCell::NewMail();
567
568        MergeStatistics mergeStats;
569        mergeStats.Start();
570       
571        long startTime = GetTime();
572
573        mergeStats.collectTime = TimeDiff(startTime, GetTime());
574        mergeStats.candidates = (int)mMergeQueue.size();
575        startTime = GetTime();
576
577        // frequency stats are updated
[650]578        const int statsOut = 500;
[734]579       
[580]580        // passes are needed for statistics, because we don't want to record
581        // every merge
582        int pass = 0;
583        int mergedPerPass = 0;
584        float realExpectedCost = mExpectedCost;
585        float realAvgRenderCost = mAvgRenderCost;
[582]586        int realNumActiveViewCells = mNumActiveViewCells;
[580]587       
588        // maximal ratio of old expected render cost to expected render
589        // when the the render queue has to be reset.
[582]590        int numMergedViewCells = 0;
[938]591               
[580]592
593        cout << "actual merge starts now ... " << endl;
[604]594
[580]595        //-- use priority queue to merge leaf pairs
[612]596
[881]597        while (!mMergeQueue.empty())
[580]598        {
599                //-- reset merge queue if the ratio of current expected cost / real expected cost
600                //   too small or after a given number of merges
[938]601                if ((mergedPerPass > mMaxMergesPerPass) ||
602                        (mAvgCostMaxDeviation > mAvgRenderCost / realAvgRenderCost))
[580]603                {
604                        Debug << "************ reset queue *****************\n"
[938]605                                  << "ratios: " << mAvgCostMaxDeviation
[580]606                                  << " real avg render cost " << realAvgRenderCost << " average render cost " << mAvgRenderCost
[938]607                                  << " merged per pass : " << mergedPerPass << " of maximal " << mMaxMergesPerPass << endl;
[580]608
609                        Debug << "Values before reset: " 
610                                  << " erc: " << mExpectedCost
611                                  << " avgrc: " << mAvgRenderCost
612                                  << " dev: " << mDeviation << endl;
613       
614                        // adjust render cost
615                        ++ pass;
616
617                        mergedPerPass = 0;
618                        mExpectedCost = realExpectedCost;
619                        mAvgRenderCost = realAvgRenderCost;
[582]620                        mNumActiveViewCells = realNumActiveViewCells;
[580]621                       
[582]622                        const int numMergedViewCells = UpdateActiveViewCells(activeViewCells);
623               
[1603]624                        /////////////////
625                        //-- reset / refine the view cells
[720]626                        //-- priorities are recomputed
627                        //-- the candidates are put back into merge queue
[1603]628
[586]629                        if (mRefineViewCells)
630                                RefineViewCells(rays, objects);
631                        else
632                                ResetMergeQueue();
[580]633
634                        Debug << "Values after reset: " 
635                                  << " erc: " << mExpectedCost
636                                  << " avg: " << mAvgRenderCost
637                                  << " dev: " << mDeviation << endl;
638
639                        if (mExportMergedViewCells)
640                        {
[582]641                                ExportMergedViewCells(activeViewCells, objects, numMergedViewCells);
[580]642                        }
643                }
644
645
646                MergeCandidate mc = mMergeQueue.top();
647                mMergeQueue.pop();
648       
[710]649                // both view cells equal because of previous merges
[582]650                // NOTE: do I really still need this? probably cannot happen!!
[580]651                if (mc.mLeftViewCell == mc.mRightViewCell)
652                        continue;
653
654                if (mc.IsValid())
655                {
656                        ViewCell::NewMail();
[600]657
658                        //-- update statistical values
[582]659                        -- realNumActiveViewCells;
[580]660                        ++ mergeStats.merged;
661                        ++ mergedPerPass;
662
[600]663                        const float renderCostIncr = mc.GetRenderCost();
664                        const float mergeCostIncr = mc.GetMergeCost();
[580]665
[600]666                        totalRenderCost += renderCostIncr;
[580]667                        mDeviation += mc.GetDeviationIncr();
[710]668
669                                               
670                        //-- merge the view cells of leaf1 and leaf2
[1709]671                        float pvsDiff;
[580]672                        ViewCellInterior *mergedVc =
[1709]673                                MergeViewCells(mc.mLeftViewCell, mc.mRightViewCell, pvsDiff);   
[580]674
[600]675                        // total render cost and deviation has changed
676                        // real expected cost will be larger than expected cost used for the
677                        // cost heuristics, but cannot recompute costs on each increase of the
678                        // expected cost
[580]679                        totalPvs += pvsDiff;
[600]680                        realExpectedCost = totalRenderCost / (float)realNumActiveViewCells;
681                        realAvgRenderCost = (float)totalPvs / (float)realNumActiveViewCells;
682       
[801]683                        // set merge cost to this node for priority traversal
[837]684                        mergedVc->SetMergeCost(totalRenderCost);
685                       
686                        // check if "siblings (back and front node of the same parent)
[1706]687                        if (0) ++ mergeStats.siblings;
688
689                        // set the cost for rendering a view cell
[608]690                        mergedVc->SetCost(realExpectedCost);
[607]691
[650]692                        if ((mergeStats.merged % statsOut) == 0)
[580]693                                cout << "merged " << mergeStats.merged << " view cells" << endl;
694
695                }
696                else
697                {
698                        // merge candidate not valid, because one of the leaves was already
699                        // merged with another one => validate and reinsert into queue
[582]700                        if (ValidateMergeCandidate(mc))
701                        {
702                                EvalMergeCost(mc);
703                                mMergeQueue.push(mc);
704                        }
[580]705                }
[612]706               
[580]707        }
708
709        // adjust stats and reset queue one final time
710        mExpectedCost = realExpectedCost;
711        mAvgRenderCost = realAvgRenderCost;
[582]712        mNumActiveViewCells = realNumActiveViewCells;
[580]713
[582]714        UpdateActiveViewCells(activeViewCells);
[580]715
[586]716        // refine view cells and reset costs
717        if (mRefineViewCells)
718                RefineViewCells(rays, objects);
719        else
720                ResetMergeQueue();
721
[708]722
[580]723        // create a root node if the merge was not done till root level,
724        // else take the single node as new root
[582]725        if ((int)activeViewCells.size() > 1)
[580]726        {
[587]727                Debug << "creating root of view cell hierarchy for "
728                          << (int)activeViewCells.size() << " view cells" << endl;
[612]729               
[582]730                ViewCellInterior *root = mViewCellsManager->MergeViewCells(activeViewCells);
[710]731       
732                ViewCellContainer::const_iterator it, it_end = root->mChildren.end();
733
734                for (it = root->mChildren.begin(); it != it_end; ++ it)
735                        (*it)->SetParent(root);
736       
[600]737                root->SetMergeCost(totalRenderCost);
[608]738                // $$JB keep this 0 temporarilly
739                root->SetCost(0.0f);
[612]740
[580]741                mRoot = root;
742        }
[710]743        // normal case
744        else if (!activeViewCells.empty())
[580]745        {
[582]746                Debug << "setting root of the merge history" << endl;
747                mRoot = activeViewCells[0];
[580]748        }
[752]749        else
750        {
751                Debug << "big error, root is NULL" << endl;
752        }
[708]753       
[644]754        //-- empty merge queue just in case
[600]755        while (!mMergeQueue.empty())
756        {
757                mMergeQueue.pop();
758        }
[837]759
[1706]760        // test if computed volumes are correct
761        Debug << "volume of the root view cell: " << mRoot->GetVolume()
762                  << " " << mViewCellsManager->GetViewSpaceBox().GetVolume() << endl;
[837]763       
764        // TODO: delete because makes no sense here
[580]765        mergeStats.expectedRenderCost = realExpectedCost;
766        mergeStats.deviation = mDeviation;
767
768        // we want to optimize this heuristics
769        mergeStats.heuristics =
770                mDeviation * (1.0f - mRenderCostWeight) +
771                mExpectedCost * mRenderCostWeight;
772
773        mergeStats.mergeTime = TimeDiff(startTime, GetTime());
774        mergeStats.Stop();
775        Debug << mergeStats << endl << endl;
776
[608]777        // assign colors for the view cells so that at least one is always consistent
778        AssignRandomColors();
[708]779
[580]780        //TODO: should return sample contributions?
781        return mergeStats.merged;
782}
783
784
[584]785ViewCell *ViewCellsTree::GetRoot() const
[581]786{
787        return mRoot;
788}
789
790
[580]791void ViewCellsTree::ResetMergeQueue()
792{
793        cout << "reset merge queue ... ";
794       
795        vector<MergeCandidate> buf;
796        buf.reserve(mMergeQueue.size());
797                       
798       
799        // store merge candidates in intermediate buffer
800        while (!mMergeQueue.empty())
801        {
802                MergeCandidate mc = mMergeQueue.top();
803                mMergeQueue.pop();
804               
805                // recalculate cost
[582]806                if (ValidateMergeCandidate(mc))
807                {
808                        EvalMergeCost(mc);
809                        buf.push_back(mc);                             
810                }
[580]811        }
812
813        vector<MergeCandidate>::const_iterator bit, bit_end = buf.end();
814
815        // reinsert back into queue
816        for (bit = buf.begin(); bit != bit_end; ++ bit)
817        {     
818                mMergeQueue.push(*bit);
819        }
820
821        cout << "finished" << endl;
822}
823
824
[1002]825float ViewCellsTree::ComputeMergedPvsCost(const ObjectPvs &pvs1,
826                                                                                  const ObjectPvs &pvs2) const
827{
828        // computes render cost of merge
829        float renderCost = 0;
830
831        // compute new pvs size
832        ObjectPvsMap::const_iterator it, it_end =  pvs1.mEntries.end();
833
834        Intersectable::NewMail();
835
836        // first mail all objects in first pvs
837        for (it = pvs1.mEntries.begin(); it != it_end; ++ it)
838        {
839                Intersectable *obj = (*it).first;
840
841                obj->Mail();
842                renderCost += mViewCellsManager->EvalRenderCost(obj);
843        }
844
845        it_end = pvs2.mEntries.end();
846
847       
848        for (it = pvs2.mEntries.begin(); it != it_end; ++ it)
849        {
850                Intersectable *obj = (*it).first;
851
852                // test if object already considered   
853                if (!obj->Mailed())
854                {
855                        renderCost += mViewCellsManager->EvalRenderCost(obj);
856                }
857        }
858
859        return renderCost;
860}
861
862
[582]863int ViewCellsTree::UpdateActiveViewCells(ViewCellContainer &viewCells)
[580]864{
[582]865        int numMergedViewCells = 0;
[580]866
[584]867        Debug << "updating active vc: " << (int)viewCells.size() << endl;
[1141]868       
869        // find all already merged view cells and remove them from the
870        // container view cells
[582]871               
872        // sort out all view cells which are not active anymore, i.e., they
873        // were already part of a merge
[580]874        int i = 0;
875
[582]876        ViewCell::NewMail();
877
[580]878        while (1)
879        {
[582]880                // remove all merged view cells from end of the vector
881                while (!viewCells.empty() && (viewCells.back()->GetParent()))
[580]882                {
883                        viewCells.pop_back();
884                }
885
886                // all merged view cells have been found
[710]887                if (i >= (int)viewCells.size())
[580]888                        break;
889
[710]890                // already merged this view cell, put it to end of vector
[582]891                if (viewCells[i]->GetParent())
[580]892                        swap(viewCells[i], viewCells.back());
893               
[752]894                // mail view cell that it has not been merged
[710]895                viewCells[i]->Mail();
896
897                // increase loop counter
898                ++ i;
[580]899        }
900
[582]901
[580]902        // add new view cells to container only if they don't have been
903        // merged in the mean time
[582]904        ViewCellContainer::const_iterator ait, ait_end = mMergedViewCells.end();
[752]905
[582]906        for (ait = mMergedViewCells.begin(); ait != ait_end; ++ ait)
[580]907        {
[582]908                ViewCell *vc = mMergedViewCells.back();
909                if (!vc->GetParent() && !vc->Mailed())
[580]910                {
[582]911                        vc->Mail();
912                        viewCells.push_back(vc);
913                        ++ numMergedViewCells;
[580]914                }
915        }
916
[752]917        // dispose old merged view cells
[582]918        mMergedViewCells.clear();
919
[580]920        // update standard deviation
921        ViewCellContainer::const_iterator vit, vit_end = viewCells.end();
922       
923        mDeviation = 0;
924
925        for (vit = viewCells.begin(); vit != vit_end; ++ vit)
926        {
[1709]927                const float lower = (float)mViewCellsManager->GetMinPvsSize();
928                const float upper = (float)mViewCellsManager->GetMaxPvsSize();
[752]929
[1707]930                const float penalty = EvalPvsPenalty((*vit)->GetPvs().EvalPvsCost(), lower, upper);
[580]931               
932                mDeviation += fabs(mAvgRenderCost - penalty);
933        }
934
935        mDeviation /= (float)viewCells.size();
[582]936       
937        return numMergedViewCells;
[580]938}
939
940
941void ViewCellsTree::ExportMergedViewCells(ViewCellContainer &viewCells,
942                                                                                  const ObjectContainer &objects,
[582]943                                                                                  const int numMergedViewCells)
[580]944{
945       
946
947        char s[64];
948
949        sprintf(s, "merged_viewcells%07d.x3d", (int)viewCells.size());
950        Exporter *exporter = Exporter::GetExporter(s);
951
952        if (exporter)
953        {
954                cout << "exporting " << (int)viewCells.size() << " merged view cells ... ";
955                exporter->ExportGeometry(objects);
956                //Debug << "vc size " << (int)viewCells.size() << " merge queue size: " << (int)mMergeQueue.size() << endl;
957                ViewCellContainer::const_iterator it, it_end = viewCells.end();
958
959                int i = 0;
960                for (it = viewCells.begin(); it != it_end; ++ it)
961                {
962                        Material m;
963                        // assign special material to new view cells
964                        // new view cells are on the back of container
[582]965                        if (i ++ >= (viewCells.size() - numMergedViewCells))
[580]966                        {
967                                //m = RandomMaterial();
968                                m.mDiffuseColor.r = RandomValue(0.5f, 1.0f);
969                                m.mDiffuseColor.g = RandomValue(0.5f, 1.0f);
970                                m.mDiffuseColor.b = RandomValue(0.5f, 1.0f);
971                        }
972                        else
973                        {
974                                float col = RandomValue(0.1f, 0.4f);
975                                m.mDiffuseColor.r = col;
976                                m.mDiffuseColor.g = col;
977                                m.mDiffuseColor.b = col;
978                        }
979
980                        exporter->SetForcedMaterial(m);
[1416]981                        mViewCellsManager->ExportViewCellGeometry(exporter, *it, NULL, NULL);
[580]982                }
[1416]983
[580]984                delete exporter;
985                cout << "finished" << endl;
986        }
987}
988
989
990// TODO: should be done in view cells manager
[1141]991ViewCellInterior *ViewCellsTree::MergeViewCells(ViewCell *left,
992                                                                                                ViewCell *right,
[1709]993                                                                                                float &pvsDiff) //const
[580]994{
[1141]995        // create merged view cell
996        ViewCellInterior *vc =
997                mViewCellsManager->MergeViewCells(left, right);
[580]998
999        // if merge was unsuccessful
1000        if (!vc) return NULL;
1001
[752]1002        // set to the new parent view cell
[1141]1003        left->SetParent(vc);
1004        right->SetParent(vc);
[710]1005
[1141]1006       
[580]1007        if (mUseAreaForPvs)
[710]1008        {
[1141]1009                // set new area of view cell
1010                // not not correct, but costly to compute real area!!
1011                vc->SetArea(left->GetArea() + right->GetArea());
[710]1012        }
[580]1013        else
[1141]1014        {       // set new volume of view cell
1015                vc->SetVolume(left->GetVolume() + right->GetVolume());
[602]1016        }
[710]1017
1018       
[580]1019        // important so other merge candidates sharing this view cell
1020        // are notified that the merge cost must be updated!!
1021        vc->Mail();
1022
[1707]1023        const float pvs1 = left->GetPvs().EvalPvsCost();
1024        const float pvs2 = right->GetPvs().EvalPvsCost();
[580]1025
1026
[1141]1027        // the new view cells are stored in this container
[582]1028        mMergedViewCells.push_back(vc);
[580]1029
[1707]1030        pvsDiff = vc->GetPvs().EvalPvsCost() - pvs1 - pvs2;
[580]1031
[752]1032
[1141]1033        // don't store pvs in interior cells, just a scalar
[752]1034        if (mViewCellsStorage == PVS_IN_LEAVES)
1035        {
[1168]1036                // set scalars
1037                mViewCellsManager->UpdateScalarPvsSize(left,
[1707]1038                                left->GetPvs().EvalPvsCost(),
[1586]1039                                left->GetPvs().GetSize());
[1168]1040                       
[1141]1041                // remove pvs, we don't store interior pvss
1042                if (!left->IsLeaf())
1043                {
1044                        left->GetPvs().Clear();
1045                }
1046
[1168]1047                // set scalars
1048                mViewCellsManager->UpdateScalarPvsSize(right,
[1707]1049                        right->GetPvs().EvalPvsCost(),
[1168]1050                        right->GetPvs().GetSize());
1051
[1141]1052                right->mPvsSizeValid = true;
[752]1053               
[1141]1054                // remove pvs, we don't store interior pvss
1055                if (!right->IsLeaf())
1056                {
1057                        right->GetPvs().Clear();
1058                }
1059        }
[752]1060
[580]1061        return vc;
1062}
1063
1064
[586]1065int ViewCellsTree::RefineViewCells(const VssRayContainer &rays,
1066                                                                   const ObjectContainer &objects)
[580]1067{
1068        Debug << "refining " << (int)mMergeQueue.size() << " candidates " << endl;
[586]1069
1070        // intermediate buffer for shuffled view cells
1071        vector<MergeCandidate> buf;
1072        buf.reserve(mMergeQueue.size());
1073                       
[580]1074        // Use priority queue of remaining leaf pairs
1075        // The candidates either share the same view cells or
1076        // are border leaves which share a boundary.
1077        // We test if they can be shuffled, i.e.,
1078        // either one leaf is made part of one view cell or the other
1079        // leaf is made part of the other view cell. It is tested if the
1080        // remaining view cells are "better" than the old ones.
1081       
[586]1082        const int numPasses = 3;
[580]1083        int pass = 0;
1084        int passShuffled = 0;
1085        int shuffled = 0;
1086        int shuffledViewCells = 0;
1087
1088        ViewCell::NewMail();
1089       
[586]1090        while (!mMergeQueue.empty())
[580]1091        {
[586]1092                MergeCandidate mc = mMergeQueue.top();
1093                mMergeQueue.pop();
[580]1094
[586]1095                // both view cells equal or already shuffled
1096                if ((mc.GetLeftViewCell() == mc.GetRightViewCell()) ||
1097                        mc.GetLeftViewCell()->IsLeaf() || mc.GetRightViewCell()->IsLeaf())
1098                {                       
1099                        continue;
1100                }
[580]1101
[586]1102                // candidate for shuffling
1103                const bool wasShuffled = ShuffleLeaves(mc);
[580]1104               
[586]1105                // shuffled or put into other queue for further refine
1106                if (wasShuffled)
1107                {
1108                        ++ passShuffled;
1109
1110                        if (!mc.GetLeftViewCell()->Mailed())
[580]1111                        {
[586]1112                                mc.GetLeftViewCell()->Mail();
1113                                ++ shuffledViewCells;
[580]1114                        }
[586]1115                        if (!mc.GetRightViewCell()->Mailed())
[580]1116                        {
[586]1117                                mc.GetRightViewCell()->Mail();
1118                                ++ shuffledViewCells;
[580]1119                        }
1120                }
1121
[586]1122                // put back into intermediate vector
1123                buf.push_back(mc);
[580]1124        }
1125
[586]1126
1127        //-- in the end, the candidates must be in the mergequeue again
1128        //   with the correct cost
1129
1130        cout << "reset merge queue ... ";
1131       
1132       
1133        vector<MergeCandidate>::const_iterator bit, bit_end = buf.end();
1134       
1135        for (bit = buf.begin(); bit != bit_end; ++ bit)
1136        {   
1137                MergeCandidate mc = *bit;
1138                // recalculate cost
1139                if (ValidateMergeCandidate(mc))
1140                {
1141                        EvalMergeCost(mc);
1142                        mMergeQueue.push(mc);   
1143                }
[580]1144        }
1145
[586]1146        cout << "finished" << endl;
1147
[580]1148        return shuffledViewCells;
1149}
1150
1151
1152inline int AddedPvsSize(ObjectPvs pvs1, const ObjectPvs &pvs2)
1153{
1154        return pvs1.AddPvs(pvs2);
1155}
1156
1157
1158// recomputes pvs size minus pvs of leaf l
1159#if 0
1160inline int SubtractedPvsSize(BspViewCell *vc, BspLeaf *l, const ObjectPvs &pvs2)
1161{
1162        ObjectPvs pvs;
1163        vector<BspLeaf *>::const_iterator it, it_end = vc->mLeaves.end();
1164        for (it = vc->mLeaves.begin(); it != vc->mLeaves.end(); ++ it)
1165                if (*it != l)
1166                        pvs.AddPvs(*(*it)->mPvs);
1167        return pvs.GetSize();
1168}
1169#endif
1170
1171
1172// computes pvs1 minus pvs2
1173inline int SubtractedPvsSize(ObjectPvs pvs1, const ObjectPvs &pvs2)
1174{
1175        return pvs1.SubtractPvs(pvs2);
1176}
1177
1178
1179float ViewCellsTree::EvalShuffleCost(ViewCell *leaf,
[586]1180                                                                         ViewCellInterior *vc1,
1181                                                                         ViewCellInterior *vc2) const
[580]1182{
1183        //const int pvs1 = SubtractedPvsSize(vc1, leaf, *leaf->mPvs);
[1709]1184        const float pvs1 = (float)SubtractedPvsSize(vc1->GetPvs(), leaf->GetPvs());
1185        const float pvs2 = (float)AddedPvsSize(vc2->GetPvs(), leaf->GetPvs());
[580]1186
[1709]1187        const float lowerPvsLimit = (float)mViewCellsManager->GetMinPvsSize();
1188        const float upperPvsLimit = (float)mViewCellsManager->GetMaxPvsSize();
[580]1189
1190        const float pvsPenalty1 =
1191                EvalPvsPenalty(pvs1, lowerPvsLimit, upperPvsLimit);
1192
1193        const float pvsPenalty2 =
1194                EvalPvsPenalty(pvs2, lowerPvsLimit, upperPvsLimit);
1195
1196
1197        // don't shuffle leaves with pvs > max
1198        if (0 && (pvs1 + pvs2 > mViewCellsManager->GetMaxPvsSize()))
1199        {
1200                return 1e20f;
1201        }
1202
1203        float p1, p2;
1204
1205    if (mUseAreaForPvs)
1206        {
1207                p1 = vc1->GetArea() - leaf->GetArea();
1208                p2 = vc2->GetArea() + leaf->GetArea();
1209        }
1210        else
1211        {
1212                p1 = vc1->GetVolume() - leaf->GetVolume();
1213                p2 = vc2->GetVolume() + leaf->GetVolume();
1214        }
1215
1216        const float renderCost1 = pvsPenalty1 * p1;
1217        const float renderCost2 = pvsPenalty2 * p2;
1218
1219        float dev1, dev2;
1220
1221        if (1)
1222        {
1223                dev1 = fabs(mAvgRenderCost - pvsPenalty1);
1224                dev2 = fabs(mAvgRenderCost - pvsPenalty2);
1225        }
1226        else
1227        {
1228                dev1 = fabs(mExpectedCost - renderCost1);
1229                dev2 = fabs(mExpectedCost - renderCost2);
1230        }
1231       
1232        return mRenderCostWeight * (renderCost1 + renderCost2) +
[582]1233                  (1.0f - mRenderCostWeight) * (dev1 + dev2) / (float)mNumActiveViewCells;
[580]1234}
1235
1236
1237void ViewCellsTree::ShuffleLeaf(ViewCell *leaf,
[586]1238                                                                ViewCellInterior *vc1,
1239                                                                ViewCellInterior *vc2) const
[580]1240{
1241        // compute new pvs and area
[586]1242        // TODO change
[580]1243        vc1->GetPvs().SubtractPvs(leaf->GetPvs());
1244        vc2->GetPvs().AddPvs(leaf->GetPvs());
1245       
1246        if (mUseAreaForPvs)
1247        {
1248                vc1->SetArea(vc1->GetArea() - leaf->GetArea());
1249                vc2->SetArea(vc2->GetArea() + leaf->GetArea());
1250        }
1251        else
1252        {
1253                vc1->SetVolume(vc1->GetVolume() - leaf->GetVolume());
1254                vc2->SetVolume(vc2->GetVolume() + leaf->GetVolume());
1255        }
1256
[586]1257       
1258        ViewCellInterior *p = dynamic_cast<ViewCellInterior *>(leaf->GetParent());
[580]1259
[586]1260        p->RemoveChildLink(leaf);
1261        vc2->SetupChildLink(leaf);
[580]1262}
1263
1264
[586]1265bool ViewCellsTree::ShuffleLeaves(MergeCandidate &mc) const
[580]1266{
1267        float cost1, cost2;
1268
[586]1269        ViewCellInterior *vc1 = dynamic_cast<ViewCellInterior *>(mc.GetLeftViewCell());
1270        ViewCellInterior *vc2 = dynamic_cast<ViewCellInterior *>(mc.GetRightViewCell());
1271
1272        ViewCell *leaf1 = mc.GetInitialLeftViewCell();
1273        ViewCell *leaf2 = mc.GetInitialRightViewCell();
1274
[580]1275        //-- first test if shuffling would decrease cost
[586]1276        cost1 = GetCostHeuristics(vc1);
1277        cost2 = GetCostHeuristics(vc2);
[580]1278
1279        const float oldCost = cost1 + cost2;
1280       
1281        float shuffledCost1 = Limits::Infinity;
1282        float shuffledCost2 = Limits::Infinity;
1283
[586]1284        if (leaf1)
1285                shuffledCost1 = EvalShuffleCost(leaf1, vc1, vc2);       
1286        if (leaf2)
1287                shuffledCost2 = EvalShuffleCost(leaf2, vc2, vc1);
[580]1288
1289        // if cost of shuffle is less than old cost => shuffle
1290        if ((oldCost <= shuffledCost1) && (oldCost <= shuffledCost2))
1291                return false;
1292       
1293        if (shuffledCost1 < shuffledCost2)
1294        {
[586]1295                if (leaf1)
1296                        ShuffleLeaf(leaf1, vc1, vc2);
1297                mc.mInitialLeftViewCell = NULL;
[580]1298        }
1299        else
1300        {
[586]1301                if (leaf2)
1302                        ShuffleLeaf(leaf2, vc2, vc1);
1303                mc.mInitialRightViewCell = NULL;
[580]1304        }
[586]1305
[580]1306        return true;
1307}
1308
1309
1310float ViewCellsTree::GetVariance(ViewCell *vc) const
1311{
[1709]1312        const float upper = (float)mViewCellsManager->GetMaxPvsSize();
1313        const float lower = (float)mViewCellsManager->GetMinPvsSize();
[580]1314
1315        if (1)
1316        {
[752]1317                const float penalty =
[1709]1318                        EvalPvsPenalty(GetPvsCost(vc), lower, upper);
[1141]1319
[752]1320                return (mAvgRenderCost - penalty) * (mAvgRenderCost - penalty) /
1321                        (float)mNumActiveViewCells;
[580]1322        }
1323
1324    const float leafCost = GetRenderCost(vc);
1325        return (mExpectedCost - leafCost) * (mExpectedCost - leafCost);
1326}
1327
1328
1329float ViewCellsTree::GetDeviation(ViewCell *vc) const
1330{
[1709]1331        const float upper = (float)mViewCellsManager->GetMaxPvsSize();
1332        const float lower = (float)mViewCellsManager->GetMinPvsSize();
[580]1333
1334        if (1)
1335        {
[1709]1336                const float penalty = EvalPvsPenalty(GetPvsCost(vc), lower, upper);
[582]1337                return fabs(mAvgRenderCost - penalty) / (float)mNumActiveViewCells;
[580]1338        }
1339
1340    const float renderCost = GetRenderCost(vc);
1341        return fabs(mExpectedCost - renderCost);
1342}
1343
1344
1345float ViewCellsTree::GetRenderCost(ViewCell *vc) const
1346{
1347        if (mUseAreaForPvs)
[1141]1348        {
[1707]1349                return vc->GetPvs().EvalPvsCost() * vc->GetArea();
[1141]1350        }
[580]1351
[1707]1352        return vc->GetPvs().EvalPvsCost() * vc->GetVolume();
[580]1353}
1354
1355
1356float ViewCellsTree::GetCostHeuristics(ViewCell *vc) const
1357{
1358        return GetRenderCost(vc) * mRenderCostWeight +
1359                   GetDeviation(vc) * (1.0f - mRenderCostWeight);
1360}
1361
1362
[582]1363bool ViewCellsTree::ValidateMergeCandidate(MergeCandidate &mc) const
[580]1364{
[752]1365        // propagate up so we have only the active view cells
[580]1366        while (mc.mLeftViewCell->mParent)
1367        {
1368                mc.mLeftViewCell = mc.mLeftViewCell->mParent;
1369        }
1370
1371        while (mc.mRightViewCell->mParent)
1372        {
1373                mc.mRightViewCell = mc.mRightViewCell->mParent;
1374        }
1375
[752]1376        // this view cell was already merged
1377        //return mc.mLeftViewCell && (mc.mLeftViewCell != mc.mRightViewCell);
[582]1378        return mc.mLeftViewCell != mc.mRightViewCell;
[580]1379}
1380
1381
1382void ViewCellsTree::EvalMergeCost(MergeCandidate &mc) const
1383{
[1586]1384        ///////////////////
[580]1385        //-- compute pvs difference
[1586]1386
[1709]1387        float newPvs;
[1586]1388       
[1709]1389        // not valid if not using const cost per object!!
1390        newPvs = ComputeMergedPvsCost(mc.mLeftViewCell->GetPvs(), mc.mRightViewCell->GetPvs());
[580]1391
[1709]1392
[1141]1393        const float newPenalty = EvalPvsPenalty(newPvs,
[1709]1394                                                                                        (float)mViewCellsManager->GetMinPvsSize(),
1395                                                                                        (float)mViewCellsManager->GetMaxPvsSize());
[729]1396
[580]1397        ViewCell *vc1 = mc.mLeftViewCell;
1398        ViewCell *vc2 = mc.mRightViewCell;
1399
1400        //-- compute ratio of old cost
[1586]1401        //-- (i.e., added size of left and right view cell times pvs size)
1402        //-- to new rendering cost (i.e, size of merged view cell times pvs size)
[580]1403        const float oldCost = GetRenderCost(vc1) + GetRenderCost(vc2);
1404
1405    const float newCost = mUseAreaForPvs ?
1406                (float)newPenalty * (vc1->GetArea() + vc2->GetArea()) :
1407                (float)newPenalty * (vc1->GetVolume() + vc2->GetVolume());
1408
1409
1410        // strong penalty if pvs size too large
1411        if (0 && (newPvs > mViewCellsManager->GetMaxPvsSize()))
1412        {
1413                mc.mRenderCost = 1e20f;
1414        }
1415        else
1416        {
1417                mc.mRenderCost = (newCost - oldCost) /
1418                        mViewCellsManager->GetViewSpaceBox().GetVolume();
1419        }       
1420       
[1586]1421        ///////////////////////////
1422        //-- merge cost also takes deviation into account
[580]1423
1424        float newDev, oldDev;
1425
1426        if (1)
[582]1427                newDev = fabs(mAvgRenderCost - newPenalty) / (float)mNumActiveViewCells;
[580]1428        else
[582]1429                newDev = fabs(mExpectedCost - newCost) / (float)mNumActiveViewCells;
[580]1430       
1431        oldDev = GetDeviation(vc1) + GetDeviation(vc2);
1432
1433        // compute deviation increase
1434        mc.mDeviationIncr = newDev - oldDev;
1435       
1436        //Debug << "render cost: " << mc.mRenderCost * mRenderCostWeight << endl;
1437        //Debug << "standard deviation: " << mc.mDeviationIncr * mRenderCostWeight << endl;
1438}
1439
[752]1440
1441void ViewCellsTree::SetViewCellsStorage(int stype)
[580]1442{
[752]1443        if (mViewCellsStorage == stype)
1444                return;
1445
1446        // TODO
1447        switch (stype)
[581]1448        {
[752]1449        case COMPRESSED:
[584]1450                CompressViewCellsPvs(mRoot);
[752]1451                break;
1452        default:
1453                break;
[584]1454        }
[752]1455
1456        mViewCellsStorage = stype;
[584]1457}
[580]1458
[752]1459
[584]1460void ViewCellsTree::CompressViewCellsPvs(ViewCell *root)
1461{
1462        if (!root->IsLeaf())
1463        {
1464                ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(root);
1465
1466        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
[585]1467               
[584]1468                // compress child sets first
1469                for (it = interior->mChildren.begin(); it != it_end; ++ it)
[581]1470                {
[584]1471                        CompressViewCellsPvs(*it);
[581]1472                }
[584]1473
[585]1474                // compress root node
[610]1475                PullUpVisibility(interior);
[581]1476        }
[580]1477}
1478
1479
[1166]1480void ViewCellsTree::UpdateStats(ofstream &stats,
[1709]1481                                                                const ViewCellsTreeStats &vcStats)
[1166]1482{
[1709]1483         stats << "#Pass\n" << vcStats.mPass << endl
1484                   << "#Splits\n" << vcStats.mNumViewCells << endl
1485                   << "#RenderCostDecrease\n" << vcStats.mRenderCostDecrease << endl // TODO
1486                   << "#TotalRenderCost\n" << vcStats.mTotalRenderCost << endl
1487                   << "#CurrentPvs\n" << vcStats.mCurrentPvsCost << endl
1488                   << "#ExpectedCost\n" << vcStats.mExpectedCost << endl
1489                   << "#AvgRenderCost\n" << vcStats.mAvgRenderCost << endl
1490                   << "#Deviation\n" << vcStats.mDeviation << endl
1491                   << "#TotalPvs\n" << vcStats.mTotalPvsCost << endl
1492                   << "#TotalEntriesInPvs\n" << vcStats.mEntriesInPvs << endl
1493                   << "#Memory\n" << vcStats.mMemoryCost << endl
1494                   << "#PvsSizeDecrease\n" << vcStats.mPvsSizeDecr << endl
1495                   << "#Volume\n" << vcStats.mVolume << endl
[1653]1496                   << endl;
[1166]1497}
1498
[1489]1499
[660]1500void ViewCellsTree::ExportStats(const string &mergeStats)
[650]1501{
1502        TraversalQueue tqueue;
1503        tqueue.push(mRoot);
[1666]1504
[1709]1505        ViewCellsTreeStats vcStats;
1506        vcStats.Reset();
1507
[1695]1508        //cout << "exporting stats ... " << endl;
[1709]1509        vcStats.mNumViewCells = 1;
[650]1510       
1511        const AxisAlignedBox3 box = mViewCellsManager->GetViewSpaceBox();
1512        const float vol = box.GetVolume();
1513
[1709]1514        const float rootPvs = GetPvsCost(mRoot);
[1161]1515        const int rootEntries = GetPvsEntries(mRoot);
[1709]1516       
1517        vcStats.mTotalPvsCost = rootPvs;
1518        vcStats.mTotalRenderCost = rootPvs;
1519        vcStats.mAvgRenderCost = rootPvs;
1520        vcStats.mExpectedCost = rootPvs;
1521       
1522        vcStats.mEntriesInPvs = rootEntries;
[650]1523
1524        ofstream stats;
[660]1525        stats.open(mergeStats.c_str());
[650]1526
[1709]1527        vcStats.mMemoryCost = (float)vcStats.mEntriesInPvs * ObjectPvs::GetEntrySize();
[1653]1528
[1603]1529        /////////////
[752]1530        //-- first view cell
[1603]1531
[1709]1532        UpdateStats(stats, vcStats);
1533                               
[1166]1534               
[1161]1535        //-- go through tree in the order of render cost decrease
1536        //-- which is the same order as the view cells were merged
1537        //-- or the reverse order of subdivision for subdivision-only
1538        //-- view cell hierarchies.
[650]1539
1540        while (!tqueue.empty())
1541        {
1542                ViewCell *vc = tqueue.top();
1543                tqueue.pop();
1544
1545                if (!vc->IsLeaf())
1546                {       
1547                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
[1166]1548
[1709]1549                        const float parentCost = GetPvsCost(interior);
[1166]1550                        const int parentPvsEntries = GetPvsEntries(interior);
[1709]1551            const float parentExpCost = (float)parentCost * interior->GetVolume();
[1166]1552
[1709]1553                        float childExpCost = 0;
[650]1554                        float childCost = 0;
[1166]1555                        int childPvsEntries = 0;
[650]1556
[1709]1557                        -- vcStats.mNumViewCells;
[650]1558
1559                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
[1179]1560
[650]1561                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
1562                        {
[1166]1563                                ViewCell *vc = *it;
[1168]1564
[1709]1565                                const float pvsCost = GetPvsCost(vc);
[1166]1566                                const int pvsEntries = GetPvsEntries(vc);
1567
[1709]1568                                childExpCost += childCost * vc->GetVolume();
1569                                childCost += pvsCost;
[1166]1570                                childPvsEntries += pvsEntries;
[650]1571
[1166]1572                                tqueue.push(vc);
[1709]1573                                ++ vcStats.mNumViewCells;
[650]1574                        }
1575
[1603]1576                        // update stats for this view cell
[1709]1577                        const float costDecr = (parentExpCost - childExpCost) / vol;
[650]1578
[1709]1579                        vcStats.mTotalRenderCost -= costDecr;
1580                        vcStats.mTotalPvsCost += childCost - parentCost;
1581                        vcStats.mEntriesInPvs += childPvsEntries - parentPvsEntries;
[1166]1582
[1709]1583                        vcStats.mExpectedCost = vcStats.mTotalRenderCost / (float)vcStats.mNumViewCells;
1584                        vcStats.mAvgRenderCost = vcStats.mTotalPvsCost / (float)vcStats.mNumViewCells;
[650]1585
[1709]1586                        vcStats.mMemoryCost = vcStats.mEntriesInPvs * ObjectPvs::GetEntrySize();
[1653]1587
[1709]1588                        UpdateStats(stats, vcStats);
[650]1589                }
1590        }
1591
1592        stats.close();
1593}
1594
1595
1596void ViewCellsTree::SetRoot(ViewCell *root)
1597{
1598        mRoot = root;
1599}
1600
[660]1601
[581]1602void ViewCellsTree::CollectBestViewCellSet(ViewCellContainer &viewCells,
1603                                                                                   const int numViewCells)
[580]1604{
1605        TraversalQueue tqueue;
[581]1606        tqueue.push(mRoot);
[582]1607       
[580]1608        while (!tqueue.empty())
1609        {
1610                ViewCell *vc = tqueue.top();
[650]1611                tqueue.pop();
1612
[582]1613                // save the view cells if it is a leaf or if enough view cells have already been traversed
1614                // because of the priority queue, this will be the optimal set of v
[650]1615                if (vc->IsLeaf() || ((viewCells.size() + tqueue.size() + 1) >= numViewCells))
[581]1616                {
1617                        viewCells.push_back(vc);
1618                }
[582]1619                else
1620                {       
[581]1621                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
[580]1622
[581]1623                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
1624
1625                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
1626                        {
1627                                tqueue.push(*it);
1628                        }
1629                }
[580]1630        }
1631}
[581]1632       
[580]1633
[610]1634void ViewCellsTree::PullUpVisibility(ViewCellInterior *interior)
[581]1635{
[584]1636        Intersectable::NewMail((int)interior->mChildren.size());
[580]1637
[581]1638        ViewCellContainer::const_iterator cit, cit_end = interior->mChildren.end();
1639
1640        ObjectPvsMap::const_iterator oit;
1641
1642        // mail all objects in the leaf sets
[584]1643        // we are interested in the objects which are present in all leaves
1644        // => count how often an object is part of a child set
[581]1645        for (cit = interior->mChildren.begin(); cit != cit_end; ++ cit)
1646        {
1647                ViewCell *vc = *cit;
1648
1649                ObjectPvsMap::const_iterator oit_end = vc->GetPvs().mEntries.end();
1650
1651                for (oit = vc->GetPvs().mEntries.begin(); oit != oit_end; ++ oit)
1652                {
[584]1653                        Intersectable *obj = (*oit).first;
1654                        if ((cit == interior->mChildren.begin()) && !obj->Mailed())
1655                                obj->Mail();
[581]1656                       
[584]1657                        int incm = obj->IncMail();
[581]1658                }
1659        }
1660
[1189]1661        interior->GetPvs().Clear();
[581]1662       
[584]1663       
[581]1664        // only the objects which are present in all leaf pvs
1665        // should remain in the parent pvs
[584]1666        // these are the objects which have been mailed in all children
[581]1667        for (cit = interior->mChildren.begin(); cit != cit_end; ++ cit)
1668        {
1669                ViewCell *vc = *cit;
1670
1671                ObjectPvsMap::const_iterator oit_end = vc->GetPvs().mEntries.end();
1672
1673                for (oit = vc->GetPvs().mEntries.begin(); oit != oit_end; ++ oit)
[585]1674                {               
[581]1675                        if ((*oit).first->Mailed((int)interior->mChildren.size()))
1676                        {       
1677                                interior->GetPvs().AddSample((*oit).first, (*oit).second.mSumPdf);
1678                        }
1679                }
1680        }
1681
[584]1682
1683        // delete all the objects from the leaf sets which were moved to parent pvs
[581]1684        ObjectPvsMap::const_iterator oit_end = interior->GetPvs().mEntries.end();
1685
1686        for (oit = interior->GetPvs().mEntries.begin(); oit != oit_end; ++ oit)
1687        {
1688                for (cit = interior->mChildren.begin(); cit != cit_end; ++ cit)
1689                {
[584]1690                        if (!(*cit)->GetPvs().RemoveSample((*oit).first, Limits::Infinity))
[1189]1691                        {
[584]1692                                Debug << "should not come here!" << endl;
[1189]1693                        }
[581]1694                }
1695        }
1696}
1697
[1168]1698
[1166]1699// TODO matt: implement this function for different storing methods
[584]1700void ViewCellsTree::GetPvs(ViewCell *vc, ObjectPvs &pvs) const
1701{
[1161]1702        // pvs is stored in each cell => just return pvs
[752]1703        if (mViewCellsStorage == PVS_IN_INTERIORS)
[801]1704        {
[585]1705                pvs = vc->GetPvs();
[801]1706                return;
1707        }
[585]1708
[1713]1709        ////////////////
[1161]1710        //-- pvs is not stored with the interiors => reconstruct
[801]1711        Intersectable::NewMail();
1712
[585]1713        ViewCell *root = vc;
1714       
[883]1715        // add pvs from this view cell to root
[585]1716        while (root->GetParent())
[584]1717        {
[585]1718                root = root->GetParent();
1719                pvs.AddPvs(root->GetPvs());
1720        }
[584]1721
[883]1722        // add pvs from leaves
[585]1723        stack<ViewCell *> tstack;
1724        tstack.push(vc);
[584]1725
[585]1726        while (!tstack.empty())
1727        {
1728                vc = tstack.top();
1729                tstack.pop();
1730
[1161]1731                // add newly found pvs to merged pvs
[585]1732                pvs.AddPvs(vc->GetPvs());
1733
[1161]1734                if (!vc->IsLeaf()) // interior cells: go down to leaf level
[584]1735                {
1736                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
1737                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
1738
1739                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
1740                        {
[585]1741                                tstack.push(*it);
1742                        }               
[584]1743                }
1744        }
1745}
1746
1747
[1709]1748float ViewCellsTree::GetPvsCostForLeafStorage(ViewCell *vc) const
[584]1749{
[1166]1750        // pvs is always stored directly in leaves
1751        if (vc->IsLeaf())
1752        {
[1707]1753                return vc->GetPvs().EvalPvsCost();
[1166]1754        }
[1168]1755       
[1707]1756        // interior nodes: pvs is either stored as a
1757        // scalar or has to be reconstructed from the leaves
[1168]1758        // the stored pvs size is the valid pvs size => just return scalar
1759        if (vc->mPvsSizeValid)
[1166]1760        {
[1709]1761                return vc->mPvsCost;
[1168]1762        }
1763       
1764        // if no valid pvs size stored as a scalar =>
1765        // compute current pvs size of interior from it's leaf nodes
1766        ViewCellContainer leaves;
1767        CollectLeaves(vc, leaves);
[1121]1768
[1168]1769        ViewCellContainer::const_iterator it, it_end = leaves.end();
[1166]1770
[1168]1771        Intersectable::NewMail();
1772        ObjectPvs newPvs;
[1166]1773
[1586]1774        // sum up uniquely found intersectables
[1168]1775        for (it = leaves.begin(); it != it_end; ++ it)
1776        {
1777                ObjectPvsMap::iterator oit, oit_end = (*it)->GetPvs().mEntries.end();
1778
1779                for (oit = (*it)->GetPvs().mEntries.begin(); oit != oit_end; ++ oit)
[1166]1780                {
[1168]1781                        Intersectable *intersect = (*oit).first;
1782
1783                        if (!intersect->Mailed())
1784                        {
1785                                intersect->Mail();
1786                                newPvs.AddSample(intersect, (*oit).second.mSumPdf);
1787                        }
[1166]1788                }
1789        }
1790
[1707]1791        return newPvs.EvalPvsCost();
[1166]1792}
1793
1794
1795int ViewCellsTree::GetEntriesInPvsForLeafStorage(ViewCell *vc) const
1796{
1797        // pvs is always stored directly in leaves
1798        if (vc->IsLeaf())
[752]1799        {
[1168]1800                return vc->GetPvs().GetSize();
[1166]1801        }
[1168]1802       
1803        // interior node
1804
1805        // interior nodes: pvs is either stored as a scalar or
1806        // has to be reconstructed from the leaves
1807
1808        // the stored pvs size is the valid pvs size => just return scalar
1809        if (vc->mPvsSizeValid)
[1166]1810        {
[1168]1811                return vc->mEntriesInPvs;
1812        }
1813       
1814        int pvsSize = 0;
[1161]1815
[1168]1816        // if no valid pvs size stored as a scalar =>
1817        // compute current pvs size of interior from it's leaf nodes
1818        ViewCellContainer leaves;
1819        CollectLeaves(vc, leaves);
[1161]1820
[1168]1821        ViewCellContainer::const_iterator it, it_end = leaves.end();
1822        Intersectable::NewMail();
[1161]1823
[1168]1824        // sum different intersectables
1825        for (it = leaves.begin(); it != it_end; ++ it)
1826        {
1827                ObjectPvsMap::iterator oit, oit_end = (*it)->GetPvs().mEntries.end();
[1161]1828
[1168]1829                for (oit = (*it)->GetPvs().mEntries.begin(); oit != oit_end; ++ oit)
[1166]1830                {
[1168]1831                        Intersectable *intersect = (*oit).first;
1832
1833                        if (!intersect->Mailed())
1834                        {
1835                                intersect->Mail();
1836                                ++ pvsSize;
1837                        }
[1166]1838                }
1839        }
[1161]1840
[1166]1841        return pvsSize;
1842}
[1161]1843
1844
[1709]1845float ViewCellsTree::GetPvsCostForCompressedStorage(ViewCell *vc) const
[1166]1846{
[1709]1847        float pvsCost = 0;
[1166]1848
[1545]1849        /////////////
[1166]1850        //-- compressed pvs
1851
1852        // the stored pvs size is the valid pvs size => just return scalar
1853        if (vc->mPvsSizeValid)
1854        {
[1709]1855                pvsCost = vc->mPvsCost;
[1166]1856        }
1857
1858        // if no pvs size stored, compute new one
1859        ViewCell *root = vc;
1860       
1861        // also add pvs from this view cell to root
1862        while (root->GetParent())
1863        {
1864                root = root->GetParent();
1865       
1866                // matt: bug! must evaluate kd pvss also
[1709]1867                pvsCost += CountPvsContribution(root);
[1166]1868        }
1869
1870        stack<ViewCell *> tstack;
1871        tstack.push(vc);
1872
1873        while (!tstack.empty())
1874        {
1875                vc = tstack.top();
1876                tstack.pop();
[1709]1877
[1166]1878                // matt: bug! must evaluate kd pvss also
[1709]1879                pvsCost += CountPvsContribution(vc);
[1166]1880
1881                if (!vc->IsLeaf())
[1161]1882                {
[1166]1883                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
1884                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
1885
1886                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
[752]1887                        {
[1166]1888                                tstack.push(*it);
1889                        }               
1890                }
1891        }
[1161]1892
[1709]1893        return pvsCost;
[1166]1894}
1895
1896
1897int ViewCellsTree::GetEntriesInPvsForCompressedStorage(ViewCell *vc) const
1898{
1899        int pvsSize = 0;
1900
[1586]1901        /////////////////
[1166]1902        //-- compressed pvs
1903
1904        // the stored pvs size is the valid pvs size => just return scalar
1905        if (vc->mPvsSizeValid)
1906        {
1907                pvsSize = vc->mEntriesInPvs;
1908        }
1909
1910        // if no pvs size stored, compute new one
1911        ViewCell *root = vc;
[752]1912       
[1166]1913        // also add pvs from this view cell to root
1914        while (root->GetParent())
1915        {
1916                root = root->GetParent();
1917                // count the pvs entries different from the already found ones 
[1586]1918                pvsSize += CountPvsContribution(root);
[1166]1919        }
[585]1920
[1166]1921        stack<ViewCell *> tstack;
1922        tstack.push(vc);
[719]1923
[1166]1924        while (!tstack.empty())
1925        {
1926                vc = tstack.top();
1927                tstack.pop();
[1161]1928       
[1166]1929                // count the pvs entries different from the already found ones 
[1586]1930                pvsSize += CountPvsContribution(vc);
[752]1931
[1166]1932                if (!vc->IsLeaf())
1933                {
1934                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
[1161]1935
[1166]1936                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
[1161]1937
[1166]1938                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
1939                        {
1940                                tstack.push(*it);
1941                        }               
1942                }
1943        }
1944
1945        return pvsSize;
1946}
1947
1948
[1709]1949float ViewCellsTree::GetPvsCost(ViewCell *vc) const
[1166]1950{
[1709]1951        float pvsCost = 0;
[1166]1952        Intersectable::NewMail();
1953
1954        ////////////////////////////////////////////////
[1311]1955        // for interiors, pvs can be stored using different methods
[1166]1956        //
1957
1958        switch (mViewCellsStorage)
1959        {
[1707]1960        case PVS_IN_LEAVES:
1961                // pvs is stored only in leaves
[1709]1962                pvsCost = GetPvsCostForLeafStorage(vc);                 
[1311]1963                break;
[1166]1964        case COMPRESSED:
[1709]1965                pvsCost = GetPvsCostForCompressedStorage(vc);
[1311]1966                break;
[1161]1967        case PVS_IN_INTERIORS:
1968        default:
1969                // pvs is stored consistently in the tree up to the root
1970                // just return pvs size
[1709]1971                pvsCost = vc->GetPvs().EvalPvsCost();   
[1161]1972                break;
1973        }
1974
[1709]1975        return pvsCost; 
[1161]1976}
1977
1978
1979int ViewCellsTree::GetPvsEntries(ViewCell *vc) const
1980{
1981        int pvsSize = 0;
1982
1983        Intersectable::NewMail();
1984
1985        ////////////////////////////////////////////////
1986        // for interiors, pvs can be stored using different methods
1987       
1988        switch (mViewCellsStorage)
1989        {
[1622]1990        case PVS_IN_LEAVES:
1991                {
1992                        //-- store pvs only in leaves
[1166]1993                        pvsSize = GetEntriesInPvsForLeafStorage(vc);
1994                        break;
[752]1995                }
1996        case COMPRESSED:
1997                {
[1166]1998                        pvsSize = GetEntriesInPvsForCompressedStorage(vc);
[752]1999                        break;
2000                }
2001        case PVS_IN_INTERIORS:
[997]2002        default:
[1161]2003                // pvs is stored consistently in the tree up to the root
2004                // just return pvs size
2005                pvsSize = vc->GetPvs().GetSize();       
2006                break;
[752]2007        }
[584]2008
2009        return pvsSize; 
2010}
2011
2012
2013float ViewCellsTree::GetMemoryCost(ViewCell *vc) const
2014{
[1667]2015        return (float)CountStoredPvsEntries(vc) * ObjectPvs::GetEntrySize();
[584]2016}
2017
[1586]2018//#if HAS_TO_BE_REDONE
2019int ViewCellsTree::CountStoredPvsEntries(ViewCell *root) const
[584]2020{
[1161]2021        int pvsSize = root->GetPvs().GetSize();
[584]2022
[1161]2023        // recursivly count leaves
2024        if (!root->IsLeaf())
[584]2025        {
[1161]2026                ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(root);
[584]2027
2028                ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
2029
2030                for (it = interior->mChildren.begin(); it != it_end; ++ it)
2031                {
[1586]2032                        pvsSize += CountStoredPvsEntries(*it);
[584]2033                }
2034        }
2035
2036        return pvsSize;         
2037}
[1586]2038//#endif
[584]2039
[752]2040int ViewCellsTree::ViewCellsStorage() const
[584]2041{
[752]2042        return mViewCellsStorage;
[584]2043}
2044
2045
[881]2046ViewCell *ViewCellsTree::GetActiveViewCell(ViewCellLeaf *vc) const
[590]2047{
[881]2048        return vc->GetActiveViewCell();
[590]2049}
2050
2051
[651]2052void ViewCellsTree::PropagatePvs(ViewCell *vc)
[664]2053{       
2054        ViewCell *viewCell = vc;
2055
[660]2056        // propagate pvs up
[664]2057        while (viewCell->GetParent())
[610]2058        {
[664]2059                viewCell->GetParent()->GetPvs().Merge(vc->GetPvs());
2060                viewCell = viewCell->GetParent();
[610]2061        }
[651]2062
2063        if (vc->IsLeaf())
2064                return;
2065
[660]2066        // propagate pvs to the leaves
[651]2067        stack<ViewCell *> tstack;
2068        tstack.push(vc);
2069
2070        while (!tstack.empty())
2071        {
2072                ViewCell *viewCell = tstack.top();
2073                tstack.pop();
2074
2075                if (viewCell != vc)
2076                {
2077                        viewCell->GetPvs().Merge(vc->GetPvs());
2078                }
2079
2080                if (!viewCell->IsLeaf())
2081                {
2082                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(viewCell);
[664]2083
[651]2084                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
2085
2086                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
2087                        {
2088                                tstack.push(*it);
2089                        }
2090                }
2091        }
[610]2092}
[605]2093
[610]2094
[650]2095void ViewCellsTree::AssignRandomColors()
[608]2096{
[675]2097        TraversalQueue tqueue;
2098        tqueue.push(mRoot);
[708]2099       
[675]2100        mRoot->SetColor(RandomColor(0.3f, 1.0f));
2101       
2102        while (!tqueue.empty())
[608]2103        {
[675]2104                ViewCell *vc = tqueue.top();
2105                tqueue.pop();
[650]2106
[675]2107                // save the view cells if it is a leaf or if enough view cells have already been traversed
2108                // because of the priority queue, this will be the optimal set of v
2109                if (!vc->IsLeaf())
2110                {       
2111                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
2112                 
2113                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
2114                 
2115                        float maxProbability = -1.0f;
2116                 
2117                        ViewCell *maxViewCell = NULL;
2118                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
2119                        {
2120                                ViewCell *v = *it;
2121                         
2122                                // set random color
2123                                v->SetColor(RandomColor(0.3f, 1.0f));
2124                         
2125                                if (v->GetVolume() > maxProbability)
2126                                {
2127                                        maxProbability = v->GetVolume();
2128                                        maxViewCell = v;
2129                                }
2130
2131                                if (maxViewCell)
[708]2132                                {
[675]2133                                        maxViewCell->SetColor(vc->GetColor());
[708]2134                                }
[675]2135                               
2136                                tqueue.push(v);
2137                        }
2138                }       
[608]2139        }
2140}
2141
[675]2142
[1161]2143/** Get costs resulting from each merge step.
2144*/
[1603]2145void ViewCellsTree::GetCostFunction(vector<float> &costFunction)
[608]2146{
[1603]2147        TraversalQueue tqueue;
2148        tqueue.push(mRoot);
2149
2150        int numViewCells = 1;
2151
2152        const float vol = mViewCellsManager->GetViewSpaceBox().GetVolume();
[1709]2153        const float rootPvs = GetPvsCost(mRoot);
[1603]2154       
2155        float totalRenderCost;
2156
[1709]2157        float totalPvsCost = rootPvs;
[1603]2158        totalRenderCost = (float)rootPvs;
2159
2160        costFunction.push_back(totalRenderCost);
2161
2162        //-- go through tree in the order of render cost decrease
2163        //-- which is the same order as the view cells were merged
2164        //-- or the reverse order of subdivision for subdivision-only
2165        //-- view cell hierarchies.
2166
2167        while (!tqueue.empty())
[1161]2168        {
[1603]2169                ViewCell *vc = tqueue.top();
2170                tqueue.pop();
2171
2172                if (!vc->IsLeaf())
2173                {       
2174                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
2175
[1709]2176                        const float parentCost = GetPvsCost(interior);
2177                        const float parentExpCost = parentCost * interior->GetVolume();
[1603]2178
2179                        -- numViewCells;
2180
[1709]2181                        float childExpCost = 0;
[1603]2182                        float childCost = 0;
2183                       
2184                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
2185
2186                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
2187                        {
2188                                ViewCell *vc = *it;
2189
[1709]2190                                const float pvsCost = GetPvsCost(vc);
[1603]2191                               
[1709]2192                                childExpCost += (float) pvsCost * vc->GetVolume();
2193                                childCost += pvsCost;
[1603]2194                               
2195                                tqueue.push(vc);
2196                                ++ numViewCells;
2197                        }
2198
2199                        // update stats for this view cell
[1709]2200                        const float costDecr = (parentExpCost - childExpCost) / vol;
[1603]2201                        totalRenderCost -= costDecr;
[1709]2202                       
2203                        costFunction.push_back(totalRenderCost);
[1161]2204                }
[608]2205        }
2206}
2207
2208
[1603]2209/** Get storage costs resulting from each merge step.
2210*/
2211void ViewCellsTree::GetStorageFunction(vector<int> &storageFunction)
2212{
2213        TraversalQueue tqueue;
2214        tqueue.push(mRoot);
2215
2216        int numViewCells = 1;
2217
2218        const float vol = mViewCellsManager->GetViewSpaceBox().GetVolume();
2219        const int rootEntries = GetPvsEntries(mRoot);
2220
2221        int entriesInPvs = rootEntries;
[1605]2222    const int entryStorage = sizeof(PvsData) + sizeof(int); // one entry into the pvs
[1603]2223
2224        storageFunction.push_back(rootEntries);
2225
2226        ////////////
2227        //-- go through tree in the order of render cost decrease
2228        //-- which is the same order as the view cells were merged
2229        //-- or the reverse order of subdivision for subdivision-only
2230        //-- view cell hierarchies.
2231
2232        while (!tqueue.empty())
2233        {
2234                ViewCell *vc = tqueue.top();
2235                tqueue.pop();
2236
2237                if (!vc->IsLeaf())
2238                {       
2239                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
2240
[1709]2241                        const float parentPvsCost = GetPvsCost(interior);
[1603]2242                        const int parentPvsEntries = GetPvsEntries(interior);
[1709]2243            const float parentExpCost = (float)parentPvsCost * interior->GetVolume();
[1603]2244
[1709]2245                        float childExpCost = 0;
[1603]2246                        int childPvs = 0;
2247                        int childPvsEntries = 0;
2248
2249                        -- numViewCells;
2250
2251                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
2252
2253                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
2254                        {
2255                                ViewCell *vc = *it;
2256
2257                                const int pvsEntries = GetPvsEntries(vc);
2258                                childPvsEntries += pvsEntries;
2259
2260                                tqueue.push(vc);
2261                                ++ numViewCells;
2262                        }
2263
2264                        // update stats for this view cell
[1709]2265                        const float costDecr = (parentExpCost - childExpCost) / vol;
[1603]2266
2267                        entriesInPvs += childPvsEntries - parentPvsEntries;
2268
2269                        const int storageCost = entriesInPvs * entryStorage;
2270                        storageFunction.push_back(storageCost);
2271                }
2272        }
2273}
2274
2275
2276
[1161]2277void ViewCellsTree::UpdateViewCellsStats(ViewCell *vc,
2278                                                                                 ViewCellsStatistics &vcStat)
[605]2279{
2280        ++ vcStat.viewCells;
2281               
[1709]2282        const float pvsCost = GetPvsCost(vc);
[605]2283
[1709]2284        vcStat.pvsCost += pvsCost;
[605]2285
[1709]2286        if (pvsCost < Limits::Small)
[605]2287                ++ vcStat.emptyPvs;
2288
[1709]2289        if (pvsCost > vcStat.maxPvs)
2290                vcStat.maxPvs = pvsCost;
[605]2291
[1709]2292        if (pvsCost < vcStat.minPvs)
2293                vcStat.minPvs = pvsCost;
[605]2294
2295        if (!vc->GetValid())
2296                ++ vcStat.invalid;
2297}
2298
[1161]2299
[1201]2300bool ViewCellsTree::Export(OUT_STREAM &stream, const bool exportPvs)
[610]2301{
[840]2302        // export recursivly all view cells from the root
[844]2303        ExportViewCell(mRoot, stream, exportPvs);
[605]2304
[610]2305        return true;
2306}
2307
2308
[651]2309void ViewCellsTree::CreateUniqueViewCellsIds()
[610]2310{
[651]2311        stack<ViewCell *> tstack;
[610]2312
[651]2313        int currentId = 0;
2314
2315        tstack.push(mRoot);
2316
2317        while (!tstack.empty())
[610]2318        {
[651]2319                ViewCell *vc = tstack.top();
2320                tstack.pop();
2321
[1551]2322                if (vc->GetId() != -1) // out of bounds
2323                        vc->SetId(currentId ++);
[651]2324
2325                if (!vc->IsLeaf())
2326                {
2327                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
[1161]2328                       
[651]2329                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
2330                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
2331                        {
2332                                tstack.push(*it);
2333                        }
2334                }
[610]2335        }
[651]2336}
[610]2337
[1201]2338
2339void ViewCellsTree::ExportPvs(ViewCell *viewCell, OUT_STREAM &stream)
[651]2340{
2341        ObjectPvsMap::iterator it, it_end = viewCell->GetPvs().mEntries.end();
2342
[837]2343        for (it = viewCell->GetPvs().mEntries.begin(); it != it_end; ++ it)
2344        {
[1614]2345                Intersectable *obj = (*it).first;
2346                // hack: just output full pvs
2347                if (obj->Type() == Intersectable::BVH_INTERSECTABLE)
2348                {
2349                        ObjectContainer objects;
2350                        BvhNode *node = dynamic_cast<BvhIntersectable *>(obj)->GetItem();
2351                        node->CollectObjects(objects);
2352               
2353                        ObjectContainer::const_iterator oit, oit_end = objects.end();
2354                        for (oit = objects.begin(); oit != oit_end; ++ oit)
2355                        {
2356                                stream << (*oit)->GetId() << " ";
2357                        }
2358                }
2359                else
2360                {
2361                        stream << (*it).first->GetId() << " ";
2362                }
[837]2363        }
2364}
2365
[1201]2366
2367void ViewCellsTree::ExportViewCell(ViewCell *viewCell,
2368                                                                   OUT_STREAM &stream,
2369                                                                   const bool exportPvs)
[837]2370{
[610]2371        if (viewCell->IsLeaf())
2372        {
2373                stream << "<Leaf ";
2374                stream << "id=\"" << viewCell->GetId() << "\" ";
[881]2375                stream << "active=\"" << dynamic_cast<ViewCellLeaf *>(viewCell)->GetActiveViewCell()->GetId() << "\" ";
[610]2376                stream << "mergecost=\"" << viewCell->GetMergeCost() << "\" ";
2377                stream << "pvs=\"";
[837]2378               
[1551]2379                //-- export pvs, i.e., the ids of the objects in the pvs
[844]2380                if (exportPvs)
[955]2381                {
[840]2382                        ExportPvs(viewCell, stream);
[955]2383                }
[651]2384                stream << "\" />" << endl;
[610]2385        }
2386        else
2387        {
2388                ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(viewCell);
2389       
2390                stream << "<Interior ";
2391                stream << "id=\"" << viewCell->GetId() << "\" ";
2392                stream << "mergecost=\"" << viewCell->GetMergeCost() << "\" ";
[870]2393                stream << "pvs=\"";
2394
[1551]2395                // NOTE: do not export pvss for interior view cells because
[870]2396                // they can be completely reconstructed from the leaf pvss
[1551]2397                // on the other hand: we could store a tag with the compression scheme,
2398        // then some scheme were pvs is in the interiors could be used
2399                if (0) ExportPvs(viewCell, stream);
[870]2400               
[651]2401                stream << "\" >" << endl;
2402
[837]2403                //-- recursivly export child view cells
[610]2404                ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
2405
2406                for (it = interior->mChildren.begin(); it != it_end; ++ it)
2407                {
[844]2408                        ExportViewCell(*it, stream, exportPvs);
[610]2409                }
2410
2411                stream << "</Interior>" << endl;
2412        }
2413}
2414
2415
[660]2416void ViewCellsTree::ResetPvs()
2417{
2418        stack<ViewCell *> tstack;
[610]2419
[660]2420        tstack.push(mRoot);
2421
2422        while (!tstack.empty())
2423        {
2424                ViewCell *vc = tstack.top();
2425                tstack.pop();
2426
[1189]2427                vc->GetPvs().Clear();
[666]2428               
[660]2429                if (!vc->IsLeaf())
2430                {
2431                        ViewCellInterior *interior = dynamic_cast<ViewCellInterior *>(vc);
2432                        ViewCellContainer::const_iterator it, it_end = interior->mChildren.end();
[666]2433
[660]2434                        for (it = interior->mChildren.begin(); it != it_end; ++ it)
2435                        {
2436                                tstack.push(*it);
2437                        }
2438                }
2439        }
2440}
2441
2442
[1551]2443void ViewCellsTree::SetViewCellsManager(ViewCellsManager *vcm)
2444{
2445        mViewCellsManager = vcm;
2446}
2447
2448
[660]2449void ViewCellsTree::SetActiveSetToLeaves()
2450{
[752]2451        // todo
[660]2452}
2453
[1603]2454
2455
[580]2456/**************************************************************************/
2457/*                     MergeCandidate implementation                      */
2458/**************************************************************************/
2459
2460
2461MergeCandidate::MergeCandidate(ViewCell *l, ViewCell *r):
2462mRenderCost(0),
2463mDeviationIncr(0),
2464mLeftViewCell(l),
[586]2465mRightViewCell(r),
2466mInitialLeftViewCell(l),
2467mInitialRightViewCell(r)
[580]2468{
2469        //EvalMergeCost();
2470}
2471
2472
2473void MergeCandidate::SetRightViewCell(ViewCell *v)
2474{
2475        mRightViewCell = v;
2476}
2477
2478
2479void MergeCandidate::SetLeftViewCell(ViewCell *v)
2480{
2481        mLeftViewCell = v;
2482}
2483
2484
2485ViewCell *MergeCandidate::GetRightViewCell() const
2486{
2487        return mRightViewCell;
2488}
2489
2490
2491ViewCell *MergeCandidate::GetLeftViewCell() const
2492{
2493        return mLeftViewCell;
2494}
2495
2496
2497ViewCell *MergeCandidate::GetInitialRightViewCell() const
2498{
2499        return mInitialRightViewCell;
2500}
2501
2502
2503ViewCell *MergeCandidate::GetInitialLeftViewCell() const
2504{
2505        return mInitialLeftViewCell;
2506}
2507
2508
2509bool MergeCandidate::IsValid() const
2510{
[752]2511        // if one has a parent, it was already merged
[1002]2512        return !(mLeftViewCell->GetParent() || mRightViewCell->GetParent());
[580]2513}
2514
2515
2516float MergeCandidate::GetRenderCost() const
2517{
2518        return mRenderCost;
2519}
2520
2521
2522float MergeCandidate::GetDeviationIncr() const
2523{
2524        return mDeviationIncr;
2525}
2526
2527
2528float MergeCandidate::GetMergeCost() const
2529{
2530        return mRenderCost * sRenderCostWeight +
2531                   mDeviationIncr * (1.0f - sRenderCostWeight);
2532}
2533
2534
[605]2535
[580]2536/************************************************************************/
2537/*                    MergeStatistics implementation                    */
2538/************************************************************************/
2539
2540
2541void MergeStatistics::Print(ostream &app) const
2542{
2543        app << "===== Merge statistics ===============\n";
2544
2545        app << setprecision(4);
2546
2547        app << "#N_CTIME ( Overall time [s] )\n" << Time() << " \n";
2548
2549        app << "#N_CCTIME ( Collect candidates time [s] )\n" << collectTime * 1e-3f << " \n";
2550
2551        app << "#N_MTIME ( Merge time [s] )\n" << mergeTime * 1e-3f << " \n";
2552
2553        app << "#N_NODES ( Number of nodes before merge )\n" << nodes << "\n";
2554
2555        app << "#N_CANDIDATES ( Number of merge candidates )\n" << candidates << "\n";
2556
2557        app << "#N_MERGEDSIBLINGS ( Number of merged siblings )\n" << siblings << "\n";
2558
2559        app << "#OVERALLCOST ( overall merge cost )\n" << overallCost << "\n";
2560
2561        app << "#N_MERGEDNODES ( Number of merged nodes )\n" << merged << "\n";
2562
2563        app << "#MAX_TREEDIST ( Maximal distance in tree of merged leaves )\n" << maxTreeDist << "\n";
2564
2565        app << "#AVG_TREEDIST ( Average distance in tree of merged leaves )\n" << AvgTreeDist() << "\n";
2566
2567        app << "#EXPECTEDCOST ( expected render cost )\n" << expectedRenderCost << "\n";
2568
2569        app << "#DEVIATION ( deviation )\n" << deviation << "\n";
2570
2571        app << "#HEURISTICS ( heuristics )\n" << heuristics << "\n";
2572       
2573
2574        app << "===== END OF BspTree statistics ==========\n";
[608]2575}
[860]2576
[1199]2577}
Note: See TracBrowser for help on using the repository browser.