Mercurial > repos > IBDev-IBBoard.WarFoundry.API
view api/Objects/Army.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 | e53ed2d613a1 |
line wrap: on
line source
// This file (Army.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.IO; using System.Collections; using System.Collections.Generic; using System.Text; using System.Xml; using IBBoard.WarFoundry.API; using IBBoard.WarFoundry.API.Factories; using IBBoard.WarFoundry.API.Requirements; using ICSharpCode.SharpZipLib.Zip; namespace IBBoard.WarFoundry.API.Objects { /// <summary> /// Summary description for Army. /// </summary> public class Army : WarFoundryObject { //private GameSystem system; private Race armyRace; private int maxPoints; private double pointsTotal; private ArmyCategory[] categories; public event ObjectAddDelegate UnitAdded; public event ObjectRemoveDelegate UnitRemoved; public event FailedUnitRequirementDelegate FailedRequirement; public event DoubleValChangedDelegate PointsValueChanged; private DoubleValChangedDelegate PointsValueChangedMethod; public Army(Race race, string armyName, int maxArmyPoints) : this(race, armyName, maxArmyPoints, null/*, factory*/) { } public Army(Race race, string armyName, int maxArmyPoints, ZipFile file) : base(armyName) { armyRace = race; Name = armyName; maxPoints = maxArmyPoints; PointsValueChangedMethod = new DoubleValChangedDelegate(PointsValueChangedHandler); } public ArmyCategory GetCategory(Category cat) { foreach (ArmyCategory armyCat in Categories) { if (armyCat.Category.Equals(cat)) { return armyCat; } } return null; } public ArmyCategory[] Categories { get { if (categories==null) { Category[] raceCats = Race.Categories; ArmyCategory cat; int raceCatCount = raceCats.Length; categories = new ArmyCategory[raceCatCount]; for (int i = 0; i < raceCatCount; i++) { cat = new ArmyCategory(this, raceCats[i]); categories[i] = cat; cat.PointsValueChanged+= PointsValueChangedMethod; cat.UnitAdded+=new ObjectAddDelegate(Army_UnitAdded); cat.UnitRemoved+=new ObjectRemoveDelegate(Army_UnitRemoved); cat.RequirementsFailed+=new FailedUnitRequirementDelegate(Army_FailedRequirement); } } return categories; } } public Race Race { get { return armyRace; } } public GameSystem GameSystem { get { return (armyRace!=null ? armyRace.GameSystem : null); } } protected void OnUnitAdded(Unit unit) { OnUnitAdded(unit, null); } protected void OnUnitAdded(Unit unit, List<FailedUnitRequirement> failedReqs) { if (UnitAdded!=null) { UnitAdded(unit); } if (FailedRequirement!=null && failedReqs!=null && failedReqs.Count > 0) { FailedRequirement(failedReqs); } } protected void OnUnitRemoved(Unit unit) { OnUnitRemoved(unit, null); } protected void OnUnitRemoved(Unit unit, List<FailedUnitRequirement> failedReqs) { if (UnitRemoved!=null) { UnitRemoved(unit); } if (FailedRequirement!=null && failedReqs!=null && failedReqs.Count > 0) { FailedRequirement(failedReqs); } } private void OnPointsValueChanged(double oldValue, double newValue) { if (PointsValueChanged!=null) { PointsValueChanged(this, oldValue, newValue); } } private double TotalPoints { get { return pointsTotal; } set { double oldPoints = pointsTotal; pointsTotal = value; if (oldPoints!=pointsTotal) { OnPointsValueChanged(oldPoints, pointsTotal); } } } public double PointsTotal { get { return TotalPoints; } } public Unit[] GetUnits(Category cat) { return GetUnits(this.GetCategory(cat)); } public Unit[] GetUnits(ArmyCategory cat) { return cat.GetUnits(); } public Unit[] GetUnits() { ArrayList fullList = new ArrayList(); foreach(ArmyCategory cat in Categories) { foreach(Unit unit in cat.GetUnits()) { if (!fullList.Contains(unit)) { fullList.Add(unit); } } } return (Unit[])fullList.ToArray(typeof(Unit)); } public int MaxPoints { get { return maxPoints; } set { if (value > 0) { maxPoints = value; } } } private void PointsValueChangedHandler(WarFoundryObject obj, double oldVal, double newVal) { if (obj is ArmyCategory) { double points = 0; foreach (ArmyCategory cat in Categories) { points+= cat.PointsTotal; } TotalPoints = points; } } public List<FailedUnitRequirement> CanAddUnit(Unit unit) { return CanAddUnitType(unit.UnitType); } public List<FailedUnitRequirement> CanAddUnitType(UnitType unitType) { return unitType.CanAddToArmy(this); } public List<FailedUnitRequirement> CanRemoveUnit(Unit unit) { return CanRemoveUnitType(unit.UnitType); } public List<FailedUnitRequirement> CanRemoveUnitType(UnitType unitType) { return unitType.CanRemoveFromArmy(this); } public int GetUnitTypeCount(UnitType unitType) { int count = 0; foreach (ArmyCategory cat in Categories) { count+= cat.GetUnitTypeCount(unitType); } return count; } private void Army_UnitAdded(object val) { OnUnitAdded((Unit)val); } private void Army_UnitRemoved(object val) { OnUnitRemoved((Unit)val); } private void Army_FailedRequirement(List<FailedUnitRequirement> failedRequirements) { if (FailedRequirement!=null) { FailedRequirement(failedRequirements); } } } }