2 #ifndef __FG_RENDERER_HXX
3 #define __FG_RENDERER_HXX 1
5 #include <simgear/scene/util/SGPickCallback.hxx>
6 #include <simgear/props/props.hxx>
7 #include <simgear/timing/timestamp.hxx>
13 #include "renderingpipeline.hxx"
19 class GraphicsContext;
24 class GUIEventAdapter;
58 void resize(int width, int height );
62 /** Just pick into the scene and return the pick callbacks on the way ...
64 bool pick( std::vector<SGSceneryPick>& pickList,
65 const osgGA::GUIEventAdapter* ea );
67 /** Get and set the OSG Viewer object, if any.
69 osgViewer::Viewer* getViewer() { return viewer.get(); }
70 const osgViewer::Viewer* getViewer() const { return viewer.get(); }
71 void setViewer(osgViewer::Viewer* viewer);
72 /** Get and set the manipulator object, if any.
74 flightgear::FGEventHandler* getEventHandler() { return eventHandler.get(); }
75 const flightgear::FGEventHandler* getEventHandler() const { return eventHandler.get(); }
76 void setEventHandler(flightgear::FGEventHandler* manipulator);
78 /** Add a top level camera.
80 void addCamera(osg::Camera* camera, bool useSceneData);
82 void removeCamera(osg::Camera* camera);
84 /** Add a camera to the group. The camera is added to the viewer
85 * as a slave. See osgViewer::Viewer::addSlave.
86 * @param flags properties of the camera; see CameraGroup::Flags
87 * @param projection slave projection matrix
88 * @param view slave view matrix
89 * @param useMasterSceneData whether the camera displays the
90 * viewer's scene data.
91 * @return a CameraInfo object for the camera.
93 flightgear::CameraInfo* buildRenderingPipeline(flightgear::CameraGroup* cgroup, unsigned flags, osg::Camera* camera,
94 const osg::Matrix& view,
95 const osg::Matrix& projection,
96 osg::GraphicsContext* gc,
97 bool useMasterSceneData);
101 flightgear::CameraInfo* buildClassicalPipeline(flightgear::CameraGroup* cgroup, unsigned flags, osg::Camera* camera,
102 const osg::Matrix& view,
103 const osg::Matrix& projection,
104 bool useMasterSceneData);
108 flightgear::CameraInfo* buildDeferredPipeline(flightgear::CameraGroup* cgroup, unsigned flags, osg::Camera* camera,
109 const osg::Matrix& view, const osg::Matrix& projection, osg::GraphicsContext* gc);
111 void updateShadowCamera(const flightgear::CameraInfo* info, const osg::Vec3d& position);
112 void updateShadowMapSize(int mapSize);
113 void enableShadows(bool enabled);
114 void updateCascadeFar(int index, float far_m);
115 void updateCascadeNumber(size_t num);
117 SGSky* getSky() const { return _sky; }
119 void setPlanes( double zNear, double zFar );
122 osg::ref_ptr<osgViewer::Viewer> viewer;
123 osg::ref_ptr<flightgear::FGEventHandler> eventHandler;
124 SGPropertyNode_ptr _scenery_loaded,_scenery_override;
125 SGPropertyNode_ptr _skyblend, _splash_alpha;
126 SGPropertyNode_ptr _point_sprites, _enhanced_lighting, _distance_attenuation;
127 SGPropertyNode_ptr _textures;
128 SGPropertyNode_ptr _cloud_status, _visibility_m;
129 SGPropertyNode_ptr _xsize, _ysize;
130 SGPropertyNode_ptr _panel_hotspots, _sim_delta_sec, _horizon_effect, _altitude_ft;
131 SGPropertyNode_ptr _virtual_cockpit;
132 SGTimeStamp _splash_time;
134 bool _classicalRenderer;
135 std::string _renderer;
138 float _cascadeFar[4];
139 bool _useColorForDepth;
141 flightgear::CameraInfo* buildCameraFromRenderingPipeline(FGRenderingPipeline* rpipe, flightgear::CameraGroup* cgroup, unsigned flags, osg::Camera* camera,
142 const osg::Matrix& view, const osg::Matrix& projection, osg::GraphicsContext* gc);
144 void buildBuffers(FGRenderingPipeline* rpipe, flightgear::CameraInfo* info);
145 void buildStage(flightgear::CameraInfo* info, FGRenderingPipeline::Stage* stage, flightgear::CameraGroup* cgroup, osg::Camera* mainCamera, const osg::Matrix& view, const osg::Matrix& projection, osg::GraphicsContext* gc);
146 osg::Node* buildPass(flightgear::CameraInfo* info, FGRenderingPipeline::Pass* pass);
147 osg::Node* buildLightingSkyCloudsPass(FGRenderingPipeline::Pass* pass);
148 osg::Node* buildLightingLightsPass(flightgear::CameraInfo* info, FGRenderingPipeline::Pass* pass);
150 osg::Camera* buildDeferredGeometryCamera( flightgear::CameraInfo* info, osg::GraphicsContext* gc, const std::string& name, const FGRenderingPipeline::AttachmentList& attachments );
151 osg::Camera* buildDeferredShadowCamera( flightgear::CameraInfo* info, osg::GraphicsContext* gc, const std::string& name, const FGRenderingPipeline::AttachmentList& attachments );
152 osg::Camera* buildDeferredLightingCamera( flightgear::CameraInfo* info, osg::GraphicsContext* gc, const FGRenderingPipeline::Stage* stage );
153 osg::Camera* buildDeferredFullscreenCamera( flightgear::CameraInfo* info, osg::GraphicsContext* gc, const FGRenderingPipeline::Stage* stage );
154 osg::Camera* buildDeferredFullscreenCamera( flightgear::CameraInfo* info, const FGRenderingPipeline::Pass* pass );
155 void buildDeferredDisplayCamera( osg::Camera* camera, flightgear::CameraInfo* info, const FGRenderingPipeline::Stage* stage, osg::GraphicsContext* gc );
157 void updateShadowCascade(const flightgear::CameraInfo* info, osg::Camera* camera, osg::Group* grp, int idx, double left, double right, double bottom, double top, double zNear, double f1, double f2);
158 osg::Vec3 getSunDirection() const;
159 osg::ref_ptr<osg::Uniform> _ambientFactor;
160 osg::ref_ptr<osg::Uniform> _sunDiffuse;
161 osg::ref_ptr<osg::Uniform> _sunSpecular;
162 osg::ref_ptr<osg::Uniform> _sunDirection;
163 osg::ref_ptr<osg::Uniform> _planes;
164 osg::ref_ptr<osg::Uniform> _fogColor;
165 osg::ref_ptr<osg::Uniform> _fogDensity;
166 osg::ref_ptr<osg::Uniform> _shadowNumber;
167 osg::ref_ptr<osg::Uniform> _shadowDistances;
168 osg::ref_ptr<osg::Uniform> _depthInColor;
170 osg::ref_ptr<FGRenderingPipeline> _pipeline;
173 bool fgDumpSceneGraphToFile(const char* filename);
174 bool fgDumpTerrainBranchToFile(const char* filename);
178 bool printVisibleSceneInfo(FGRenderer* renderer);