OAR Format 0.2

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Minor edit, please ignore.)
m (Robot: Replacing 'OpenSim' to 'OpenSimulator', which is the precise name)
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
{{Template:Quicklinks}}
+
{{Quicklinks}}
<br />
+
  
[[Technical Reference | Technical Reference]] -> [[Technical Reference/terms | Terms]] -> [[OAR_Format | OAR Format]] -> [[OAR_Format_0.2 | OAR Format 0.2]]
+
= What is the OAR 0.2 format? =
 
+
=What is the OAR 0.2 format?=
+
  
 
== Changes ==
 
== Changes ==
  
OAR format 0.2 is identical to 0.1 except that region settings have been added
+
OAR format 0.2 is identical to 0.1 except that region settings [and parcel data since 3c271b] have been added
  
 
== Detail ==
 
== Detail ==
  
At the present time, a region archive is a gzipped tar file (tar.gz) in the the original unix tar format (not USTAR). This can be extracted and created with standard tools ([http://www.7-zip.org/ 7-zip] on Windows). The structure of the archive is as follows
+
At the present time, a region archive is a gzipped tar file (tar.gz) in the the original unix tar format (not USTAR). This can be extracted and created with standard tools ([http://www.7-zip.org/ 7-zip] on Windows). The structure of the archive is as follows
  
 
  archive.xml
 
  archive.xml
 
  assets/
 
  assets/
 +
landdata/
 
  objects/
 
  objects/
 
  settings/
 
  settings/
Line 23: Line 21:
 
=== archive.xml ===
 
=== archive.xml ===
  
This is the archive control file. At the moment it contains only a major and minor version number, to allow compatibility with future format changes.
+
This is the archive control file. At the moment it contains only a major and minor version number, to allow compatibility with future format changes.
  
 
=== assets/ ===
 
=== assets/ ===
  
This directory contains all the assets in the archive. Each filename has the following format
+
This directory contains all the assets in the archive. Each filename has the following format
  
 
  <uuid>_<asset type>.<asset extension>
 
  <uuid>_<asset type>.<asset extension>
  
The ''uuid'' section must always be present and form a valid uuid - it is used directly as the uuid for that asset. The ''asset type'' and ''asset extension'' are used to identify the type of asset and the ''asset extension'' allows the asset to be associated with different editors on platforms such as Windows. For instance, a script will always have the asset type and extension script.lsl. A full list of asset types and extensions can be found in the file  
+
The ''uuid'' section must always be present and form a valid uuid - it is used directly as the uuid for that asset. The ''asset type'' and ''asset extension'' are used to identify the type of asset and the ''asset extension'' allows the asset to be associated with different editors on platforms such as Windows. For instance, a script will always have the asset type and extension script.lsl. A full list of asset types and extensions can be found in the file  
  
 
  OpenSim/Region/Environment/Modules/World/Archiver/ArchiveConstants.cs
 
  OpenSim/Region/Environment/Modules/World/Archiver/ArchiveConstants.cs
  
in the OpenSim distribution.
+
in the OpenSimulator distribution.
 +
 
 +
=== landdata/ ===
 +
 
 +
[Since 3c271b] This directory contains all the parcels in the region. Information for each parcel is stored in a separate file in XML format. Each filename has the form:
 +
 
 +
  <uuid>.xml
 +
 
 +
where ''uuid'' is the uuid of the parcel.
  
 
=== objects/ ===
 
=== objects/ ===
  
Each individual file in here is an object in the region (where an object [linkset] can be composed of many prims). The file format used is OpenSim's XML2 format. Each filename has the following structure by default
+
Each individual file in here is an object in the region (where an object [linkset] can be composed of many prims). The file format used is OpenSim's XML2 format. Each filename has the following structure by default
  
 
  <Object name>_<x>-<y>-<z>__<uuid>.xml
 
  <Object name>_<x>-<y>-<z>__<uuid>.xml
  
Unlike asset filenames, any component of this name can be changed without affecting any attributes of the object itself - this information is taken from the xml instead. Indeed, this file can have any name - there is no need for any of the sections to be present. An example object file name is
+
Unlike asset filenames, any component of this name can be changed without affecting any attributes of the object itself - this information is taken from the xml instead. Indeed, this file can have any name - there is no need for any of the sections to be present. An example object file name is
  
 
  Primitive_154-121-062__9be68fdd-f740-4a0f-9675-dfbbb536b946.xml
 
  Primitive_154-121-062__9be68fdd-f740-4a0f-9675-dfbbb536b946.xml
Line 49: Line 55:
 
=== settings/ ===
 
=== settings/ ===
  
This contains the region settings information for the region in XML format. The filename will be the same as the region name. For example,
+
This contains the region settings information for the region in XML format. The filename will be the same as the region name. For example,
  
  OpenSim Test.xml
+
  OpenSimulator Test.xml
  
Here is an [[OAR format 0.2 region settings example|example of an XML region file]] (schema to follow, sometime).
+
See [[#Region Settings Example|Region Settings Example]] below (schema to follow, sometime).
  
 
=== terrains/ ===
 
=== terrains/ ===
  
This contains the terrain file for the region, stored in RAW format. The filename must end with .r32. For example,
+
This contains the terrain file for the region, stored in RAW format. The filename must end with .r32. For example,
 +
 
 +
OpenSimulator Test.r32
 +
 
 +
 
 +
= Region Settings Example =
 +
 
 +
<?xml version="1.0" encoding="utf-16"?>
 +
<RegionSettings>
 +
  <General>
 +
    <AllowDamage>False</AllowDamage>
 +
    <AllowLandResell>True</AllowLandResell>
 +
    <AllowLandJoinDivide>False</AllowLandJoinDivide>
 +
    <BlockFly>False</BlockFly>
 +
    <BlockLandShowInSearch>False</BlockLandShowInSearch>
 +
    <BlockTerraform>False</BlockTerraform>
 +
    <DisableCollisions>False</DisableCollisions>
 +
    <DisablePhysics>False</DisablePhysics>
 +
    <DisableScripts>False</DisableScripts>
 +
    <MaturityRating>1</MaturityRating>
 +
    <RestrictPushing>False</RestrictPushing>
 +
    <AgentLimit>40</AgentLimit>
 +
    <ObjectBonus>1</ObjectBonus>
 +
  </General>
 +
  <GroundTextures>
 +
    <Texture1>b8d3965a-ad78-bf43-699b-bff8eca6c975</Texture1>
 +
    <Texture2>abb783e6-3e93-26c0-248a-247666855da3</Texture2>
 +
    <Texture3>179cdabd-398a-9b6b-1391-4dc333ba321f</Texture3>
 +
    <Texture4>beb169c7-11ea-fff2-efe5-0f24dc881df2</Texture4>
 +
    <ElevationLowSW>10</ElevationLowSW>
 +
    <ElevationLowNW>10</ElevationLowNW>
 +
    <ElevationLowSE>10</ElevationLowSE>
 +
    <ElevationLowNE>10</ElevationLowNE>
 +
    <ElevationHighSW>60</ElevationHighSW>
 +
    <ElevationHighNW>60</ElevationHighNW>
 +
    <ElevationHighSE>60</ElevationHighSE>
 +
    <ElevationHighNE>60</ElevationHighNE>
 +
  </GroundTextures>
 +
  <Terrain>
 +
    <WaterHeight>20</WaterHeight>
 +
    <TerrainRaiseLimit>0</TerrainRaiseLimit>
 +
    <TerrainLowerLimit>0</TerrainLowerLimit>
 +
    <UseEstateSun>True</UseEstateSun>
 +
    <FixedSun>False</FixedSun>
 +
  </Terrain>
 +
</RegionSettings>
  
OpenSim Test.r32
 
  
 
= See Also =
 
= See Also =
  
* [[Status|Main Status Page]]
+
* [[OpenSim Archives|How to use OpenSimulator Archives (OAR)]]
* [[Technical_Reference|Technical Reference Page]]
+
* [[OAR Format 0.1]]
* [[OAR_Format| What is OAR Format?]]
+
* [[OAR Format 0.2]]
* [[OpenSim_Archives|How to use OpenSim Archives (OAR)]]
+
* [[OAR Format 0.1 | OAR Format 0.1]]
+
* [[OAR Format 0.2 | OAR Format 0.2]]
+
  
 
[[Category:Users]]
 
[[Category:Users]]
 
[[Category:Support]]
 
[[Category:Support]]
[[Category:Tech Reference]]  
+
[[Category:Tech Reference]]
 
[[Category:Help]]
 
[[Category:Help]]
 
[[Category:Configuration]]
 
[[Category:Configuration]]
[[Category:Getting_Started]]
+
[[Category:Getting Started]]
 
[[Category:Development]]
 
[[Category:Development]]

Latest revision as of 23:46, 3 March 2012

[edit] What is the OAR 0.2 format?

[edit] Changes

OAR format 0.2 is identical to 0.1 except that region settings [and parcel data since 3c271b] have been added

[edit] Detail

At the present time, a region archive is a gzipped tar file (tar.gz) in the the original unix tar format (not USTAR). This can be extracted and created with standard tools (7-zip on Windows). The structure of the archive is as follows

archive.xml
assets/
landdata/
objects/
settings/
terrains/

[edit] archive.xml

This is the archive control file. At the moment it contains only a major and minor version number, to allow compatibility with future format changes.

[edit] assets/

This directory contains all the assets in the archive. Each filename has the following format

<uuid>_<asset type>.<asset extension>

The uuid section must always be present and form a valid uuid - it is used directly as the uuid for that asset. The asset type and asset extension are used to identify the type of asset and the asset extension allows the asset to be associated with different editors on platforms such as Windows. For instance, a script will always have the asset type and extension script.lsl. A full list of asset types and extensions can be found in the file

OpenSim/Region/Environment/Modules/World/Archiver/ArchiveConstants.cs

in the OpenSimulator distribution.

[edit] landdata/

[Since 3c271b] This directory contains all the parcels in the region. Information for each parcel is stored in a separate file in XML format. Each filename has the form:

 <uuid>.xml

where uuid is the uuid of the parcel.

[edit] objects/

Each individual file in here is an object in the region (where an object [linkset] can be composed of many prims). The file format used is OpenSim's XML2 format. Each filename has the following structure by default

<Object name>_<x>-<y>-<z>__<uuid>.xml

Unlike asset filenames, any component of this name can be changed without affecting any attributes of the object itself - this information is taken from the xml instead. Indeed, this file can have any name - there is no need for any of the sections to be present. An example object file name is

Primitive_154-121-062__9be68fdd-f740-4a0f-9675-dfbbb536b946.xml

[edit] settings/

This contains the region settings information for the region in XML format. The filename will be the same as the region name. For example,

OpenSimulator Test.xml

See Region Settings Example below (schema to follow, sometime).

[edit] terrains/

This contains the terrain file for the region, stored in RAW format. The filename must end with .r32. For example,

OpenSimulator Test.r32


[edit] Region Settings Example

<?xml version="1.0" encoding="utf-16"?>
<RegionSettings>
 <General>
   <AllowDamage>False</AllowDamage>
   <AllowLandResell>True</AllowLandResell>
   <AllowLandJoinDivide>False</AllowLandJoinDivide>
   <BlockFly>False</BlockFly>
   <BlockLandShowInSearch>False</BlockLandShowInSearch>
   <BlockTerraform>False</BlockTerraform>
   <DisableCollisions>False</DisableCollisions>
   <DisablePhysics>False</DisablePhysics>
   <DisableScripts>False</DisableScripts>
   <MaturityRating>1</MaturityRating>
   <RestrictPushing>False</RestrictPushing>
   <AgentLimit>40</AgentLimit>
   <ObjectBonus>1</ObjectBonus>
 </General>
 <GroundTextures>
   <Texture1>b8d3965a-ad78-bf43-699b-bff8eca6c975</Texture1>
   <Texture2>abb783e6-3e93-26c0-248a-247666855da3</Texture2>
   <Texture3>179cdabd-398a-9b6b-1391-4dc333ba321f</Texture3>
   <Texture4>beb169c7-11ea-fff2-efe5-0f24dc881df2</Texture4>
   <ElevationLowSW>10</ElevationLowSW>
   <ElevationLowNW>10</ElevationLowNW>
   <ElevationLowSE>10</ElevationLowSE>
   <ElevationLowNE>10</ElevationLowNE>
   <ElevationHighSW>60</ElevationHighSW>
   <ElevationHighNW>60</ElevationHighNW>
   <ElevationHighSE>60</ElevationHighSE>
   <ElevationHighNE>60</ElevationHighNE>
 </GroundTextures>
 <Terrain>
   <WaterHeight>20</WaterHeight>
   <TerrainRaiseLimit>0</TerrainRaiseLimit>
   <TerrainLowerLimit>0</TerrainLowerLimit>
   <UseEstateSun>True</UseEstateSun>
   <FixedSun>False</FixedSun>
 </Terrain>
</RegionSettings>


[edit] See Also

Personal tools
General
About This Wiki