view dtds/warfoundry-core.xsd @ 54:3a90f70dac73

Re #61 - Complete structure of WarFoundry API objects * Remove min/max from EquipmentItem and add description * Add min/max numbers and percentages to UnitEquipmentItem * Make Race schema define min/max number without the ratio (which is the percentage) * Replace use of EquipmentItem with UnitEquipmentItem because of increased use of UnitEquipmentItem for unit-specific data * Use doubles instead of floats for equipment amounts * Distinguish between ratio and absolute limits * Delete UnitEquipmentItemObj helper class that was purely used for UI Re #9 - Use smaller methods * Deprecate long Race and EquipmentItem constructors and ensure all getters/setters exist Also: * Migrate Unit to using genericed collections * Always use GameSystem object for Race, not ID string
author IBBoard <dev@ibboard.co.uk>
date Sun, 05 Apr 2009 13:45:23 +0000
parents d0812d7de39d
children 76d274df9f28
line wrap: on
line source

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://ibboard.co.uk/warfoundry/core"
xmlns="http://ibboard.co.uk/warfoundry/core" elementFormDefault="qualified">
<xs:simpleType name="positiveOrInfiniteInteger">
  <xs:union memberTypes="xs:positiveInteger infinity"/>
</xs:simpleType>
<xs:simpleType name="nonNegativeOrInfiniteInteger">
  <xs:union memberTypes="xs:nonNegativeInteger infinity"/>
</xs:simpleType>
<xs:simpleType name="infinity">
  <xs:restriction base="xs:integer">
    <xs:minInclusive value="-1"/>
    <xs:maxInclusive value="-1"/>
  </xs:restriction>
</xs:simpleType>
<xs:simpleType name="nonNegativeDouble">
  <xs:restriction base="xs:double">
    <xs:minInclusive value="0"/>
  </xs:restriction>
</xs:simpleType>
<xs:simpleType name="nonNegativeNonInfiniteDouble">
  <xs:restriction base="xs:double">
    <xs:minInclusive value="0"/>
    <xs:maxExclusive value="INF"/>
  </xs:restriction>
</xs:simpleType>
<xs:simpleType name="percentage">
  <xs:restriction base="xs:double">
    <xs:minInclusive value="0"/>
    <xs:maxInclusive value="100"/>
  </xs:restriction>
</xs:simpleType>
<xs:simpleType name="nonNegativeOrInfiniteIntegerOrRatio">
  <xs:union memberTypes="xs:nonNegativeInteger infinity ratio"/>
</xs:simpleType>
<xs:simpleType name="ratio">
  <xs:restriction base="xs:double">
    <xs:minInclusive value="0"/>
    <xs:maxInclusive value="1"/>
  </xs:restriction>
</xs:simpleType>
</xs:schema>