LocationPathInspector.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. using System;
  2. using UnityEngine;
  3. using UnityEditor;
  4. // ReSharper disable DelegateSubtraction
  5. namespace ARLocation
  6. {
  7. [CustomEditor(typeof(LocationPath))]
  8. public class LocationPathInspector : Editor
  9. {
  10. SerializedProperty alpha;
  11. SerializedProperty locations;
  12. SerializedProperty sceneViewScale;
  13. SerializedProperty splineType;
  14. // float viewScale = 1.0f;
  15. private void OnEnable()
  16. {
  17. FindProperties();
  18. AddOnSceneGUIDelegate(OnSceneGuiDelegate);
  19. Tools.hidden = true;
  20. }
  21. #if UNITY_2019_1_OR_NEWER
  22. private void AddOnSceneGUIDelegate(Action<SceneView> del)
  23. {
  24. SceneView.duringSceneGui += del; // sceneView => OnSceneGUI();
  25. }
  26. #else
  27. private void AddOnSceneGUIDelegate(SceneView.OnSceneFunc del)
  28. {
  29. SceneView.onSceneGUIDelegate += del;
  30. }
  31. #endif
  32. #if UNITY_2019_1_OR_NEWER
  33. private void RemoveOnSceneGUIDelegate(Action<SceneView> del)
  34. {
  35. SceneView.duringSceneGui -= del; // sceneView => OnSceneGUI();
  36. }
  37. #else
  38. private void RemoveOnSceneGUIDelegate(SceneView.OnSceneFunc del)
  39. {
  40. SceneView.onSceneGUIDelegate -= del;
  41. }
  42. #endif
  43. private void OnSceneGuiDelegate(SceneView sceneview)
  44. {
  45. OnSceneGUI();
  46. }
  47. private void FindProperties()
  48. {
  49. alpha = serializedObject.FindProperty("Alpha");
  50. locations = serializedObject.FindProperty("Locations");
  51. sceneViewScale = serializedObject.FindProperty("SceneViewScale");
  52. splineType = serializedObject.FindProperty("SplineType");
  53. }
  54. void OnDisable()
  55. {
  56. RemoveOnSceneGUIDelegate(OnSceneGuiDelegate);
  57. Tools.hidden = false;
  58. }
  59. void DrawOnSceneGui()
  60. {
  61. FindProperties();
  62. Handles.BeginGUI();
  63. GUILayout.BeginArea(new Rect(20, 20, 200, 200));
  64. var rect = EditorGUILayout.BeginVertical();
  65. GUI.color = new Color(1, 1, 1, 0.4f);
  66. GUI.Box(rect, GUIContent.none);
  67. GUI.color = Color.white;
  68. GUILayout.BeginHorizontal();
  69. GUILayout.FlexibleSpace();
  70. GUILayout.Label("ARLocation Path");
  71. GUILayout.FlexibleSpace();
  72. GUILayout.EndHorizontal();
  73. var style = new GUIStyle
  74. {
  75. margin = new RectOffset(0, 0, 4, 200)
  76. };
  77. GUILayout.BeginHorizontal(style);
  78. GUI.backgroundColor = new Color(0.2f, 0.5f, 0.92f);
  79. GUILayout.Label("View Scale: ", GUILayout.Width(80.0f));
  80. var newViewScale = GUILayout.HorizontalSlider(sceneViewScale.floatValue, 0.01f, 1.0f);
  81. if (Math.Abs(newViewScale - sceneViewScale.floatValue) > 0.000001f)
  82. {
  83. sceneViewScale.floatValue = newViewScale;
  84. serializedObject.ApplyModifiedProperties();
  85. }
  86. GUILayout.Label(sceneViewScale.floatValue.ToString("0.00"), GUILayout.Width(32.0f));
  87. GUILayout.EndHorizontal();
  88. EditorGUILayout.EndVertical();
  89. GUILayout.EndArea();
  90. Handles.EndGUI();
  91. }
  92. void OnSceneGUI()
  93. {
  94. LocationPath locationPath = (LocationPath)target;
  95. if (locationPath.Locations == null)
  96. {
  97. return;
  98. }
  99. DrawOnSceneGui();
  100. DrawPath();
  101. }
  102. public override void OnInspectorGUI()
  103. {
  104. serializedObject.Update();
  105. if (((SplineType)splineType.enumValueIndex) == SplineType.CatmullromSpline)
  106. {
  107. EditorGUILayout.Slider(alpha, 0, 1, "Curve Alpha");
  108. }
  109. EditorGUILayout.PropertyField(splineType);
  110. EditorGUILayout.PropertyField(locations, true);
  111. serializedObject.ApplyModifiedProperties();
  112. }
  113. void DrawPath()
  114. {
  115. LocationPath locationPath = (LocationPath)target;
  116. var pathLocations = locationPath.Locations;
  117. if (pathLocations == null || pathLocations.Length < 2)
  118. {
  119. return;
  120. }
  121. var viewScale = sceneViewScale.floatValue;
  122. var points = new Vector3[pathLocations.Length];
  123. for (var i = 0; i < pathLocations.Length; i++)
  124. {
  125. var loc = pathLocations[i];
  126. points[i] = Vector3.Scale(loc.ToVector3(), new Vector3(viewScale, 1, viewScale));
  127. }
  128. //var points = curve.SamplePoints(100, p => getVec(p, curve.points[0]));
  129. var effScale = (1.0f + Mathf.Cos(viewScale * Mathf.PI / 2 - Mathf.PI));
  130. var s = new Vector3(effScale, 1.0f, effScale);
  131. var newCPs = new Vector3[locationPath.Locations.Length];
  132. for (var i = 0; i < locationPath.Locations.Length; i++)
  133. {
  134. // ps.Add(locationPath.locations[i].ToVector3());
  135. var loc = locationPath.Locations[i];
  136. var p = Location.GetGameObjectPositionForLocation(
  137. null,
  138. new Vector3(),
  139. // new Transform(),
  140. pathLocations[0],
  141. pathLocations[i],
  142. true
  143. );
  144. Handles.color = Color.blue;
  145. Handles.SphereHandleCap(i, Vector3.Scale(p, s), Quaternion.identity, 0.4f, EventType.Repaint);
  146. Vector3 newScaledPos = Handles.PositionHandle(Vector3.Scale(p, s), Quaternion.identity);
  147. Vector3 newPos = new Vector3(newScaledPos.x/effScale, newScaledPos.y, newScaledPos.z / effScale);
  148. Handles.Label(Vector3.Scale(p, s), loc.Label == "" ? (" Point " + i) : loc.Label);
  149. newCPs[i] = Vector3.Scale(p, s);
  150. }
  151. Spline newPath;
  152. if (((SplineType)splineType.enumValueIndex) == SplineType.CatmullromSpline)
  153. {
  154. newPath = new CatmullRomSpline(newCPs, 100, alpha.floatValue);
  155. }
  156. else
  157. {
  158. newPath = new LinearSpline(newCPs);
  159. }
  160. var newSample = newPath.SamplePoints(1000);
  161. for (var i = 0; i < (newSample.Length - 2); i++)
  162. {
  163. Handles.color = Color.green;
  164. Handles.DrawLine(newSample[i + 1], newSample[i]);
  165. }
  166. }
  167. }
  168. }