Mercurial > repos > IBDev-IBBoard.WarFoundry.API
annotate api/Factories/Xml/WarFoundryXmlArmyFactory.cs @ 113:5ebbffd4a05f
Re #54: Add Army support to WarFoundryFactory
* Correct name of fetched attribute for game system in army file
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 22 Aug 2009 18:22:40 +0000 |
parents | 863518044d38 |
children | 2010a7e8bf9a |
rev | line source |
---|---|
52 | 1 // This file (WarFoundryXmlArmyFactory.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard |
2 // | |
104
2f3cafb69799
Re #121: Migrate to AGPL license
IBBoard <dev@ibboard.co.uk>
parents:
52
diff
changeset
|
3 // 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. |
52 | 4 |
5 using System; | |
6 using System.Xml; | |
7 using IBBoard.Xml; | |
8 using ICSharpCode.SharpZipLib.Zip; | |
9 using IBBoard.WarFoundry.API.Objects; | |
10 | |
11 namespace IBBoard.WarFoundry.API.Factories.Xml | |
12 { | |
13 /// <summary> | |
14 /// A sub-factory for loading WarFoundry Army XML files | |
15 /// </summary> | |
16 public class WarFoundryXmlArmyFactory | |
17 { | |
18 public Army CreateArmyFromElement(ZipFile file, XmlElement elem) | |
19 { | |
20 string name = elem.GetAttribute("name"); | |
113
5ebbffd4a05f
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
112
diff
changeset
|
21 string systemID = elem.GetAttribute("system"); |
52 | 22 GameSystem system = WarFoundryLoader.GetDefault().GetGameSystem(systemID); |
112
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
23 |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
24 if (system == null) |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
25 { |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
26 throw new RequiredDataMissingException(file.Name, "gameSystem", systemID); |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
27 } |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
28 |
52 | 29 string raceID = elem.GetAttribute("race"); |
30 Race race = WarFoundryLoader.GetDefault().GetRace(system, raceID); | |
112
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
31 |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
32 if (race == null) |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
33 { |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
34 throw new RequiredDataMissingException(file.Name, "race", raceID); |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
35 } |
863518044d38
Re #54: Add Army support to WarFoundryFactory
IBBoard <dev@ibboard.co.uk>
parents:
104
diff
changeset
|
36 |
52 | 37 int points = XmlTools.GetIntValueFromAttribute(elem, "maxPoints"); |
38 Army army = new Army(race, name, points, file); | |
39 //TODO: Complete loading of army | |
40 return army; | |
41 } | |
42 } | |
43 } |