Mercurial > repos > IBDev-IBBoard.WarFoundry.API
annotate api/WarFoundryLoader.cs @ 27:e7de5c96f5c2
Re #44 - Fix API tests
* Make AbstractNative factory silently dispose of IOExceptions - test data triggers one on the SharpZipLib DLL
* Remove unused MakeZipFile method
* Rename GetGameSystemLoadingFactoryForFile to remove reference to Race
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 14 Mar 2009 17:10:26 +0000 |
parents | f9846f896df3 |
children | 92cf25b0493b |
rev | line source |
---|---|
15 | 1 // This file (WarFoundryLoader.cs) is a part of the IBBoard.WarFoundry.API project and is copyright 2009 IBBoard. |
0 | 2 // |
16 | 3 // The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license. |
0 | 4 |
5 using System; | |
6 using System.Collections.Generic; | |
7 using System.IO; | |
8 using IBBoard.Collections; | |
9 using IBBoard.IO; | |
10 using IBBoard.Logging; | |
11 using IBBoard.WarFoundry.API.Factories; | |
12 using IBBoard.WarFoundry.API.Objects; | |
13 using ICSharpCode.SharpZipLib.Zip; | |
14 | |
15 namespace IBBoard.WarFoundry.API | |
16 { | |
17 public class WarFoundryLoader | |
18 { | |
19 private static WarFoundryLoader loader; | |
20 | |
21 /// <summary> | |
22 /// Gets the default <see cref="WarFoundryLoader"/> used to load WarFoundry data files. | |
23 /// </summary> | |
24 /// <returns> | |
25 /// The default <see cref="WarFoundryLoader"/> | |
26 /// </returns> | |
27 public static WarFoundryLoader GetDefault() | |
28 { | |
29 if (loader == null) | |
30 { | |
31 loader = new WarFoundryLoader(); | |
32 } | |
33 | |
34 return loader; | |
35 } | |
36 | |
37 private ICollection<DirectoryInfo> directories; | |
38 private ICollection<INativeWarFoundryFactory> factories; | |
39 private ICollection<INonNativeWarFoundryFactory> nonNativeFactories; | |
40 private Dictionary<string, GameSystem> systemsTable; | |
41 private Dictionary<string, Dictionary<string, Dictionary<string, Race>>> racesTable; //Keys are: System, Race, SubRace | |
42 private Dictionary<IWarFoundryFactory, SimpleSet<IWarFoundryObject>> loadedObjects; | |
43 | |
44 protected WarFoundryLoader() | |
45 { | |
46 directories = new List<DirectoryInfo>(); | |
47 factories = new List<INativeWarFoundryFactory>(); | |
48 nonNativeFactories = new List<INonNativeWarFoundryFactory>(); | |
49 loadedObjects = new Dictionary<IWarFoundryFactory,SimpleSet<IWarFoundryObject>>(); | |
50 } | |
51 | |
52 /// <summary> | |
53 /// Adds a directory to the collection of directories that will be searched for WarFoundry data files. | |
54 /// </summary> | |
55 /// <param name="directory"> | |
56 /// The <see cref="DirectoryInfo"/> to add to the list for searching for data files | |
57 /// </param> | |
58 public void AddLoadDirectory(DirectoryInfo directory) | |
59 { | |
60 if (!directories.Contains(directory)) | |
61 { | |
62 directories.Add(directory); | |
63 } | |
64 } | |
65 | |
66 /// <summary> | |
67 /// Removes a directory from the collection of directories that will be searched for WarFoundry data files. | |
68 /// </summary> | |
69 /// <param name="directory"> | |
70 /// A <see cref="DirectoryInfo"/> | |
71 /// </param> | |
72 public void RemoveLoadDirectory(DirectoryInfo directory) | |
73 { | |
74 if (directories.Contains(directory)) | |
75 { | |
76 directories.Remove(directory); | |
77 } | |
78 } | |
79 | |
80 /// <summary> | |
81 /// Registers a <see cref="INativeWarFoundryFactory"/> as a factory that can parse native data files. | |
82 /// </summary> | |
83 /// <param name="factory"> | |
84 /// The <see cref="INativeWarFoundryFactory"/> to register to parse native data files. | |
85 /// </param> | |
86 public void RegisterFactory(INativeWarFoundryFactory factory) | |
87 { | |
88 if (!factories.Contains(factory)) | |
89 { | |
90 factories.Add(factory); | |
91 } | |
92 } | |
93 | |
94 /// <summary> | |
95 /// Unregisters a <see cref="INativeWarFoundryFactory"/> so that it will no longer be used to try to parse native data files. | |
96 /// </summary> | |
97 /// <param name="factory"> | |
98 /// The <see cref="INativeWarFoundryFactory"/> to remove from the collection of factories that are used to try to parse native data files. | |
99 /// </param> | |
100 public void UnregisterFactory(INativeWarFoundryFactory factory) | |
101 { | |
102 if (factories.Contains(factory)) | |
103 { | |
104 factories.Remove(factory); | |
105 } | |
106 } | |
107 | |
108 /// <summary> | |
109 /// Registers a <see cref="INonNativeWarFoundryFactory"/> so that it will be used to try to parse non-native data files from other applications. | |
110 /// </summary> | |
111 /// <param name="factory"> | |
112 /// The <see cref="INonNativeWarFoundryFactory"/> to register to parse non-native data files. | |
113 /// </param> | |
114 public void RegisterNonNativeFactory(INonNativeWarFoundryFactory factory) | |
115 { | |
116 if (!nonNativeFactories.Contains(factory)) | |
117 { | |
118 nonNativeFactories.Add(factory); | |
119 } | |
120 } | |
121 | |
122 /// <summary> | |
123 /// Unregisters a <see cref="INonNativeWarFoundryFactory"/> so that it will no longer be used to try to parse non-native data files from other applications. | |
124 /// </summary> | |
125 /// <param name="factory"> | |
126 /// The <see cref="INonNativeWarFoundryFactory"/> to remove from the collection of factories that are used to try to parse non-native data files. | |
127 /// </param> | |
128 public void UnregisterNonNativeFactory(INonNativeWarFoundryFactory factory) | |
129 { | |
130 if (nonNativeFactories.Contains(factory)) | |
131 { | |
132 nonNativeFactories.Remove(factory); | |
133 } | |
134 } | |
135 | |
136 /// <summary> | |
137 /// Loads all of the data files in the registered directories. | |
138 /// </summary> | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
139 /// <returns> |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
140 /// A <see cref="Dictionary"/> of files that failed to load mapped against the message that their failure returned |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
141 /// </returns> |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
142 public List<FileLoadFailure> LoadFiles() |
0 | 143 { |
144 LogNotifier.Debug(GetType(), "Load files"); | |
145 PrepareForFileLoad(); | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
146 Dictionary<FileInfo, IWarFoundryFactory> loadableRaces = new Dictionary<FileInfo, IWarFoundryFactory>(); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
147 Dictionary<FileInfo, IWarFoundryFactory> loadableGameSystems = new Dictionary<FileInfo, IWarFoundryFactory>(); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
148 List<FileLoadFailure> failedLoads = FillLoadableFiles(loadableRaces, loadableGameSystems); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
149 failedLoads.AddRange(LoadGameSystems(loadableGameSystems)); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
150 failedLoads.AddRange(LoadRaces(loadableRaces)); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
151 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
152 LogNotifier.Debug(GetType(), failedLoads.Count + " failed file loads"); |
0 | 153 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
154 return failedLoads; |
0 | 155 } |
156 | |
157 protected void PrepareForFileLoad() | |
158 { | |
159 //Just set up blank dictionaries for now - may try different and more complex handling in future | |
160 systemsTable = new Dictionary<string,GameSystem>(); | |
161 racesTable = new Dictionary<string,Dictionary<string,Dictionary<string,Race>>>(); | |
162 } | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
163 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
164 private List<FileLoadFailure> FillLoadableFiles(Dictionary<FileInfo, IWarFoundryFactory> loadableRaces, Dictionary<FileInfo, IWarFoundryFactory> loadableGameSystems) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
165 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
166 List<FileLoadFailure> fails = new List<FileLoadFailure>(); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
167 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
168 foreach (DirectoryInfo directory in directories) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
169 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
170 if (directory.Exists) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
171 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
172 List<FileLoadFailure> directoryFails = FillLoadableFilesForDirectory(loadableRaces, loadableGameSystems, directory); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
173 fails.AddRange(directoryFails); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
174 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
175 else |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
176 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
177 LogNotifier.WarnFormat(GetType(), "Load for {0} failed because directory didn't exist", directory.FullName); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
178 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
179 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
180 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
181 return fails; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
182 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
183 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
184 private List<FileLoadFailure> FillLoadableFilesForDirectory(Dictionary<FileInfo, IWarFoundryFactory> loadableRaces, Dictionary<FileInfo, IWarFoundryFactory> loadableGameSystems, DirectoryInfo directory) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
185 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
186 List<FileLoadFailure> fails = new List<FileLoadFailure>(); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
187 LogNotifier.Debug(GetType(), "Load from "+directory.FullName); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
188 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
189 foreach (FileInfo file in directory.GetFiles()) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
190 { |
27 | 191 IWarFoundryFactory factory = GetGameSystemLoadingFactoryForFile(file); |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
192 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
193 if (factory != null) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
194 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
195 loadableGameSystems.Add(file, factory); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
196 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
197 else |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
198 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
199 factory = GetRaceLoadingFactoryForFile(file); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
200 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
201 if (factory!=null) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
202 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
203 loadableRaces.Add(file, factory); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
204 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
205 else |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
206 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
207 fails.Add(new FileLoadFailure(file, "FileNotHandled", "File not handled as a Race or Game System definition: {0}")); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
208 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
209 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
210 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
211 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
212 return fails; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
213 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
214 |
27 | 215 private IWarFoundryFactory GetGameSystemLoadingFactoryForFile(FileInfo file) |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
216 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
217 IWarFoundryFactory loadingFactory = null; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
218 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
219 foreach (INonNativeWarFoundryFactory factory in nonNativeFactories) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
220 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
221 if (factory.CanHandleFileAsGameSystem(file)) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
222 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
223 loadingFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
224 break; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
225 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
226 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
227 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
228 if (loadingFactory == null) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
229 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
230 foreach (INativeWarFoundryFactory factory in factories) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
231 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
232 if (factory.CanHandleFileAsGameSystem(file)) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
233 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
234 loadingFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
235 break; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
236 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
237 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
238 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
239 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
240 return loadingFactory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
241 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
242 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
243 private IWarFoundryFactory GetRaceLoadingFactoryForFile(FileInfo file) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
244 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
245 IWarFoundryFactory loadingFactory = null; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
246 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
247 foreach (INonNativeWarFoundryFactory factory in nonNativeFactories) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
248 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
249 if (factory.CanHandleFileAsRace(file)) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
250 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
251 loadingFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
252 break; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
253 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
254 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
255 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
256 if (loadingFactory == null) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
257 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
258 foreach (INativeWarFoundryFactory factory in factories) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
259 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
260 if (factory.CanHandleFileAsRace(file)) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
261 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
262 loadingFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
263 break; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
264 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
265 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
266 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
267 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
268 return loadingFactory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
269 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
270 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
271 private List<FileLoadFailure> LoadGameSystems(Dictionary<FileInfo, IWarFoundryFactory> gameSystemFiles) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
272 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
273 List<FileLoadFailure> fails = new List<FileLoadFailure>(); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
274 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
275 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
276 foreach (FileInfo file in gameSystemFiles.Keys) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
277 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
278 FileLoadFailure failure = null; |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
279 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
280 try |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
281 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
282 bool loaded = LoadObject(file, gameSystemFiles[file]); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
283 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
284 if (!loaded) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
285 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
286 failure = new FileLoadFailure(file, "FileLoadFailed", "Failed to load {0} as Race using {1}"); |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
287 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
288 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
289 catch (Exception ex) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
290 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
291 failure = new FileLoadFailure(file, ex.Message); |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
292 } |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
293 |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
294 if (failure!=null) |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
295 { |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
296 fails.Add(failure); |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
297 LogNotifier.Warn(GetType(), failure.Message); |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
298 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
299 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
300 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
301 return fails; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
302 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
303 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
304 private List<FileLoadFailure> LoadRaces(Dictionary<FileInfo, IWarFoundryFactory> raceFiles) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
305 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
306 List<FileLoadFailure> fails = new List<FileLoadFailure>(); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
307 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
308 foreach (FileInfo file in raceFiles.Keys) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
309 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
310 FileLoadFailure failure = null; |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
311 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
312 try |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
313 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
314 bool loaded = LoadObject(file, raceFiles[file]); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
315 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
316 if (!loaded) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
317 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
318 failure = new FileLoadFailure(file, "FileLoadFailed", "Failed to load {0} as Race using {1}"); |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
319 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
320 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
321 catch (Exception ex) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
322 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
323 failure = new FileLoadFailure(file, ex.Message); |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
324 } |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
325 |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
326 if (failure!=null) |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
327 { |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
328 fails.Add(failure); |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
329 LogNotifier.Warn(GetType(), failure.Message); |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
330 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
331 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
332 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
333 return fails; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
334 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
335 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
336 private bool LoadObject(FileInfo file, IWarFoundryFactory factory) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
337 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
338 bool loaded = false; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
339 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
340 LogNotifier.DebugFormat(GetType(), "Loading {0} using {1}", file.FullName, factory.GetType().Name); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
341 ICollection<IWarFoundryObject> objects = factory.CreateObjectsFromFile(file); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
342 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
343 if (objects.Count > 0) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
344 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
345 AddLoadedObjects(objects, factory); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
346 loaded = true; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
347 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
348 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
349 return loaded; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
350 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
351 |
0 | 352 |
353 /// <summary> | |
354 /// Loads a single file through the registered WarFoundryFactories, if a factory exists that supports the file format. | |
355 /// </summary> | |
356 /// <param name="file"> | |
357 /// A <see cref="FileInfo"/> for the file to attempt to load | |
358 /// </param> | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
359 /// <returns> |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
360 /// An ICollection of IWarFoundryObjects loaded from <code>file</code> |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
361 /// </returns> |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
362 public ICollection<IWarFoundryObject> LoadFile(FileInfo file) |
0 | 363 { |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
364 ICollection<IWarFoundryObject> objs = null; |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
365 IWarFoundryFactory loadFactory = null; |
0 | 366 |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
367 try |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
368 { |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
369 objs = LoadFileWithNonNativeFactories(file, out loadFactory); |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
370 |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
371 if (objs == null) |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
372 { |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
373 objs = LoadFileWithNativeFactories(file, out loadFactory); |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
374 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
375 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
376 catch (InvalidFileException ex) |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
377 { |
20
b7c93a5821cd
* Remove unnecessary project dependency
IBBoard <dev@ibboard.co.uk>
parents:
19
diff
changeset
|
378 LogNotifier.Error(GetType(), file.FullName+" failed to load", ex); |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
379 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
380 |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
381 if (objs!=null) |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
382 { |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
383 AddLoadedObjects(objs, loadFactory); |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
384 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
385 else |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
386 { |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
387 objs = new List<IWarFoundryObject>(); |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
388 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
389 |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
390 return objs; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
391 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
392 |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
393 private ICollection<IWarFoundryObject> LoadFileWithNonNativeFactories(FileInfo file, out IWarFoundryFactory loadFactory) |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
394 { |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
395 ICollection<IWarFoundryObject> objs = null; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
396 loadFactory = null; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
397 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
398 if (nonNativeFactories.Count > 0) |
0 | 399 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
400 LogNotifier.Debug(GetType(), "Attempting to load "+file.FullName+" as a non-native file"); |
0 | 401 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
402 foreach (INonNativeWarFoundryFactory factory in nonNativeFactories) |
0 | 403 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
404 bool canLoad = factory.CanHandleFileFormat(file); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
405 LogNotifier.Debug(GetType(), "Load using "+factory.GetType().FullName+"? " + (canLoad ? "yes" : "no")); |
0 | 406 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
407 if (canLoad) |
0 | 408 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
409 objs = factory.CreateObjectsFromFile(file); |
0 | 410 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
411 if (objs!=null) |
0 | 412 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
413 loadFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
414 break; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
415 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
416 } |
0 | 417 } |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
418 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
419 |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
420 return objs; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
421 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
422 |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
423 private ICollection<IWarFoundryObject> LoadFileWithNativeFactories(FileInfo file, out IWarFoundryFactory loadFactory) |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
424 { |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
425 ICollection<IWarFoundryObject> objs = null; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
426 loadFactory = null; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
427 |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
428 if (factories.Count > 0) |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
429 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
430 LogNotifier.Debug(GetType(), "Attempting to load "+file.FullName+" as native file"); |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
431 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
432 foreach (INativeWarFoundryFactory factory in factories) |
0 | 433 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
434 if (factory.CanHandleFileFormat(file)) |
0 | 435 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
436 objs = factory.CreateObjectsFromFile(file); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
437 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
438 if (objs!=null) |
0 | 439 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
440 loadFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
441 break; |
0 | 442 } |
443 } | |
444 } | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
445 } |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
446 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
447 return objs; |
0 | 448 } |
449 | |
450 private void AddLoadedObjects(ICollection<IWarFoundryObject> loadedObjs, IWarFoundryFactory factory) | |
451 { | |
452 SimpleSet<IWarFoundryObject> objs; | |
453 loadedObjects.TryGetValue(factory, out objs); | |
454 | |
455 if (objs == null) | |
456 { | |
457 objs = new SimpleSet<IWarFoundryObject>(); | |
458 loadedObjects.Add(factory, objs); | |
459 } | |
460 | |
461 objs.AddRange(loadedObjs); | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
462 StoreObjects(loadedObjs); |
0 | 463 } |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
464 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
465 private void StoreObjects(ICollection<IWarFoundryObject> loadedObjects) |
0 | 466 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
467 foreach (IWarFoundryObject loadedObject in loadedObjects) |
0 | 468 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
469 if (loadedObject is GameSystem) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
470 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
471 StoreGameSystem((GameSystem)loadedObject); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
472 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
473 else if (loadedObject is Race) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
474 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
475 StoreRace((Race)loadedObject); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
476 } |
0 | 477 } |
478 } | |
479 | |
480 protected void StoreGameSystem(GameSystem system) | |
481 { | |
482 string sysid = system.ID.ToLower(); | |
483 | |
484 if (systemsTable.ContainsKey(sysid)) | |
485 { | |
486 LogNotifier.WarnFormat(GetType(), "System {0} ({1}) has already been loaded. Duplicate file ({3}) discarded", system.Name, system.ID, system.SourceFile.FullName); | |
487 } | |
488 else | |
489 { | |
490 systemsTable.Add(sysid, (GameSystem)system); | |
491 } | |
492 } | |
493 | |
494 protected void StoreRace(Race race) | |
495 { | |
496 Dictionary<string, Dictionary<string, Race>> systemRaces; | |
497 | |
498 if (race.GameSystem == null) | |
499 { | |
500 throw new InvalidOperationException("Race cannot have null game system. Game system should be loaded before race."); | |
501 } | |
502 | |
503 string systemID = race.GameSystem.ID.ToLower(); | |
504 racesTable.TryGetValue(systemID, out systemRaces); | |
505 | |
506 if (systemRaces==null) | |
507 { | |
508 systemRaces = new Dictionary<string,Dictionary<string,Race>>(); | |
509 racesTable.Add(systemID, systemRaces); | |
510 } | |
511 | |
512 Dictionary<string, Race> subRaces; | |
513 systemRaces.TryGetValue(race.ID.ToLower(), out subRaces); | |
514 | |
515 if (subRaces==null) | |
516 { | |
517 subRaces = new Dictionary<string,Race>(); | |
518 systemRaces.Add(race.ID.ToLower(), subRaces); | |
519 } | |
520 | |
521 if (subRaces.ContainsKey(race.SubID.ToLower())) | |
522 { | |
523 LogNotifier.WarnFormat(GetType(), "Race {0} ({1} - {2}) for system {3} ({4}) has already been loaded. Duplicate file ({5}) discarded", race.Name, race.ID, race.SubID, race.GameSystem.ID, race.GameSystem.Name, race.SourceFile.Name); | |
524 race = null; | |
525 } | |
526 else | |
527 { | |
528 subRaces.Add(race.SubID.ToLower(), race); | |
529 } | |
530 } | |
531 | |
532 /// <summary> | |
533 /// Gets all <see cref="GameSystem"/>s that are currently available, determined by those that can be loaded with the current <see cref="IWarFoundryFactory"/>s. | |
534 /// </summary> | |
535 /// <returns> | |
536 /// An array of <see cref="GameSystem"/>s that are currently available. | |
537 /// </returns> | |
538 public GameSystem[] GetGameSystems() | |
539 { | |
540 if (systemsTable==null) | |
541 { | |
542 LoadFiles(); | |
543 } | |
544 | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
545 return DictionaryUtils.ToArray<string, GameSystem>(systemsTable); |
0 | 546 } |
547 | |
548 /// <summary> | |
549 /// Gets a single <see cref="GameSystem"/> with a given ID. | |
550 /// </summary> | |
551 /// <param name="systemID"> | |
552 /// The ID of the <see cref="GameSystem"/> to get, as a <see cref="System.String"/>. | |
553 /// </param> | |
554 /// <returns> | |
555 /// The <see cref="GameSystem"/> with the given ID, or <code>null</code> if one doesn't exist. | |
556 /// </returns> | |
557 public GameSystem GetGameSystem(string systemID) | |
558 { | |
559 if (systemsTable==null) | |
560 { | |
561 LoadFiles(); | |
562 } | |
563 | |
564 GameSystem system; | |
565 systemsTable.TryGetValue(systemID.ToLower(), out system); | |
566 return system; | |
567 } | |
568 | |
569 /// <summary> | |
570 /// Gets an array of the races for the specified <see cref="GameSystem"/>. | |
571 /// </summary> | |
572 /// <param name="system"> | |
573 /// The <see cref="GameSystem"/> to get the available races for. | |
574 /// </param> | |
575 /// <returns> | |
576 /// An array of <see cref="Race"/>s for the <see cref="GameSystem"/> | |
577 /// </returns> | |
578 public Race[] GetRaces(GameSystem system) | |
579 { | |
580 return GetRaces(system.ID); | |
581 } | |
582 | |
583 /// <summary> | |
584 /// Gets an array of the races for a game system by ID. | |
585 /// </summary> | |
586 /// <param name="systemID"> | |
587 /// The <see cref="System.String"/> ID of the game system to get races for | |
588 /// </param> | |
589 /// <returns> | |
590 /// An array of <see cref="Race"/>s for the specified game system | |
591 /// </returns> | |
592 public Race[] GetRaces(string systemID) | |
593 { | |
594 if (racesTable==null) | |
595 { | |
596 LoadFiles(); | |
597 } | |
598 | |
8
613bc5eaac59
Re #9 - Make WarFoundry loading granular
IBBoard <dev@ibboard.co.uk>
parents:
5
diff
changeset
|
599 systemID = systemID.ToLower(); |
0 | 600 Dictionary<string, Dictionary<string, Race>> system; |
601 racesTable.TryGetValue(systemID, out system); | |
602 | |
603 if (system==null) | |
604 { | |
605 return new Race[0]; | |
606 } | |
607 | |
608 int count = 0; | |
609 | |
610 foreach (Dictionary<string, Race> racesDict in system.Values) | |
611 { | |
612 count+= racesDict.Count; | |
613 } | |
614 | |
615 Race[] races = new Race[count]; | |
616 int i = 0; | |
617 | |
618 foreach (string raceID in system.Keys) | |
619 { | |
620 foreach (string raceSubId in system[raceID].Keys) | |
621 { | |
622 races[i++] = GetRace(systemID, raceID, raceSubId); | |
623 } | |
624 } | |
625 | |
626 return races; | |
627 } | |
628 | |
629 /// <summary> | |
630 /// Gets a single race for a given <see cref="GameSystem"/> by ID of the race. | |
631 /// </summary> | |
632 /// <param name="system"> | |
633 /// The <see cref="GameSystem"/> that the race is part of. | |
634 /// </param> | |
635 /// <param name="raceID"> | |
636 /// A <see cref="System.String"/> ID for the race to load. | |
637 /// </param> | |
638 /// <returns> | |
639 /// A <see cref="Race"/> with the specified ID from the <see cref="GameSystem"/>, or <code>null</code> if one doesn't exist. | |
640 /// </returns> | |
641 public Race GetRace(GameSystem system, string raceID) | |
642 { | |
643 return GetRace(system.ID, raceID); | |
644 } | |
645 | |
646 /// <summary> | |
647 /// Gets a single race for a given game system by ID of the game system and race. | |
648 /// </summary> | |
649 /// <param name="systemID"> | |
650 /// The <see cref="System.String"/> ID of the game system that the race is part of. | |
651 /// </param> | |
652 /// <param name="raceID"> | |
653 /// The <see cref="System.String"/> ID for the race to load. | |
654 /// </param> | |
655 /// <returns> | |
656 /// A <see cref="Race"/> with the specified ID from the game system with the specified ID, or <code>null</code> if there is no race or game system with those IDs. | |
657 /// </returns> | |
658 public Race GetRace(string systemID, string raceID) | |
659 { | |
660 return GetRace(systemID, raceID, ""); | |
661 } | |
662 | |
663 /// <summary> | |
664 /// Gets a single race for a given <see cref="GameSystem"/> by the race's ID and sub-race ID. | |
665 /// </summary> | |
666 /// <param name="system"> | |
667 /// The <see cref="GameSystem"/> that the race is part of. | |
668 /// </param> | |
669 /// <param name="raceID"> | |
670 /// The <see cref="System.String"/> ID for the race to load. | |
671 /// </param> | |
672 /// <param name="raceSubID"> | |
673 /// A <see cref="System.String"/> | |
674 /// </param> | |
675 /// <returns> | |
676 /// A <see cref="Race"/> | |
677 /// </returns> | |
678 public Race GetRace(GameSystem system, string raceID, string raceSubID) | |
679 { | |
680 return GetRace(system.ID, raceID, raceSubID); | |
681 } | |
682 | |
683 /// <summary> | |
684 /// Gets a single race for a given game system by the game system's ID and the race's ID and sub-race ID. | |
685 /// </summary> | |
686 /// <param name="systemID"> | |
687 /// The <see cref="System.String"/> ID of the game system that the race is part of. | |
688 /// </param> | |
689 /// <param name="raceID"> | |
690 /// The <see cref="System.String"/> ID for the race to load. | |
691 /// </param> | |
692 /// <param name="raceSubID"> | |
693 /// A <see cref="System.String"/> | |
694 /// </param> | |
695 /// <returns> | |
696 /// A <see cref="Race"/> | |
697 /// </returns> | |
698 public Race GetRace(string systemID, string raceID, string raceSubID) | |
699 { | |
700 if (racesTable==null) | |
701 { | |
702 LoadFiles(); | |
703 } | |
704 | |
705 Race race = null; | |
706 | |
707 systemID = systemID.ToLower(); | |
708 | |
709 Dictionary<string, Dictionary<string, Race>> races; | |
710 racesTable.TryGetValue(systemID, out races); | |
711 | |
712 if (races!=null) | |
713 { | |
714 Dictionary<string, Race> subraces; | |
715 races.TryGetValue(raceID, out subraces); | |
716 | |
717 if (subraces!=null) | |
718 { | |
719 subraces.TryGetValue(raceSubID, out race); | |
720 } | |
721 } | |
722 | |
723 return race; | |
724 } | |
725 | |
726 /// <summary> | |
727 /// Gets the IDs of all of the game systems currently available. | |
728 /// </summary> | |
729 /// <returns> | |
730 /// An array of <see cref="System.String"/>s representing the IDs of the game systems. | |
731 /// </returns> | |
732 public string[] GetGameSystemIDs() | |
733 { | |
734 if (systemsTable==null) | |
735 { | |
736 LoadFiles(); | |
737 } | |
738 | |
739 string[] keys = new string[systemsTable.Keys.Count]; | |
740 int i = 0; | |
741 | |
742 foreach (string key in systemsTable.Keys) | |
743 { | |
744 keys[i++] = key; | |
745 } | |
746 | |
747 return keys; | |
748 } | |
749 | |
750 /// <summary> | |
751 /// Gets the IDs of all of the races of a specified game system. | |
752 /// </summary> | |
753 /// <param name="system"> | |
754 /// The <see cref="GameSystem"/> to get the available races for. | |
755 /// </param> | |
756 /// <returns> | |
757 /// An array of <see cref="System.String"/>s representing the IDs of the races of the specified game system. | |
758 /// </returns> | |
759 public string[] GetSystemRaceIDs(GameSystem system) | |
760 { | |
761 return GetSystemRaceIDs(system.ID); | |
762 } | |
763 | |
764 /// <summary> | |
765 /// Gets the IDs of all of the races of a specified game system. | |
766 /// </summary> | |
767 /// <param name="systemID"> | |
768 /// The <see cref="System.String"/> ID of the game system to get the available races for. | |
769 /// </param> | |
770 /// <returns> | |
771 /// An array of <see cref="System.String"/>s representing the IDs of the races of the specified game system. | |
772 /// </returns> | |
773 public string[] GetSystemRaceIDs(string systemID) | |
774 { | |
775 if (racesTable == null) | |
776 { | |
777 LoadFiles(); | |
778 } | |
779 | |
780 Dictionary<string, Dictionary<string, Race>> races = racesTable[systemID.ToLower()]; | |
781 | |
782 if (races==null) | |
783 { | |
784 return new string[0]; | |
785 } | |
786 else | |
787 { | |
788 string[] keys = new string[races.Keys.Count]; | |
789 int i = 0; | |
790 | |
791 foreach (string key in races.Keys) | |
792 { | |
793 keys[i++] = key; | |
794 } | |
795 | |
796 return keys; | |
797 } | |
798 } | |
799 } | |
800 } |