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

Revision 547, 3.3 KB checked in by mattausch, 18 years ago (diff)
Line 
1#ifndef _ViewCell_H__
2#define _ViewCell_H__
3
4#include "Mesh.h"
5#include "Containers.h"
6#include "Ray.h"
7#include "Statistics.h"
8//namespace GtpVisibilityPreprocessor {
9
10struct Triangle3;
11
12class BspInterior;
13class BspPvs;
14class BspLeaf;
15class VspKdTree;
16class VspKdLeaf;
17class KdLeaf;
18
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
77/**
78        View cell with an optional mesh representation
79*/
80class ViewCell: public MeshInstance
81{
82public:
83        ViewCell();
84
85        /** Constructor taking a mesh representing the shape of the viewcell.
86        */
87        ViewCell(Mesh *mesh);
88
89        /** Default destructor.
90        */
91        virtual ~ViewCell() {}
92        /** Returns Pvs.
93        */
94        const ObjectPvs &GetPvs() const;
95        ObjectPvs &GetPvs();
96
97        int Type() const;
98
99        /** Adds a passing ray to the passing ray container.
100        */
101        void AddPassingRay(const Ray &ray, const int contributions);
102
103        /** Returns volume of the view cell.
104        */
105        float GetVolume() const;
106
107        /** Returns area of the view cell.
108        */
109        float GetArea() const;
110
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);
118
119        /** Updates the view cell statstics for this particular view cell.
120        */
121        virtual void UpdateViewCellsStats(ViewCellsStatistics &vcStat);
122
123        /// Ray set description of the rays passing through this node.
124        PassingRaySet mPassingRays;
125
126        /// Rays piercing this view cell.
127        RayContainer mPiercingRays;
128
129        /** Sets the mesh for this view cell.
130        */
131        void SetMesh(Mesh *mesh);
132
133        void SetValid(const bool valid);
134        bool GetValid() const;
135
136protected:
137
138        /// the potentially visible objects
139        ObjectPvs mPvs;
140
141        float mVolume;
142        float mArea;
143
144
145        bool mValid;
146};
147
148/**
149        View cell belonging to a hierarchy.
150*/
151template<typename T>
152class HierarchyViewCell: public ViewCell
153{
154public:
155        HierarchyViewCell<T>(): mLeaves(0) {}
156        HierarchyViewCell<T>(Mesh *mesh):
157                ViewCell(mesh), mLeaves(0) {}
158
159        void UpdateViewCellsStats(ViewCellsStatistics &vcStat)
160        {
161                ViewCell::UpdateViewCellsStats(vcStat);
162
163                if ((int)mLeaves.size() > vcStat.maxLeaves)
164                        vcStat.maxLeaves = (int)mLeaves.size();
165                vcStat.leaves += (int)mLeaves.size();
166        }
167
168        /// Leaves of the hierarchy which are part of this view cell.
169        std::vector<T> mLeaves;
170};
171
172
173typedef HierarchyViewCell<BspLeaf *> BspViewCell;
174typedef HierarchyViewCell<KdLeaf *> KdViewCell;
175typedef HierarchyViewCell<VspKdLeaf *> VspKdViewCell;
176
177
178#endif
Note: See TracBrowser for help on using the repository browser.