annotate API/WarFoundryHacks.cs @ 483:4d6c92744254

Re #419: Remove assumptions of a file-based install * Embed sample files as resources * Load the sample files as a "hack"
author IBBoard <dev@ibboard.co.uk>
date Wed, 11 Jul 2012 20:39:34 +0100
parents 81f32062c9fa
children e35fc85eda2b
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());
435
6345a683fd75 * Add missing hacks file
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
35 }
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