您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
45 行
1.7 KiB
45 行
1.7 KiB
#if MLA_INPUT_SYSTEM && UNITY_2019_4_OR_NEWER
|
|
using System;
|
|
using Unity.MLAgents.Actuators;
|
|
using UnityEngine;
|
|
using UnityEngine.InputSystem;
|
|
using UnityEngine.InputSystem.Controls;
|
|
using UnityEngine.InputSystem.LowLevel;
|
|
|
|
namespace Unity.MLAgents.Extensions.Input
|
|
{
|
|
/// <summary>
|
|
/// Translates data from any control that extends from <see cref="InputControl{Vector2}"/>.
|
|
/// </summary>
|
|
public class Vector2InputActionAdaptor : IRLActionInputAdaptor
|
|
{
|
|
/// <inheritdoc cref="IRLActionInputAdaptor.GetActionSpecForInputAction"/>
|
|
public ActionSpec GetActionSpecForInputAction(InputAction action)
|
|
{
|
|
// TODO create the action spec based on what controls back the action
|
|
return ActionSpec.MakeContinuous(2);
|
|
}
|
|
|
|
/// <inheritdoc cref="IRLActionInputAdaptor.WriteToInputEventForAction"/>
|
|
public void WriteToInputEventForAction(InputEventPtr eventPtr, InputAction action,
|
|
InputControl control,
|
|
ActionSpec actionSpec,
|
|
in ActionBuffers actionBuffers)
|
|
{
|
|
var x = actionBuffers.ContinuousActions[0];
|
|
var y = actionBuffers.ContinuousActions[1];
|
|
control.WriteValueIntoEvent(new Vector2(x, y), eventPtr);
|
|
}
|
|
|
|
/// <inheritdoc cref="IRLActionInputAdaptor.WriteToHeuristic"/>
|
|
public void WriteToHeuristic(InputAction action, in ActionBuffers actionBuffers)
|
|
{
|
|
var value = action.ReadValue<Vector2>();
|
|
var continuousActions = actionBuffers.ContinuousActions;
|
|
continuousActions[0] = value.x;
|
|
continuousActions[1] = value.y;
|
|
}
|
|
|
|
}
|
|
}
|
|
#endif // MLA_INPUT_SYSTEM && UNITY_2019_4_OR_NEWER
|