Version 2 (modified by 14 years ago) (diff) | ,
---|
TracNav
Documentation
- Getting Started
BuildEnvironment...
- Terrain Data
- Architecture
Modules...
osgVisual Configuration via XML
- SerializationNotes
- ExecuterNotes
- CameraControl
- Theories of Terrain Deformation
- Theories of Image Distortion
- Home
About...
- Screenshots
- Downloads
Projection Designer...
- Wiki Edit
- Website Credits/Impressum
<< Back to XML configuration overview
List of modules with available configuration options
Data In/Output?
<module name="dataio" enabled="yes">
<!-- XML configuration of the module "dataIO"
The parameter "enabled" is ignored, because dataIO is mandatory for the visual system to place object etc.
Available clusterroles: master: This role recieves all relevant information via the extLink implementation and sends it via cluster implementation to the slave nodes. slave: This role recieves all relevant rendering information via the cluster implementation. standalone: This role recieves all relevant data via the extLink and renders it. No cluster functionality is used.
--> <dataio clusterrole="standalone"></dataio> <cluster implementation="enet" hardsync="yes" master_ip="10.10.10.10" port="1234" use_zlib_compressor="yes" ></cluster> <extlink implementation="vcl" filename="osgVisual.xml"></extlink>
</module>
distortion
<module name="distortion" enabled="no">
<!-- XML configuration of the module "distortion"
channelname = name of the channel, used to load the distortion- and blendmaps renderimplementation = technique to distort. Available options:
fbo : renderImplementation = osg::Camera::FRAME_BUFFER_OBJECT pbuffer : renderImplementation = osg::Camera::PIXEL_BUFFER pbuffer-rtt : renderImplementation = osg::Camera::PIXEL_BUFFER_RTT fb : renderImplementation = osg::Camera::FRAME_BUFFER window : renderImplementation = osg::Camera::SEPERATE_WINDOW
--> <distortion channelname="center" renderimplemmentation="fbo" width="2048" height="2048" useshader="yes" hdr="yes" usetexturerectangle="no"></distortion> <!-- optional: <distortionmap filename="distmap.png"></distortionmap> to set distortionmap independend from channel map--> <!-- optional: <blendmap filename="blendmap.png"></blendmap> to set blendmap independend from channel map -->
</module>
Sky Silverlining
Currently sky_silverlining has no module dependend configuration. It only allows to enable or disable the sky framework.
The XML entry is:
<module name="sky_silverlining" enabled="yes"></module>
Vista 2D
The vista2D module works, but regarding to its architecture the usage in OpenSceneGraph (and hence in osgVisual) is quite performance degrading. Nevertheless, for testing purposes or for prototype usage it is available.
In the XML Entry, you have to specify the vista2D project file and the position and zoom factor it should use. To enable the animation you have to enable the attribude "playanimation". You can control the background of the vista2D project by en- or disable the attribute "paintBackground".
<module name="vista2d" enabled="yes"> <vista2d filename="D:\osgVisual\osgVisual\bin\altimeterSimple.v" paintBackground="no" position_x="1" position_y="1" zoom="1.0" playanimation="yes"></vista2d> </module>