AR + GPS Location  3.0.0
All Classes Namespaces Functions Variables Properties Events Pages
LocationPathInspector.cs
1 using System;
2 using UnityEngine;
3 using UnityEditor;
4 // ReSharper disable DelegateSubtraction
5 
6 namespace ARLocation
7 {
8 
9  [CustomEditor(typeof(LocationPath))]
10  public class LocationPathInspector : Editor
11  {
12 
13  SerializedProperty alpha;
14  SerializedProperty locations;
15  SerializedProperty sceneViewScale;
16  SerializedProperty splineType;
17 
18  // float viewScale = 1.0f;
19 
20  private void OnEnable()
21  {
22  FindProperties();
23 
24  AddOnSceneGUIDelegate(OnSceneGuiDelegate);
25 
26  Tools.hidden = true;
27  }
28 
29 
30 #if UNITY_2019_1_OR_NEWER
31  private void AddOnSceneGUIDelegate(Action<SceneView> del)
32  {
33  SceneView.duringSceneGui += del; // sceneView => OnSceneGUI();
34  }
35 #else
36  private void AddOnSceneGUIDelegate(SceneView.OnSceneFunc del)
37  {
38  SceneView.onSceneGUIDelegate += del;
39  }
40 #endif
41 
42 #if UNITY_2019_1_OR_NEWER
43  private void RemoveOnSceneGUIDelegate(Action<SceneView> del)
44  {
45  SceneView.duringSceneGui -= del; // sceneView => OnSceneGUI();
46  }
47 #else
48  private void RemoveOnSceneGUIDelegate(SceneView.OnSceneFunc del)
49  {
50  SceneView.onSceneGUIDelegate -= del;
51  }
52 #endif
53 
54 
55  private void OnSceneGuiDelegate(SceneView sceneview)
56  {
57  OnSceneGUI();
58  }
59 
60  private void FindProperties()
61  {
62  alpha = serializedObject.FindProperty("Alpha");
63  locations = serializedObject.FindProperty("Locations");
64  sceneViewScale = serializedObject.FindProperty("SceneViewScale");
65  splineType = serializedObject.FindProperty("SplineType");
66  }
67 
68 
69  void OnDisable()
70  {
71  RemoveOnSceneGUIDelegate(OnSceneGuiDelegate);
72 
73  Tools.hidden = false;
74  }
75 
76  void DrawOnSceneGui()
77  {
78  FindProperties();
79 
80  Handles.BeginGUI();
81 
82  GUILayout.BeginArea(new Rect(20, 20, 200, 200));
83 
84  var rect = EditorGUILayout.BeginVertical();
85  GUI.color = new Color(1, 1, 1, 0.4f);
86  GUI.Box(rect, GUIContent.none);
87 
88  GUI.color = Color.white;
89 
90  GUILayout.BeginHorizontal();
91  GUILayout.FlexibleSpace();
92  GUILayout.Label("ARLocation Path");
93  GUILayout.FlexibleSpace();
94  GUILayout.EndHorizontal();
95 
96  var style = new GUIStyle
97  {
98  margin = new RectOffset(0, 0, 4, 200)
99  };
100 
101  GUILayout.BeginHorizontal(style);
102  GUI.backgroundColor = new Color(0.2f, 0.5f, 0.92f);
103 
104  GUILayout.Label("View Scale: ", GUILayout.Width(80.0f));
105 
106 
107  var newViewScale = GUILayout.HorizontalSlider(sceneViewScale.floatValue, 0.01f, 1.0f);
108 
109  if (Math.Abs(newViewScale - sceneViewScale.floatValue) > 0.000001f)
110  {
111  sceneViewScale.floatValue = newViewScale;
112  serializedObject.ApplyModifiedProperties();
113  }
114 
115  GUILayout.Label(sceneViewScale.floatValue.ToString("0.00"), GUILayout.Width(32.0f));
116 
117 
118  GUILayout.EndHorizontal();
119 
120  EditorGUILayout.EndVertical();
121 
122 
123  GUILayout.EndArea();
124  Handles.EndGUI();
125  }
126 
127  void OnSceneGUI()
128  {
129  LocationPath locationPath = (LocationPath)target;
130 
131  if (locationPath.Locations == null)
132  {
133  return;
134  }
135 
136  DrawOnSceneGui();
137  DrawPath();
138  }
139 
140  public override void OnInspectorGUI()
141  {
142  serializedObject.Update();
143 
144  if (((SplineType)splineType.enumValueIndex) == SplineType.CatmullromSpline)
145  {
146  EditorGUILayout.Slider(alpha, 0, 1, "Curve Alpha");
147  }
148 
149  EditorGUILayout.PropertyField(splineType);
150  EditorGUILayout.PropertyField(locations, true);
151 
152  serializedObject.ApplyModifiedProperties();
153  }
154 
155  void DrawPath()
156  {
157  LocationPath locationPath = (LocationPath)target;
158  var pathLocations = locationPath.Locations;
159 
160  if (pathLocations == null || pathLocations.Length < 2)
161  {
162  return;
163  }
164 
165  var viewScale = sceneViewScale.floatValue;
166 
167  var points = new Vector3[pathLocations.Length];
168 
169  for (var i = 0; i < pathLocations.Length; i++)
170  {
171  var loc = pathLocations[i];
172  points[i] = Vector3.Scale(loc.ToVector3(), new Vector3(viewScale, 1, viewScale));
173  }
174 
175 
176  //var points = curve.SamplePoints(100, p => getVec(p, curve.points[0]));
177  var effScale = (1.0f + Mathf.Cos(viewScale * Mathf.PI / 2 - Mathf.PI));
178  var s = new Vector3(effScale, 1.0f, effScale);
179 
180 
181  var newCPs = new Vector3[locationPath.Locations.Length];
182  for (var i = 0; i < locationPath.Locations.Length; i++)
183  {
184  // ps.Add(locationPath.locations[i].ToVector3());
185 
186  var loc = locationPath.Locations[i];
188  null,
189  new Vector3(),
190  // new Transform(),
191  pathLocations[0],
192  pathLocations[i],
193  true
194  );
195  Handles.color = Color.blue;
196  Handles.SphereHandleCap(i, Vector3.Scale(p, s), Quaternion.identity, 0.4f, EventType.Repaint);
197  Handles.Label(Vector3.Scale(p, s), loc.Label == "" ? (" Point " + i) : loc.Label);
198  newCPs[i] = Vector3.Scale(p, s);
199  }
200 
201  Spline newPath;
202  if (((SplineType)splineType.enumValueIndex) == SplineType.CatmullromSpline)
203  {
204  newPath = new CatmullRomSpline(newCPs, 100, alpha.floatValue);
205  }
206  else
207  {
208  newPath = new LinearSpline(newCPs);
209  }
210 
211  var newSample = newPath.SamplePoints(1000);
212 
213  for (var i = 0; i < (newSample.Length - 2); i++)
214  {
215  Handles.color = Color.green;
216  Handles.DrawLine(newSample[i + 1], newSample[i]);
217  }
218  }
219  }
220 }
ARLocation.LocationPathInspector
Definition: LocationPathInspector.cs:11
ARLocation.LocationPath
Data used to construct a spline passing trough a set of geographical locations.
Definition: LocationPath.cs:12
ARLocation.Location
Represents a geographical location.
Definition: Location.cs:19
ARLocation.CatmullRomSpline
A (open-ended) catmull-rom spline, which interpolates a set points by joining catmull-rom curves toge...
Definition: CatmullRomSpline.cs:11
ARLocation.Spline.SamplePoints
Vector3[] SamplePoints(int n, System.Func< Vector3, Vector3 > func)
Calculates a sample of (N+2) equidistant points along the spline.
Definition: Spline.cs:114
ARLocation.Location.GetGameObjectPositionForLocation
static Vector3 GetGameObjectPositionForLocation(Transform arLocationRoot, Vector3 userPosition, Location userLocation, Location objectLocation, bool heightIsRelative)
Gets the game object world-position for location.
Definition: Location.cs:276
ARLocation.Spline
Definition: Spline.cs:13
ARLocation.LocationPath.Locations
Location[] Locations
The geographical locations that the path will interpolate.
Definition: LocationPath.cs:17
ARLocation
Definition: ARLocationConfigInspector.cs:7
ARLocation.LinearSpline
Definition: LinearSpline.cs:6