source: trunk/VUT/Ogre/include/OgreVisibilityTerrainSceneManager.h @ 158

Revision 158, 4.6 KB checked in by mattausch, 19 years ago (diff)

removed node visibility for item buffer

Line 
1#ifndef _VisibilityTerrainSceneManager_H__
2#define _VisibilityTerrainSceneManager_H__
3
4#include <OgreSceneNode.h>
5#include <OgreTerrainSceneManager.h>
6#include <OgreOctreeNode.h>
7#include <OgreOctreeCamera.h>
8#include <OgrePrerequisites.h>
9
10#include "OgreOctreeHierarchyInterface.h"
11#include "OgrePlatformQueryManager.h"
12#include "VisibilityManager.h"
13
14
15namespace Ogre {
16
17/**
18        This class extends the terrain scene manager,
19        using occlusion queries for visibility culling.
20*/
21class __declspec(dllexport) VisibilityTerrainSceneManager: public TerrainSceneManager
22{
23public:
24        VisibilityTerrainSceneManager(GtpVisibility::VisibilityManager *visManager);
25        ~VisibilityTerrainSceneManager();
26
27        void _renderVisibleObjects();
28        void _findVisibleObjects(Camera* cam, bool onlyShadowCasters);
29        void _updateSceneGraph(Camera* cam);
30
31        /** Sets the given option for the SceneManager
32                @remarks Options are: "Algorithm", int *;                       
33        */
34       
35        virtual bool setOption( const String &, const void * );
36        /** Gets the given option for the Scene VisibilityManager.
37            @remarks
38                See setOption
39        */
40        virtual bool getOption( const String &, void * );
41
42        bool getOptionValues( const String & key, StringVector &refValueList );
43        bool getOptionKeys( StringVector &refKeys );
44
45        /** Sets the visibility manager.
46                @param visManager the visibility manager
47        */
48        void setVisibilityManager(GtpVisibility::VisibilityManager *visManager);
49        /** See set.
50        */
51        GtpVisibility::VisibilityManager *getVisibilityManager();
52
53        /** Render a set of objects, see renderSingleObject for param definitions
54                Override so we can handle delayed rendering of transparent objects
55        */
56        virtual void renderObjects(const RenderPriorityGroup::TransparentRenderablePassList& objs,
57            bool doLightIteration, const LightList* manualLightList = 0);
58
59        /** Writes out stats into the Ogre log file.
60        */
61        void WriteLog();
62
63        /** Override pass so we can do the z-fail pass.
64        */
65        Pass* setPass(Pass* pass);
66
67        /** Override from SceneManager so we can skip all but first pass for depth pass.
68        */
69        bool validatePassForRendering(Pass* pass);
70
71        void RenderItemBuffer(RenderPriorityGroup* pGroup);
72        void RenderSingleObjectForItemBuffer(Renderable *rend, Pass *pass);
73        void renderQueueGroupObjects(RenderQueueGroup* pGroup);
74
75        /** Override from SceneManager so that sub entities can be assigned an id for item buffer.
76        */
77        Entity* createEntity(const String& entityName, const String& meshName);
78
79        /** Returns pointer to visibility manager.
80        */
81        GtpVisibility::VisibilityManager *GetVisibilityManager();
82
83        /** Returns hierarchy interface.
84        */
85        OctreeHierarchyInterface *GetHierarchyInterface();
86
87protected:
88       
89        /** Creates material for depth pass, e.g., a pass that only fills the depth buffer.
90        */
91        void InitDepthPass();
92        /** Creates material for item buffer.
93        */
94        void InitItemBufferPass();
95        /** Fills render queue so that a visualization can be rendered.
96        */
97        void PrepareVisualization(Camera *cam);
98        /** Initialises necessary parameters for hierarchical visibility culling.
99        */
100        void InitVisibilityCulling(Camera *cam);
101
102        /// the interface to the scene hierarchy.
103        OctreeHierarchyInterface *mHierarchyInterface;
104        /// manages all visibility options
105        GtpVisibility::VisibilityManager *mVisibilityManager;
106
107        /// if a visualization of the hierarchical culling is shown
108        bool mShowVisualization;
109
110        /// if the culled nodes are indicated in the visualization
111        bool mVisualizeCulledNodes;
112
113        /// if symbols for the nodes are shown in the visualization
114        bool mRenderNodesForViz;
115        /// if content of the nodes is shown in the visualization
116        bool mRenderNodesContentForViz;
117
118        /// if we render transparents after the hierarchical traversal
119        bool mDelayRenderTransparents;
120
121        /// if we use a depth pass (i.e., fill only the depth buffer in the first pass)
122        bool mUseDepthPass;
123        /// if we currently render the depth pass
124        bool mRenderDepthPass;
125       
126        /// if we use an item buffer for rendering (i.e., object ids as color codes
127        bool mUseItemBuffer;
128        /// if we currently render the item buffer
129        bool mRenderItemBuffer;
130
131        /// if depth write should be enabled
132        bool mEnableDepthWrite;
133        /// if transparents are skipped during rendering
134        bool mSkipTransparents;
135
136        /// the depth pass (no lighting, just filling the depth buffer)
137        Pass *mDepthPass;
138        Pass *mItemBufferPass;
139
140        int mCurrentEntityId;
141        /// flag for passes which should not be deleted from queue during first traversal
142        int mLeavePassesInQueue;
143        ShadowTechnique mSavedShadowTechnique;
144};
145
146} // namespace Ogre
147
148#endif // CullingTerrainSceneManager_H
Note: See TracBrowser for help on using the repository browser.