Mercurial > repos > snowblizz-super-API-ideas
view API/Factories/Requirement/UnitRequiresAtLeastNUnitsRequirementFactory.cs @ 373:e10630f39ec2
Re #351: Add extensible requirement handling method
* Add handling of different requirements:
* Multiple unit types
* Unit types with numbers
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 14 Jun 2011 14:27:14 +0000 |
parents | 2f8b2467ba99 |
children | 13793f3a2a2e |
line wrap: on
line source
// This file (UnitRequiresAtLeastNUnitsRequirementFactory.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2011 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 IBBoard.WarFoundry.API.Objects; using IBBoard.WarFoundry.API.Objects.Requirement; namespace IBBoard.WarFoundry.API.Factories.Requirement { public class UnitRequiresAtLeastNUnitsRequirementFactory { public UnitRequiresAtLeastNUnitsRequirementFactory() { //Do nothing special } public UnitRequiresAtLeastNUnitsRequirement CreateRequirement(UnitType type, string data) { UnitRequiresAtLeastNUnitsRequirement req = new UnitRequiresAtLeastNUnitsRequirement(type); Race race = type.Race; AddRequirements(req, race, data); return req; } private void AddRequirements(UnitRequiresAtLeastNUnitsRequirement req, Race race, string data) { foreach (string requirement in data.Split('|')) { string[] requirementParts = requirement.Split(':'); if (requirementParts.Length == 2) { req.AddUnitTypeRequirement(race.GetUnitType(requirementParts[0]), Int32.Parse(requirementParts[1])); } else { req.AddUnitTypeRequirement(race.GetUnitType(requirementParts[0])); } } } } }