您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
36 行
1.4 KiB
36 行
1.4 KiB
#if MLA_INPUT_SYSTEM
|
|
using Unity.MLAgents.Actuators;
|
|
using UnityEngine.InputSystem;
|
|
using UnityEngine.InputSystem.Controls;
|
|
using UnityEngine.InputSystem.LowLevel;
|
|
|
|
namespace Unity.MLAgents.Extensions.Input
|
|
{
|
|
/// <summary>
|
|
/// Translates data from a <see cref="UnityEngine.InputSystem.Controls.DoubleControl"/>.
|
|
/// </summary>
|
|
public class DoubleInputActionAdaptor : IRLActionInputAdaptor
|
|
{
|
|
/// <inheritdoc cref="IRLActionInputAdaptor.GetActionSpecForInputAction"/>
|
|
public ActionSpec GetActionSpecForInputAction(InputAction action)
|
|
{
|
|
return ActionSpec.MakeContinuous(1);
|
|
}
|
|
|
|
/// <inheritdoc cref="IRLActionInputAdaptor.WriteToInputEventForAction"/>
|
|
public void WriteToInputEventForAction(InputEventPtr eventPtr, InputAction action, InputControl control, ActionSpec actionSpec, in ActionBuffers actionBuffers)
|
|
{
|
|
var val = actionBuffers.ContinuousActions[0];
|
|
((DoubleControl)control).WriteValueIntoEvent((double)val, eventPtr);
|
|
}
|
|
|
|
/// <inheritdoc cref="IRLActionInputAdaptor.WriteToHeuristic"/>
|
|
public void WriteToHeuristic(InputAction action, in ActionBuffers actionBuffers)
|
|
{
|
|
var actions = actionBuffers.ContinuousActions;
|
|
var val = (float)action.ReadValue<double>();
|
|
actions[0] = val;
|
|
}
|
|
}
|
|
}
|
|
#endif // MLA_INPUT_SYSTEM
|