Files
tbd-station-14/Content.Server/AI/Utility/Considerations/ConsiderationsManager.cs
2022-05-13 17:59:03 +10:00

27 lines
807 B
C#

using Robust.Shared.Reflection;
namespace Content.Server.AI.Utility.Considerations
{
public sealed class ConsiderationsManager
{
private readonly Dictionary<Type, Consideration> _considerations = new();
public void Initialize()
{
var reflectionManager = IoCManager.Resolve<IReflectionManager>();
var typeFactory = IoCManager.Resolve<IDynamicTypeFactory>();
foreach (var conType in reflectionManager.GetAllChildren(typeof(Consideration)))
{
var con = (Consideration) typeFactory.CreateInstance(conType);
_considerations.Add(conType, con);
}
}
public T Get<T>() where T : Consideration
{
return (T) _considerations[typeof(T)];
}
}
}