CompanyController.cs 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. public class CompanyController : MonoBehaviour
  7. {
  8. public static CompanyController instance;
  9. public Button ButtonStatus;
  10. public GameObject Player;
  11. public GameObject Editor;
  12. public Dropdown DropdownCompany;
  13. public Dropdown DropdownLocation;
  14. public Dialog Dialog;
  15. public GameObject ZonesScroll;
  16. public Toggle ToggleBeacons;
  17. public Toggle ToggleZones;
  18. public int active_company = -1;
  19. public int active_location = -1;
  20. public GameObject Locations;
  21. public Dictionary<uint, Load> load_location_elements = new Dictionary<uint, Load>(); // флаги загрузки элементов локации
  22. public bool load_location = false;
  23. public Dictionary<uint, Location> locations; // список локаций
  24. public List<uint> locations_index; // сопоставление id с dropdown
  25. //public List<Marker> markers;
  26. public LocationZones LocationZones;
  27. PlayerController player;
  28. EditorController editor;
  29. Client client;
  30. private void Awake()
  31. {
  32. instance = this;
  33. }
  34. // Start is called before the first frame update
  35. void Start()
  36. {
  37. player = Player.GetComponent<PlayerController>();
  38. editor = Editor.GetComponent<EditorController>();
  39. client = Client.instance;
  40. DropdownCompany.options.Add(new Dropdown.OptionData("Тайшет"));
  41. DropdownCompany.options.Add(new Dropdown.OptionData("Тестовая"));
  42. DropdownCompany.options.Add(new Dropdown.OptionData("Братское"));
  43. locations = new Dictionary<uint, Location>();
  44. locations_index = new List<uint>();
  45. }
  46. // Update is called once per frame
  47. void Update()
  48. {
  49. if (active_company != DropdownCompany.value && AuthorizationController.success)
  50. ChangeCompany();
  51. if (active_location != DropdownLocation.value && AuthorizationController.success && locations.Any())
  52. ChangeLocation();
  53. if (active_location >= 0 && locations_index.Any())
  54. if (AuthorizationController.success && load_location_elements.ContainsKey(locations_index[active_location]))
  55. {
  56. if (load_location_elements[locations_index[active_location]].location)
  57. {
  58. var l = locations[locations_index[active_location]];
  59. LocationContents(l);
  60. }
  61. BeaconsOnOff();
  62. ZonesOnOff();
  63. }
  64. if (load_location)
  65. {
  66. load_location = false;
  67. DropdownLocation.options.Clear();
  68. DropdownLocation.options = new List<Dropdown.OptionData>();
  69. foreach (var l in locations)
  70. {
  71. l.Value.location.transform.SetParent(Locations.transform);
  72. l.Value.location.SetActive(false);
  73. DropdownLocation.options.Add(new Dropdown.OptionData($"{l.Key} {l.Value.name}"));
  74. load_location_elements[l.Key] = new Load();
  75. load_location_elements[l.Key].location = true;
  76. l.Value.Load();
  77. }
  78. if (ModeController.editor && editor.newLocation != null)
  79. {
  80. var l = editor.newLocation;
  81. //l.location.transform.SetParent(Locations.transform);
  82. l.location.transform.SetSiblingIndex(Locations.transform.childCount - 1);
  83. l.location.SetActive(false);
  84. DropdownLocation.options.Add(new Dropdown.OptionData($"Новая локация"));
  85. locations_index.Add(l.id);
  86. locations[l.id] = l;
  87. }
  88. DropdownLocation.value = 0;
  89. DropdownLocation.RefreshShownValue();
  90. active_location = DropdownLocation.value;
  91. //active_location = -1;
  92. ChangeLocation();
  93. }
  94. if(client.connected)
  95. ButtonStatus.GetComponent<Image>().color = Color.green;
  96. else
  97. ButtonStatus.GetComponent<Image>().color = Color.red;
  98. }
  99. /// <summary>
  100. /// Удаление сотрудников из-за смены компании
  101. /// Отчистка Locations
  102. ///
  103. /// </summary>
  104. public void ChangeCompany()
  105. {
  106. foreach (var l in locations)
  107. {
  108. if (l.Value.id < (uint)int.MaxValue)
  109. {
  110. Destroy(l.Value.location);
  111. foreach (var b in l.Value.beacons)
  112. Destroy(b.panel_button);
  113. foreach (var z in l.Value.zones)
  114. {
  115. Destroy(z.buttons);
  116. LocationZones.DeleteZone(z.id);
  117. }
  118. load_location_elements.Remove(l.Value.id);
  119. }
  120. }
  121. active_company = DropdownCompany.value;
  122. Client.instance.company_id = (uint)(active_company + 1);
  123. if (player.users != null)
  124. foreach (var m in player.users)
  125. {
  126. Destroy(m.Value.marker.gameObject);
  127. Destroy(m.Value.marker_line.gameObject);
  128. Destroy(m.Value.toggle_user);
  129. }
  130. User.SendGetUsers();
  131. player.users = new Dictionary<uint, User>();
  132. Location.LocationsRequest(0);
  133. }
  134. float sizex = 0;
  135. float sizey = 0;
  136. public void ChangeLocation()
  137. {
  138. Debug.Log("PlayerController locations count " + locations.Count + " active " + active_location);
  139. if (active_location >= 0)
  140. locations[locations_index[active_location]].LocationActive(false, LocationZones);
  141. active_location = DropdownLocation.value;
  142. var l = locations[locations_index[active_location]];
  143. l.LocationActive(true, LocationZones);
  144. if (!l.texture_url.Equals("")) StartCoroutine(SendingFormController.LoadImage(l.texture_url, l.plane, l.plane.transform.position, l.plane.transform.localScale));
  145. editor.Name.text = l.name;
  146. editor.Image.text = l.texture_url;
  147. editor.EditLocation = l;
  148. if (l.plane.transform.localScale.x != sizex)
  149. {
  150. editor.SizeX.text = $"{l.plane.transform.localScale.x}";
  151. sizex = l.plane.transform.localScale.x;
  152. }
  153. if (l.plane.transform.localScale.z != sizey)
  154. {
  155. editor.SizeY.text = $"{l.plane.transform.localScale.z}";
  156. sizey = l.plane.transform.localScale.z;
  157. }
  158. l.plane.GetComponent<TouchScript>().Resize = ModeController.editor;
  159. player.StopProgress();
  160. }
  161. public void LocationContents(Location location)
  162. {
  163. if (load_location_elements.ContainsKey(location.id))
  164. {
  165. if (load_location_elements[location.id].walls)
  166. {
  167. load_location_elements[location.id].walls = false;
  168. //var walls = location.Walls ?? new GameObject();
  169. //walls.name = "Walls";
  170. //walls.transform.SetParent(location.location.transform);
  171. var walls = location.location.transform.GetChild(1);
  172. foreach (var w in location.walls)
  173. {
  174. var wall = WallCreate.AddWall(this,
  175. new Vector3(w.start_width, WallCreate.WallHeight / 2, w.start_height),
  176. new Vector3(Mathf.Abs(w.end_width), WallCreate.WallHeight, Mathf.Abs(w.end_height)));
  177. wall.transform.SetParent(walls.transform);
  178. }
  179. }
  180. if (!editor.Beacons.ContainsKey(location.id))
  181. editor.Beacons[location.id] = new List<Beacon>();
  182. if (load_location_elements[location.id].beacons)
  183. {
  184. load_location_elements[location.id].beacons = false;
  185. //var beacons = location.Beacons ?? new GameObject();
  186. //beacons.name = "Beacons";
  187. //beacons.transform.SetParent(location.location.transform);
  188. foreach (var b in location.beacons)
  189. {
  190. editor.AddBeacon(this, b);
  191. if (ModeController.editor == true) b.beacon.GetComponent<BeaconController>().mode = BeaconController.Mode.Editor;
  192. }
  193. }
  194. if (load_location_elements[location.id].zones)
  195. {
  196. load_location_elements[location.id].zones = false;
  197. //var zones = location.Zones ?? new GameObject();
  198. //zones.name = "Zones";
  199. //zones.transform.SetParent(location.location.transform);
  200. foreach (var z in location.zones)
  201. z.go = WallCreate.AddZone(Dialog, this, ZonesScroll, z);
  202. }
  203. }
  204. }
  205. public Location GetActiveLocation()
  206. {
  207. //if (locations.Count > 0 && locations_index.Count > 0 && locations_index.Contains((uint)active_location))
  208. // if (locations.ContainsKey(locations_index[active_location]))
  209. return locations[locations_index[active_location]];
  210. //return null;
  211. }
  212. public Location GetLocation(uint id)
  213. {
  214. if (locations.Count > 0)
  215. if (locations.ContainsKey(id))
  216. return locations[id];
  217. return null;
  218. }
  219. public void ErrorDialogClose()
  220. {
  221. Dialog.gameObject.SetActive(false);
  222. }
  223. bool beacons_view;
  224. public void BeaconsOnOff()
  225. {
  226. if (beacons_view != ToggleBeacons.isOn)
  227. {
  228. foreach (var b in locations[locations_index[active_location]].beacons)
  229. b.beacon.SetActive(ToggleBeacons.isOn);
  230. beacons_view = ToggleBeacons.isOn;
  231. }
  232. }
  233. bool zones_view;
  234. public void ZonesOnOff()
  235. {
  236. if (zones_view != ToggleZones.isOn)
  237. {
  238. foreach (var z in locations[locations_index[active_location]].zones)
  239. z.go.SetActive(ToggleZones.isOn);
  240. zones_view = ToggleZones.isOn;
  241. }
  242. }
  243. }