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