WorldBuilderApplicationController.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. using System.Text;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. using UnityEngine.Networking;
  6. using UnityEngine.UI;
  7. using UnityEngine.XR.ARFoundation;
  8. namespace ARLocation
  9. {
  10. [RequireComponent(typeof(WorldBuilder))]
  11. public class WorldBuilderApplicationController : MonoBehaviour
  12. {
  13. [System.Serializable]
  14. public class UiElementsSettings
  15. {
  16. public Button CubeBtn;
  17. public Button CylinderBtn;
  18. public Button LogoBtn;
  19. public Button MoveBtn;
  20. public Button RotateBtn;
  21. public Button DeselectBtn;
  22. public Button ClearWorldBtn;
  23. public Button HeightBtn;
  24. public Button DeleteObjectBtn;
  25. public Text DebugText;
  26. }
  27. [System.Serializable]
  28. public class RaycastMarginSettings
  29. {
  30. public float Top;
  31. public float Bottom;
  32. public float Left;
  33. public float Right;
  34. }
  35. [System.Serializable]
  36. public class GeneralSettings
  37. {
  38. public float HeightAdjustmentSensitivity = 0.25f;
  39. public float RotationAdjustmentSensitivity = 1.0f;
  40. public string SaveWorldUrl;
  41. public string RestoreWorldUrl;
  42. public bool SaveToServer;
  43. }
  44. public UiElementsSettings UiElements;
  45. public RaycastMarginSettings RaycastMargins;
  46. public GeneralSettings Settings;
  47. private WorldBuilder worldBuilder;
  48. private PlaceAtLocation selectedObject;
  49. private WorldBuilder.Entry selectedObjectEntry;
  50. enum AppState
  51. {
  52. PlacementMode,
  53. MoveMode,
  54. RotateMode,
  55. HeightMode,
  56. IdleMode
  57. };
  58. class State
  59. {
  60. public string CurrentMeshId;
  61. public AppState AppState;
  62. }
  63. private readonly State state = new State();
  64. private void Awake()
  65. {
  66. worldBuilder = GetComponent<WorldBuilder>();
  67. if (Settings.SaveToServer)
  68. {
  69. worldBuilder.UseLocalStorage = false;
  70. }
  71. Debug.Assert(worldBuilder != null);
  72. Debug.Assert(worldBuilder.PrefabDatabase.Entries.Count > 0);
  73. state.CurrentMeshId = "Cube";
  74. UiElements.CubeBtn.image.color = UiElements.CubeBtn.colors.pressedColor;
  75. SetObjectSelectedUIVisible(false);
  76. InitListeners();
  77. }
  78. IEnumerator Start()
  79. {
  80. if (Settings.SaveToServer)
  81. {
  82. while (!worldBuilder.Initialized)
  83. {
  84. yield return new WaitForSeconds(0.1f);
  85. }
  86. yield return RestoreWorldFromServer();
  87. }
  88. }
  89. IEnumerator RestoreWorldFromServer()
  90. {
  91. var request = UnityWebRequest.Get($"{Settings.RestoreWorldUrl}{worldBuilder.Id}");
  92. yield return request.SendWebRequest();
  93. if (Utils.Misc.WebRequestResultIsError(request))
  94. {
  95. Debug.Log("Failed to restore world from server!");
  96. yield break;
  97. }
  98. Debug.Log(request.downloadHandler.text);
  99. Debug.Log(request.responseCode);
  100. worldBuilder.FromJson(request.downloadHandler.text);
  101. }
  102. IEnumerator SaveWorldToServer()
  103. {
  104. var request = new UnityWebRequest($"{Settings.SaveWorldUrl}{worldBuilder.Id}", "POST");
  105. byte[] bodyRaw = Encoding.UTF8.GetBytes(worldBuilder.ToJson());
  106. request.uploadHandler = (UploadHandler) new UploadHandlerRaw(bodyRaw);
  107. request.downloadHandler = (DownloadHandler) new DownloadHandlerBuffer();
  108. request.SetRequestHeader("Content-Type", "application/json");
  109. yield return request.SendWebRequest();
  110. if (Utils.Misc.WebRequestResultIsError(request))
  111. {
  112. Debug.LogWarning("Failed to save to server!");
  113. }
  114. }
  115. void SetObjectSelectedUIVisible(bool visible)
  116. {
  117. UiElements.MoveBtn.gameObject.SetActive(visible);
  118. UiElements.RotateBtn.gameObject.SetActive(visible);
  119. UiElements.DeselectBtn.gameObject.SetActive(visible);
  120. UiElements.HeightBtn.gameObject.SetActive(visible);
  121. UiElements.DeleteObjectBtn.gameObject.SetActive(visible);
  122. UiElements.CubeBtn.gameObject.SetActive(!visible);
  123. UiElements.CylinderBtn.gameObject.SetActive(!visible);
  124. UiElements.LogoBtn.gameObject.SetActive(!visible);
  125. UiElements.ClearWorldBtn.gameObject.SetActive(!visible);
  126. }
  127. void SetMoveMode()
  128. {
  129. UiElements.MoveBtn.image.color = UiElements.MoveBtn.colors.pressedColor;
  130. UiElements.RotateBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  131. UiElements.DeselectBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  132. UiElements.HeightBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  133. state.AppState = AppState.MoveMode;
  134. }
  135. void SetRotateMode()
  136. {
  137. UiElements.MoveBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  138. UiElements.RotateBtn.image.color = UiElements.MoveBtn.colors.pressedColor;
  139. UiElements.DeselectBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  140. UiElements.HeightBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  141. state.AppState = AppState.RotateMode;
  142. }
  143. private void SetHeightMode()
  144. {
  145. UiElements.MoveBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  146. UiElements.RotateBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  147. UiElements.DeselectBtn.image.color = UiElements.MoveBtn.colors.normalColor;
  148. UiElements.HeightBtn.image.color = UiElements.MoveBtn.colors.pressedColor;
  149. state.AppState = AppState.HeightMode;
  150. }
  151. void InitListeners()
  152. {
  153. UiElements.ClearWorldBtn.onClick.AddListener(() =>
  154. {
  155. worldBuilder.ClearWorld();
  156. SetObjectSelectedUIVisible(false);
  157. state.AppState = AppState.PlacementMode;
  158. });
  159. UiElements.CubeBtn.onClick.AddListener(() =>
  160. {
  161. UiElements.CubeBtn.image.color = UiElements.CubeBtn.colors.pressedColor;
  162. UiElements.CylinderBtn.image.color = UiElements.CylinderBtn.colors.normalColor;
  163. UiElements.LogoBtn.image.color = UiElements.LogoBtn.colors.normalColor;
  164. state.CurrentMeshId = "Cube";
  165. });
  166. UiElements.CylinderBtn.onClick.AddListener(() =>
  167. {
  168. UiElements.CubeBtn.image.color = UiElements.CubeBtn.colors.normalColor;
  169. UiElements.CylinderBtn.image.color = UiElements.CylinderBtn.colors.pressedColor;
  170. UiElements.LogoBtn.image.color = UiElements.LogoBtn.colors.normalColor;
  171. state.CurrentMeshId = "Cylinder";
  172. });
  173. UiElements.LogoBtn.onClick.AddListener(() =>
  174. {
  175. UiElements.CubeBtn.image.color = UiElements.CubeBtn.colors.normalColor;
  176. UiElements.CylinderBtn.image.color = UiElements.CylinderBtn.colors.normalColor;
  177. UiElements.LogoBtn.image.color = UiElements.LogoBtn.colors.pressedColor;
  178. state.CurrentMeshId = "Logo";
  179. });
  180. UiElements.DeselectBtn.onClick.AddListener(() =>
  181. {
  182. state.CurrentMeshId = "Cube";
  183. UiElements.CubeBtn.image.color = UiElements.CubeBtn.colors.pressedColor;
  184. UiElements.CylinderBtn.image.color = UiElements.CylinderBtn.colors.normalColor;
  185. UiElements.LogoBtn.image.color = UiElements.LogoBtn.colors.normalColor;
  186. state.AppState = AppState.PlacementMode;
  187. SetObjectSelectedUIVisible(false);
  188. selectedObjectEntry = null;
  189. });
  190. UiElements.RotateBtn.onClick.AddListener(() =>
  191. {
  192. SetRotateMode();
  193. });
  194. UiElements.MoveBtn.onClick.AddListener(() =>
  195. {
  196. SetMoveMode();
  197. });
  198. UiElements.HeightBtn.onClick.AddListener(() =>
  199. {
  200. SetHeightMode();
  201. });
  202. UiElements.DeleteObjectBtn.onClick.AddListener(() =>
  203. {
  204. worldBuilder.RemoveEntry(selectedObjectEntry);
  205. });
  206. }
  207. void DebugOutput(string text)
  208. {
  209. if (UiElements.DebugText)
  210. {
  211. UiElements.DebugText.text = text;
  212. }
  213. }
  214. void Update()
  215. {
  216. DebugOutput($" c = {ARLocationManager.Instance.MainCamera.transform.position}");
  217. if (Input.touchCount == 1)
  218. {
  219. var touch = Input.touches[0];
  220. if (state.AppState == AppState.RotateMode)
  221. {
  222. if (touch.phase == TouchPhase.Moved || touch.phase == TouchPhase.Stationary)
  223. {
  224. float dx = Settings.RotationAdjustmentSensitivity * (180.0f / Mathf.PI) * touch.deltaPosition.x / Screen.width;
  225. DebugOutput($"dx = {dx}");
  226. if (selectedObjectEntry != null && selectedObjectEntry.Instance != null)
  227. {
  228. var euler = selectedObjectEntry.Instance.transform.localEulerAngles;
  229. selectedObjectEntry.Rotation = euler.y + dx;
  230. selectedObjectEntry.Instance.transform.localEulerAngles = new Vector3(euler.x, selectedObjectEntry.Rotation, euler.z);
  231. }
  232. }
  233. return;
  234. }
  235. else if (state.AppState == AppState.HeightMode)
  236. {
  237. if (touch.phase == TouchPhase.Moved || touch.phase == TouchPhase.Stationary)
  238. {
  239. float dy = Settings.HeightAdjustmentSensitivity * (180.0f / Mathf.PI) * touch.deltaPosition.y / Screen.height;
  240. DebugOutput($"dy = {dy}");
  241. if (selectedObjectEntry != null && selectedObjectEntry.Instance != null)
  242. {
  243. var Location = selectedObjectEntry.Instance.GetComponent<PlaceAtLocation>().Location.Clone();
  244. Location.Altitude += dy;
  245. selectedObjectEntry.Location.Altitude += dy;
  246. selectedObjectEntry.Instance.GetComponent<PlaceAtLocation>().Location = Location;
  247. }
  248. }
  249. return;
  250. }
  251. else if (touch.phase == TouchPhase.Began)
  252. {
  253. if (UnityEngine.EventSystems.EventSystem.current.IsPointerOverGameObject(0)) return;
  254. OnTouchOrClick(touch.position);
  255. }
  256. }
  257. if (Application.isEditor && Input.GetMouseButtonDown(0))
  258. {
  259. OnTouchOrClick(Input.mousePosition);
  260. }
  261. }
  262. private void OnTouchOrClick(Vector2 p)
  263. {
  264. float x = p.x / Screen.width;
  265. float y = p.y / Screen.height;
  266. if (x < RaycastMargins.Left || x > (1 - RaycastMargins.Right)) return;
  267. if (y < RaycastMargins.Bottom || y > (1 - RaycastMargins.Top)) return;
  268. var camera = Application.isEditor ? Camera.main : ARLocationManager.Instance.MainCamera;
  269. var ray = camera.ScreenPointToRay(p);
  270. if (state.AppState == AppState.PlacementMode)
  271. {
  272. RaycastHit hit;
  273. if (Physics.Raycast(ray, out hit))
  274. {
  275. GameObject go = null;
  276. WorldBuilder.Entry entry = null;
  277. var o = hit.collider.transform;
  278. while (o.parent)
  279. {
  280. Debug.Log(o.name);
  281. entry = worldBuilder.GetWorld().Entries.Find(e => e.Instance == o.gameObject);
  282. if (entry != null)
  283. {
  284. go = entry.Instance;
  285. break;
  286. }
  287. o = o.parent;
  288. }
  289. if (go != null && entry != null)
  290. {
  291. selectedObjectEntry = entry;
  292. SetObjectSelectedUIVisible(true);
  293. SetMoveMode();
  294. return;
  295. }
  296. }
  297. }
  298. float enter;
  299. if (RaycastGround(ray, out enter))
  300. {
  301. var point = ray.GetPoint(enter);
  302. switch (state.AppState)
  303. {
  304. case AppState.PlacementMode:
  305. OnPlacementRaycast(point);
  306. break;
  307. case AppState.MoveMode:
  308. OnMoveModeRaycast(point);
  309. break;
  310. }
  311. }
  312. }
  313. private bool RaycastGround(Ray ray, out float t)
  314. {
  315. var arRaycastManager = FindObjectOfType<ARRaycastManager>();
  316. if (Application.isEditor || arRaycastManager == null)
  317. {
  318. var camera = Application.isEditor ? Camera.main : ARLocationManager.Instance.MainCamera;
  319. var plane = new Plane(new Vector3(0, 1, 0), camera.transform.position - new Vector3(0, 1.4f, 0));
  320. return plane.Raycast(ray, out t);
  321. }
  322. else
  323. {
  324. List<ARRaycastHit> hits = new List<ARRaycastHit>();
  325. arRaycastManager.Raycast(ray, hits, trackableTypes: UnityEngine.XR.ARSubsystems.TrackableType.PlaneWithinInfinity);
  326. if (hits.Count > 0)
  327. {
  328. t = hits[0].distance;
  329. return true;
  330. }
  331. else
  332. {
  333. var camera = Application.isEditor ? Camera.main : ARLocationManager.Instance.MainCamera;
  334. var plane = new Plane(new Vector3(0, 1, 0), camera.transform.position - new Vector3(0, 1.4f, 0));
  335. return plane.Raycast(ray, out t);
  336. }
  337. }
  338. }
  339. private void OnMoveModeRaycast(Vector3 point)
  340. {
  341. worldBuilder.MoveEntry(selectedObjectEntry, point);
  342. }
  343. private void OnPlacementRaycast(Vector3 v)
  344. {
  345. Debug.Log("ok!");
  346. worldBuilder.AddEntry(state.CurrentMeshId, v);
  347. if (Settings.SaveToServer)
  348. {
  349. Debug.Log("ok2!");
  350. StartCoroutine(SaveWorldToServer());
  351. }
  352. }
  353. }
  354. }