annotate API/Exporters/WarFoundryXMLWithXSLExporter.cs @ 404:5d7584a73d7f xsl-output

XSL with transform operations
author Dan.Kulinski@dank-laptop.Global.Local
date Thu, 18 Aug 2011 11:14:58 -0600
parents 3a71f8af5bde
children 2c52f0235774
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();
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
57 }
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 // Write to file with transform
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
61 public void ExportArmyWithTransform(Army army, string savePath, string xslPath)
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
62 {
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
63 XmlDocument xmlDoc = BuildXml(army);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
64 XslCompiledTransform xslTransform = new XslCompiledTransform();
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
65
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
66 xslTransform.Load(xslPath);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
67 XmlWriter writer = XmlWriter.Create(savePath, xslTransform.OutputSettings);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
68 xslTransform.Transform(xmlDoc, writer);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
69 writer.Flush();
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
70 }
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
71
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
72 // Build the XML document to save or transform
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
73 private XmlDocument BuildXml(Army army)
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
74 {
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
75 XmlDocument armyList = new XmlDocument();
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
76
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
77 // Everything will be a child of the army element
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
78 XmlElement root = armyList.CreateElement("army");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
79
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
80 // Basic army information
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
81 XmlElement armyRace = armyList.CreateElement("race");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
82 armyRace.InnerText = army.Race.Name;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
83 root.AppendChild(armyRace);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
84
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
85 XmlElement armyName = armyList.CreateElement("name");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
86 armyName.InnerText = army.Name;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
87 root.AppendChild(armyName);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
88
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
89 XmlElement armyAvailablePoints = armyList.CreateElement("pointsAvailable");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
90 armyAvailablePoints.InnerText = army.MaxPoints.ToString();
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
91 root.AppendChild(armyAvailablePoints);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
92
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
93 XmlElement armyUsedPoints = armyList.CreateElement("pointsUsed");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
94 armyUsedPoints.InnerText = army.Points.ToString();
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
95 root.AppendChild(armyUsedPoints);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
96
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
97 // Get Categories and interate through each
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
98 foreach(ArmyCategory cat in army.Categories)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
99 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
100 if (cat.GetUnits().Length == 0)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
101 continue;
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
102 XmlElement armyCategory = armyList.CreateElement("category");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
103 armyCategory.SetAttribute("type", cat.Name);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
104
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
105
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
106 // Get units and iterate through each
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
107 foreach(Unit uni in cat.GetUnits())
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
108 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
109 XmlElement armyUnit = armyList.CreateElement("unit");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
110 armyUnit.SetAttribute("name", uni.UnitType.Name);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
111
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
112 foreach (Stat[] stat in uni.UnitStatsArraysWithName)
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 XmlElement armyStatLine = armyList.CreateElement("statLine");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
115 foreach (Stat singleStat in stat)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
116 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
117 XmlElement armyStat = armyList.CreateElement("stat");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
118 armyStat.SetAttribute("name", singleStat.ParentSlotName);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
119 armyStat.SetAttribute("value", singleStat.SlotValueString);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
120 armyStatLine.AppendChild(armyStat);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
121 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
122 armyUnit.AppendChild(armyStatLine);
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.SetAttribute("points", uni.Points.ToString());
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
125 armyUnit.SetAttribute("models", uni.Size.ToString());
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
126
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
127 foreach (UnitEquipmentItem equip in uni.GetEquipment())
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 XmlElement armyEquipmentItem = armyList.CreateElement("equipmentItem");
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
130 armyEquipmentItem.SetAttribute("name", equip.Name);
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
131
402
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
132 int armyEquipAmount = 0;
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 if (UnitEquipmentUtil.GetEquipmentAmount(uni, equip) == null)
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
135 {
402
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
136 armyEquipAmount = 0;
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
137 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
138 else
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
139 {
402
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
140 armyEquipAmount = (int)UnitEquipmentUtil.GetEquipmentAmount(uni, equip);
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
141 }
402
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 if (UnitEquipmentUtil.GetEquipmentAmountIsRatio(uni, equip))
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
144 {
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
145 float fraction = (float)(armyEquipAmount / 100.0);
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
146 armyEquipAmount = (int)(fraction * uni.Size);
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
147 }
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
148
3a71f8af5bde Correct count of unit items
Dan.Kulinski@dank-laptop.Global.Local
parents: 399
diff changeset
149 armyEquipmentItem.SetAttribute("count", armyEquipAmount.ToString());
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
150
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
151 armyUnit.AppendChild(armyEquipmentItem);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
152 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
153
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
154 foreach (Ability abil in uni.Abilities)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
155 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
156 XmlElement armyAbilityItem = armyList.CreateElement("abilityItem");
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
157
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
158 armyAbilityItem.SetAttribute("name", abil.Name);
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
159 armyAbilityItem.SetAttribute("description", abil.Description);
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
160
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
161 armyUnit.AppendChild(armyAbilityItem);
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 armyCategory.AppendChild(armyUnit);
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 root.AppendChild(armyCategory);
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
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
169
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
170
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
171
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
172 // Append all Categories to the XML doc
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
173
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
174 // Append tree to document
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
175 armyList.AppendChild(root);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
176
404
5d7584a73d7f XSL with transform operations
Dan.Kulinski@dank-laptop.Global.Local
parents: 402
diff changeset
177 return armyList;
399
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
178 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
179 private string GetEquipmentAmountRatioTranslation(double amount, int number)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
180 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
181 return Translation.GetTranslation("armyHtmlExportEquipAmountPercentage", "{0}% ({1})", amount, number);
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
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
184 private string GetEquipmentAmountNumberTranslation(int amount)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
185 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
186 return Translation.GetTranslation("armyHtmlExportEquipAmountNumber", "{0}", amount);
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
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
189 private string GetEquipmentAmountAllTranslation(Unit unit)
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
190 {
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
191 return Translation.GetTranslation("armyHtmlExportEquipAmountAll", "all ({1})", 100, unit.Size);
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
192 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
193 }
9a49d34599fb Basic XSL output
Dan.Kulinski@dank-laptop.Global.Local
parents:
diff changeset
194 }