CompanyController.cs 10.0 KB

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