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

Revision 2720, 9.3 KB checked in by mattausch, 16 years ago (diff)

dynamic objects problem!!

RevLine 
[372]1#ifndef _Preprocessor_H__
2#define _Preprocessor_H__
3
4#include <string>
[2176]5//
[372]6#include "Containers.h"
7#include "Mesh.h"
8#include "KdTree.h"
[2105]9#include "SimpleRay.h"
[372]10
[2342]11
[860]12namespace GtpVisibilityPreprocessor {
[2342]13
14class PreprocessorThread; 
[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;
[1520]31class RayCaster;
[1968]32class GlobalLinesRenderer;
[2600]33class SceneGraphLeaf;
[2625]34class GlRendererWidget;
[2702]35class IntersectableGroup;
[490]36
[1520]37
[372]38/** Namespace for the external visibility preprocessor
39
40    This namespace includes all classes which are created by the VUT (Vienna University
41    of Technology) for the External Visibility Preprocessor of the GTP (GameTools Project)
42    (www.gametools.org).
43*/
44 
[1145]45/** Main class of the visibility preprocessor. Responsible for loading and
46    saving of the input and output files. Initiates construction of the kD-tree,
47    viewcell loading/generation and the visibility computation itself.
48*/
[1521]49class Preprocessor
[1145]50{
[1520]51        friend class RayCaster;
52        friend class IntelRayCaster;
53        friend class InternalRayCaster;
[2575]54        friend class HavranRayCaster;
[1564]55
[372]56public:
57        /** Default constructor initialising e.g., KD tree and BSP tree.
58        */
59        Preprocessor();
60
[1520]61        virtual ~Preprocessor();
[1564]62        /** Load the input scene.
[2187]63                @param filename file to load
64                @return true on success
[1564]65        */
[2342]66        virtual bool LoadScene(const string &filename);
[1564]67        /** Export all preprocessed data in a XML format understandable by the
[2187]68                PreprocessingInterface of the GtpVisibilityPreprocessor Module.
69                The file can be compressed depending on the environement settings.
70                @return true on successful export
[1564]71        */
[2342]72        virtual bool ExportPreprocessedData(const string &filename);
[1564]73        /** Build the KdTree of currently loaded occluders/occludees/viewcells. The construction
[2187]74                is driven by the environment settings, which also sais which of the three types of
75                entities should be used to drive the heuristical construction (only occluders by default)
[1564]76        */
77        virtual bool BuildKdTree();
78        /** Compute visibility method. This method has to be reimplemented by the actual
[2187]79                Preprocessor implementation (e.g. SamplingPreprocessor, ExactPreprocessor,
80                GlobalSamplingpreprocessor)
[1564]81        */
82        virtual bool ComputeVisibility() = 0;
83        /** Post Process the computed visibility. By default applys the visibility filter
[2187]84                (if specified in the environment and export the preprocessed data
[2609]85        */
[1564]86        virtual bool PostProcessVisibility();
87        /** View cells are either loaded or prepared for generation, according to the chosen environment
[2187]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).
[1564]90        */
91        bool PrepareViewCells();
92        /** Construct viewcells from the scratch
93        */
94        bool ConstructViewCells();
95        /** Returns the specified sample strategy, NULL if no valid strategy.
96        */
[1884]97        SamplingStrategy *GenerateSamplingStrategy(const int strategyId);
[1564]98        /** Export preprocessor data.
99        */
[2342]100        bool Export(const string &filename, const bool scene, const bool kdtree); 
[372]101
[1564]102        virtual void KdTreeStatistics(ostream &s);
103        virtual void BspTreeStatistics(ostream &s);
[490]104
[1564]105        /** Loads samples from file.
106        @param samples returns the stored sample rays
107        @param objects needed to associate the objects ids
108        @returns true if samples were loaded successfully
109        */
[2187]110        bool LoadSamples(VssRayContainer &samples, ObjectContainer &objects) const;
[508]111
[1564]112        /** Exports samples to file.
[2187]113                @returns true if samples were written successfully
[1564]114        */
115        bool ExportSamples(const VssRayContainer &samples) const;
[1197]116
[2342]117        bool LoadKdTree(const string &filename);
118        bool ExportKdTree(const string &filename);
[1381]119
[1926]120        virtual bool
[2001]121        ExportRays(const char *filename,
122                           const VssRayContainer &vssRays,
123                           const int number,
124                           const bool exportScene = false
125                           );
[1926]126
[2048]127        bool ExportRayAnimation(const char *filename,
128                                                        const vector<VssRayContainer> &vssRays);
[2002]129
[2048]130        virtual int     GenerateRays(const int number,
131                                                         SamplingStrategy &strategy,
132                                                         SimpleRayContainer &rays);
[1786]133
[1926]134        virtual int GenerateRays(const int number,
[2048]135                                                         const int raysType,
136                                                         SimpleRayContainer &rays);
[1786]137
138        bool GenerateRayBundle(SimpleRayContainer &rayBundle,
[2048]139                                                   const SimpleRay &mainRay,
140                                                   const int number,
141                                                   const int shuffleType) const;
[1786]142
143        virtual void CastRays(SimpleRayContainer &rays,
[1932]144                                                  VssRayContainer &vssRays,
145                                                  const bool castDoubleRays,
[1996]146                                                  const bool pruneInvalidRays = true);
[1786]147
[2342]148        virtual void
149                CastRaysWithHwGlobalLines(
150                SimpleRayContainer &rays,
151                VssRayContainer &vssRays,
152                const bool castDoubleRays,
153                const bool pruneInvalidRays
154                );
[2076]155
[2187]156        /** Compute pixel error of the current PVS solution by sampling given number of viewpoints.
[2048]157        */
[1958]158        virtual void ComputeRenderError();
[1931]159
[1564]160        /** Returns a view cells manager of the given name.
161        */
162        ViewCellsManager *CreateViewCellsManager(const char *name);
[1221]163
[1564]164        GlRendererBuffer *GetRenderer();
[492]165
[2342]166        bool InitRayCast(const string &externKdTree, const string &internKdTree);
[409]167
[2342]168        bool LoadInternKdTree(const string &internKdTree);
[2003]169
[2342]170        bool ExportObj(const string &filename, const ObjectContainer &objects);
[429]171
[1786]172        Intersectable *GetParentObject(const int index) const;
[1926]173        Vector3 GetParentNormal(const int index) const;
174
[2593]175        /** Sets a preprocessor thread.
[1926]176        */
177        void SetThread(PreprocessorThread *t);
178
[2593]179        /** Returns a preprocessor thread.
[1926]180        */
181        PreprocessorThread *GetThread() const;
182
[1958]183        Intersectable *GetObjectById(const int id);
[1926]184
[1968]185        void PrepareHwGlobalLines();
[2048]186
187        virtual void DeterminePvsObjects(VssRayContainer &rays);
188
[2115]189        static bool LoadObjects(const string &filename,
[2593]190                                                        ObjectContainer &pvsObjects,
191                                                        const ObjectContainer &preprocessorObject);
[2048]192
[2609]193        /** Adds dynamic geometry
[2593]194        */
[2694]195        SceneGraphLeaf *LoadDynamicGeometry(const string &filename);
[538]196
[2694]197        /** Register the dynamic object to be handled by the ray caster for visibility
198                computation.
199        */
[2702]200        void RegisterDynamicObject(SceneGraphLeaf *leaf);
[2694]201       
[2715]202        void PrepareObjectsForRayCaster(SceneGraphLeaf *l);
[2709]203       
204        void ScheduleUpdateDynamicObjects();
205        void UpdateDynamicObjects();
206        /** Notify the preprocessor that an object has been deleted
207        */
208        virtual void ObjectRemoved(SceneGraphLeaf *object);
[2609]209
[2720]210        SceneGraphLeaf *GenerateBoxGeometry(const AxisAlignedBox3 &box);
[2694]211
[2720]212        float _HackComputeRenderCost(ViewCell *vc);
[2709]213
[2342]214        /////////////////////////
215
[2709]216        bool mSynchronize;
217
[1564]218        /// scene graph loaded from file
219        SceneGraph *mSceneGraph;
[599]220
[1564]221        /// raw array of objects
222        ObjectContainer mObjects;
[658]223
[1564]224        /// kD-tree organizing the scene graph (occluders + occludees) + viewcells
225        KdTree *mKdTree;
[2609]226        AxisAlignedBox3 sceneBox;
227
[1564]228        /// View space partition bsp tree
229        VspBspTree *mVspBspTree;
230        /// BSP tree representing the viewcells
231        BspTree *mBspTree;
[878]232
[1564]233        /// list of all loaded occluders
234        ObjectContainer mOccluders;
235        /// list of all loaded occludees
236        ObjectContainer mOccludees;
[2609]237        /// the view cells manager
[1564]238        ViewCellsManager *mViewCellsManager;
[2678]239
[2609]240        DynamicObjectsContainer mDynamicObjects;
[2702]241
[1564]242        /// greedy optimized hierarchy for both objects and view cells
243        VspOspTree *mVspOspTree;
244
245        bool mUseGlRenderer;
246        bool mUseGlDebugger;
[2342]247
[2187]248        bool mUseHwGlobalLines;
[1564]249        bool mLoadViewCells;
250
251        bool mDetectEmptyViewSpace;
252
253        bool mQuitOnFinish;
254        bool mLoadMeshes;
255        bool mComputeVisibility;
256
257        bool mExportVisibility;
258        string mVisibilityFileName;
259
260        bool mApplyVisibilityFilter;
261        bool mApplyVisibilitySpatialFilter;
262
263        float mVisibilityFilterWidth;
264
265        int mPass;
[2342]266
[1723]267        bool mStopComputation;
[2342]268
[1695]269        bool mExportObj;
270
[1926]271        bool mExportRays;
[2008]272        bool mExportAnimation;
[1926]273        int mExportNumRays;
[1900]274
[1786]275        ofstream mStats;
[1771]276
[1926]277        GlRendererBuffer *renderer;
[2625]278        GlRendererWidget *mRendererWidget;
[2342]279
[1966]280        int mTotalSamples;
[2580]281        int mCurrentSamples;
282
[2046]283        int mTotalTime;
[1968]284        int mSamplesPerPass;
285        int mSamplesPerEvaluation;
[2580]286 
287        int mTotalRaysCast;
[1966]288
[2342]289        RayCaster *mRayCaster;
[2076]290
[2709]291        // triangle pvs for gvs
[2695]292        // hack: should be in gvspreprocessor but pulled
293        // out here for visualization purpose
294        ObjectContainer mTrianglePvs;
[2636]295
[2709]296        // generic stats vector that can be used for anything
297        int mGenericStats[2];
298
[2695]299        //std::vector<int> mDummyBuffer;
300
301
[492]302protected:
303
[2183]304        bool LoadBinaryObj(const std::string &filename,
[2600]305                       SceneGraphLeaf *root,
[2621]306                                           std::vector<FaceParentInfo> *parents,
307                                           float scale = -1.0f);
[1658]308
[2600]309        bool ExportBinaryObj(const std::string &filename, SceneGraphLeaf *root);
[1658]310
[2575]311        void SetupRay(Ray &ray, const Vector3 &point,
312                      const Vector3 &direction) const;
[1251]313
[1520]314        void EvalPvsStat();
[492]315
[1786]316        virtual void EvalViewCellHistogram();
[1771]317
[2678]318        /** Notify the preprocessor that an object has moved and must be reevaluated.
319        */
[2645]320        virtual void ObjectMoved(SceneGraphLeaf *object);
[2709]321       
[2645]322
323
[1520]324        /////////////////////////
325
[2017]326        GlobalLinesRenderer *mGlobalLinesRenderer;
327
328        /// samples used for construction of the BSP view cells tree.
[1564]329        int mBspConstructionSamples;
330        /// samples used for construction of the VSP OSP tree.
331        int mVspOspConstructionSamples;
[1786]332        /// Simulates rendering of the scene.
[1564]333        RenderSimulator *mRenderSimulator;
[1520]334
[1564]335        vector<FaceParentInfo> mFaceParents;
[492]336
[1723]337        /// if box around view space should be used
338        bool mUseViewSpaceBox;
[1867]339
[1926]340        PreprocessorThread *mThread;
[2636]341
[2695]342        bool mUpdateDynamicObjects;
343
344       
[372]345};
346
[2017]347extern Preprocessor *preprocessor;
[372]348
[860]349}
350
[372]351#endif
Note: See TracBrowser for help on using the repository browser.