ModeController.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. company.UsersView.SetActive(true);
  61. l.plane.GetComponent<TouchScript>().Resize = false;
  62. var edit = Editor.GetComponent<EditorController>();
  63. Destroy(edit.NewLocation);
  64. edit.EditLocation = null;
  65. Player.SetActive(true);
  66. //Locations.SetActive(true);
  67. Markers.SetActive(true);
  68. //Beacons.SetActive(true);
  69. Editor.SetActive(false);
  70. EditorTools.SetActive(false);
  71. Building.SetActive(false);
  72. if (BuildingMode.activeSelf == true) BuildingMode.SetActive(false);
  73. if (GroundSettings.activeSelf == true) GroundSettings.SetActive(false);
  74. Destroy(GameObject.Find("SizeX"));
  75. Destroy(GameObject.Find("SizeY"));
  76. if (item == null)
  77. {
  78. item = maps.GetComponent<Dropdown>().options.Last();
  79. maps.GetComponent<Dropdown>().options.Remove(item);
  80. maps.GetComponent<Dropdown>().RefreshShownValue();
  81. }
  82. //for (int i = 0; i < Beacons.transform.childCount; i++)
  83. //{
  84. // Beacons.transform.GetChild(i).GetComponent<BeaconController>().mode = BeaconController.Mode.Player;
  85. // Beacons.transform.GetChild(i).GetComponent<LabelObjectScript>().enabled = true;
  86. //}
  87. WallCursor.SetActive(false);
  88. GameObject old_button = null;
  89. switch (WallCreate.mode)
  90. {
  91. case WallCreate.Mode.Cursor:
  92. old_button =EditorTools.transform.GetChild(0).gameObject;
  93. break;
  94. case WallCreate.Mode.Room:
  95. old_button = EditorTools.transform.GetChild(1).gameObject;
  96. break;
  97. case WallCreate.Mode.Wall:
  98. old_button = EditorTools.transform.GetChild(2).gameObject;
  99. break;
  100. }
  101. if (old_button != null) old_button.GetComponent<Image>().color = Color.white;
  102. //PlayerController.markers = new List<Marker>();
  103. //client.SendGetUsers((uint)PlayerController.active_company + 1);
  104. //PlayerController.Beacons = new List<Beacon>();
  105. //client.BeaconsRequest((uint)PlayerController.locations[DropdownLocation.value].id);
  106. }
  107. void EditorMode()
  108. {
  109. Player.SetActive(false);
  110. //Locations.SetActive(false);
  111. Markers.SetActive(false);
  112. //Beacons.SetActive(false);
  113. Editor.SetActive(true);
  114. EditorTools.SetActive(true);
  115. Building.SetActive(true);
  116. BuildingMode.SetActive(true);
  117. var company = Company.GetComponent<CompanyController>();
  118. var l = company.locations[company.locations_index[company.active_location]];
  119. foreach (var b in l.beacons)
  120. b.beacon.GetComponent<BeaconController>().mode = BeaconController.Mode.Editor;
  121. company.LocationZones.gameObject.SetActive(false);
  122. company.UsersView.SetActive(false);
  123. //l.plane.GetComponent<TouchScript>().Resize = false;
  124. //item = new Dropdown.OptionData("Новая локация");
  125. //maps.GetComponent<Dropdown>().options.Add(item);
  126. //for (int i = 0; i < Beacons.transform.childCount; i++)
  127. //{
  128. // Beacons.transform.GetChild(i).GetComponent<BeaconController>().info = false;
  129. // Beacons.transform.GetChild(i).GetComponent<BeaconController>().mode = BeaconController.Mode.Editor;
  130. // Beacons.transform.GetChild(i).GetComponent<LabelObjectScript>().enabled = false;
  131. //}
  132. var color = new Color();
  133. ColorUtility.TryParseHtmlString("#C8C8C8", out color);
  134. EditorTools.transform.GetChild(0).gameObject.GetComponent<Image>().color = color;
  135. if (DateTime.activeSelf == true) DateTime.SetActive(false);
  136. //foreach (var m in PlayerController.markers)
  137. //{
  138. // Destroy(m.marker.gameObject);
  139. // Destroy(m.marker_line.gameObject);
  140. // Destroy(m.toggle.gameObject);
  141. //}
  142. //PlayerController.markers.Clear();
  143. //foreach (var b in PlayerController.Beacons)
  144. //{
  145. // Destroy(b.beacon);
  146. // Destroy(b.button);
  147. //}
  148. //PlayerController.Beacons.Clear();
  149. }
  150. }