annotate API/Exporters/WarFoundryXMLWithXSLExporter.cs @ 467:750eed630c41

Fixes #395: Requirements can incorrectly allow based on common divisor * Round the "limited/required" normalised count down to get correct values
author IBBoard <dev@ibboard.co.uk>
date Sat, 31 Mar 2012 20:18:42 +0100
parents 71fceea2725b
children cd367acd7c48
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
1 // This file (WarFoundryXmlWithXslExporter.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2011 Dan Kulinski
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
2 //
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
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.
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
4
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
5 using System;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
6 using System.Collections.Generic;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
7 using System.IO;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
8 using System.Text;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
9 using System.Xml;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
10 using System.Xml.Xsl;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
11 using System.Xml.XPath;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
12 using System.Xml.Schema;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
13 using IBBoard.Lang;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
14 using IBBoard.Xml;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
15 using IBBoard.WarFoundry.API.Objects;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
16 using IBBoard.WarFoundry.API.Util;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
17
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
18 namespace IBBoard.WarFoundry.API.Exporters
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
19 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
20 /// <summary>
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
21 /// Custom exporter that exports an army as an XML file with an XSLT applied
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
22 /// </summary>
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
23 public class WarFoundryXmlWithXslExporter : IWarFoundryExporter
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
24 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
25 private static WarFoundryXmlWithXslExporter exporter;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
26
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
27 // Return the default class associated with this exporter
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
28 public static WarFoundryXmlWithXslExporter GetDefault()
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
29 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
30 if (exporter == null)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
31 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
32 exporter = new WarFoundryXmlWithXslExporter();
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
33 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
34
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
35 return exporter;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
36 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
37
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
38 private WarFoundryXmlWithXslExporter()
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
39 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
40 // Hide constructor
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
41 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
42
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
43 // Write to file
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
44 public void ExportArmy(Army army, string path)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
45 {
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
46 XmlDocument xmlDoc = BuildXml(army);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
47 // Simple XML output settings
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
48 XmlWriterSettings xmlSettings = new XmlWriterSettings();
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
49 xmlSettings.Indent = true;
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
50 xmlSettings.IndentChars = " ";
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
51
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
52 // Write XML to file
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
53 using (XmlWriter writer = XmlWriter.Create(path, xmlSettings))
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
54 {
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
55 xmlDoc.Save(writer);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
56 writer.Flush();
408
2c52f0235774 Closed exported file after completion of export/transformation.
Dan.Kulinski@dank-laptop.Global.Local
parents: 404
diff changeset
57 writer.Close();
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
58 }
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
59 }
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
60
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
61 // Write to file with transform
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
62 public void ExportArmyWithTransform(Army army, string savePath, string xslPath)
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
63 {
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
64 XmlDocument xmlDoc = BuildXml(army);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
65 XslCompiledTransform xslTransform = new XslCompiledTransform();
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
66
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
67 xslTransform.Load(xslPath);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
68 XmlWriter writer = XmlWriter.Create(savePath, xslTransform.OutputSettings);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
69 xslTransform.Transform(xmlDoc, writer);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
70 writer.Flush();
408
2c52f0235774 Closed exported file after completion of export/transformation.
Dan.Kulinski@dank-laptop.Global.Local
parents: 404
diff changeset
71 writer.Close();
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
72 }
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
73
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
74 // Build the XML document to save or transform
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
75 private XmlDocument BuildXml(Army army)
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
76 {
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
77 XmlDocument armyList = new XmlDocument();
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
78
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
79 // Everything will be a child of the army element
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
80 XmlElement root = armyList.CreateElement("army");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
81
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
82 // Basic army information
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
83 XmlElement armyRace = armyList.CreateElement("race");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
84 armyRace.InnerText = army.Race.Name;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
85 root.AppendChild(armyRace);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
86
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
87 XmlElement armyName = armyList.CreateElement("name");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
88 armyName.InnerText = army.Name;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
89 root.AppendChild(armyName);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
90
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
91 XmlElement armyAvailablePoints = armyList.CreateElement("pointsAvailable");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
92 armyAvailablePoints.InnerText = army.MaxPoints.ToString();
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
93 root.AppendChild(armyAvailablePoints);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
94
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
95 XmlElement armyUsedPoints = armyList.CreateElement("pointsUsed");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
96 armyUsedPoints.InnerText = army.Points.ToString();
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
97 root.AppendChild(armyUsedPoints);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
98
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
99 // Get Categories and interate through each
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
100 foreach(ArmyCategory cat in army.Categories)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
101 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
102 if (cat.GetUnits().Length == 0)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
103 continue;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
104 XmlElement armyCategory = armyList.CreateElement("category");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
105 armyCategory.SetAttribute("type", cat.Name);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
106
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
107
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
108 // Get units and iterate through each
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
109 foreach(Unit uni in cat.GetUnits())
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
110 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
111 XmlElement armyUnit = armyList.CreateElement("unit");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
112 armyUnit.SetAttribute("name", uni.UnitType.Name);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
113
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
114 foreach (Stat[] stat in uni.UnitStatsArraysWithName)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
115 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
116 XmlElement armyStatLine = armyList.CreateElement("statLine");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
117 foreach (Stat singleStat in stat)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
118 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
119 XmlElement armyStat = armyList.CreateElement("stat");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
120 armyStat.SetAttribute("name", singleStat.ParentSlotName);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
121 armyStat.SetAttribute("value", singleStat.SlotValueString);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
122 armyStatLine.AppendChild(armyStat);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
123 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
124 armyUnit.AppendChild(armyStatLine);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
125 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
126 armyUnit.SetAttribute("points", uni.Points.ToString());
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
127 armyUnit.SetAttribute("models", uni.Size.ToString());
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
128
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
129 foreach (UnitEquipmentItem equip in uni.GetEquipment())
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
130 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
131 XmlElement armyEquipmentItem = armyList.CreateElement("equipmentItem");
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
132 armyEquipmentItem.SetAttribute("name", equip.Name);
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
133
402
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
134 int armyEquipAmount = 0;
419
71fceea2725b Code tidy-up - remove warnings
IBBoard <dev@ibboard.co.uk>
parents: 408
diff changeset
135 armyEquipAmount = (int)UnitEquipmentUtil.GetEquipmentAmount(uni, equip);
402
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
136
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
137 if (UnitEquipmentUtil.GetEquipmentAmountIsRatio(uni, equip))
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
138 {
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
139 float fraction = (float)(armyEquipAmount / 100.0);
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
140 armyEquipAmount = (int)(fraction * uni.Size);
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
141 }
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
142
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
143 armyEquipmentItem.SetAttribute("count", armyEquipAmount.ToString());
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
144
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
145 armyUnit.AppendChild(armyEquipmentItem);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
146 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
147
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
148 foreach (Ability abil in uni.Abilities)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
149 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
150 XmlElement armyAbilityItem = armyList.CreateElement("abilityItem");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
151
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
152 armyAbilityItem.SetAttribute("name", abil.Name);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
153 armyAbilityItem.SetAttribute("description", abil.Description);
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
154
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
155 armyUnit.AppendChild(armyAbilityItem);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
156 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
157
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
158 armyCategory.AppendChild(armyUnit);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
159 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
160 root.AppendChild(armyCategory);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
161 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
162
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
163
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
164
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
165
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
166 // Append all Categories to the XML doc
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
167
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
168 // Append tree to document
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
169 armyList.AppendChild(root);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
170
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
171 return armyList;
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
172 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
173 private string GetEquipmentAmountRatioTranslation(double amount, int number)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
174 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
175 return Translation.GetTranslation("armyHtmlExportEquipAmountPercentage", "{0}% ({1})", amount, number);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
176 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
177
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
178 private string GetEquipmentAmountNumberTranslation(int amount)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
179 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
180 return Translation.GetTranslation("armyHtmlExportEquipAmountNumber", "{0}", amount);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
181 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
182
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
183 private string GetEquipmentAmountAllTranslation(Unit unit)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
184 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
185 return Translation.GetTranslation("armyHtmlExportEquipAmountAll", "all ({1})", 100, unit.Size);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
186 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
187 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
188 }