3 using UnityEngine.Events;
8 [AddComponentMenu(
"AR+GPS/Hotspot")]
9 [HelpURL(
"https://http://docs.unity-ar-gps-location.com/guide/#hotspot")]
10 [DisallowMultipleComponent]
20 public enum PositionModes {
28 [Tooltip(
"The prefab/GameObject that will be instantiated by the Hotspot.")]
29 public GameObject Prefab;
31 [Tooltip(
"The positioning mode. 'HotspotCenter' means the object will be instantiated at the Hotpot's center geo-location. 'CameraPosition' means it will be positioned at the front of the camera.")]
32 public PositionModes PositionMode;
34 [Tooltip(
"The distance from the center that the user must be located to activate the Hotspot.")]
35 public float ActivationRadius = 4.0f;
37 [Tooltip(
"If true, align the instantiated object to face the camera (horizontally).")]
38 public bool AlignToCamera =
true;
40 [Tooltip(
"If 'PositionMode' is set to 'CameraPosition', how far from the camera the instantiated object should be placed.")]
41 public float DistanceFromCamera = 3.0f;
47 public bool Activated;
48 public GameObject Instance;
50 public bool EmittedLeaveHotspotEvent;
59 [Tooltip(
"When debug mode is enabled, this component will print relevant messages to the console. Filter by 'Hotspot' in the log output to see the messages.")]
60 public bool DebugMode;
66 [Tooltip(
"If true, monitor distance to emit the 'OnLeaveHotspot' event. If you don't need it, keep this disabled for better performance.")]
67 public bool UseOnLeaveHotspotEvent;
69 [Tooltip(
"Event for the Hotspot is activated.")]
72 [Tooltip(
"This event will be emited only once, when the user leaves the hotspot area after it is activated.")]
77 private Transform root;
78 private Camera arCamera;
79 private double currentDistance;
82 public GameObject Instance => state.Instance;
87 get => state.Location;
88 set => state.Location = value;
99 arLocationProvider.Provider.LocationUpdatedRaw += Provider_LocationUpdatedRaw;
103 if (state.Location ==
null)
105 state.Location = LocationSettings.GetLocation();
110 if (arLocationProvider.IsEnabled)
112 Provider_LocationUpdatedRaw(arLocationProvider.CurrentLocation, arLocationProvider.LastLocation);
116 public void Restart()
118 state.Activated =
false;
119 state.EmittedLeaveHotspotEvent =
false;
120 state.Instance =
null;
122 Destroy(state.Instance);
126 private void Provider_LocationUpdatedRaw(LocationReading currentLocation, LocationReading lastLocation)
128 if (state.Activated)
return;
130 Logger.LogFromMethod(
"Hotspot",
"LocationUpdatedRaw", $
"({gameObject.name}): New device location {currentLocation}", DebugMode);
132 currentDistance = Location.
HorizontalDistance(currentLocation.ToLocation(), state.Location);
136 if (currentDistance <= HotspotSettings.ActivationRadius)
138 ActivateHotspot(
new Vector3((
float) delta.x, 0, (
float) delta.y));
142 Logger.LogFromMethod(
"Hotspot",
"LocationUpdatedRaw", $
"({gameObject.name}): No activation - distance = {currentDistance}", DebugMode);
146 private void ActivateHotspot(Vector3 delta)
148 Logger.LogFromMethod(
"Hotspot",
"ActivateHotspot", $
"({gameObject.name}): Activating hotspot...", DebugMode);
150 if (HotspotSettings.Prefab ==
null)
return;
152 state.Instance = Instantiate(HotspotSettings.Prefab, HotspotSettings.AlignToCamera ? gameObject.transform : root);
154 switch (HotspotSettings.PositionMode)
156 case PositionModes.HotspotCenter:
157 state.Instance.transform.position = arCamera.transform.position + delta;
159 case PositionModes.CameraPosition:
160 var transform1 = arCamera.transform;
161 var forward = transform1.forward;
163 state.Instance.transform.position = transform1.position + forward * HotspotSettings.DistanceFromCamera;
167 if (HotspotSettings.AlignToCamera)
169 state.Instance.transform.LookAt(arCamera.transform);
172 state.Instance.AddComponent<GroundHeight>();
173 state.Instance.name = name +
" (Hotspot)";
175 state.Activated =
true;
177 Logger.LogFromMethod(
"Hotspot",
"ActivateHotspot", $
"({name}): Hotspot activated", DebugMode);
179 OnHotspotActivated?.Invoke(state.Instance);
184 public static Hotspot AddHotspotComponent(GameObject go, Location location, HotspotSettingsData settings)
186 var hotspot = go.AddComponent<Hotspot>();
187 hotspot.Location = location.Clone();
188 hotspot.HotspotSettings = settings;
194 public static GameObject CreateHotspotGameObject(Location location, HotspotSettingsData settings,
195 string name =
"GPS Hotspot")
197 var go =
new GameObject(name);
199 AddHotspotComponent(go, location, settings);
206 if (UseOnLeaveHotspotEvent && state.Activated && !state.EmittedLeaveHotspotEvent)
208 var distance = Vector3.Distance(arCamera.transform.position, state.Instance.transform.position);
209 if (distance >= HotspotSettings.ActivationRadius)
211 OnHotspotLeave?.Invoke(state.Instance);
212 state.EmittedLeaveHotspotEvent =
true;