SND\eagleeyestudios_cp 0406947b56 Content Pipeline:
- Added AvailableImporters property to ImporterManager
- Choosing importers via dropdown list in a propertyGrid is now possible.
2015-03-15 01:11:30 +01:00

100 lines
3.4 KiB
C#

#region Using Statements
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using ANX.Framework.NonXNA.Reflection;
#endregion
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.Content.Pipeline.Tasks
{
public class ImporterManager
{
private Dictionary<String, Type> importerTypes = new Dictionary<string,Type>();
private Dictionary<String, String> defaultProcessor = new Dictionary<string, string>();
public ImporterManager()
{
foreach (Assembly assembly in AppDomain.CurrentDomain.GetAssemblies())
{
foreach (Type type in TypeHelper.SafelyExtractTypesFrom(assembly))
{
ContentImporterAttribute[] value = (ContentImporterAttribute[])type.GetCustomAttributes(typeof(ContentImporterAttribute), true);
if (value.Length > 0)
{
importerTypes[type.Name] = type;
foreach (ContentImporterAttribute cia in value)
{
if (!String.IsNullOrEmpty(cia.DefaultProcessor))
{
defaultProcessor.Add(type.Name, cia.DefaultProcessor);
}
}
}
}
}
}
public IContentImporter GetInstance(string importerName)
{
Type type;
if (!this.importerTypes.TryGetValue(importerName, out type))
{
throw new Exception(String.Format("can't find importer {0}", importerName));
}
return (IContentImporter)Activator.CreateInstance(type);
}
public String GetDefaultProcessor(string importerName)
{
if (defaultProcessor.ContainsKey(importerName))
{
return defaultProcessor[importerName];
}
return String.Empty;
}
public static String GuessImporterByFileExtension(string filename)
{
String extension = System.IO.Path.GetExtension(filename);
foreach (Assembly assembly in AppDomain.CurrentDomain.GetAssemblies())
{
foreach (Type type in assembly.GetTypes())
{
ContentImporterAttribute[] value = (ContentImporterAttribute[])type.GetCustomAttributes(typeof(ContentImporterAttribute), true);
foreach (ContentImporterAttribute cia in value)
{
foreach (string fe in cia.FileExtensions)
{
if (string.Equals(fe, extension, StringComparison.InvariantCultureIgnoreCase))
{
return type.Name;
}
}
}
}
}
return String.Empty;
}
public IEnumerable<KeyValuePair<string, Type>> AvailableImporters
{
get
{
return importerTypes;
}
}
}
}