您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
428 行
17 KiB
428 行
17 KiB
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Unity.MLAgents.Actuators
|
|
{
|
|
/// <summary>
|
|
/// A class that manages the delegation of events, action buffers, and action mask for a list of IActuators.
|
|
/// </summary>
|
|
internal class ActuatorManager : IList<IActuator>
|
|
{
|
|
// IActuators managed by this object.
|
|
IList<IActuator> m_Actuators;
|
|
|
|
// An implementation of IDiscreteActionMask that allows for writing to it based on an offset.
|
|
ActuatorDiscreteActionMask m_DiscreteActionMask;
|
|
|
|
/// <summary>
|
|
/// Flag used to check if our IActuators are ready for execution.
|
|
/// </summary>
|
|
/// <seealso cref="ReadyActuatorsForExecution(IList{IActuator}, int, int, int)"/>
|
|
bool m_ReadyForExecution;
|
|
|
|
/// <summary>
|
|
/// The sum of all of the discrete branches for all of the <see cref="IActuator"/>s in this manager.
|
|
/// </summary>
|
|
internal int SumOfDiscreteBranchSizes { get; private set; }
|
|
|
|
/// <summary>
|
|
/// The number of the discrete branches for all of the <see cref="IActuator"/>s in this manager.
|
|
/// </summary>
|
|
internal int NumDiscreteActions { get; private set; }
|
|
|
|
/// <summary>
|
|
/// The number of continuous actions for all of the <see cref="IActuator"/>s in this manager.
|
|
/// </summary>
|
|
internal int NumContinuousActions { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Returns the total actions which is calculated by <see cref="NumContinuousActions"/> + <see cref="NumDiscreteActions"/>.
|
|
/// </summary>
|
|
public int TotalNumberOfActions => NumContinuousActions + NumDiscreteActions;
|
|
|
|
/// <summary>
|
|
/// Gets the <see cref="IDiscreteActionMask"/> managed by this object.
|
|
/// </summary>
|
|
public ActuatorDiscreteActionMask DiscreteActionMask => m_DiscreteActionMask;
|
|
|
|
/// <summary>
|
|
/// Returns the previously stored actions for the actuators in this list.
|
|
/// </summary>
|
|
// public float[] StoredContinuousActions { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Returns the previously stored actions for the actuators in this list.
|
|
/// </summary>
|
|
// public int[] StoredDiscreteActions { get; private set; }
|
|
|
|
public ActionBuffers StoredActions { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Create an ActuatorList with a preset capacity.
|
|
/// </summary>
|
|
/// <param name="capacity">The capacity of the list to create.</param>
|
|
public ActuatorManager(int capacity = 0)
|
|
{
|
|
m_Actuators = new List<IActuator>(capacity);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <see cref="ReadyActuatorsForExecution(IList{IActuator}, int, int, int)"/>
|
|
/// </summary>
|
|
void ReadyActuatorsForExecution()
|
|
{
|
|
ReadyActuatorsForExecution(m_Actuators, NumContinuousActions, SumOfDiscreteBranchSizes,
|
|
NumDiscreteActions);
|
|
}
|
|
|
|
/// <summary>
|
|
/// This method validates that all <see cref="IActuator"/>s have unique names and equivalent action space types
|
|
/// if the `DEBUG` preprocessor macro is defined, and allocates the appropriate buffers to manage the actions for
|
|
/// all of the <see cref="IActuator"/>s that may live on a particular object.
|
|
/// </summary>
|
|
/// <param name="actuators">The list of actuators to validate and allocate buffers for.</param>
|
|
/// <param name="numContinuousActions">The total number of continuous actions for all of the actuators.</param>
|
|
/// <param name="sumOfDiscreteBranches">The total sum of the discrete branches for all of the actuators in order
|
|
/// to be able to allocate an <see cref="IDiscreteActionMask"/>.</param>
|
|
/// <param name="numDiscreteBranches">The number of discrete branches for all of the actuators.</param>
|
|
internal void ReadyActuatorsForExecution(IList<IActuator> actuators, int numContinuousActions, int sumOfDiscreteBranches, int numDiscreteBranches)
|
|
{
|
|
if (m_ReadyForExecution)
|
|
{
|
|
return;
|
|
}
|
|
#if DEBUG
|
|
// Make sure the names are actually unique
|
|
// Make sure all Actuators have the same SpaceType
|
|
ValidateActuators();
|
|
#endif
|
|
|
|
// Sort the Actuators by name to ensure determinism
|
|
SortActuators();
|
|
var continuousActions = numContinuousActions == 0 ? ActionSegment<float>.Empty :
|
|
new ActionSegment<float>(new float[numContinuousActions]);
|
|
var discreteActions = numDiscreteBranches == 0 ? ActionSegment<int>.Empty : new ActionSegment<int>(new int[numDiscreteBranches]);
|
|
|
|
StoredActions = new ActionBuffers(continuousActions, discreteActions);
|
|
m_DiscreteActionMask = new ActuatorDiscreteActionMask(actuators, sumOfDiscreteBranches, numDiscreteBranches);
|
|
m_ReadyForExecution = true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates the local action buffer with the action buffer passed in. If the buffer
|
|
/// passed in is null, the local action buffer will be cleared.
|
|
/// </summary>
|
|
/// <param name="continuousActionBuffer">The action buffer which contains all of the
|
|
/// continuous actions for the IActuators in this list.</param>
|
|
/// <param name="discreteActionBuffer">The action buffer which contains all of the
|
|
/// discrete actions for the IActuators in this list.</param>
|
|
public void UpdateActions(ActionBuffers actions)
|
|
{
|
|
ReadyActuatorsForExecution();
|
|
UpdateActionArray(actions.ContinuousActions, StoredActions.ContinuousActions);
|
|
UpdateActionArray(actions.DiscreteActions, StoredActions.DiscreteActions);
|
|
}
|
|
|
|
static void UpdateActionArray<T>(ActionSegment<T> sourceActionBuffer, ActionSegment<T> destination)
|
|
where T : struct
|
|
{
|
|
if (sourceActionBuffer.Length <= 0)
|
|
{
|
|
destination.Clear();
|
|
}
|
|
else
|
|
{
|
|
Debug.Assert(sourceActionBuffer.Length == destination.Length,
|
|
$"sourceActionBuffer:{sourceActionBuffer.Length} is a different" +
|
|
$" size than destination: {destination.Length}.");
|
|
|
|
Array.Copy(sourceActionBuffer.Array,
|
|
sourceActionBuffer.Offset,
|
|
destination.Array,
|
|
destination.Offset,
|
|
destination.Length);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// This method will trigger the writing to the <see cref="IDiscreteActionMask"/> by all of the actuators
|
|
/// managed by this object.
|
|
/// </summary>
|
|
public void WriteActionMask()
|
|
{
|
|
ReadyActuatorsForExecution();
|
|
m_DiscreteActionMask.ResetMask();
|
|
var offset = 0;
|
|
for (var i = 0; i < m_Actuators.Count; i++)
|
|
{
|
|
var actuator = m_Actuators[i];
|
|
if (actuator.ActionSpec.NumDiscreteActions > 0)
|
|
{
|
|
m_DiscreteActionMask.CurrentBranchOffset = offset;
|
|
actuator.WriteDiscreteActionMask(m_DiscreteActionMask);
|
|
offset += actuator.ActionSpec.NumDiscreteActions;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Iterates through all of the IActuators in this list and calls their
|
|
/// <see cref="IActionReceiver.OnActionReceived"/> method on them with the appropriate
|
|
/// <see cref="ActionSegment{T}"/>s depending on their <see cref="IActionReceiver.ActionSpec"/>.
|
|
/// </summary>
|
|
public void ExecuteActions()
|
|
{
|
|
ReadyActuatorsForExecution();
|
|
var continuousStart = 0;
|
|
var discreteStart = 0;
|
|
for (var i = 0; i < m_Actuators.Count; i++)
|
|
{
|
|
var actuator = m_Actuators[i];
|
|
var numContinuousActions = actuator.ActionSpec.NumContinuousActions;
|
|
var numDiscreteActions = actuator.ActionSpec.NumDiscreteActions;
|
|
|
|
var continuousActions = ActionSegment<float>.Empty;
|
|
if (numContinuousActions > 0)
|
|
{
|
|
continuousActions = new ActionSegment<float>(StoredActions.ContinuousActions.Array,
|
|
continuousStart,
|
|
numContinuousActions);
|
|
}
|
|
|
|
var discreteActions = ActionSegment<int>.Empty;
|
|
if (numDiscreteActions > 0)
|
|
{
|
|
discreteActions = new ActionSegment<int>(StoredActions.DiscreteActions.Array,
|
|
discreteStart,
|
|
numDiscreteActions);
|
|
}
|
|
|
|
actuator.OnActionReceived(new ActionBuffers(continuousActions, discreteActions));
|
|
continuousStart += numContinuousActions;
|
|
discreteStart += numDiscreteActions;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resets the <see cref="ActionBuffers"/> to be all
|
|
/// zeros and calls <see cref="IActuator.ResetData"/> on each <see cref="IActuator"/> managed by this object.
|
|
/// </summary>
|
|
public void ResetData()
|
|
{
|
|
if (!m_ReadyForExecution)
|
|
{
|
|
return;
|
|
}
|
|
StoredActions.Clear();
|
|
for (var i = 0; i < m_Actuators.Count; i++)
|
|
{
|
|
m_Actuators[i].ResetData();
|
|
}
|
|
m_DiscreteActionMask.ResetMask();
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Sorts the <see cref="IActuator"/>s according to their <see cref="IActuator.GetName"/> value.
|
|
/// </summary>
|
|
void SortActuators()
|
|
{
|
|
((List<IActuator>)m_Actuators).Sort((x,
|
|
y) => x.Name
|
|
.CompareTo(y.Name));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Validates that the IActuators managed by this object have unique names and equivalent action space types.
|
|
/// Each Actuator needs to have a unique name in order for this object to ensure that the storage of action
|
|
/// buffers, and execution of Actuators remains deterministic across different sessions of running.
|
|
/// </summary>
|
|
void ValidateActuators()
|
|
{
|
|
for (var i = 0; i < m_Actuators.Count - 1; i++)
|
|
{
|
|
Debug.Assert(
|
|
!m_Actuators[i].Name.Equals(m_Actuators[i + 1].Name),
|
|
"Actuator names must be unique.");
|
|
var first = m_Actuators[i].ActionSpec;
|
|
var second = m_Actuators[i + 1].ActionSpec;
|
|
Debug.Assert(first.NumContinuousActions > 0 == second.NumContinuousActions > 0,
|
|
"Actuators on the same Agent must have the same action SpaceType.");
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Helper method to update bookkeeping items around buffer management for actuators added to this object.
|
|
/// </summary>
|
|
/// <param name="actuatorItem">The IActuator to keep bookkeeping for.</param>
|
|
void AddToBufferSizes(IActuator actuatorItem)
|
|
{
|
|
if (actuatorItem == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
NumContinuousActions += actuatorItem.ActionSpec.NumContinuousActions;
|
|
NumDiscreteActions += actuatorItem.ActionSpec.NumDiscreteActions;
|
|
SumOfDiscreteBranchSizes += actuatorItem.ActionSpec.SumOfDiscreteBranchSizes;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Helper method to update bookkeeping items around buffer management for actuators removed from this object.
|
|
/// </summary>
|
|
/// <param name="actuatorItem">The IActuator to keep bookkeeping for.</param>
|
|
void SubtractFromBufferSize(IActuator actuatorItem)
|
|
{
|
|
if (actuatorItem == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
NumContinuousActions -= actuatorItem.ActionSpec.NumContinuousActions;
|
|
NumDiscreteActions -= actuatorItem.ActionSpec.NumDiscreteActions;
|
|
SumOfDiscreteBranchSizes -= actuatorItem.ActionSpec.SumOfDiscreteBranchSizes;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets all of the bookkeeping items back to 0.
|
|
/// </summary>
|
|
void ClearBufferSizes()
|
|
{
|
|
NumContinuousActions = NumDiscreteActions = SumOfDiscreteBranchSizes = 0;
|
|
}
|
|
|
|
/*********************************************************************************
|
|
* IList implementation that delegates to m_Actuators List. *
|
|
*********************************************************************************/
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="IEnumerable{T}.GetEnumerator"/>
|
|
/// </summary>
|
|
public IEnumerator<IActuator> GetEnumerator()
|
|
{
|
|
return m_Actuators.GetEnumerator();
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="IList{T}.GetEnumerator"/>
|
|
/// </summary>
|
|
IEnumerator IEnumerable.GetEnumerator()
|
|
{
|
|
return ((IEnumerable)m_Actuators).GetEnumerator();
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="ICollection{T}.Add"/>
|
|
/// </summary>
|
|
/// <param name="item"></param>
|
|
public void Add(IActuator item)
|
|
{
|
|
Debug.Assert(m_ReadyForExecution == false,
|
|
"Cannot add to the ActuatorManager after its buffers have been initialized");
|
|
m_Actuators.Add(item);
|
|
AddToBufferSizes(item);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="ICollection{T}.Clear"/>
|
|
/// </summary>
|
|
public void Clear()
|
|
{
|
|
Debug.Assert(m_ReadyForExecution == false,
|
|
"Cannot clear the ActuatorManager after its buffers have been initialized");
|
|
m_Actuators.Clear();
|
|
ClearBufferSizes();
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="ICollection{T}.Contains"/>
|
|
/// </summary>
|
|
public bool Contains(IActuator item)
|
|
{
|
|
return m_Actuators.Contains(item);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="ICollection{T}.CopyTo"/>
|
|
/// </summary>
|
|
public void CopyTo(IActuator[] array, int arrayIndex)
|
|
{
|
|
m_Actuators.CopyTo(array, arrayIndex);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="ICollection{T}.Remove"/>
|
|
/// </summary>
|
|
public bool Remove(IActuator item)
|
|
{
|
|
Debug.Assert(m_ReadyForExecution == false,
|
|
"Cannot remove from the ActuatorManager after its buffers have been initialized");
|
|
if (m_Actuators.Remove(item))
|
|
{
|
|
SubtractFromBufferSize(item);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="ICollection{T}.Count"/>
|
|
/// </summary>
|
|
public int Count => m_Actuators.Count;
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="ICollection{T}.IsReadOnly"/>
|
|
/// </summary>
|
|
public bool IsReadOnly => m_Actuators.IsReadOnly;
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="IList{T}.IndexOf"/>
|
|
/// </summary>
|
|
public int IndexOf(IActuator item)
|
|
{
|
|
return m_Actuators.IndexOf(item);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="IList{T}.Insert"/>
|
|
/// </summary>
|
|
public void Insert(int index, IActuator item)
|
|
{
|
|
Debug.Assert(m_ReadyForExecution == false,
|
|
"Cannot insert into the ActuatorManager after its buffers have been initialized");
|
|
m_Actuators.Insert(index, item);
|
|
AddToBufferSizes(item);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="IList{T}.RemoveAt"/>
|
|
/// </summary>
|
|
public void RemoveAt(int index)
|
|
{
|
|
Debug.Assert(m_ReadyForExecution == false,
|
|
"Cannot remove from the ActuatorManager after its buffers have been initialized");
|
|
var actuator = m_Actuators[index];
|
|
SubtractFromBufferSize(actuator);
|
|
m_Actuators.RemoveAt(index);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <inheritdoc cref="IList{T}.this"/>
|
|
/// </summary>
|
|
public IActuator this[int index]
|
|
{
|
|
get => m_Actuators[index];
|
|
set
|
|
{
|
|
Debug.Assert(m_ReadyForExecution == false,
|
|
"Cannot modify the ActuatorManager after its buffers have been initialized");
|
|
var old = m_Actuators[index];
|
|
SubtractFromBufferSize(old);
|
|
m_Actuators[index] = value;
|
|
AddToBufferSizes(value);
|
|
}
|
|
}
|
|
}
|
|
}
|