forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContentBuilderHelper.cs
More file actions
391 lines (331 loc) · 12 KB
/
Copy pathContentBuilderHelper.cs
File metadata and controls
391 lines (331 loc) · 12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
// MonoGame - Copyright (C) MonoGame Foundation, Inc
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
using System.Collections;
using System.Diagnostics.Contracts;
using System.Reflection;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Content.Pipeline;
using MonoGame.Framework.Content.Pipeline.Builder.Server;
using YamlDotNet.Core;
using YamlDotNet.Core.Events;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
namespace MonoGame.Framework.Content.Pipeline.Builder;
static class ContentBuilderHelper
{
sealed class ColorConverter : IYamlTypeConverter
{
public bool Accepts(Type type) => type == typeof(Color);
public object? ReadYaml(IParser parser, Type type, ObjectDeserializer rootDeserializer)
{
var scalar = parser.Consume<Scalar>();
var color = new Color();
var split = scalar.Value.Split(",");
color.R = byte.Parse(split[0]);
color.G = byte.Parse(split[1]);
color.B = byte.Parse(split[2]);
color.A = byte.Parse(split[3]);
return color;
}
public void WriteYaml(IEmitter emitter, object? value, Type type, ObjectSerializer serializer)
{
var color = (Color)(value ?? new Color());
emitter.Emit(new Scalar($"{color.R},{color.G},{color.B},{color.A}"));
}
}
record ImporterInfo
{
public required ContentImporterAttribute? Attribute { get; init; }
public required Type Type { get; init; }
}
readonly record struct FileEndingImporterPair : IComparable<FileEndingImporterPair>
{
public required string FileNameEnding { get; init; }
public required ImporterInfo ImporterInfo { get; init; }
[Pure]
public int CompareTo(FileEndingImporterPair other)
{
// Sort by length of file ending, longest first.
return other.FileNameEnding.Length.CompareTo(FileNameEnding.Length);
}
}
record ProcessorInfo
{
public required ContentProcessorAttribute? Attribute { get; init; }
public required Type Type { get; init; }
}
record ServerPropertyInfo
{
public required ContentServerParameterAttribute Attribute { get; init; }
public required PropertyInfo PropertyInfo { get; init; }
}
private static readonly HashSet<AssemblyName> _loadedAssemblies = [];
private static readonly List<FileEndingImporterPair> _importers = [];
private static readonly List<ProcessorInfo> _processors = [];
private static readonly Dictionary<Type, List<ServerPropertyInfo>> _serverOptions = [];
public static ISerializer Serializer { get; set; } = null!;
public static IDeserializer Deserializer { get; set; } = null!;
public static void LoadAssemblies()
{
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
foreach (var a in assemblies)
_loadedAssemblies.Add(a.GetName());
foreach (var a in assemblies)
LoadAssemblyRefs(a);
var serializer = new SerializerBuilder()
.WithNamingConvention(CamelCaseNamingConvention.Instance)
.WithTypeConverter(new ColorConverter())
.EnablePrivateConstructors()
.DisableAliases();
var deserializer = new DeserializerBuilder()
.WithNamingConvention(CamelCaseNamingConvention.Instance)
.WithTypeConverter(new ColorConverter())
.EnablePrivateConstructors()
.IgnoreFields()
.IgnoreUnmatchedProperties();
assemblies = AppDomain.CurrentDomain.GetAssemblies();
foreach (var a in assemblies)
{
foreach (var t in a.GetTypes())
{
if (t.IsAbstract || t.IsInterface)
continue;
if (t.GetInterface(nameof(IContentImporter)) != null)
{
serializer.WithTagMapping("!" + t.ToString(), t);
deserializer.WithTagMapping("!" + t.ToString(), t);
var importerInfo = new ImporterInfo
{
Attribute = GetImporterAttribute(t),
Type = t
};
// The importer gets added once per file extension it supports,
// and the list is sorted by file extension length later to ensure
// that longer extensions are matched first.
foreach (string ext in importerInfo.Attribute.FileExtensions)
{
_importers.Add(new FileEndingImporterPair
{
FileNameEnding = ext,
ImporterInfo = importerInfo
});
}
}
else if (t.GetInterface(nameof(IContentProcessor)) != null)
{
serializer.WithTagMapping("!" + t.ToString(), t);
deserializer.WithTagMapping("!" + t.ToString(), t);
_processors.Add(new ProcessorInfo
{
Attribute = GetProcessorAttribute(t),
Type = t
});
}
else if (t.IsSubclassOf(typeof(ContentServer)))
{
var props = new List<ServerPropertyInfo>();
foreach (var propInfo in t.GetProperties())
{
if (!propInfo.CanRead || !propInfo.CanWrite)
{
continue;
}
var attributes = propInfo.GetCustomAttributes(typeof(ContentServerParameterAttribute), false);
if (attributes.Length == 0)
{
continue;
}
props.Add(new ServerPropertyInfo
{
Attribute = (ContentServerParameterAttribute)attributes[0],
PropertyInfo = propInfo
});
}
_serverOptions[t] = props;
}
}
}
_importers.Sort();
Serializer = serializer.Build();
Deserializer = deserializer.Build();
}
public static bool ArePropsEqual(object? obj1, object? obj2)
{
if (obj1 == obj2) // same refs
{
return true;
}
if (obj1 == null || obj2 == null || obj1.GetType() != obj2.GetType()) // null + type check
{
return false;
}
if (obj1.GetType().IsPrimitive || obj1 is string) // if primitive or string, Equals is enough
{
return obj1.Equals(obj2);
}
if (obj1 is IList list1 && obj2 is IList list2) // if list, go through each entry to check if they match
{
if (list1.Count != list2.Count)
{
return false;
}
for (int i = 0; i < list1.Count; i++)
{
if (!ArePropsEqual(list1[i], list2[i]))
{
return false;
}
}
}
else // deal with complex objects by checking each property
{
foreach (var prop in obj1.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance))
{
if (prop.CanRead && !ArePropsEqual(prop.GetValue(obj1), prop.GetValue(obj2)))
{
return false;
}
}
}
return true;
}
public static ContentImporterAttribute GetImporterAttribute(Type t)
{
var attributes = t.GetCustomAttributes(typeof(ContentImporterAttribute), false);
for (int i = 0; i < attributes.Length; i++)
{
if (attributes[i] is ContentImporterAttribute attribute)
{
return attribute;
}
}
return new ContentImporterAttribute(".*")
{
DefaultProcessor = "",
DisplayName = t.Name
};
}
public static ContentProcessorAttribute GetProcessorAttribute(Type t)
{
var attributes = t.GetCustomAttributes(typeof(ContentProcessorAttribute), false);
for (int i = 0; i < attributes.Length; i++)
{
if (attributes[i] is ContentProcessorAttribute attribute)
{
return attribute;
}
}
return new ContentProcessorAttribute()
{
DisplayName = t.Name
};
}
public static bool GetImporter(string relativePath, IContentImporter? inImporter, out IContentImporter outImporter)
{
if (inImporter != null)
{
outImporter = inImporter;
return true;
}
foreach (var info in _importers)
{
if (relativePath.EndsWith(info.FileNameEnding, StringComparison.InvariantCultureIgnoreCase))
{
outImporter = (IContentImporter)Activator.CreateInstance(info.ImporterInfo.Type)!;
return true;
}
}
outImporter = null!;
return false;
}
public static bool GetProcessor(IContentImporter inImporter, IContentProcessor? inProcessor, out IContentProcessor outProcessor)
{
if (inProcessor != null)
{
outProcessor = inProcessor;
return true;
}
var attribute = GetImporterAttribute(inImporter.GetType());
foreach (var processor in _processors)
{
if (processor.Type.Name == attribute.DefaultProcessor)
{
outProcessor = (IContentProcessor)Activator.CreateInstance(processor.Type)!;
return true;
}
}
outProcessor = null!;
return false;
}
public static IEnumerable<Type> GetServerTypes()
{
foreach (var pair in _serverOptions)
{
yield return pair.Key;
}
}
public static IEnumerable<(ContentServerParameterAttribute attribute, PropertyInfo propertyInfo)> GetServerProperties(Type serverType)
{
if (_serverOptions.TryGetValue(serverType, out var ret))
{
foreach (var serverPropertyInfo in ret)
{
yield return (serverPropertyInfo.Attribute, serverPropertyInfo.PropertyInfo);
}
}
}
public static string GetDestinationPath(this string filePath, bool build, Func<string, string>? outputFunc = null)
{
if (string.IsNullOrEmpty(filePath))
{
return filePath;
}
if (build)
{
int extensionEnd = filePath.Length - 1;
for (int i = extensionEnd; i >= 0; i--)
{
if (filePath[i] == '.')
{
extensionEnd = i;
break;
}
}
filePath = filePath[..extensionEnd];
}
filePath = filePath.Sanitize();
if (outputFunc != null)
{
filePath = outputFunc(filePath);
}
if (build)
{
filePath += ".xnb";
}
return filePath;
}
public static string Sanitize(this string filePath)
{
if (string.IsNullOrEmpty(filePath))
{
return filePath;
}
return filePath.Replace('\\', '/');
}
private static void LoadAssemblyRefs(Assembly assembly)
{
_loadedAssemblies.Add(assembly.GetName());
foreach (var refAssembly in assembly.GetReferencedAssemblies())
{
if (_loadedAssemblies.Contains(refAssembly) ||
refAssembly.FullName.StartsWith("System."))
continue;
try
{
LoadAssemblyRefs(Assembly.Load(refAssembly));
}
catch { }
}
}
}