Mercurial > repos > snowblizz-super-API-ideas
view api/Util/UnitEquipmentUtil.cs @ 182:6fe336109128
Re #198: Add slots with count to unit
* Add stub implementation for method to get max count
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 24 Oct 2009 18:59:04 +0000 |
parents | 33433862467f |
children | 36adabb1c3ea |
line wrap: on
line source
// This file (UnitEquipmentUtil.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 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 System.Text; using IBBoard.WarFoundry.API.Objects; namespace IBBoard.WarFoundry.API.Util { public class UnitEquipmentUtil { /// <summary> /// Gets an array of allowed <see cref="UnitEquipmentItem"/>s based on the current selections of the unit, taking in to account Mutex groups and other limits. /// </summary> /// <param name="unit">The <see cref="Unit"/> to get equipment items for</param> /// <returns>The array of allowed <see cref="UnitEquipmentItem"/>s</returns> public static UnitEquipmentItem[] GetAllowedEquipmentItems(Unit unit) { List<UnitEquipmentItem> list = new List<UnitEquipmentItem>(); UnitEquipmentItem[] currItems = unit.GetEquipment(); foreach (UnitEquipmentItem item in GetAllEquipmentItems(unit)) { bool allowed = IsAllowedByMutex(item, currItems); if (allowed) { list.Add(item); } } return list.ToArray(); } private static bool IsAllowedByMutex(UnitEquipmentItem item, UnitEquipmentItem[] currItems) { bool allowed = true; foreach (UnitEquipmentItem currItem in currItems) { if (ItemsAreMutuallyExclusive(currItem, item)) { allowed = false; break; } } return allowed; } /// <summary> /// Gets a list of all <see cref="UnitEquipmentItem"/>s that would stop the unit taking <code>item</code> because of mutex groups. /// </summary> /// <param name="unit">The unit that wants to take the equipment item</param> /// <param name="item">The item to check blocking items for</param> /// <returns>a list of all <see cref="UnitEquipmentItem"/>s that would stop the unit taking <code>item</code></returns> public static List<UnitEquipmentItem> GetBlockingEquipmentItems(Unit unit, UnitEquipmentItem item) { List<UnitEquipmentItem> items = new List<UnitEquipmentItem>(); UnitEquipmentItem[] currItems = unit.GetEquipment(); foreach (UnitEquipmentItem unitItem in currItems) { if (!ItemsAreMutuallyExclusive(unitItem, item)) { items.Add(unitItem); } } return items; } public static UnitEquipmentItem[] GetAllEquipmentItems(Unit unit) { return unit.UnitType.GetEquipmentItems(); } public static bool ItemsAreMutuallyExclusive(UnitEquipmentItem item1, UnitEquipmentItem item2) { bool areMutex = false; string[] item1mutex = item1.MutexGroups; string[] item2mutex = item2.MutexGroups; foreach (string mutex in item1mutex) { foreach (string otherMutex in item2mutex) { if (mutex.Equals(otherMutex)) { areMutex = true; goto postLoop; } } } postLoop: return areMutex; } public static int GetMaxEquipmentCount (Unit unit, UnitEquipmentItem equip) { return equip.MaxNumber; } } }