annotate API/WarFoundryHacks.cs @ 497:cd367acd7c48 default tip

Re #419: Remove assumptions of a file-based install * Swap XSLTs to resources * Update XSL Exporter to use Streams, not files
author IBBoard <dev@ibboard.co.uk>
date Wed, 28 Nov 2012 20:24:36 +0000
parents e35fc85eda2b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
435
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
1 // This file (WarFoundryHacks.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2011 IBBoard
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
2 //
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
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.
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
4 using System;
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
5 using System.IO;
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
6 using IBBoard;
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
7 using IBBoard.WarFoundry.API.Factories.Requirement;
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
8 using IBBoard.WarFoundry.API.Factories.Xml;
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
9 using IBBoard.WarFoundry.API.Savers;
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
10 using IBBoard.WarFoundry.API.Savers.Xml;
483
4d6c92744254 Re #419: Remove assumptions of a file-based install
IBBoard <dev@ibboard.co.uk>
parents: 481
diff changeset
11 using IBBoard.WarFoundry.API.Loading;
4d6c92744254 Re #419: Remove assumptions of a file-based install
IBBoard <dev@ibboard.co.uk>
parents: 481
diff changeset
12 using System.Reflection;
435
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
13
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
14 namespace IBBoard.WarFoundry.API
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
15 {
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
16 /// <summary>
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
17 /// A collection of hacks and work-arounds to make things work correctly.
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
18 /// </summary>
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
19 public class WarFoundryHacks
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
20 {
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
21 public static void Initialise()
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
22 {
483
4d6c92744254 Re #419: Remove assumptions of a file-based install
IBBoard <dev@ibboard.co.uk>
parents: 481
diff changeset
23 //Load embedded files from resource
4d6c92744254 Re #419: Remove assumptions of a file-based install
IBBoard <dev@ibboard.co.uk>
parents: 481
diff changeset
24 Assembly assm = Assembly.GetExecutingAssembly();
4d6c92744254 Re #419: Remove assumptions of a file-based install
IBBoard <dev@ibboard.co.uk>
parents: 481
diff changeset
25 LoadableObjectSourceResourceSet resSet = new LoadableObjectSourceResourceSet(assm, "IBBoard.WarFoundry.data.Empire.race", "IBBoard.WarFoundry.data.SampleSystem.system");
4d6c92744254 Re #419: Remove assumptions of a file-based install
IBBoard <dev@ibboard.co.uk>
parents: 481
diff changeset
26 WarFoundryLoader.GetDefault().AddLoadSource(resSet);
435
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
27 //Make sure we have at least one loader - should be controlled by plugins
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
28 WarFoundryLoader.GetDefault().RegisterFactory(WarFoundryXmlFactory.GetFactory());
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
29 //Make sure we have a way to save files - should be controlled by plugins
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
30 WarFoundrySaver.SetFileSaver(new WarFoundryXmlFileSaver());
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
31 //Make sure we have the requirement factories - should be controlled by plugins
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
32 WarFoundryLoader.RegisterRequirementFactory(new UnitRequiresAtLeastNUnitsRequirementFactory());
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
33 WarFoundryLoader.RegisterRequirementFactory(new UnitRequiresNoMoreThanNOfUnitTypeRequirementFactory());
449
ba6c762cdfc3 * Add missing line to Hacks class to add third factory
IBBoard <dev@ibboard.co.uk>
parents: 435
diff changeset
34 WarFoundryLoader.RegisterRequirementFactory(new UnitRequiresNUnitsForMUnitsRequirementFactory());
490
e35fc85eda2b Re #410: Create "N units per M models in parent unit" requirement
IBBoard <dev@ibboard.co.uk>
parents: 483
diff changeset
35 WarFoundryLoader.RegisterRequirementFactory(new UnitRequiresNParentModelsForMUnitsRequirementFactory());
435
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
36 }
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
37 }
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
38 }
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
39