CompanyController.cs 10.0 KB

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