source: trunk/VUT/GtpVisibilityPreprocessor/src/ViewCell.h @ 479

Revision 479, 3.1 KB checked in by mattausch, 19 years ago (diff)
RevLine 
[372]1#ifndef _ViewCell_H__
2#define _ViewCell_H__
3
4#include "Mesh.h"
5#include "Containers.h"
6#include "Ray.h"
[462]7#include "Statistics.h"
[372]8//namespace GtpVisibilityPreprocessor {
[469]9
10struct Triangle3;
11
[372]12class BspInterior;
13class BspPvs;
14class BspLeaf;
[453]15class VspKdTree;
[462]16class VspKdLeaf;
[469]17class KdLeaf;
[372]18
[479]19/** Statistics for a view cell partition.
20*/
21
22class ViewCellsStatistics: public StatisticsBase
23{
24public:
25
26        /// number of view cells
27        int viewCells;
28
29        /// size of the PVS
30        int pvs;
31
32        /// largest PVS of all view cells
33        int maxPvs;
34
35        /// smallest PVS of all view cells
36        int minPvs;
37
38        /// view cells with empty PVS
39        int emptyPvs;
40
41        /// number of leaves covering the view space
42        int leaves;
43
44        /// largest number of leaves covered by one view cell
45        int maxLeaves;
46
47    // Constructor
48        ViewCellsStatistics()
49        {
50                Reset();
51        }
52
53        double AvgLeaves() const {return (double)leaves / (double)viewCells;};
54        double AvgPvs() const {return (double)pvs / (double)viewCells;};
55
56        void Reset()
57        {
58                viewCells = 0;
59                pvs = 0;
60                maxPvs = 0;
61
62                minPvs = 999999;
63                emptyPvs = 0;
64                leaves = 0;
65                maxLeaves = 0;
66        }
67
68        void Print(ostream &app) const;
69
70        friend ostream &operator<<(ostream &s, const ViewCellsStatistics &stat)
71        {
72                stat.Print(s);
73                return s;
74        }
75};
76
[372]77/**
78        View cell with an optional mesh representation
79*/
80class ViewCell: public MeshInstance
81{
82public:
83        ViewCell();
[471]84
[372]85        /** Constructor taking a mesh representing the shape of the viewcell.
86        */
87        ViewCell(Mesh *mesh);
[462]88
[469]89        /** Default destructor.
90        */
[462]91        virtual ~ViewCell() {}
[471]92        /** Returns Pvs.
[372]93        */
[469]94        const ObjectPvs &GetPvs() const;
95        ObjectPvs &GetPvs();
[372]96
97        int Type() const;
[471]98
[372]99        /** Adds a passing ray to the passing ray container.
100        */
[471]101        void AddPassingRay(const Ray &ray, const int contributions);
[372]102
[469]103        /** Returns volume of the view cell.
104        */
[478]105        float GetVolume() const;
[372]106
[478]107        /** Returns area of the view cell.
[469]108        */
[478]109        float GetArea() const;
[469]110
[478]111        /** Sets the volume of the view cell.
112        */
113        void SetVolume(float volume);
114       
115        /** Sets the area of the view cell.
116        */
117        void SetArea(float area);
[479]118        virtual void UpdateViewCellsStats(ViewCellsStatistics &vcStat);
[478]119
[471]120        /// Ray set description of the rays passing through this node.
[372]121        PassingRaySet mPassingRays;
122
123        /// Rays piercing this view cell.
124        RayContainer mPiercingRays;
125
126protected:
127
128        /// the potentially visible objects
[469]129        ObjectPvs mPvs;
130
131        float mVolume;
[478]132        float mArea;
[372]133};
134
[469]135/**
136        View cell belonging to a hierarchy.
137*/
138template<typename T>
139class HierarchyViewCell: public ViewCell
[366]140{
141public:
[469]142        HierarchyViewCell<T>(): mLeaves(0) {}
[471]143        HierarchyViewCell<T>(Mesh *mesh):
[469]144                ViewCell(mesh), mLeaves(0) {}
145
[479]146        void UpdateViewCellsStats(ViewCellsStatistics &vcStat)
147        {
148                ViewCell::UpdateViewCellsStats(vcStat);
149
150                if ((int)mLeaves.size() > vcStat.maxLeaves)
151                        vcStat.maxLeaves = (int)mLeaves.size();
152        }
153
[469]154        /// Leaves of the hierarchy which are part of this view cell.
155        std::vector<T> mLeaves;
156};
157
[479]158
[469]159typedef HierarchyViewCell<BspLeaf *> BspViewCell;
160typedef HierarchyViewCell<KdLeaf *> KdViewCell;
161typedef HierarchyViewCell<VspKdLeaf *> VspKdViewCell;
162
[366]163
[372]164#endif
Note: See TracBrowser for help on using the repository browser.