Mercurial > repos > IBDev-IBBoard.WarFoundry.API
annotate api/WarFoundryLoader.cs @ 39:05c6745cc660
Re #47: Remove magic numbers
* Replace "-1" magic number with WarFoundryCore.INFINITY
* Use INFINITY instead of -1 in code
* Handle and parse INF as a special value in XML Factory
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Thu, 19 Mar 2009 20:12:29 +0000 |
parents | 92cf25b0493b |
children | 422ddd5fedd1 |
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 { |
30
92cf25b0493b
Re #32 - Migrate to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
27
diff
changeset
|
207 FileLoadFailure failure = new FileLoadFailure(file, "File not handled as a Race or Game System definition: {0}", "FileNotHandled"); |
92cf25b0493b
Re #32 - Migrate to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
27
diff
changeset
|
208 fails.Add(failure); |
92cf25b0493b
Re #32 - Migrate to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
27
diff
changeset
|
209 LogNotifier.Info(GetType(), failure.Message); |
14
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 } |
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 return fails; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
215 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
216 |
27 | 217 private IWarFoundryFactory GetGameSystemLoadingFactoryForFile(FileInfo file) |
14
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 IWarFoundryFactory loadingFactory = null; |
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 foreach (INonNativeWarFoundryFactory factory in nonNativeFactories) |
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 if (factory.CanHandleFileAsGameSystem(file)) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
224 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
225 loadingFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
226 break; |
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 } |
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 if (loadingFactory == null) |
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 foreach (INativeWarFoundryFactory factory in factories) |
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 if (factory.CanHandleFileAsGameSystem(file)) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
235 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
236 loadingFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
237 break; |
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 } |
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 return loadingFactory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
243 } |
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 private IWarFoundryFactory GetRaceLoadingFactoryForFile(FileInfo file) |
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 IWarFoundryFactory loadingFactory = null; |
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 foreach (INonNativeWarFoundryFactory factory in nonNativeFactories) |
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 if (factory.CanHandleFileAsRace(file)) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
252 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
253 loadingFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
254 break; |
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 } |
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 if (loadingFactory == null) |
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 foreach (INativeWarFoundryFactory factory in factories) |
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 if (factory.CanHandleFileAsRace(file)) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
263 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
264 loadingFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
265 break; |
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 } |
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 return loadingFactory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
271 } |
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 private List<FileLoadFailure> LoadGameSystems(Dictionary<FileInfo, IWarFoundryFactory> gameSystemFiles) |
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 List<FileLoadFailure> fails = new List<FileLoadFailure>(); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
276 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
277 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
278 foreach (FileInfo file in gameSystemFiles.Keys) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
279 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
280 FileLoadFailure failure = null; |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
281 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
282 try |
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 bool loaded = LoadObject(file, gameSystemFiles[file]); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
285 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
286 if (!loaded) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
287 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
288 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
|
289 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
290 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
291 catch (Exception ex) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
292 { |
30
92cf25b0493b
Re #32 - Migrate to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
27
diff
changeset
|
293 failure = new FileLoadFailure(file, null, ex.Message, null, ex); |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
294 } |
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 if (failure!=null) |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
297 { |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
298 fails.Add(failure); |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
299 LogNotifier.Warn(GetType(), failure.Message); |
14
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 } |
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 return fails; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
304 } |
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 private List<FileLoadFailure> LoadRaces(Dictionary<FileInfo, IWarFoundryFactory> raceFiles) |
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 List<FileLoadFailure> fails = new List<FileLoadFailure>(); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
309 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
310 foreach (FileInfo file in raceFiles.Keys) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
311 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
312 FileLoadFailure failure = null; |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
313 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
314 try |
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 bool loaded = LoadObject(file, raceFiles[file]); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
317 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
318 if (!loaded) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
319 { |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
320 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
|
321 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
322 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
323 catch (Exception ex) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
324 { |
30
92cf25b0493b
Re #32 - Migrate to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
27
diff
changeset
|
325 failure = new FileLoadFailure(file, null, ex.Message, null, ex); |
23
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
326 } |
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 if (failure!=null) |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
329 { |
f9846f896df3
Re #32 - Migrate WarFoundry files to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
20
diff
changeset
|
330 fails.Add(failure); |
30
92cf25b0493b
Re #32 - Migrate to using Schemas
IBBoard <dev@ibboard.co.uk>
parents:
27
diff
changeset
|
331 LogNotifier.Warn(GetType(), failure.Message, failure.Exception); |
14
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 } |
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 return fails; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
336 } |
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 private bool LoadObject(FileInfo file, IWarFoundryFactory factory) |
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 bool loaded = false; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
341 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
342 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
|
343 ICollection<IWarFoundryObject> objects = factory.CreateObjectsFromFile(file); |
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 if (objects.Count > 0) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
346 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
347 AddLoadedObjects(objects, factory); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
348 loaded = true; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
349 } |
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 return loaded; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
352 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
353 |
0 | 354 |
355 /// <summary> | |
356 /// Loads a single file through the registered WarFoundryFactories, if a factory exists that supports the file format. | |
357 /// </summary> | |
358 /// <param name="file"> | |
359 /// A <see cref="FileInfo"/> for the file to attempt to load | |
360 /// </param> | |
14
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 /// 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
|
363 /// </returns> |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
364 public ICollection<IWarFoundryObject> LoadFile(FileInfo file) |
0 | 365 { |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
366 ICollection<IWarFoundryObject> objs = null; |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
367 IWarFoundryFactory loadFactory = null; |
0 | 368 |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
369 try |
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 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
|
372 |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
373 if (objs == null) |
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 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
|
376 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
377 } |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
378 catch (InvalidFileException ex) |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
379 { |
20
b7c93a5821cd
* Remove unnecessary project dependency
IBBoard <dev@ibboard.co.uk>
parents:
19
diff
changeset
|
380 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
|
381 } |
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 if (objs!=null) |
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 AddLoadedObjects(objs, loadFactory); |
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 else |
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 objs = new List<IWarFoundryObject>(); |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
390 } |
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 return objs; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
393 } |
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 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
|
396 { |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
397 ICollection<IWarFoundryObject> objs = null; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
398 loadFactory = null; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
399 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
400 if (nonNativeFactories.Count > 0) |
0 | 401 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
402 LogNotifier.Debug(GetType(), "Attempting to load "+file.FullName+" as a non-native file"); |
0 | 403 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
404 foreach (INonNativeWarFoundryFactory factory in nonNativeFactories) |
0 | 405 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
406 bool canLoad = factory.CanHandleFileFormat(file); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
407 LogNotifier.Debug(GetType(), "Load using "+factory.GetType().FullName+"? " + (canLoad ? "yes" : "no")); |
0 | 408 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
409 if (canLoad) |
0 | 410 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
411 objs = factory.CreateObjectsFromFile(file); |
0 | 412 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
413 if (objs!=null) |
0 | 414 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
415 loadFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
416 break; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
417 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
418 } |
0 | 419 } |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
420 } |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
421 |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
422 return objs; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
423 } |
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 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
|
426 { |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
427 ICollection<IWarFoundryObject> objs = null; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
428 loadFactory = null; |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
429 |
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
430 if (factories.Count > 0) |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
431 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
432 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
|
433 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
434 foreach (INativeWarFoundryFactory factory in factories) |
0 | 435 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
436 if (factory.CanHandleFileFormat(file)) |
0 | 437 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
438 objs = factory.CreateObjectsFromFile(file); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
439 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
440 if (objs!=null) |
0 | 441 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
442 loadFactory = factory; |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
443 break; |
0 | 444 } |
445 } | |
446 } | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
447 } |
19
57451981545c
Re #10 and re #11 - Refactor code and document code
IBBoard <dev@ibboard.co.uk>
parents:
16
diff
changeset
|
448 |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
449 return objs; |
0 | 450 } |
451 | |
452 private void AddLoadedObjects(ICollection<IWarFoundryObject> loadedObjs, IWarFoundryFactory factory) | |
453 { | |
454 SimpleSet<IWarFoundryObject> objs; | |
455 loadedObjects.TryGetValue(factory, out objs); | |
456 | |
457 if (objs == null) | |
458 { | |
459 objs = new SimpleSet<IWarFoundryObject>(); | |
460 loadedObjects.Add(factory, objs); | |
461 } | |
462 | |
463 objs.AddRange(loadedObjs); | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
464 StoreObjects(loadedObjs); |
0 | 465 } |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
466 |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
467 private void StoreObjects(ICollection<IWarFoundryObject> loadedObjects) |
0 | 468 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
469 foreach (IWarFoundryObject loadedObject in loadedObjects) |
0 | 470 { |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
471 if (loadedObject is GameSystem) |
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 StoreGameSystem((GameSystem)loadedObject); |
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 else if (loadedObject is Race) |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
476 { |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
477 StoreRace((Race)loadedObject); |
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
478 } |
0 | 479 } |
480 } | |
481 | |
482 protected void StoreGameSystem(GameSystem system) | |
483 { | |
484 string sysid = system.ID.ToLower(); | |
485 | |
486 if (systemsTable.ContainsKey(sysid)) | |
487 { | |
488 LogNotifier.WarnFormat(GetType(), "System {0} ({1}) has already been loaded. Duplicate file ({3}) discarded", system.Name, system.ID, system.SourceFile.FullName); | |
489 } | |
490 else | |
491 { | |
492 systemsTable.Add(sysid, (GameSystem)system); | |
493 } | |
494 } | |
495 | |
496 protected void StoreRace(Race race) | |
497 { | |
498 Dictionary<string, Dictionary<string, Race>> systemRaces; | |
499 | |
500 if (race.GameSystem == null) | |
501 { | |
502 throw new InvalidOperationException("Race cannot have null game system. Game system should be loaded before race."); | |
503 } | |
504 | |
505 string systemID = race.GameSystem.ID.ToLower(); | |
506 racesTable.TryGetValue(systemID, out systemRaces); | |
507 | |
508 if (systemRaces==null) | |
509 { | |
510 systemRaces = new Dictionary<string,Dictionary<string,Race>>(); | |
511 racesTable.Add(systemID, systemRaces); | |
512 } | |
513 | |
514 Dictionary<string, Race> subRaces; | |
515 systemRaces.TryGetValue(race.ID.ToLower(), out subRaces); | |
516 | |
517 if (subRaces==null) | |
518 { | |
519 subRaces = new Dictionary<string,Race>(); | |
520 systemRaces.Add(race.ID.ToLower(), subRaces); | |
521 } | |
522 | |
523 if (subRaces.ContainsKey(race.SubID.ToLower())) | |
524 { | |
525 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); | |
526 race = null; | |
527 } | |
528 else | |
529 { | |
530 subRaces.Add(race.SubID.ToLower(), race); | |
531 } | |
532 } | |
533 | |
534 /// <summary> | |
535 /// Gets all <see cref="GameSystem"/>s that are currently available, determined by those that can be loaded with the current <see cref="IWarFoundryFactory"/>s. | |
536 /// </summary> | |
537 /// <returns> | |
538 /// An array of <see cref="GameSystem"/>s that are currently available. | |
539 /// </returns> | |
540 public GameSystem[] GetGameSystems() | |
541 { | |
542 if (systemsTable==null) | |
543 { | |
544 LoadFiles(); | |
545 } | |
546 | |
14
0770e5cbba7c
Closes #21 - File loading in order
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
547 return DictionaryUtils.ToArray<string, GameSystem>(systemsTable); |
0 | 548 } |
549 | |
550 /// <summary> | |
551 /// Gets a single <see cref="GameSystem"/> with a given ID. | |
552 /// </summary> | |
553 /// <param name="systemID"> | |
554 /// The ID of the <see cref="GameSystem"/> to get, as a <see cref="System.String"/>. | |
555 /// </param> | |
556 /// <returns> | |
557 /// The <see cref="GameSystem"/> with the given ID, or <code>null</code> if one doesn't exist. | |
558 /// </returns> | |
559 public GameSystem GetGameSystem(string systemID) | |
560 { | |
561 if (systemsTable==null) | |
562 { | |
563 LoadFiles(); | |
564 } | |
565 | |
566 GameSystem system; | |
567 systemsTable.TryGetValue(systemID.ToLower(), out system); | |
568 return system; | |
569 } | |
570 | |
571 /// <summary> | |
572 /// Gets an array of the races for the specified <see cref="GameSystem"/>. | |
573 /// </summary> | |
574 /// <param name="system"> | |
575 /// The <see cref="GameSystem"/> to get the available races for. | |
576 /// </param> | |
577 /// <returns> | |
578 /// An array of <see cref="Race"/>s for the <see cref="GameSystem"/> | |
579 /// </returns> | |
580 public Race[] GetRaces(GameSystem system) | |
581 { | |
582 return GetRaces(system.ID); | |
583 } | |
584 | |
585 /// <summary> | |
586 /// Gets an array of the races for a game system by ID. | |
587 /// </summary> | |
588 /// <param name="systemID"> | |
589 /// The <see cref="System.String"/> ID of the game system to get races for | |
590 /// </param> | |
591 /// <returns> | |
592 /// An array of <see cref="Race"/>s for the specified game system | |
593 /// </returns> | |
594 public Race[] GetRaces(string systemID) | |
595 { | |
596 if (racesTable==null) | |
597 { | |
598 LoadFiles(); | |
599 } | |
600 | |
8
613bc5eaac59
Re #9 - Make WarFoundry loading granular
IBBoard <dev@ibboard.co.uk>
parents:
5
diff
changeset
|
601 systemID = systemID.ToLower(); |
0 | 602 Dictionary<string, Dictionary<string, Race>> system; |
603 racesTable.TryGetValue(systemID, out system); | |
604 | |
605 if (system==null) | |
606 { | |
607 return new Race[0]; | |
608 } | |
609 | |
610 int count = 0; | |
611 | |
612 foreach (Dictionary<string, Race> racesDict in system.Values) | |
613 { | |
614 count+= racesDict.Count; | |
615 } | |
616 | |
617 Race[] races = new Race[count]; | |
618 int i = 0; | |
619 | |
620 foreach (string raceID in system.Keys) | |
621 { | |
622 foreach (string raceSubId in system[raceID].Keys) | |
623 { | |
624 races[i++] = GetRace(systemID, raceID, raceSubId); | |
625 } | |
626 } | |
627 | |
628 return races; | |
629 } | |
630 | |
631 /// <summary> | |
632 /// Gets a single race for a given <see cref="GameSystem"/> by ID of the race. | |
633 /// </summary> | |
634 /// <param name="system"> | |
635 /// The <see cref="GameSystem"/> that the race is part of. | |
636 /// </param> | |
637 /// <param name="raceID"> | |
638 /// A <see cref="System.String"/> ID for the race to load. | |
639 /// </param> | |
640 /// <returns> | |
641 /// A <see cref="Race"/> with the specified ID from the <see cref="GameSystem"/>, or <code>null</code> if one doesn't exist. | |
642 /// </returns> | |
643 public Race GetRace(GameSystem system, string raceID) | |
644 { | |
645 return GetRace(system.ID, raceID); | |
646 } | |
647 | |
648 /// <summary> | |
649 /// Gets a single race for a given game system by ID of the game system and race. | |
650 /// </summary> | |
651 /// <param name="systemID"> | |
652 /// The <see cref="System.String"/> ID of the game system that the race is part of. | |
653 /// </param> | |
654 /// <param name="raceID"> | |
655 /// The <see cref="System.String"/> ID for the race to load. | |
656 /// </param> | |
657 /// <returns> | |
658 /// 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. | |
659 /// </returns> | |
660 public Race GetRace(string systemID, string raceID) | |
661 { | |
662 return GetRace(systemID, raceID, ""); | |
663 } | |
664 | |
665 /// <summary> | |
666 /// Gets a single race for a given <see cref="GameSystem"/> by the race's ID and sub-race ID. | |
667 /// </summary> | |
668 /// <param name="system"> | |
669 /// The <see cref="GameSystem"/> that the race is part of. | |
670 /// </param> | |
671 /// <param name="raceID"> | |
672 /// The <see cref="System.String"/> ID for the race to load. | |
673 /// </param> | |
674 /// <param name="raceSubID"> | |
675 /// A <see cref="System.String"/> | |
676 /// </param> | |
677 /// <returns> | |
678 /// A <see cref="Race"/> | |
679 /// </returns> | |
680 public Race GetRace(GameSystem system, string raceID, string raceSubID) | |
681 { | |
682 return GetRace(system.ID, raceID, raceSubID); | |
683 } | |
684 | |
685 /// <summary> | |
686 /// Gets a single race for a given game system by the game system's ID and the race's ID and sub-race ID. | |
687 /// </summary> | |
688 /// <param name="systemID"> | |
689 /// The <see cref="System.String"/> ID of the game system that the race is part of. | |
690 /// </param> | |
691 /// <param name="raceID"> | |
692 /// The <see cref="System.String"/> ID for the race to load. | |
693 /// </param> | |
694 /// <param name="raceSubID"> | |
695 /// A <see cref="System.String"/> | |
696 /// </param> | |
697 /// <returns> | |
698 /// A <see cref="Race"/> | |
699 /// </returns> | |
700 public Race GetRace(string systemID, string raceID, string raceSubID) | |
701 { | |
702 if (racesTable==null) | |
703 { | |
704 LoadFiles(); | |
705 } | |
706 | |
707 Race race = null; | |
708 | |
709 systemID = systemID.ToLower(); | |
710 | |
711 Dictionary<string, Dictionary<string, Race>> races; | |
712 racesTable.TryGetValue(systemID, out races); | |
713 | |
714 if (races!=null) | |
715 { | |
716 Dictionary<string, Race> subraces; | |
717 races.TryGetValue(raceID, out subraces); | |
718 | |
719 if (subraces!=null) | |
720 { | |
721 subraces.TryGetValue(raceSubID, out race); | |
722 } | |
723 } | |
724 | |
725 return race; | |
726 } | |
727 | |
728 /// <summary> | |
729 /// Gets the IDs of all of the game systems currently available. | |
730 /// </summary> | |
731 /// <returns> | |
732 /// An array of <see cref="System.String"/>s representing the IDs of the game systems. | |
733 /// </returns> | |
734 public string[] GetGameSystemIDs() | |
735 { | |
736 if (systemsTable==null) | |
737 { | |
738 LoadFiles(); | |
739 } | |
740 | |
741 string[] keys = new string[systemsTable.Keys.Count]; | |
742 int i = 0; | |
743 | |
744 foreach (string key in systemsTable.Keys) | |
745 { | |
746 keys[i++] = key; | |
747 } | |
748 | |
749 return keys; | |
750 } | |
751 | |
752 /// <summary> | |
753 /// Gets the IDs of all of the races of a specified game system. | |
754 /// </summary> | |
755 /// <param name="system"> | |
756 /// The <see cref="GameSystem"/> to get the available races for. | |
757 /// </param> | |
758 /// <returns> | |
759 /// An array of <see cref="System.String"/>s representing the IDs of the races of the specified game system. | |
760 /// </returns> | |
761 public string[] GetSystemRaceIDs(GameSystem system) | |
762 { | |
763 return GetSystemRaceIDs(system.ID); | |
764 } | |
765 | |
766 /// <summary> | |
767 /// Gets the IDs of all of the races of a specified game system. | |
768 /// </summary> | |
769 /// <param name="systemID"> | |
770 /// The <see cref="System.String"/> ID of the game system to get the available races for. | |
771 /// </param> | |
772 /// <returns> | |
773 /// An array of <see cref="System.String"/>s representing the IDs of the races of the specified game system. | |
774 /// </returns> | |
775 public string[] GetSystemRaceIDs(string systemID) | |
776 { | |
777 if (racesTable == null) | |
778 { | |
779 LoadFiles(); | |
780 } | |
781 | |
782 Dictionary<string, Dictionary<string, Race>> races = racesTable[systemID.ToLower()]; | |
783 | |
784 if (races==null) | |
785 { | |
786 return new string[0]; | |
787 } | |
788 else | |
789 { | |
790 string[] keys = new string[races.Keys.Count]; | |
791 int i = 0; | |
792 | |
793 foreach (string key in races.Keys) | |
794 { | |
795 keys[i++] = key; | |
796 } | |
797 | |
798 return keys; | |
799 } | |
800 } | |
801 } | |
802 } |