您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
70 行
2.6 KiB
70 行
2.6 KiB
#if MLA_INPUT_TESTS && UNITY_2019_4_OR_NEWER
|
|
using NUnit.Framework;
|
|
using Unity.MLAgents.Actuators;
|
|
using Unity.MLAgents.Extensions.Input;
|
|
using UnityEngine;
|
|
using UnityEngine.InputSystem;
|
|
|
|
namespace Unity.MLAgents.Extensions.Tests.Runtime.Input
|
|
{
|
|
public class DoubleInputActionAdaptorTests : InputTestFixture
|
|
{
|
|
DoubleInputActionAdaptor m_Adaptor;
|
|
InputDevice m_Device;
|
|
InputControl<double> m_Control;
|
|
InputAction m_Action;
|
|
|
|
public override void Setup()
|
|
{
|
|
base.Setup();
|
|
const string kLayout = @"
|
|
{
|
|
""name"" : ""TestDevice"",
|
|
""extend"" : ""HID"",
|
|
""controls"" : [
|
|
{ ""name"" : ""button"", ""layout"" : ""Double"" }
|
|
]
|
|
}";
|
|
InputSystem.RegisterLayout(kLayout);
|
|
m_Device = InputSystem.AddDevice("TestDevice");
|
|
m_Control = (InputControl<double>)m_Device["button"];
|
|
m_Action = new InputAction("action", InputActionType.Value, "/TestDevice/button", null, null, "double");
|
|
m_Action.Enable();
|
|
m_Adaptor = new DoubleInputActionAdaptor();
|
|
}
|
|
|
|
public override void TearDown()
|
|
{
|
|
base.TearDown();
|
|
m_Adaptor = null;
|
|
}
|
|
|
|
[Test]
|
|
public void TestGenerateActionSpec()
|
|
{
|
|
var actionSpec = m_Adaptor.GetActionSpecForInputAction(new InputAction());
|
|
Assert.IsTrue(actionSpec.NumContinuousActions == 1);
|
|
}
|
|
|
|
[Test]
|
|
public void TestQueueEvent()
|
|
{
|
|
var actionBuffers = new ActionBuffers(new ActionSegment<float>(new[] { 1f }), ActionSegment<int>.Empty);
|
|
m_Adaptor.QueueInputEventForAction(m_Action, m_Control, new ActionSpec(), actionBuffers);
|
|
InputSystem.Update();
|
|
Assert.IsTrue(Mathf.Approximately(1f, (float)m_Action.ReadValue<double>()));
|
|
}
|
|
|
|
[Test]
|
|
public void TestWriteToHeuristic()
|
|
{
|
|
var actionBuffers = new ActionBuffers(new ActionSegment<float>(new[] { 1f }), ActionSegment<int>.Empty);
|
|
m_Adaptor.QueueInputEventForAction(m_Action, m_Control, new ActionSpec(), actionBuffers);
|
|
InputSystem.Update();
|
|
var buffer = new ActionBuffers(new ActionSegment<float>(new[] { 1f }), ActionSegment<int>.Empty);
|
|
m_Adaptor.WriteToHeuristic(m_Action, buffer);
|
|
Assert.IsTrue(Mathf.Approximately(buffer.ContinuousActions[0], 1f));
|
|
}
|
|
}
|
|
}
|
|
#endif // MLA_INPUT_TESTS && UNITY_2019_4_OR_NEWER
|