Considerations are now instantiated under a manager and re-used between entities where they pass in their blackboard to get a score back. Also makes the API a bit nicer to use. Also some random cleanup. Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
29 lines
926 B
C#
29 lines
926 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Robust.Shared.Interfaces.Reflection;
|
|
using Robust.Shared.IoC;
|
|
|
|
namespace Content.Server.AI.Utility.Considerations
|
|
{
|
|
public class ConsiderationsManager
|
|
{
|
|
private Dictionary<Type, Consideration> _considerations = new Dictionary<Type, Consideration>();
|
|
|
|
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)];
|
|
}
|
|
}
|
|
} |