view api/Objects/EquipmentItem.cs @ 38:548cfc776f54

Fixes #34 - Remove "Choices" and "Base/Increment" from Category * Remove Choices and Base/Increment from code Re #47: Remove magic numbers * Replace "-1" magic number with WarFoundryCore.INFINITY * Use INFINITY instead of -1 in code * Use INF in schemas instead of -1 * Handle and parse INF as a special value in XML Factory
author IBBoard <dev@ibboard.co.uk>
date Thu, 19 Mar 2009 20:11:07 +0000
parents 306558904c2a
children d0812d7de39d
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 == WarFoundryCore.INFINITY) ? value : 0; 

				if (MaxNumber != WarFoundryCore.INFINITY && min > MaxNumber)
				{
					MaxNumber = min;
				}
			}
		}

		public float MaxNumber
		{
			get { return max; }
			set 
			{
				max = (value > 0 || value == WarFoundryCore.INFINITY) ? value : WarFoundryCore.INFINITY; 

				if (max != WarFoundryCore.INFINITY && 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;
		}
	}
}