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

Revision 1486, 8.4 KB checked in by mattausch, 18 years ago (diff)

worked on guided visibility sampling

RevLine 
[372]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
[1145]10// matt: remove qt dependencies
11//#include <QObject>
[492]12
[860]13namespace GtpVisibilityPreprocessor {
14
[409]15class RenderSimulator;
[372]16class SceneGraph;
[429]17class Exporter;
[439]18class ViewCellsManager;
[445]19class BspTree;
[1006]20class VspOspTree;
[445]21class VspBspTree;
[468]22class RenderSimulator;
[490]23struct VssRayContainer;
[1020]24class SamplingStrategy;
[496]25class GlRendererBuffer;
[1022]26class VspTree;
[1279]27class HierarchyManager;
[1264]28class BvHierarchy;
[1221]29class Intersectable;
[1287]30class VssRay;
[490]31
[372]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 
[1145]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
[492]47
[372]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
[1145]57          @return true on success
[372]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;
[871]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
[439]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();
[1292]89
[1486]90  /** Construct viewcells from the scratch
91  */
92  bool ConstructViewCells(const AxisAlignedBox3 &viewSpaceBox);
[1292]93
[1020]94  /** Returns the specified sample strategy, NULL if no valid strategy.
95  */
96  SamplingStrategy *GenerateSamplingStrategy(const int strategyId) const;
97
[372]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
[490]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  */
[508]120  bool ExportSamples(const VssRayContainer &samples) const;
121
[1414]122  bool LoadKdTree(const string filename);
123  bool ExportKdTree(const string filename);
[1197]124
[563]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,
[576]135        VSS_BASED_DISTRIBUTION,
[1020]136        OBJECT_DIRECTION_BASED_DISTRIBUTION,
137        OBJECTS_INTERIOR_DISTRIBUTION
[563]138  };
139 
[1221]140  enum {
[1272]141          INTERNAL_RAYCASTER = 0,
[1221]142          INTEL_RAYCASTER
143  };
144
[563]145  virtual bool
146  GenerateRays(
147                           const int number,
148                           const int raysType,
149                           SimpleRayContainer &rays
150                           );
151 
[1381]152  bool GenerateRayBundle(
153          SimpleRayContainer &rayBundle,
154          const SimpleRay &mainRay,
155          const int number,
156          const int shuffleType) const;
157
[573]158  virtual void CastRays(SimpleRayContainer &rays,
[1281]159                                                VssRayContainer &vssRays);
[573]160
[1288]161  /** Returns a view cells manager of the given name.
[1022]162  */
[575]163  ViewCellsManager *CreateViewCellsManager(const char *name);
[1288]164  /** Returns a hierarchy manager of the given name.
165  */
166  HierarchyManager *CreateHierarchyManager(const char *name);
[1221]167   
168  GlRendererBuffer *GetRenderer() { return renderer;}
169
[1418]170  bool InitRayCast(const string externKdTree, const string internKdTree);
[1221]171
[1251]172  int CastRay(
173          const Vector3 &viewPoint,
174          const Vector3 &direction,
175          const float probability,
176          VssRayContainer &vssRays,
177          const AxisAlignedBox3 &box
178          );
179
[1292]180  Intersectable *
181  CastSimpleRay(
182                                const Vector3 &viewPoint,
183                                const Vector3 &direction,
184                                const AxisAlignedBox3 &box,
185                                Vector3 &point,
186                                Vector3 &normal
187                                );
188 
[1221]189  ////////////////////////////////////////////////
190
[372]191  /// scene graph loaded from file
192  SceneGraph *mSceneGraph;
[492]193
194  /// raw array of objects
195  ObjectContainer mObjects;
[372]196 
197  /// kD-tree organizing the scene graph (occluders + occludees) + viewcells
198  KdTree *mKdTree;
[445]199  /// View space partition bsp tree
200  VspBspTree *mVspBspTree;
[1421]201  /// Hierarchy manager handling view space and object space partition
[1279]202  HierarchyManager *mHierarchyManager;
[1022]203  /// BSP tree representing the viewcells
204  BspTree *mBspTree;
[1264]205 
[372]206  /// list of all loaded occluders
207  ObjectContainer mOccluders;
208  /// list of all loaded occludees
209  ObjectContainer mOccludees;
[439]210   
[1022]211 
[439]212  ViewCellsManager *mViewCellsManager;
[409]213
[1006]214  /// greedy optimized hierarchy for both objects and view cells
215  VspOspTree *mVspOspTree;
[429]216
[492]217  bool mUseGlRenderer;
[538]218  bool mUseGlDebugger;
219
[518]220  bool mLoadViewCells;
[534]221 
222  bool mDetectEmptyViewSpace;
[599]223
224  bool mQuitOnFinish;
[1379]225  bool mLoadMeshes;
[685]226  bool mComputeVisibility;
[658]227
[871]228  bool mExportVisibility;
229  string mVisibilityFileName;
230 
231  bool mApplyVisibilityFilter;
[904]232  bool mApplyVisibilitySpatialFilter;
[878]233
234  float mVisibilityFilterWidth;
[1221]235 
236  int GetRayCastMethod() { return mRayCastMethod; }
237  void SetRayCastMethod(int rayCastMethod) { mRayCastMethod = rayCastMethod; }
238
[1251]239  int mPass;
240
[492]241protected:
242
[1251]243        void SetupRay(Ray &ray, const Vector3 &point, const Vector3 &direction);
244
[1281]245  int
246  ProcessRay(
[1283]247                         const Vector3 &viewPoint,
248                         const Vector3 &direction,
[1281]249                         Intersectable *objectA,
250                         Vector3 &pointA,
[1283]251                         const Vector3 &normalA,
[1281]252                         Intersectable *objectB,
253                         Vector3 &pointB,
[1283]254                         const Vector3 &normalB,
[1281]255                         const float probability,
256                         VssRayContainer &vssRays,
257                         const AxisAlignedBox3 &box);
258 
259  int CastInternalRay(
260                                          const Vector3 &viewPoint,
261                                          const Vector3 &direction,
262                                          const float probability,
263                                          VssRayContainer &vssRays,
264                                          const AxisAlignedBox3 &box);
265 
266  int CastIntelDoubleRay(
267                                                 const Vector3 &viewPoint,
268                                                 const Vector3 &direction,
269                                                 const float probability,
270                                                 VssRayContainer &vssRays,
271                                                 const AxisAlignedBox3 &box);
272 
273  Intersectable *CastIntelSingleRay(
274                                                                        const Vector3 &viewPoint,
275                                                                        const Vector3 &direction,
276                                                                        Vector3 &tPoint,
277                                                                        const AxisAlignedBox3 &box);
278 
[492]279  /////////////////////////
280
[1415]281  int mRayCastMethod;
[492]282  /// samples used for construction of the BSP view cells tree.
283  int mBspConstructionSamples;
[1006]284  /// samples used for construction of the VSP OSP tree.
285  int mVspOspConstructionSamples;
[468]286  /** Simulates rendering of the scene.
287  */
288  RenderSimulator *mRenderSimulator;
[492]289
[1281]290 
291  vector<FaceParentInfo> mFaceParents;
292 
[496]293  GlRendererBuffer *renderer;
[1145]294// matt: remove qt dependencies
295//signals:
[492]296  void EvalPvsStat();
297
[1281]298  protected:
299
300 
301  void CastRays16(const int i,
302                                  SimpleRayContainer &rays,
303                                  VssRayContainer &vssRays,
304                                  const AxisAlignedBox3 &sbox);
305 
[372]306};
307
[1145]308//extern Preprocessor *preprocessor;
[372]309
[860]310}
311
[372]312#endif
Note: See TracBrowser for help on using the repository browser.