Addition of JumpTrack XSD.
This commit is contained in:
parent
4966433091
commit
28fa8bf915
3
trunk/dist/game/data/JumpTrack.xml
vendored
3
trunk/dist/game/data/JumpTrack.xml
vendored
@ -1,6 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE xml>
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/JumpTrack.xsd">
|
||||||
<list>
|
|
||||||
<!-- <FlyToLocation ToX="-111994" ToY="257250" ToZ="-1392" Type="2" /> -->
|
<!-- <FlyToLocation ToX="-111994" ToY="257250" ToZ="-1392" Type="2" /> -->
|
||||||
<track trackId="12" zone="Talking Island Village -> Essar to Gila ruins" ToX="-111994" ToY="257250" ToZ="-1392">
|
<track trackId="12" zone="Talking Island Village -> Essar to Gila ruins" ToX="-111994" ToY="257250" ToZ="-1392">
|
||||||
<way id="0"><jumpLoc next="1" x="-112860" y="256154" z="-1232" /></way>
|
<way id="0"><jumpLoc next="1" x="-112860" y="256154" z="-1232" /></way>
|
||||||
|
39
trunk/dist/game/data/xsd/JumpTrack.xsd
vendored
Normal file
39
trunk/dist/game/data/xsd/JumpTrack.xsd
vendored
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||||
|
<xs:element name="list">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="track" maxOccurs="unbounded" minOccurs="0">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="way" maxOccurs="unbounded" minOccurs="0">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:sequence>
|
||||||
|
<xs:element name="jumpLoc" maxOccurs="unbounded" minOccurs="0">
|
||||||
|
<xs:complexType>
|
||||||
|
<xs:simpleContent>
|
||||||
|
<xs:extension base="xs:string">
|
||||||
|
<xs:attribute type="xs:byte" name="next" use="optional"/>
|
||||||
|
<xs:attribute type="xs:int" name="x" use="optional"/>
|
||||||
|
<xs:attribute type="xs:int" name="y" use="optional"/>
|
||||||
|
<xs:attribute type="xs:short" name="z" use="optional"/>
|
||||||
|
</xs:extension>
|
||||||
|
</xs:simpleContent>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute type="xs:byte" name="id" use="optional"/>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
<xs:attribute type="xs:byte" name="trackId" use="optional"/>
|
||||||
|
<xs:attribute type="xs:string" name="zone" use="optional"/>
|
||||||
|
<xs:attribute type="xs:int" name="ToX" use="optional"/>
|
||||||
|
<xs:attribute type="xs:int" name="ToY" use="optional"/>
|
||||||
|
<xs:attribute type="xs:short" name="ToZ" use="optional"/>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:sequence>
|
||||||
|
</xs:complexType>
|
||||||
|
</xs:element>
|
||||||
|
</xs:schema>
|
Loading…
Reference in New Issue
Block a user