using System; using Unity.MLAgents.Policies; namespace Unity.MLAgents.Actuators { /// /// IActuator implementation that forwards to an . /// internal class VectorActuator : IActuator { IActionReceiver m_ActionReceiver; ActionBuffers m_ActionBuffers; internal ActionBuffers ActionBuffers { get => m_ActionBuffers; private set => m_ActionBuffers = value; } /// /// Create a VectorActuator that forwards to the provided IActionReceiver. /// /// The used for OnActionReceived and WriteDiscreteActionMask. /// For discrete action spaces, the branch sizes for each action. /// For continuous action spaces, the number of actions is the 0th element. /// /// /// Thrown for invalid public VectorActuator(IActionReceiver actionReceiver, int[] vectorActionSize, SpaceType spaceType, string name = "VectorActuator") { m_ActionReceiver = actionReceiver; string suffix; switch (spaceType) { case SpaceType.Continuous: ActionSpec = ActionSpec.MakeContinuous(vectorActionSize[0]); suffix = "-Continuous"; break; case SpaceType.Discrete: ActionSpec = ActionSpec.MakeDiscrete(vectorActionSize); suffix = "-Discrete"; break; default: throw new ArgumentOutOfRangeException(nameof(spaceType), spaceType, "Unknown enum value."); } Name = name + suffix; } /// public void ResetData() { m_ActionBuffers = ActionBuffers.Empty; } /// public void OnActionReceived(ActionBuffers actionBuffers) { ActionBuffers = actionBuffers; m_ActionReceiver.OnActionReceived(ActionBuffers); } /// public void WriteDiscreteActionMask(IDiscreteActionMask actionMask) { m_ActionReceiver.WriteDiscreteActionMask(actionMask); } /// public ActionSpec ActionSpec { get; } /// public string Name { get; } } }