view api/Requirements/UnitRequirement.cs @ 252:a54da5a8b5bb

Re #268: Restructure stats for re-use * Add "Member Type" class * Add member type setting and getting to Race * Load member types from XML files * Make unit type pull stat line from stats or first member type, or fall back to a blank stat line * Change Stats object to initialise blank values * Change schema * Make stats optional * Add member type list to race * Add optional member type references to units
author IBBoard <dev@ibboard.co.uk>
date Sun, 25 Apr 2010 15:07:08 +0000
parents 2f3cafb69799
children
line wrap: on
line source

// This file (UnitRequirement.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2008, 2009 IBBoard.
//
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.

using System;
using System.Collections.Generic;
using IBBoard.WarFoundry.API;
using IBBoard.WarFoundry.API.Objects;

namespace IBBoard.WarFoundry.API.Requirements
{
	/// <summary>
	/// Summary description for UnitRequirement.
	/// </summary>
	public abstract class UnitRequirement : AbstractArmyRequirement
	{
		protected UnitType unitType;
		
		protected UnitRequirement(UnitType requirementFor)
		{
			unitType = requirementFor;	
		}		
		
		/// <summary>
		/// Checks whether the specified unit type can be added to the specified army. Returns a <see cref="FailedRequirement"> obejct if a unit of that type cannot legally be added, or no failure (null) if it can be added. 
		/// </summary>
		/// <param name="army">
		/// The <see cref="Army"/> that the unit should be checked for adding to
		/// </param>
		/// <param name="type">
		/// The <see cref="UnitType"/> that is being checked.
		/// </param>
		/// <returns>
		/// A <see cref="AbstractFailedRequirement"/> if the requirement means the <see cref="UnitType"/> cannot be legally added, else <code>null</code>.
		/// </returns>
		protected abstract AbstractFailedRequirement CanAddToArmy(Army army, UnitType type);
		
		/// <summary>
		/// Checks whether the specified unit can be added to the specified army. Returns a <see cref="FailedRequirement"> obejct if the unit cannot legally be added, or no failure (null) if it can be added. 
		/// </summary>
		/// <param name="army">
		/// The <see cref="Army"/> that the unit should be checked for adding to
		/// </param>
		/// <param name="type">
		/// The <see cref="Unit"/> that is being checked.
		/// </param>
		/// <returns>
		/// A <see cref="AbstractFailedRequirement"/> if the requirement means the <see cref="Unit"/> cannot be legally added, else <code>null</code>.
		/// </returns>
		protected AbstractFailedRequirement CanAddToArmy(Army army, Unit unit)
		{
			return CanAddToArmy(army, unit.UnitType);
		}
		
		/// <summary>
		/// Checks whether the specified unit type can be removed from the specified army. Returns a <see cref="FailedRequirement"> obejct if a unit of that type cannot legally be removed, or no failure (null) if it can be removed. 
		/// </summary>
		/// <param name="army">
		/// The <see cref="Army"/> that the unit should be checked for adding to
		/// </param>
		/// <param name="type">
		/// The <see cref="UnitType"/> that is being checked.
		/// </param>
		/// <returns>
		/// A <see cref="AbstractFailedRequirement"/> if the requirement means the <see cref="UnitType"/> cannot be legally added, else <code>null</code>.
		/// </returns>
		protected abstract AbstractFailedRequirement CanRemoveFromArmy(Army army, UnitType type);
		
		/// <summary>
		/// Checks whether the specified unit can be removed from the specified army. Returns a <see cref="FailedRequirement"> obejct if the unit cannot legally be removed, or no failure (null) if it can be removed. 
		/// </summary>
		/// <param name="army">
		/// The <see cref="Army"/> that the unit should be checked for adding to
		/// </param>
		/// <param name="type">
		/// The <see cref="Unit"/> that is being checked.
		/// </param>
		/// <returns>
		/// A <see cref="AbstractFailedRequirement"/> if the requirement means the <see cref="Unit"/> cannot be legally removed, else <code>null</code>.
		/// </returns>
		protected AbstractFailedRequirement CanRemoveFromArmy(Army army, Unit unit)
		{
			return CanRemoveFromArmy(army, unit.UnitType);
		}
				
		protected override AbstractFailedRequirement CanAddToArmy(Army army)
		{
			return CanAddToArmy(army, unitType);
		}
		
		protected override AbstractFailedRequirement CanRemoveFromArmy(Army army)
		{
			return CanRemoveFromArmy(army, unitType);
		}
	}
}