Mercurial > repos > IBDev-IBBoard.WarFoundry.API
view api/Objects/EquipmentItem.cs @ 22:28e99aa0053f
Re #34 - Migrate WarFoundry files to using Schemas
* Rename WarFoundry-cats.xml to .xsd
* Use "all" tag in System instead of "sequence"
* Complete Race schema
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 09 Mar 2009 20:45:45 +0000 |
parents | 306558904c2a |
children | 548cfc776f54 |
line wrap: on
line source
// This file (EquipmentItem.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard. // // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license. using System; using System.Xml; namespace IBBoard.WarFoundry.API.Objects { /// <summary> /// Summary description for EquipmentItem. /// </summary> public class EquipmentItem : WarFoundryObject { private float cost, min, max; private ArmourType armourType; private Race equipForRace; public EquipmentItem(string id, string name, float itemCost, float minimum, float maximum, ArmourType itemArmourType, Race race) : base(id, name) { cost = itemCost; min = minimum; max = maximum; armourType = itemArmourType; equipForRace = race; } public bool IsRatioLimit { get { return ((MaxNumber < 1 && MaxNumber > 0) || (MaxNumber == 1 && MinNumber > 0)); } } public float MinNumber { get { return min; } set { min = (value >= 0 || value == -1) ? value : 0; if (MaxNumber != -1 && min > MaxNumber) { MaxNumber = min; } } } public float MaxNumber { get { return max; } set { max = (value > 0 || value == -1) ? value : -1; if (max != -1 && MinNumber > max) { MinNumber = max; } } } public ArmourType ItemArmourType { get { return armourType; } set { armourType = value; } } public float Cost { get { return cost; } set { cost = value; } } public Race EquipmentForRace { get { return equipForRace; } } public bool CanBeUsedWithItem(EquipmentItem item) { return CanBeUsedWithArmourType(item.ItemArmourType); } public bool CanBeUsedWithArmourType(ArmourType otherItemType) { return (this.ItemArmourType & otherItemType) == 0; } } }