PlayerController.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. using Assets.Scripts.Models;
  2. using System;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using System.Globalization;
  6. using System.Linq;
  7. using System.Threading;
  8. using UnityEngine;
  9. using UnityEngine.SceneManagement;
  10. using UnityEngine.UI;
  11. public class PlayerController : MonoBehaviour
  12. {
  13. public static PlayerController instance;
  14. public Dictionary<uint, List<Structure>> Workers = new Dictionary<uint, List<Structure>>();
  15. public List<Structure> TestStructures = new List<Structure>();
  16. //public List<Beacon> Beacons = new List<Beacon>();
  17. public GameObject WorkersList; // scroll content
  18. public GameObject DateTimePanel;
  19. public GameObject StartHour;
  20. public GameObject StartMin;
  21. public GameObject StartSec;
  22. public GameObject EndHour;
  23. public GameObject EndMin;
  24. public GameObject EndSec;
  25. public GameObject StartStopButton;
  26. public LocationZones locationZones;
  27. //public GameObject ErrorDialog;
  28. public Dropdown DropdownMode;
  29. public Toggle ToggleLine;
  30. public Toggle ToggleDisappearance;
  31. public GameObject DatePicker;
  32. Camera camera;
  33. public Toggle projection;
  34. //public GameObject LocationGameObject;
  35. public GameObject UserInfo;
  36. public GameObject Editor;
  37. public uint? user_broadcast = null;
  38. public bool broadcast = false;
  39. public Dictionary<uint, User> users;
  40. public enum Mode { RealTime = 0, History = 1, Stop = 2 };
  41. public static Mode active_mode = Mode.Stop;
  42. int mode = 0;
  43. //public GameObject Time;
  44. Client client;
  45. CompanyController company;
  46. EditorController editor;
  47. DateTimePicker Date;
  48. public Dictionary<uint, bool> end_send = new Dictionary<uint, bool>(); // флаги завершения загрузки
  49. Dictionary<uint, MarkerMoving> moving = new Dictionary<uint, MarkerMoving>(); // флаги начала движения
  50. const float INTERPOLATION_PERIOD = 0.1f;
  51. //float time_realtime = 0;
  52. float time_draw = 0;
  53. //public List<User> users = new List<User>();
  54. public bool users_load = false;
  55. public bool beacons_load = false;
  56. //List<bool> StartStop = new List<bool>();
  57. private void Awake()
  58. {
  59. instance = this;
  60. }
  61. // Start is called before the first frame update
  62. void Start()
  63. {
  64. DebugHelper.ActivateConsole();
  65. client = Client.instance;
  66. company = CompanyController.instance;
  67. editor = Editor.GetComponent<EditorController>();
  68. camera = Camera.main;
  69. users = new Dictionary<uint, User>();
  70. Date = DatePicker.GetComponent<DateTimePicker>();
  71. //locations.Add(new Location { id = 1, name = "1 Братск" });
  72. //locations.Add(new Location { id = 22, name = "22 Офис Ижевск" });
  73. //locations.Add(new Location { id = 25, name = "25" });
  74. //locations.Add(new Location { id = 26, name = "26 Братское (вагрант)" });
  75. //foreach (var l in locations)
  76. // DropdownLocation.options.Add(new Dropdown.OptionData(l.name));
  77. //for (int i = 0; i < Locations.transform.childCount; i++)
  78. // maps.Add(Locations.transform.GetChild(i).gameObject);
  79. //Client.LocationsRequest();
  80. var broadcast_stop = UserInfo.transform.GetChild(1).GetChild(1).GetComponent<Button>();
  81. broadcast_stop.onClick.AddListener(() => BroadcastStop());
  82. }
  83. // Update is called once per frame
  84. void Update()
  85. {
  86. if (DropdownMode.value != mode)
  87. СhangeMode();
  88. time_draw += Time.deltaTime;
  89. if (time_draw >= INTERPOLATION_PERIOD)
  90. {
  91. MarkerMove();
  92. time_draw -= INTERPOLATION_PERIOD;
  93. }
  94. //if (active_mode == Mode.RealTime && !starting)
  95. //{
  96. // foreach (var m in markers)
  97. // {
  98. // if (m.toggle.isOn)
  99. // {
  100. // Debug.LogWarning($"send {m.acc_id}");
  101. // var index = company.locations_index[company.active_location];
  102. // client.CoordinatesRequest(0, 0, 1, company.locations[index].id, m.acc_id);
  103. // //end_send[m.acc_id] = false;
  104. // }
  105. // }
  106. // starting = true;
  107. //}\\\\\
  108. if (ToggleLine.isOn)
  109. {
  110. foreach (var u in users)
  111. u.Value.marker_line.gameObject.SetActive(true);
  112. ToggleDisappearance.interactable = true;
  113. }
  114. else
  115. {
  116. foreach (var u in users)
  117. {
  118. u.Value.marker_line.gameObject.SetActive(false);
  119. u.Value.marker_line.positionCount = 0;
  120. }
  121. ToggleDisappearance.interactable = false;
  122. }
  123. if (projection.isOn)
  124. {
  125. camera.orthographic = true;
  126. }
  127. else
  128. {
  129. camera.orthographic = false;
  130. }
  131. if (users_load)
  132. {
  133. users_load = false;
  134. foreach (var u in users.OrderBy(u => u.Value.id))
  135. {
  136. //u.Value.WorkerMarker(u.Value, Color.green, WorkersList, BroadcastStart);
  137. //u.Value.toggle_user.transform.SetParent(WorkersList.transform);
  138. u.Value.SetParam(WorkersList, BroadcastStart);
  139. if (DropdownMode.value == 0) u.Value.toggle_user.SetActive(u.Value.online);
  140. else u.Value.toggle_user.SetActive(true);
  141. }
  142. }
  143. //LoadMaps(DropdownLocation, Locations);
  144. //if (locations.Any() && AuthorizationController.success)
  145. //{
  146. // active_location = DropdownLocation.value;
  147. // LoadLocation(locations[active_location]);
  148. //}
  149. }
  150. /// <summary>
  151. /// Смена положения маркера
  152. /// </summary>
  153. /// <param name="step">Шаг до нового положения</param>
  154. /// <param name="start_pos">Начальное положение</param>
  155. /// <param name="end_pos">Финальное положение</param>
  156. /// <param name="user">Маркер сотрудника</param>
  157. /// <param name="w">Данные из БД</param>
  158. /// <param name="progress">Номер записи из БД</param>
  159. /// <returns></returns>
  160. void Position(float step, Vector3 start_pos, Vector3 end_pos, User user, Structure w, string progress)
  161. {
  162. Debug.LogWarning($"move user {user.id} {end_pos} {w.ts} {w.zone_id}");
  163. if (user.marker.activeSelf == true)
  164. {
  165. var x_position = Mathf.Lerp(start_pos.x, end_pos.x, step);
  166. var y_position = Mathf.Lerp(start_pos.z, end_pos.z, step);
  167. //Debug.Log($"marker name={worker_marker.name} time={pause} step={step} sec x={x_position} y={y_position} x0={start_pos.x} y0={start_pos.z} x1={end_pos.x} y1={end_pos.z}");
  168. var new_position = new Vector3(x_position, 0.5f, y_position);
  169. if (user.marker.transform.position != new_position)
  170. {
  171. user.marker.transform.position = new Vector3(x_position, 0.5f, y_position);
  172. user.marker_line.SetPosition(user.marker_line.positionCount++, new Vector3(x_position, 0, y_position));
  173. if (ToggleDisappearance.isOn) user.marker_line = LineDisappearance(user.marker_line);
  174. }
  175. user.marker.transform.GetChild(0).transform.GetChild(0).transform.GetChild(0).GetComponent<Text>().text = $"{w.acc_id} x={end_pos.x} y={end_pos.z}";
  176. user.toggle.transform.GetChild(1).gameObject.GetComponent<Text>().text = $"{w.acc_id} {w.ts:HH:mm:ss}{progress}";
  177. }
  178. }
  179. /// <summary>
  180. /// Запуск отрисовки
  181. /// </summary>
  182. public void ButtonStart()
  183. {
  184. if (active_mode == Mode.Stop)
  185. foreach (var u in users)
  186. u.Value.marker_line.positionCount = 0;
  187. var button_text = StartStopButton.transform.GetChild(0);
  188. switch (DropdownMode.value)
  189. {
  190. case 0:
  191. //real_time = !real_time;
  192. if (active_mode == Mode.Stop/*real_time*/)
  193. {
  194. active_mode = Mode.RealTime;
  195. button_text.GetComponent<Text>().text = "Остановить";
  196. }
  197. else
  198. {
  199. active_mode = Mode.Stop;
  200. button_text.GetComponent<Text>().text = "Отобразить";
  201. }
  202. break;
  203. case 1:
  204. if (active_mode == Mode.Stop/*real_time*/) active_mode = Mode.History;
  205. else active_mode = Mode.Stop;
  206. if (active_mode == Mode.History/*history_start*/)
  207. {
  208. var date = Date.Date;
  209. var time_start = date; //new DateTime(dates.ElementAt(DropdownData.value).Ticks);
  210. time_start = time_start.AddHours(int.Parse(StartHour.GetComponent<InputField>().text));
  211. time_start = time_start.AddMinutes(int.Parse(StartMin.GetComponent<InputField>().text));
  212. time_start = time_start.AddSeconds(int.Parse(StartSec.GetComponent<InputField>().text));
  213. Debug.Log(time_start);
  214. var time_end = date; //new DateTime(dates.ElementAt(DropdownData.value).Ticks);
  215. time_end = time_end.AddHours(int.Parse(EndHour.GetComponent<InputField>().text));
  216. time_end = time_end.AddMinutes(int.Parse(EndMin.GetComponent<InputField>().text));
  217. time_end = time_end.AddSeconds(int.Parse(EndSec.GetComponent<InputField>().text));
  218. foreach (var u in users)
  219. {
  220. if (u.Value.toggle.isOn)
  221. {
  222. client.CoordinatesRequest(time_start.Ticks, time_end.Ticks, 1, company.locations_index[company.active_location], u.Value.id);
  223. end_send[u.Value.id] = false;
  224. }
  225. }
  226. button_text.GetComponent<Text>().text = "Остановить";
  227. }
  228. else
  229. {
  230. StopProgress();
  231. }
  232. break;
  233. }
  234. }
  235. public void StopProgress()
  236. {
  237. StartStopButton.transform.GetChild(0).GetComponent<Text>().text = "Отобразить";
  238. active_mode = Mode.Stop;
  239. foreach (var u in users)
  240. {
  241. end_send[u.Value.id] = false;
  242. moving.Remove(u.Value.id);
  243. }
  244. }
  245. /// <summary>
  246. /// Затухание траектории
  247. /// </summary>
  248. /// <param name="lineRenderer">Траектория</param>
  249. /// <returns></returns>
  250. LineRenderer LineDisappearance(LineRenderer lineRenderer)
  251. {
  252. //LineRenderer lineRenderer = GetComponent<LineRenderer>();
  253. int newPositionCount = lineRenderer.positionCount - 1;
  254. Vector3[] newPositions = new Vector3[newPositionCount];
  255. for (int i = 0; i < newPositionCount; i++)
  256. {
  257. newPositions[i] = lineRenderer.GetPosition(i + 1);
  258. }
  259. lineRenderer.SetPositions(newPositions);
  260. return lineRenderer;
  261. }
  262. /// <summary>
  263. /// Смена положения по интервалу
  264. /// Шаги для плавного перемещения
  265. /// </summary>
  266. /// <param name="u">Данные о маркере</param>
  267. void StartingAccPositiong(User u)
  268. {
  269. int i = 0;
  270. float step = 0.1f;
  271. if (moving.ContainsKey(u.id))
  272. {
  273. if (moving[u.id].index < Workers[u.id].Count) i = moving[u.id].index;
  274. if (moving[u.id].step < 1.1f) step = moving[u.id].step;
  275. }
  276. else moving[u.id] = new MarkerMoving();
  277. var worker = Workers[u.id];
  278. Debug.LogWarning($"worker coord count {u.id} {worker.Count}");
  279. if (active_mode == Mode.RealTime) worker = worker.OrderBy(wr => wr.ts).ToList();
  280. if (worker.Any())
  281. {
  282. var w = worker[i];
  283. locationZones.UserPosition(u, w);
  284. var start_pos = u.marker.transform.position;
  285. if (i != 0) start_pos = new Vector3(worker[i - 1].coord_x, 0.5f, worker[i - 1].coord_y);
  286. if (active_mode == Mode.History && i == 0) start_pos = new Vector3(w.coord_x, 0.5f, w.coord_y);
  287. var end_pos = new Vector3(w.coord_x, 0.5f, w.coord_y);
  288. var progress = "";
  289. if (active_mode == Mode.History) progress = $"\n{i + 1} из {Workers[u.id].Count}";
  290. //if (starting)
  291. Position(step, start_pos, end_pos, u, w, progress);
  292. // StartingAccPositiong(m.value, time_step);
  293. }
  294. step += INTERPOLATION_PERIOD; // 0.1f;
  295. moving[u.id].step = step;
  296. if (Math.Round(step, 1) > 1)
  297. {
  298. Debug.Log($"step:{step}");
  299. i++;
  300. moving[u.id].index = i;
  301. }
  302. if (active_mode == Mode.RealTime)
  303. if (Math.Round(step, 1) > 1)
  304. {
  305. Debug.Log($"Mode.RealTime step:{step}");
  306. Workers.Remove(u.id);
  307. Debug.LogWarning($"clear coord user {u.id}");
  308. }
  309. if (active_mode == Mode.History)
  310. if (i == Workers[u.id].Count)
  311. {
  312. //StopProgress();
  313. Workers.Remove(u.id);
  314. }
  315. }
  316. /// <summary>
  317. /// Отображение маяков
  318. /// </summary>
  319. /// <param name="b"></param>
  320. public static void AddBeacon(Beacon b)
  321. {
  322. var beacon = Instantiate(Resources.Load("GameObjects/Beacon", typeof(GameObject))) as GameObject;
  323. beacon.transform.position = new Vector3(b.x, 0.5f, b.y);
  324. beacon.name = $"BeaconButton_{b.id}";
  325. beacon.GetComponent<BeaconController>().info = false;
  326. beacon.transform.SetParent(GameObject.Find("Beacons").transform);
  327. beacon.transform.GetChild(0).GetChild(0).GetChild(0).GetComponent<Text>().text = $"{b.id}\nuuid={b.uuid}\nmajor={b.major}\nminor={b.minor}";
  328. b.beacon = beacon;
  329. }
  330. void OnGUI()
  331. {
  332. //if (Input.GetKeyDown(KeyCode.BackQuote))
  333. DebugHelper.DrawConsole();
  334. }
  335. /// <summary>
  336. /// Остановка отрисовки при смене режима история/онлайн
  337. /// </summary>
  338. public void СhangeMode()
  339. {
  340. StopProgress();
  341. active_mode = Mode.Stop;
  342. mode = DropdownMode.value;
  343. switch (DropdownMode.value)
  344. {
  345. case 0:
  346. DateTimePanel.SetActive(false);
  347. foreach(var u in users)
  348. u.Value.toggle_user.SetActive(u.Value.online);
  349. break;
  350. case 1:
  351. DateTimePanel.SetActive(true);
  352. foreach (var u in users)
  353. u.Value.toggle_user.SetActive(true);
  354. break;
  355. }
  356. }
  357. /// <summary>
  358. /// Смена позиции маркера
  359. /// </summary>
  360. public void MarkerMove()
  361. {
  362. foreach (var u in users)
  363. {
  364. if (u.Value.marker.activeSelf != u.Value.toggle.isOn) u.Value.marker.SetActive(u.Value.toggle.isOn);
  365. if (active_mode == Mode.RealTime && u.Value.toggle.isOn && !Workers.ContainsKey(u.Value.id))
  366. {
  367. Debug.LogWarning($"send coord user {u.Value.id}");
  368. var index = company.locations_index[company.active_location];
  369. client.CoordinatesRequest(0, 0, 1, company.locations[index].id, u.Value.id);
  370. u.Value.toggle_user.SetActive(u.Value.online);
  371. }
  372. if (u.Value.toggle.isOn && Workers.ContainsKey(u.Value.id) && active_mode != Mode.Stop/*&& starting*/ /*&& end_send[m.value.acc_id]*/)
  373. {
  374. StartingAccPositiong(u.Value);
  375. if (active_mode == Mode.History && !Workers.Any())
  376. {
  377. //var temp = Workers.Values.Max(v => v.Count);
  378. //if (m.i == temp - 1 && moving[moving.Keys.Last()].step >= 1f)
  379. //{
  380. StopProgress();
  381. //}
  382. //if (active_mode == Mode.RealTime && moving[moving.Keys.Last()].index == 1)
  383. //{
  384. // starting = false;
  385. //}
  386. }
  387. }
  388. }
  389. }
  390. /// <summary>
  391. /// Загрузка объектов локации
  392. /// </summary>
  393. /// <param name="location"></param>
  394. //public void LoadLocation(Location location)
  395. //{
  396. // print("PlayerController.LoadLocation");
  397. // if (load_location_elements.ContainsKey(location.id))
  398. // {
  399. // location.Load();
  400. // }
  401. //}
  402. public void BroadcastStart(uint id)
  403. {
  404. if (user_broadcast.HasValue)
  405. {
  406. client.ImageStreamStopSend(user_broadcast.Value);
  407. var camera_button = users[user_broadcast.Value].toggle_user.transform.GetChild(1).GetComponent<Button>();
  408. camera_button.GetComponent<Image>().color = Color.white;
  409. broadcast = false;
  410. }
  411. if (user_broadcast != id)
  412. {
  413. client.ImageStreamStartSend(id);
  414. user_broadcast = id;
  415. var name = UserInfo.transform.GetChild(1).GetChild(0).GetComponent<Text>();
  416. name.text = $"{id} {users[id].name}";
  417. name.GetComponent<RectTransform>().sizeDelta = new Vector2(name.preferredWidth, 30);
  418. var camera_button = users[id].toggle_user.transform.GetChild(1).GetComponent<Button>();
  419. camera_button.GetComponent<Image>().color = Color.green;
  420. UserInfo.SetActive(false);
  421. broadcast = true;
  422. }
  423. else
  424. {
  425. broadcast = false;
  426. user_broadcast = null;
  427. UserInfo.SetActive(false);
  428. }
  429. }
  430. public void BroadcastStop()
  431. {
  432. if (user_broadcast.HasValue)
  433. {
  434. client.ImageStreamStopSend(user_broadcast.Value);
  435. var camera_button = users[user_broadcast.Value].toggle_user.transform.GetChild(1).GetComponent<Button>();
  436. camera_button.GetComponent<Image>().color = Color.white;
  437. }
  438. broadcast = false;
  439. user_broadcast = null;
  440. UserInfo.SetActive(false);
  441. }
  442. }