PlayerController.cs 16 KB

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