home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / XML / Buildings / CIV4LSystemSchema.xml < prev    next >
Encoding:
Text File  |  2005-11-09  |  3.7 KB  |  79 lines

  1. <!-- Sid Meier's Civilization 4 -->
  2. <!-- Copyright Firaxis Games 2005 -->
  3. <!-- -->
  4. <!-- CityLSystem Schema -->
  5. <!-- -->
  6. <!-- Defines an arbitrary Civ4 LSystem -->
  7. <!-- When debugging LSystems, refer to Civ4/Logs/LSystem.log for help -->
  8. <Schema xmlns="urn:schemas-microsoft-com:xml-data" xmlns:dt="urn:schemas-microsoft-com:datatypes">
  9.     <!-- base types-->
  10.     <ElementType name="Filename" content="textOnly"/>
  11.     <ElementType name="Scale" content="textOnly" dt:type="float"/>
  12.     <ElementType name="Rotate" content="textOnly" dt:type="float"/>
  13.     <ElementType name="Translate" content="textOnly"/>
  14.     <ElementType name="Class" content="textOnly"/>
  15.     <ElementType name="Name" content="textOnly"/>
  16.     <ElementType name="Child" content="textOnly"/>
  17.     <ElementType name="From" content="textOnly"/>
  18.     <ElementType name="Width" content="textOnly" dt:type="float"/>
  19.     <ElementType name="Height" content="textOnly" dt:type="float"/>
  20.     <ElementType name="Attribute" content="textOnly">
  21.         <AttributeType name="Class" required="no" default="Scalar"/>
  22.         <attribute type="Class"/>
  23.     </ElementType>
  24.     <!-- Transformation info:
  25.         +X moves east on the Civ map
  26.         +Y is north on the Civ map
  27.         +90 rotation rotates CCW, i.e. +X->+Y, +Y->-X ... rotation is applied about the min-corner of the model
  28.         Translation by x,y sets the center of the item to x,y -->
  29.     <!-- entity references -->
  30.     <ElementType name="ArtRef">
  31.         <AttributeType name="Name" required="yes"/>
  32.         <attribute type="Name"/>
  33.         <element type="Attribute" minOccurs="0" maxOccurs="*"/>
  34.         <element type="Rotate" minOccurs="0" maxOccurs="1"/>
  35.         <element type="Translate" minOccurs="0" maxOccurs="1"/>
  36.         <element type="Scale" minOccurs="0" maxOccurs="1"/>
  37.     </ElementType>
  38.     <!-- a production encodes a split of a node into multiple child nodes -->
  39.     <!-- Civ4\Tools\Graphics\LSysTool can be used to create productions from bitmaps -->
  40.     <ElementType name="LProduction">
  41.         <AttributeType name="From" required="yes"/>
  42.         <attribute type="From"/>
  43.         <AttributeType name="Name" required="no"/>
  44.         <attribute type="Name"/>
  45.         <!-- nodes into which this splits -->
  46.         <element type="Attribute" minOccurs="0" maxOccurs="*"/>
  47.         <element type="To" minOccurs="0" maxOccurs="*"/>
  48.         <!-- production specific ArtRefs, e.g. roads, and attributes -->
  49.         <element type="ArtRef" minOccurs="0" maxOccurs="*"/>
  50.     </ElementType>
  51.     <!-- the To element describes the local transformations as well as the new node instance created by applying a production -->
  52.     <ElementType name="To" content="eltOnly" order="many">
  53.         <AttributeType name="Name" required="yes"/>
  54.         <attribute type="Name"/>
  55.         <element type="Rotate" minOccurs="0" maxOccurs="1"/>
  56.         <element type="Translate" minOccurs="0" maxOccurs="1"/>
  57.         <element type="Scale" minOccurs="0" maxOccurs="1"/>
  58.     </ElementType>
  59.     <!-- a node can contain ArtRefs, e.g. plain-old-NIFs, as well as named references to entities ...
  60.          how these entity references are mapped from strings to actual CvEntities is determined by the CvLSystem 
  61.          runtime
  62.       -->
  63.     <ElementType name="LNode">
  64.         <AttributeType name="Name" required="yes"/>
  65.         <attribute type="Name"/>
  66.         <element type="Width" minOccurs="0"/>
  67.         <element type="Height" minOccurs="0"/>
  68.         <element type="Attribute" minOccurs="0" maxOccurs="*"/>
  69.         <element type="ArtRef" minOccurs="0" maxOccurs="*"/>
  70.     </ElementType>
  71.     <!-- The main L-system is just a set of nodes and productions -->
  72.     <!-- Nonterminal nodes can be created implicitly via productions (nonterminals being nodes w/o entities & ArtRefs -->
  73.     <ElementType name="LSystemInfos" content="eltOnly">
  74.         <element type="Attribute" minOccurs="0" maxOccurs="*"/>
  75.         <element type="LNode" minOccurs="0" maxOccurs="*"/>
  76.         <element type="LProduction" minOccurs="0" maxOccurs="*"/>
  77.     </ElementType>
  78. </Schema>
  79.