ModeController.cs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. public class ModeController : MonoBehaviour
  7. {
  8. //public enum Mode { Player, Editor};
  9. //public Mode mode = Mode.Player;
  10. public GameObject Company;
  11. public GameObject Player;
  12. public GameObject Editor;
  13. public GameObject EditorTools;
  14. public GameObject LineX;
  15. public GameObject LineY;
  16. public GameObject Markers;
  17. public GameObject WallCursor;
  18. public GameObject DropdownLocations;
  19. public GameObject Building;
  20. public GameObject BuildingMode;
  21. public GameObject GroundSettings;
  22. public GameObject DateTime;
  23. Transform maps;
  24. public static bool editor = false;
  25. Button button;
  26. Dropdown.OptionData item;
  27. // Start is called before the first frame update
  28. void Start()
  29. {
  30. button = gameObject.GetComponent<Button>();
  31. button.onClick.AddListener(() => {
  32. Switch();
  33. });
  34. if (editor) EditorMode();
  35. maps = DropdownLocations.transform;
  36. }
  37. // Update is called once per frame
  38. void Update()
  39. {
  40. }
  41. public void Switch()
  42. {
  43. editor = !editor;
  44. transform.GetChild(0).gameObject.SetActive(!editor);
  45. transform.GetChild(1).gameObject.SetActive(editor);
  46. if (editor)
  47. {
  48. Player.GetComponent<PlayerController>().StopProgress();
  49. EditorMode();
  50. }
  51. else PlayerMode();
  52. }
  53. void PlayerMode()
  54. {
  55. var company = Company.GetComponent<CompanyController>();
  56. var l = company.locations[company.locations_index[company.active_location]];
  57. foreach (var b in l.beacons)
  58. b.beacon.GetComponent<BeaconController>().mode = BeaconController.Mode.Player;
  59. company.LocationZones.gameObject.SetActive(true);
  60. l.plane.GetComponent<TouchScript>().Resize = false;
  61. var edit = Editor.GetComponent<EditorController>();
  62. Destroy(edit.NewLocation);
  63. edit.EditLocation = null;
  64. Player.SetActive(true);
  65. //Locations.SetActive(true);
  66. Markers.SetActive(true);
  67. //Beacons.SetActive(true);
  68. Editor.SetActive(false);
  69. EditorTools.SetActive(false);
  70. Building.SetActive(false);
  71. if (BuildingMode.activeSelf == true) BuildingMode.SetActive(false);
  72. if (GroundSettings.activeSelf == true) GroundSettings.SetActive(false);
  73. Destroy(GameObject.Find("SizeX"));
  74. Destroy(GameObject.Find("SizeY"));
  75. if (item == null)
  76. {
  77. item = maps.GetComponent<Dropdown>().options.Last();
  78. maps.GetComponent<Dropdown>().options.Remove(item);
  79. maps.GetComponent<Dropdown>().RefreshShownValue();
  80. }
  81. //for (int i = 0; i < Beacons.transform.childCount; i++)
  82. //{
  83. // Beacons.transform.GetChild(i).GetComponent<BeaconController>().mode = BeaconController.Mode.Player;
  84. // Beacons.transform.GetChild(i).GetComponent<LabelObjectScript>().enabled = true;
  85. //}
  86. WallCursor.SetActive(false);
  87. GameObject old_button = null;
  88. switch (WallCreate.mode)
  89. {
  90. case WallCreate.Mode.Cursor:
  91. old_button =EditorTools.transform.GetChild(0).gameObject;
  92. break;
  93. case WallCreate.Mode.Room:
  94. old_button = EditorTools.transform.GetChild(1).gameObject;
  95. break;
  96. case WallCreate.Mode.Wall:
  97. old_button = EditorTools.transform.GetChild(2).gameObject;
  98. break;
  99. }
  100. if (old_button != null) old_button.GetComponent<Image>().color = Color.white;
  101. //PlayerController.markers = new List<Marker>();
  102. //client.SendGetUsers((uint)PlayerController.active_company + 1);
  103. //PlayerController.Beacons = new List<Beacon>();
  104. //client.BeaconsRequest((uint)PlayerController.locations[DropdownLocation.value].id);
  105. }
  106. void EditorMode()
  107. {
  108. Player.SetActive(false);
  109. //Locations.SetActive(false);
  110. Markers.SetActive(false);
  111. //Beacons.SetActive(false);
  112. Editor.SetActive(true);
  113. EditorTools.SetActive(true);
  114. Building.SetActive(true);
  115. BuildingMode.SetActive(true);
  116. var company = Company.GetComponent<CompanyController>();
  117. var l = company.locations[company.locations_index[company.active_location]];
  118. foreach (var b in l.beacons)
  119. b.beacon.GetComponent<BeaconController>().mode = BeaconController.Mode.Editor;
  120. company.LocationZones.gameObject.SetActive(false);
  121. l.plane.GetComponent<TouchScript>().Resize = true;
  122. //item = new Dropdown.OptionData("Новая локация");
  123. //maps.GetComponent<Dropdown>().options.Add(item);
  124. //for (int i = 0; i < Beacons.transform.childCount; i++)
  125. //{
  126. // Beacons.transform.GetChild(i).GetComponent<BeaconController>().info = false;
  127. // Beacons.transform.GetChild(i).GetComponent<BeaconController>().mode = BeaconController.Mode.Editor;
  128. // Beacons.transform.GetChild(i).GetComponent<LabelObjectScript>().enabled = false;
  129. //}
  130. var color = new Color();
  131. ColorUtility.TryParseHtmlString("#C8C8C8", out color);
  132. EditorTools.transform.GetChild(0).gameObject.GetComponent<Image>().color = color;
  133. if (DateTime.activeSelf == true) DateTime.SetActive(false);
  134. //foreach (var m in PlayerController.markers)
  135. //{
  136. // Destroy(m.marker.gameObject);
  137. // Destroy(m.marker_line.gameObject);
  138. // Destroy(m.toggle.gameObject);
  139. //}
  140. //PlayerController.markers.Clear();
  141. //foreach (var b in PlayerController.Beacons)
  142. //{
  143. // Destroy(b.beacon);
  144. // Destroy(b.button);
  145. //}
  146. //PlayerController.Beacons.Clear();
  147. }
  148. }