Newer
Older
HoloAnatomy / Assets / HoloToolkit / Utilities / Scripts / Solvers / SolverHandler.cs
SURFACEBOOK2\jackwynne on 25 May 2018 4 KB v1
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Licensed under the MIT License. See LICENSE in the project root for license information.
  3.  
  4. using System;
  5. using System.Collections.Generic;
  6. using HoloToolkit.Unity.InputModule;
  7. using UnityEngine;
  8.  
  9. namespace HoloToolkit.Unity
  10. {
  11. public class SolverHandler : ControllerFinder
  12. {
  13. public enum TrackedObjectToReferenceEnum
  14. {
  15. /// <summary>
  16. /// Calculates position and orientation from the main camera
  17. /// </summary>
  18. Head,
  19. /// <summary>
  20. /// Calculates position and orientation from the left motion controller
  21. /// </summary>
  22. MotionControllerLeft,
  23. /// <summary>
  24. /// Calculates position and orientation from the right motion camera
  25. /// </summary>
  26. MotionControllerRight
  27. }
  28.  
  29. [SerializeField]
  30. [Tooltip("Tracked object to calculate position and orientation from. If you want to manually override and use a scene object, use the TransformTarget field")]
  31. private TrackedObjectToReferenceEnum trackedObjectToReference = TrackedObjectToReferenceEnum.Head;
  32.  
  33. public TrackedObjectToReferenceEnum TrackedObjectToReference
  34. {
  35. get { return trackedObjectToReference; }
  36. set { trackedObjectToReference = value; }
  37. }
  38.  
  39. [SerializeField]
  40. [Tooltip("Manual override for TrackedObjectToReference if you want to use a scene object. Leave empty if you want to use Head or Motion controllers")]
  41. private Transform transformTarget;
  42.  
  43. public Transform TransformTarget
  44. {
  45. get { return transformTarget; }
  46. set { transformTarget = value; }
  47. }
  48.  
  49. public Vector3 GoalPosition { get; set; }
  50.  
  51. public Quaternion GoalRotation { get; set; }
  52.  
  53. public Vector3 GoalScale { get; set; }
  54.  
  55. public Vector3Smoothed AltScale { get; set; }
  56.  
  57. public float DeltaTime { get; set; }
  58.  
  59. private float LastUpdateTime { get; set; }
  60.  
  61. private List<Solver> m_Solvers = new List<Solver>();
  62.  
  63. private void Awake()
  64. {
  65. m_Solvers.AddRange(GetComponents<Solver>());
  66.  
  67. GoalScale = Vector3.one;
  68. AltScale = new Vector3Smoothed(Vector3.one, 0.1f);
  69. DeltaTime = 0.0f;
  70. }
  71.  
  72. private void Update()
  73. {
  74. DeltaTime = Time.realtimeSinceStartup - LastUpdateTime;
  75. LastUpdateTime = Time.realtimeSinceStartup;
  76. }
  77.  
  78. private void LateUpdate()
  79. {
  80. for (int i = 0; i < m_Solvers.Count; ++i)
  81. {
  82. Solver solver = m_Solvers[i];
  83.  
  84. if (solver.enabled)
  85. {
  86. solver.SolverUpdate();
  87. }
  88. }
  89. }
  90.  
  91. [Serializable]
  92. public struct Vector3Smoothed
  93. {
  94. public Vector3 Current { get; set; }
  95. public Vector3 Goal { get; set; }
  96. public float SmoothTime { get; set; }
  97.  
  98. public Vector3Smoothed(Vector3 value, float smoothingTime) : this()
  99. {
  100. Current = value;
  101. Goal = value;
  102. SmoothTime = smoothingTime;
  103. }
  104.  
  105. public void Update(float deltaTime)
  106. {
  107. Current = Vector3.Lerp(Current, Goal, (Math.Abs(SmoothTime) < Mathf.Epsilon) ? 1.0f : deltaTime / SmoothTime);
  108. }
  109.  
  110. public void SetGoal(Vector3 newGoal)
  111. {
  112. Goal = newGoal;
  113. }
  114. }
  115.  
  116. [Serializable]
  117. public struct QuaternionSmoothed
  118. {
  119. public Quaternion Current { get; set; }
  120. public Quaternion Goal { get; set; }
  121. public float SmoothTime { get; set; }
  122.  
  123. public QuaternionSmoothed(Quaternion value, float smoothingTime) : this()
  124. {
  125. Current = value;
  126. Goal = value;
  127. SmoothTime = smoothingTime;
  128. }
  129.  
  130. public void Update(float deltaTime)
  131. {
  132. Current = Quaternion.Slerp(Current, Goal, (Math.Abs(SmoothTime) < Mathf.Epsilon) ? 1.0f : deltaTime / SmoothTime);
  133. }
  134.  
  135. public void SetGoal(Quaternion newGoal)
  136. {
  137. Goal = newGoal;
  138. }
  139. }
  140. }
  141. }