source: GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.h @ 1414

Revision 1414, 8.3 KB checked in by mattausch, 18 years ago (diff)

fixed kd tree loading / exporting

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