CompanyController.cs 9.6 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 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 GameObject UsersView;
  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. Location.LocationsRequest(0);
  139. }
  140. float sizex = 0;
  141. float sizey = 0;
  142. public void ChangeLocation()
  143. {
  144. Debug.Log("PlayerController locations count " + locations.Count + " active " + active_location);
  145. if (active_location >= 0)
  146. locations[locations_index[active_location]].LocationActive(false, LocationZones);
  147. active_location = DropdownLocation.value;
  148. var l = locations[locations_index[active_location]];
  149. l.LocationActive(true, LocationZones);
  150. if (!l.texture_url.Equals("")) StartCoroutine(SendingFormController.LoadImage(l.texture_url, l.plane, l.plane.transform.position, l.plane.transform.localScale));
  151. editor.Name.text = l.name;
  152. editor.Image.text = l.texture_url;
  153. editor.EditLocation = l;
  154. if (l.plane.transform.localScale.x != sizex)
  155. {
  156. editor.SizeX.text = $"{l.plane.transform.localScale.x}";
  157. sizex = l.plane.transform.localScale.x;
  158. }
  159. if (l.plane.transform.localScale.z != sizey)
  160. {
  161. editor.SizeY.text = $"{l.plane.transform.localScale.z}";
  162. sizey = l.plane.transform.localScale.z;
  163. }
  164. //l.plane.GetComponent<TouchScript>().Resize = ModeController.editor;
  165. player.StopProgress();
  166. }
  167. public void LocationContents(Location location)
  168. {
  169. if (load_location_elements.ContainsKey(location.id))
  170. {
  171. if (load_location_elements[location.id].walls)
  172. {
  173. load_location_elements[location.id].walls = false;
  174. var walls = location.location.transform.GetChild(1);
  175. foreach (var w in location.walls)
  176. {
  177. var wall = Cursor.AddWall(this,
  178. new Vector3(w.start_width, WallCreate.WallHeight / 2, w.start_height),
  179. new Vector3(Mathf.Abs(w.end_width), WallCreate.WallHeight, Mathf.Abs(w.end_height)));
  180. wall.transform.SetParent(walls.transform);
  181. }
  182. }
  183. if (!editor.Beacons.ContainsKey(location.id))
  184. editor.Beacons[location.id] = new Dictionary<uint, Beacon>();
  185. if (load_location_elements[location.id].beacons)
  186. {
  187. load_location_elements[location.id].beacons = false;
  188. foreach (var b in location.beacons.Values)
  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. foreach (var z in location.zones)
  198. z.go = Cursor.AddZone(Dialog, this, ZonesScroll, z);
  199. }
  200. }
  201. }
  202. public Location GetActiveLocation()
  203. {
  204. if(active_location >= 0)
  205. return locations[locations_index[active_location]];
  206. else
  207. return null;
  208. }
  209. public Location GetLocation(uint id)
  210. {
  211. if (locations.Count > 0)
  212. if (locations.ContainsKey(id))
  213. return locations[id];
  214. return null;
  215. }
  216. public void ErrorDialogClose()
  217. {
  218. Dialog.gameObject.SetActive(false);
  219. }
  220. bool beacons_view;
  221. public void BeaconsOnOff()
  222. {
  223. if (beacons_view != ToggleBeacons.isOn)
  224. {
  225. foreach (var b in locations[locations_index[active_location]].beacons.Values)
  226. b.beacon.SetActive(ToggleBeacons.isOn);
  227. beacons_view = ToggleBeacons.isOn;
  228. }
  229. }
  230. bool zones_view;
  231. public void ZonesOnOff()
  232. {
  233. if (zones_view != ToggleZones.isOn)
  234. {
  235. foreach (var z in locations[locations_index[active_location]].zones)
  236. z.go.SetActive(ToggleZones.isOn);
  237. zones_view = ToggleZones.isOn;
  238. }
  239. }
  240. void OnGUI()
  241. {
  242. //if (Input.GetKeyDown(KeyCode.BackQuote))
  243. DebugHelper.DrawConsole();
  244. }
  245. }