1 | #ifndef _Preprocessor_H__
|
---|
2 | #define _Preprocessor_H__
|
---|
3 |
|
---|
4 | #include <string>
|
---|
5 | using namespace std;
|
---|
6 | #include "Containers.h"
|
---|
7 | #include "Mesh.h"
|
---|
8 | #include "KdTree.h"
|
---|
9 |
|
---|
10 |
|
---|
11 | namespace GtpVisibilityPreprocessor {
|
---|
12 | class PreprocessorThread;
|
---|
13 |
|
---|
14 | class RenderSimulator;
|
---|
15 | class SceneGraph;
|
---|
16 | class Exporter;
|
---|
17 | class ViewCellsManager;
|
---|
18 | class BspTree;
|
---|
19 | class VspOspTree;
|
---|
20 | class VspBspTree;
|
---|
21 | class RenderSimulator;
|
---|
22 | struct VssRayContainer;
|
---|
23 | class SamplingStrategy;
|
---|
24 | class GlRendererBuffer;
|
---|
25 | class VspTree;
|
---|
26 | class HierarchyManager;
|
---|
27 | class BvHierarchy;
|
---|
28 | class Intersectable;
|
---|
29 | class VssRay;
|
---|
30 | class RayCaster;
|
---|
31 | class GlobalLinesRenderer;
|
---|
32 |
|
---|
33 |
|
---|
34 | /** Namespace for the external visibility preprocessor
|
---|
35 |
|
---|
36 | This namespace includes all classes which are created by the VUT (Vienna University
|
---|
37 | of Technology) for the External Visibility Preprocessor of the GTP (GameTools Project)
|
---|
38 | (www.gametools.org).
|
---|
39 | */
|
---|
40 |
|
---|
41 | /** Main class of the visibility preprocessor. Responsible for loading and
|
---|
42 | saving of the input and output files. Initiates construction of the kD-tree,
|
---|
43 | viewcell loading/generation and the visibility computation itself.
|
---|
44 | */
|
---|
45 | class Preprocessor
|
---|
46 | {
|
---|
47 | friend class RayCaster;
|
---|
48 | friend class IntelRayCaster;
|
---|
49 | friend class InternalRayCaster;
|
---|
50 |
|
---|
51 | public:
|
---|
52 | /** Default constructor initialising e.g., KD tree and BSP tree.
|
---|
53 | */
|
---|
54 | Preprocessor();
|
---|
55 |
|
---|
56 | virtual ~Preprocessor();
|
---|
57 |
|
---|
58 | /** Load the input scene.
|
---|
59 | @param filename file to load
|
---|
60 | @return true on success
|
---|
61 | */
|
---|
62 | virtual bool LoadScene(const string filename);
|
---|
63 |
|
---|
64 | /** Export all preprocessed data in a XML format understandable by the
|
---|
65 | PreprocessingInterface of the GtpVisibilityPreprocessor Module.
|
---|
66 | The file can be compressed depending on the environement settings.
|
---|
67 | @return true on successful export
|
---|
68 | */
|
---|
69 | virtual bool ExportPreprocessedData(const string filename);
|
---|
70 |
|
---|
71 | /** Build the KdTree of currently loaded occluders/occludees/viewcells. The construction
|
---|
72 | is driven by the environment settings, which also sais which of the three types of
|
---|
73 | entities should be used to drive the heuristical construction (only occluders by default)
|
---|
74 | */
|
---|
75 | virtual bool BuildKdTree();
|
---|
76 |
|
---|
77 | /** Compute visibility method. This method has to be reimplemented by the actual
|
---|
78 | Preprocessor implementation (e.g. SamplingPreprocessor, ExactPreprocessor,
|
---|
79 | GlobalSamplingpreprocessor)
|
---|
80 | */
|
---|
81 | virtual bool ComputeVisibility() = 0;
|
---|
82 |
|
---|
83 | /** Post Process the computed visibility. By default applys the visibility filter
|
---|
84 | (if specified in the environment and export the preprocessed data */
|
---|
85 | virtual bool PostProcessVisibility();
|
---|
86 |
|
---|
87 | /** View cells are either loaded or prepared for generation, according to the chosen environment
|
---|
88 | object. Important evironment options are, e.g, the view cell type.
|
---|
89 | Should be done after scene loading (i.e., some options are based on scene type).
|
---|
90 | */
|
---|
91 | bool PrepareViewCells();
|
---|
92 |
|
---|
93 | /** Construct viewcells from the scratch
|
---|
94 | */
|
---|
95 | bool ConstructViewCells();
|
---|
96 |
|
---|
97 | /** Returns the specified sample strategy, NULL if no valid strategy.
|
---|
98 | */
|
---|
99 | SamplingStrategy *GenerateSamplingStrategy(const int strategyId);
|
---|
100 |
|
---|
101 | /** Export preprocessor data.
|
---|
102 | */
|
---|
103 | bool Export(const string filename, const bool scene, const bool kdtree);
|
---|
104 |
|
---|
105 | virtual void KdTreeStatistics(ostream &s);
|
---|
106 | virtual void BspTreeStatistics(ostream &s);
|
---|
107 |
|
---|
108 | /** Loads samples from file.
|
---|
109 | @param samples returns the stored sample rays
|
---|
110 | @param objects needed to associate the objects ids
|
---|
111 | @returns true if samples were loaded successfully
|
---|
112 | */
|
---|
113 | bool LoadSamples(VssRayContainer &samples,
|
---|
114 | ObjectContainer &objects) const;
|
---|
115 |
|
---|
116 | /** Exports samples to file.
|
---|
117 | @returns true if samples were written successfully
|
---|
118 | */
|
---|
119 | bool ExportSamples(const VssRayContainer &samples) const;
|
---|
120 |
|
---|
121 | bool LoadKdTree(const string filename);
|
---|
122 | bool ExportKdTree(const string filename);
|
---|
123 |
|
---|
124 | virtual bool
|
---|
125 | ExportRays(const char *filename,
|
---|
126 | const VssRayContainer &vssRays,
|
---|
127 | const int number,
|
---|
128 | const bool exportScene = false
|
---|
129 | );
|
---|
130 |
|
---|
131 | bool
|
---|
132 | ExportRayAnimation(const char *filename,
|
---|
133 | const vector<VssRayContainer> &vssRays
|
---|
134 | );
|
---|
135 |
|
---|
136 | virtual int
|
---|
137 | GenerateRays(const int number,
|
---|
138 | SamplingStrategy &strategy,
|
---|
139 | SimpleRayContainer &rays);
|
---|
140 |
|
---|
141 | virtual int GenerateRays(const int number,
|
---|
142 | const int raysType,
|
---|
143 | SimpleRayContainer &rays);
|
---|
144 |
|
---|
145 | bool GenerateRayBundle(SimpleRayContainer &rayBundle,
|
---|
146 | const SimpleRay &mainRay,
|
---|
147 | const int number,
|
---|
148 | const int shuffleType) const;
|
---|
149 |
|
---|
150 | virtual void CastRays(SimpleRayContainer &rays,
|
---|
151 | VssRayContainer &vssRays,
|
---|
152 | const bool castDoubleRays,
|
---|
153 | const bool pruneInvalidRays = true);
|
---|
154 |
|
---|
155 | /** Compute pixel error of the current PVS solution by sampling given number of viewpoints */
|
---|
156 | virtual void ComputeRenderError();
|
---|
157 |
|
---|
158 | /** Returns a view cells manager of the given name.
|
---|
159 | */
|
---|
160 | ViewCellsManager *CreateViewCellsManager(const char *name);
|
---|
161 |
|
---|
162 | GlRendererBuffer *GetRenderer();
|
---|
163 |
|
---|
164 | bool InitRayCast(const string externKdTree, const string internKdTree);
|
---|
165 |
|
---|
166 | bool LoadInternKdTree(const string internKdTree);
|
---|
167 |
|
---|
168 | bool ExportObj(const string filename, const ObjectContainer &objects);
|
---|
169 |
|
---|
170 | Intersectable *GetParentObject(const int index) const;
|
---|
171 | Vector3 GetParentNormal(const int index) const;
|
---|
172 |
|
---|
173 | /** Sets a Preprocessor thread.
|
---|
174 | */
|
---|
175 | void SetThread(PreprocessorThread *t);
|
---|
176 |
|
---|
177 | /** Returns a Preprocessor thread.
|
---|
178 | */
|
---|
179 | PreprocessorThread *GetThread() const;
|
---|
180 |
|
---|
181 |
|
---|
182 | Intersectable *GetObjectById(const int id);
|
---|
183 |
|
---|
184 | void PrepareHwGlobalLines();
|
---|
185 | ////////////////////////////////////////////////
|
---|
186 |
|
---|
187 | /// scene graph loaded from file
|
---|
188 | SceneGraph *mSceneGraph;
|
---|
189 |
|
---|
190 | /// raw array of objects
|
---|
191 | ObjectContainer mObjects;
|
---|
192 |
|
---|
193 | /// kD-tree organizing the scene graph (occluders + occludees) + viewcells
|
---|
194 | KdTree *mKdTree;
|
---|
195 | /// View space partition bsp tree
|
---|
196 | VspBspTree *mVspBspTree;
|
---|
197 | /// BSP tree representing the viewcells
|
---|
198 | BspTree *mBspTree;
|
---|
199 |
|
---|
200 | /// list of all loaded occluders
|
---|
201 | ObjectContainer mOccluders;
|
---|
202 | /// list of all loaded occludees
|
---|
203 | ObjectContainer mOccludees;
|
---|
204 |
|
---|
205 |
|
---|
206 | ViewCellsManager *mViewCellsManager;
|
---|
207 |
|
---|
208 | /// greedy optimized hierarchy for both objects and view cells
|
---|
209 | VspOspTree *mVspOspTree;
|
---|
210 |
|
---|
211 | bool mUseGlRenderer;
|
---|
212 | bool mUseGlDebugger;
|
---|
213 |
|
---|
214 | bool mLoadViewCells;
|
---|
215 |
|
---|
216 | bool mDetectEmptyViewSpace;
|
---|
217 |
|
---|
218 | bool mQuitOnFinish;
|
---|
219 | bool mLoadMeshes;
|
---|
220 | bool mComputeVisibility;
|
---|
221 |
|
---|
222 | bool mExportVisibility;
|
---|
223 | string mVisibilityFileName;
|
---|
224 |
|
---|
225 | bool mApplyVisibilityFilter;
|
---|
226 | bool mApplyVisibilitySpatialFilter;
|
---|
227 |
|
---|
228 | float mVisibilityFilterWidth;
|
---|
229 |
|
---|
230 | int mPass;
|
---|
231 |
|
---|
232 | bool mStopComputation;
|
---|
233 |
|
---|
234 | bool mExportObj;
|
---|
235 |
|
---|
236 | bool mExportRays;
|
---|
237 | int mExportNumRays;
|
---|
238 |
|
---|
239 | ofstream mStats;
|
---|
240 |
|
---|
241 | GlRendererBuffer *renderer;
|
---|
242 |
|
---|
243 | int mTotalSamples;
|
---|
244 | int mSamplesPerPass;
|
---|
245 | int mSamplesPerEvaluation;
|
---|
246 |
|
---|
247 | protected:
|
---|
248 |
|
---|
249 | bool LoadBinaryObj(const string filename,
|
---|
250 | SceneGraphNode *root,
|
---|
251 | vector<FaceParentInfo> *parents);
|
---|
252 |
|
---|
253 | bool ExportBinaryObj(const string filename, SceneGraphNode *root);
|
---|
254 |
|
---|
255 | void SetupRay(Ray &ray, const Vector3 &point, const Vector3 &direction) const;
|
---|
256 |
|
---|
257 | void EvalPvsStat();
|
---|
258 |
|
---|
259 | virtual void EvalViewCellHistogram();
|
---|
260 |
|
---|
261 | /////////////////////////
|
---|
262 |
|
---|
263 | GlobalLinesRenderer *mGlobalLinesRenderer;
|
---|
264 | RayCaster *mRayCaster;
|
---|
265 | /// samples used for construction of the BSP view cells tree.
|
---|
266 | int mBspConstructionSamples;
|
---|
267 | /// samples used for construction of the VSP OSP tree.
|
---|
268 | int mVspOspConstructionSamples;
|
---|
269 | /// Simulates rendering of the scene.
|
---|
270 | RenderSimulator *mRenderSimulator;
|
---|
271 |
|
---|
272 | vector<FaceParentInfo> mFaceParents;
|
---|
273 |
|
---|
274 |
|
---|
275 | /// if box around view space should be used
|
---|
276 | bool mUseViewSpaceBox;
|
---|
277 |
|
---|
278 | PreprocessorThread *mThread;
|
---|
279 | };
|
---|
280 |
|
---|
281 | extern Preprocessor *preprocessor;
|
---|
282 |
|
---|
283 | }
|
---|
284 |
|
---|
285 | #endif
|
---|