UIComponentShellMultiplayer.xsd 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xs:schema
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. xmlns="uri:ea.com:eala:asset"
  5. xmlns:at="uri:ea.com:eala:asset:type"
  6. xmlns:xas="uri:ea.com:eala:asset:schema"
  7. targetNamespace="uri:ea.com:eala:asset"
  8. elementFormDefault="qualified"
  9. xmlns:XmlEdit="http://tempuri.org/XmlEdit.xsd">
  10. <xs:include schemaLocation="../Includes/UIBaseComponent.xsd"/>
  11. <xs:include schemaLocation="../Includes/MetaDataCommon.xsd"/>
  12. <xs:include schemaLocation="MultiplayerCommonUIData.xsd"/>
  13. <xs:complexType name="RankedOptionSetting">
  14. <xs:attribute name="Label" type="xs:string" />
  15. <xs:attribute name="Value" type="SageInt"/>
  16. </xs:complexType>
  17. <xs:complexType name="MapListType">
  18. <xs:sequence>
  19. <xs:element name="Map" type="WeakReference" xas:refType="MetaDataObject" minOccurs="1" maxOccurs="unbounded"/>
  20. </xs:sequence>
  21. </xs:complexType>
  22. <xs:complexType name="UIComponentShellMultiplayer">
  23. <xs:complexContent>
  24. <xs:extension base="UIBaseComponent">
  25. <xs:sequence>
  26. <xs:element name="OfficialMapList" type="MapListType" minOccurs="1" maxOccurs="1"/>
  27. <!-- Label spec's are used to set the contents of Apt strings. Better to put it here than hard code it. -->
  28. <xs:element name="MatchOptionsRankedLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  29. <xs:element name="MatchOptionsMatchTypeLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  30. <xs:element name="MatchOptionsPlayersLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  31. <xs:element name="AnyOptionLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  32. <xs:element name="TACLineLabelSpec" type="xs:string" minOccurs="1" maxOccurs="1"/>
  33. <xs:element name="GameType" type="GameplayTypeSetting" minOccurs="0" maxOccurs="unbounded"/>
  34. <xs:element name="RankedOption" type="RankedOptionSetting" minOccurs="0" maxOccurs="unbounded"/>
  35. </xs:sequence>
  36. </xs:extension>
  37. </xs:complexContent>
  38. </xs:complexType>
  39. </xs:schema>