History: DotScene
Preview of version: 15
|
|
DotScene
Overview of the DotScene format. |
DotScene Overview
DotScene (aka .scene) is just a standardized XML file format. The .dtd format is in PlugIns/DotScene.
This file format is meant to be used to set up a scene in Ogre. It is meant to be useful for any type of application/game. Editors can export to .scene format, and apps can load the format.
What is DotScene?
DotScene file does not contain any mesh data, texture data, etc. It just contains elements that describe a scene. You *do not* need to use any of the following when using .scene files: DotSceneManager, DotSceneInterface, DotSceneViewer. They are all just seperate projects that you have the option of using.
A simple .scene file example:
<scene formatVersion=""> <nodes> <node name="Robot" id="3"> <position x="10.0" y="5" z="10.5" /> <scale x="1" y="1" z="1" /> <entity name="Robot" meshFile="robot.mesh" static="false" /> </node> <node name="Omni01" id="5"> <position x="-23" y="49" z="18" /> <rotation qx="0" qy="0" qz="0" qw="1" /> <scale x="1" y="1" z="1" /> <light name="Omni01" type="point" intensity="0.01" contrast="0"> <colourDiffuse r="0.4" g="0.4" b="0.5" /> <colourSpecular r="0.5" g="0.5" b="0.5" /> </light> </node> </nodes> </scene>
Details you find at PlugIns/DotScene.
What Does it Do?
It does nothing in itself, it is just a file format. The nice thing about the format is that it is in XML format, and is human readable. Also, adding new tags/elements not in the official specification is possible without messing up other .scene parsers.
Other Tools that support DotScene format
- RapidXML Dotscene Loader
- OGRECave/blender2ogre - Exports .scene files from Blender.
- Complete Guide: Exporting Blender To Ogre
- Example Scene Converter - Parses scene file into binary octree file (Works in conjunction with DotSceneManager)
- 3DS Scene Exporter - Exports meshes/lights/materials/.scene file (ogreaddons/3dssceneexporter)
- Maya Scene Exporter - Open Source scene exporter, supporting lights,cameras,transformations, references. In Ogre AddOns CVS.
- OgreMax Scene Exporter - The OgreMax Scene Exporter is a 3DS Max 8/9/2008/2009 exporter plugin that exports scenes to the .scene format.
- Ogitor - An open source Ogre scene editor (OGRECave/ogitor)