ARLocationConfigInspector.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. using UnityEditor;
  4. // ReSharper disable InconsistentNaming
  5. namespace ARLocation
  6. {
  7. /// <summary>
  8. /// Inspector for the ARLocationConfig. This inspector is the main configuration
  9. /// interface for the AR+GPS Location plugin.
  10. /// </summary>
  11. [CustomEditor(typeof(ARLocationConfig))]
  12. public class ARLocationConfigInspector : Editor
  13. {
  14. SerializedProperty p_EarthRadiusInKM;
  15. SerializedProperty p_EarthEquatorialRadius;
  16. SerializedProperty p_EarthFirstEccentricitySquared;
  17. SerializedProperty p_UseVuforia;
  18. SerializedProperty p_UseCustomGeoCalculator;
  19. SerializedProperty p_InitialGroundHeightGuess;
  20. SerializedProperty p_VuforiaGroundHitTestDistance;
  21. private SerializedProperty p_MinGroundHeight;
  22. private SerializedProperty p_MaxGroundHeight;
  23. private SerializedProperty p_GroundHeightSmoothingFactor;
  24. DefineSymbolsManager defineSymbolsManager;
  25. const string ARGPS_USE_VUFORIA = "ARGPS_USE_VUFORIA";
  26. const string ARGPS_USE_NATIVE_LOCATION = "ARGPS_USE_NATIVE_LOCATION";
  27. const string ARGPS_USE_CUSTOM_GEO_CALC = "ARGPS_USE_CUSTOM_GEO_CALC";
  28. Dictionary<string, string> defineSymbolProps = new Dictionary<string, string> {
  29. {ARGPS_USE_VUFORIA, "UseVuforia"},
  30. {ARGPS_USE_NATIVE_LOCATION, "UseNativeLocationModule"}
  31. };
  32. private void OnEnable()
  33. {
  34. p_EarthRadiusInKM = serializedObject.FindProperty("EarthMeanRadiusInKM");
  35. p_EarthEquatorialRadius = serializedObject.FindProperty("EarthEquatorialRadiusInKM");
  36. p_EarthFirstEccentricitySquared = serializedObject.FindProperty("EarthFirstEccentricitySquared");
  37. p_UseVuforia = serializedObject.FindProperty("UseVuforia");
  38. p_UseCustomGeoCalculator = serializedObject.FindProperty("UseCustomGeoCalculator");
  39. p_InitialGroundHeightGuess = serializedObject.FindProperty("InitialGroundHeightGuess");
  40. p_VuforiaGroundHitTestDistance = serializedObject.FindProperty("VuforiaGroundHitTestDistance");
  41. p_MinGroundHeight = serializedObject.FindProperty("MinGroundHeight");
  42. p_MaxGroundHeight = serializedObject.FindProperty("MaxGroundHeight");
  43. p_GroundHeightSmoothingFactor = serializedObject.FindProperty("GroundHeightSmoothingFactor");
  44. defineSymbolsManager = new DefineSymbolsManager(new[]
  45. {
  46. BuildTargetGroup.iOS,
  47. BuildTargetGroup.Android
  48. });
  49. }
  50. private void UpdateDefineSymbolsFromPlayerSettings()
  51. {
  52. defineSymbolsManager.UpdateFromBuildSettings();
  53. foreach (var item in defineSymbolProps)
  54. {
  55. if (item.Value == "UseVuforia")
  56. {
  57. #if !UNITY_2019_3_OR_NEWER
  58. #if UNITY_2019_2
  59. var value = defineSymbolsManager.Has(item.Key) && PlayerSettings.vuforiaEnabled;
  60. #else
  61. var value = defineSymbolsManager.Has(item.Key) && PlayerSettings.GetPlatformVuforiaEnabled(BuildTargetGroup.Android) && PlayerSettings.GetPlatformVuforiaEnabled(BuildTargetGroup.iOS);
  62. #endif
  63. UpdateDefineSymbolProp(item.Value, value);
  64. #endif
  65. }
  66. else
  67. {
  68. UpdateDefineSymbolProp(item.Value, defineSymbolsManager.Has(item.Key));
  69. }
  70. }
  71. serializedObject.ApplyModifiedProperties();
  72. }
  73. private void UpdateDefineSymbolProp(string propName, bool value)
  74. {
  75. var prop = serializedObject.FindProperty(propName);
  76. if (prop == null)
  77. {
  78. return;
  79. }
  80. prop.boolValue = value;
  81. }
  82. public override void OnInspectorGUI()
  83. {
  84. serializedObject.Update();
  85. UpdateDefineSymbolsFromPlayerSettings();
  86. defineSymbolsManager.UpdateFromBuildSettings();
  87. EditorGUILayout.HelpBox("AR+GPS Location " + ARLocationConfig.Version, MessageType.None, true);
  88. EditorGUILayout.PropertyField(p_EarthRadiusInKM);
  89. EditorGUILayout.PropertyField(p_EarthEquatorialRadius);
  90. EditorGUILayout.PropertyField(p_EarthFirstEccentricitySquared);
  91. EditorGUILayout.PropertyField(p_InitialGroundHeightGuess);
  92. EditorGUILayout.PropertyField(p_MinGroundHeight);
  93. EditorGUILayout.PropertyField(p_MaxGroundHeight);
  94. EditorGUILayout.PropertyField(p_GroundHeightSmoothingFactor);
  95. EditorGUILayout.PropertyField(p_VuforiaGroundHitTestDistance);
  96. EditorGUILayout.PropertyField(p_UseVuforia);
  97. EditorGUILayout.PropertyField(p_UseCustomGeoCalculator);
  98. if (p_UseVuforia.boolValue)
  99. {
  100. #if UNITY_2019_3_OR_NEWER
  101. EditorGUILayout.HelpBox("Make sure that Vuforia is instaled in the Package Manager Window. On Android, also make sure that the 'ARCore XR Plugin' is not installed.", MessageType.Info);
  102. #endif
  103. // EditorGUILayout.HelpBox("So that Vuforia works correctly, please enable the 'Track Device Pose' option in the Vuforia configuration, and set the tracking" +
  104. // " mode to 'POSITIONAL'.", MessageType.Warning);
  105. EditorGUILayout.HelpBox(
  106. "Note that the regular sample scenes do not work with Vuforia. You can download a project with Vuforia samples at https://github.com/dmbfm/unity-ar-gps-location-issues/releases/tag/v3.1.1", MessageType.Warning);
  107. }
  108. if (GUILayout.Button("Open Documentation"))
  109. {
  110. Application.OpenURL("https://docs.unity-ar-gps-location.com");
  111. }
  112. var config = (ARLocationConfig)target;
  113. UpdateDefineSymbolPropConfig(config.UseVuforia, p_UseVuforia.boolValue, ARGPS_USE_VUFORIA);
  114. UpdateVuforiaPlayerSettings(config.UseVuforia, p_UseVuforia.boolValue);
  115. UpdateDefineSymbolPropConfig(config.UseCustomGeoCalculator, p_UseCustomGeoCalculator.boolValue, ARGPS_USE_CUSTOM_GEO_CALC);
  116. serializedObject.ApplyModifiedProperties();
  117. }
  118. private void UpdateVuforiaPlayerSettings(bool oldValue, bool newValue)
  119. {
  120. if (newValue == oldValue)
  121. {
  122. return;
  123. }
  124. #if !UNITY_2019_3_OR_NEWER
  125. #if UNITY_2019_2
  126. if (newValue)
  127. {
  128. PlayerSettings.vuforiaEnabled = true;
  129. }
  130. else
  131. {
  132. PlayerSettings.vuforiaEnabled = false;
  133. }
  134. #else
  135. if (newValue)
  136. {
  137. PlayerSettings.SetPlatformVuforiaEnabled(BuildTargetGroup.Android, true);
  138. PlayerSettings.SetPlatformVuforiaEnabled(BuildTargetGroup.iOS, true);
  139. }
  140. else
  141. {
  142. PlayerSettings.SetPlatformVuforiaEnabled(BuildTargetGroup.Android, false);
  143. PlayerSettings.SetPlatformVuforiaEnabled(BuildTargetGroup.iOS, false);
  144. }
  145. #endif
  146. #endif
  147. }
  148. private void UpdateDefineSymbolPropConfig(bool oldValue, bool newValue, string symbol)
  149. {
  150. if (newValue == oldValue) return;
  151. if (newValue)
  152. {
  153. defineSymbolsManager.Add(symbol);
  154. }
  155. else
  156. {
  157. defineSymbolsManager.Remove(symbol);
  158. }
  159. defineSymbolsManager.ApplyToBuildSettings();
  160. }
  161. }
  162. }