view schemas/system.xsd @ 278:c1d55ea8a2a1

Re #297: Move Categories over to key/keyref from ID/IDREF * Make category use a string for an ID * Add key to system - key needs to be outside <complexType> so we can't put it in warfoundry-cats.xsd at the moment TODO: Add matching code to Race, or find a way to "alias" and create a categories element that uses the type and the key within warfoundry-cats.xsd
author IBBoard <dev@ibboard.co.uk>
date Wed, 07 Jul 2010 19:01:13 +0000
parents d576034ad1dd
children 08a9c960e17f 4e0031339bcb db6713d5b35f
line wrap: on
line source

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:core="http://ibboard.co.uk/warfoundry/core" xmlns:cats="http://ibboard.co.uk/warfoundry/cats"
targetNamespace="http://ibboard.co.uk/warfoundry/system" xmlns="http://ibboard.co.uk/warfoundry/system" xmlns:sys="http://ibboard.co.uk/warfoundry/system" elementFormDefault="qualified">
<xs:element name="system">
	<xs:complexType>
		<xs:sequence>
			<xs:element name="categories" type="cats:categoriestype">
				<xs:key name="catsKey">
					<xs:selector xpath="cats:cat"/>
					<xs:field xpath="@id"/>
				</xs:key>
			</xs:element>
			<xs:element name="sysStatsList">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="sysStats" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="sysStat" maxOccurs="unbounded">
										<xs:complexType>
											<xs:sequence>
												<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
											</xs:sequence>
											<xs:attribute name="name" type="xs:string" use="required"/>
											<xs:anyAttribute processContents="lax"/>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
								<xs:attribute name="id" type="xs:string" />
								<xs:anyAttribute processContents="lax"/>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
					<xs:attribute name="defaultStats" type="xs:string" use="required" />
					<xs:anyAttribute processContents="lax"/>
				</xs:complexType>
			</xs:element>
			<xs:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
		</xs:sequence>
		<xs:attribute name="id" type="xs:string" />
		<xs:attribute name="name" type="xs:string" use="required"/>
		<xs:attribute name="warn" type="xs:boolean" default="false"/>
		<xs:attribute name="allowAllies" type="xs:boolean" default="true"/>
		<xs:anyAttribute processContents="lax"/>
	</xs:complexType>
	<xs:keyref name="defaultStatsRef" refer="statsKey">
		<xs:selector xpath="sys:sysStatsList"/>
		<xs:field xpath="@defaultStats"/>
	</xs:keyref>
	<xs:key name="statsKey">
		<xs:selector xpath="sys:sysStatsList/sys:sysStats"/>
		<xs:field xpath="@id"/>
	</xs:key>
</xs:element>
</xs:schema>