PlayerController.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  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 (users_load)
  124. {
  125. users_load = false;
  126. foreach (var u in users.OrderBy(u => u.Value.id))
  127. {
  128. //u.Value.WorkerMarker(u.Value, Color.green, WorkersList, BroadcastStart);
  129. //u.Value.toggle_user.transform.SetParent(WorkersList.transform);
  130. u.Value.SetParam(WorkersList, BroadcastStart);
  131. if (DropdownMode.value == 0) u.Value.toggle_user.SetActive(u.Value.online);
  132. else u.Value.toggle_user.SetActive(true);
  133. }
  134. }
  135. //LoadMaps(DropdownLocation, Locations);
  136. //if (locations.Any() && AuthorizationController.success)
  137. //{
  138. // active_location = DropdownLocation.value;
  139. // LoadLocation(locations[active_location]);
  140. //}
  141. }
  142. /// <summary>
  143. /// Смена положения маркера
  144. /// </summary>
  145. /// <param name="step">Шаг до нового положения</param>
  146. /// <param name="start_pos">Начальное положение</param>
  147. /// <param name="end_pos">Финальное положение</param>
  148. /// <param name="user">Маркер сотрудника</param>
  149. /// <param name="w">Данные из БД</param>
  150. /// <param name="progress">Номер записи из БД</param>
  151. /// <returns></returns>
  152. void Position(float step, Vector3 start_pos, Vector3 end_pos, User user, Structure w, string progress)
  153. {
  154. Debug.LogWarning($"move user {user.id} {end_pos} {w.ts} {w.zone_id}");
  155. if (user.marker.activeSelf == true)
  156. {
  157. var x_position = Mathf.Lerp(start_pos.x, end_pos.x, step);
  158. var y_position = Mathf.Lerp(start_pos.z, end_pos.z, step);
  159. //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}");
  160. var new_position = new Vector3(x_position, 0.5f, y_position);
  161. if (user.marker.transform.position != new_position)
  162. {
  163. user.marker.transform.position = new Vector3(x_position, 0.5f, y_position);
  164. user.marker_line.SetPosition(user.marker_line.positionCount++, new Vector3(x_position, 0, y_position));
  165. if (ToggleDisappearance.isOn) user.marker_line = LineDisappearance(user.marker_line);
  166. }
  167. 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}";
  168. user.toggle.transform.GetChild(1).gameObject.GetComponent<Text>().text = $"{w.acc_id} {w.ts:HH:mm:ss}{progress}";
  169. }
  170. }
  171. /// <summary>
  172. /// Запуск отрисовки
  173. /// </summary>
  174. public void ButtonStart()
  175. {
  176. if (active_mode == Mode.Stop)
  177. foreach (var u in users)
  178. u.Value.marker_line.positionCount = 0;
  179. var button_text = StartStopButton.transform.GetChild(0);
  180. switch (DropdownMode.value)
  181. {
  182. case 0:
  183. //real_time = !real_time;
  184. if (active_mode == Mode.Stop/*real_time*/)
  185. {
  186. active_mode = Mode.RealTime;
  187. button_text.GetComponent<Text>().text = "Остановить";
  188. }
  189. else
  190. {
  191. active_mode = Mode.Stop;
  192. button_text.GetComponent<Text>().text = "Отобразить";
  193. }
  194. break;
  195. case 1:
  196. if (active_mode == Mode.Stop/*real_time*/) active_mode = Mode.History;
  197. else active_mode = Mode.Stop;
  198. if (active_mode == Mode.History/*history_start*/)
  199. {
  200. var date = Date.Date;
  201. var time_start = date; //new DateTime(dates.ElementAt(DropdownData.value).Ticks);
  202. time_start = time_start.AddHours(int.Parse(StartHour.GetComponent<InputField>().text));
  203. time_start = time_start.AddMinutes(int.Parse(StartMin.GetComponent<InputField>().text));
  204. time_start = time_start.AddSeconds(int.Parse(StartSec.GetComponent<InputField>().text));
  205. Debug.Log(time_start);
  206. var time_end = date; //new DateTime(dates.ElementAt(DropdownData.value).Ticks);
  207. time_end = time_end.AddHours(int.Parse(EndHour.GetComponent<InputField>().text));
  208. time_end = time_end.AddMinutes(int.Parse(EndMin.GetComponent<InputField>().text));
  209. time_end = time_end.AddSeconds(int.Parse(EndSec.GetComponent<InputField>().text));
  210. foreach (var u in users)
  211. {
  212. if (u.Value.toggle.isOn)
  213. {
  214. client.CoordinatesRequest(time_start.Ticks, time_end.Ticks, 1, company.locations_index[company.active_location], u.Value.id);
  215. end_send[u.Value.id] = false;
  216. }
  217. }
  218. button_text.GetComponent<Text>().text = "Остановить";
  219. }
  220. else
  221. {
  222. StopProgress();
  223. }
  224. break;
  225. }
  226. }
  227. public void StopProgress()
  228. {
  229. StartStopButton.transform.GetChild(0).GetComponent<Text>().text = "Отобразить";
  230. active_mode = Mode.Stop;
  231. foreach (var u in users)
  232. {
  233. end_send[u.Value.id] = false;
  234. moving.Remove(u.Value.id);
  235. }
  236. }
  237. /// <summary>
  238. /// Затухание траектории
  239. /// </summary>
  240. /// <param name="lineRenderer">Траектория</param>
  241. /// <returns></returns>
  242. LineRenderer LineDisappearance(LineRenderer lineRenderer)
  243. {
  244. //LineRenderer lineRenderer = GetComponent<LineRenderer>();
  245. int newPositionCount = lineRenderer.positionCount - 1;
  246. Vector3[] newPositions = new Vector3[newPositionCount];
  247. for (int i = 0; i < newPositionCount; i++)
  248. {
  249. newPositions[i] = lineRenderer.GetPosition(i + 1);
  250. }
  251. lineRenderer.SetPositions(newPositions);
  252. return lineRenderer;
  253. }
  254. /// <summary>
  255. /// Смена положения по интервалу
  256. /// Шаги для плавного перемещения
  257. /// </summary>
  258. /// <param name="u">Данные о маркере</param>
  259. void StartingAccPositiong(User u)
  260. {
  261. int i = 0;
  262. float step = 0.1f;
  263. if (moving.ContainsKey(u.id))
  264. {
  265. if (moving[u.id].index < Workers[u.id].Count) i = moving[u.id].index;
  266. if (moving[u.id].step < 1.1f) step = moving[u.id].step;
  267. }
  268. else moving[u.id] = new MarkerMoving();
  269. var worker = Workers[u.id];
  270. Debug.LogWarning($"worker coord count {u.id} {worker.Count}");
  271. if (active_mode == Mode.RealTime) worker = worker.OrderBy(wr => wr.ts).ToList();
  272. if (worker.Any())
  273. {
  274. var w = worker[i];
  275. locationZones.UserPosition(u, w);
  276. var start_pos = u.marker.transform.position;
  277. if (i != 0) start_pos = new Vector3(worker[i - 1].coord_x, 0.5f, worker[i - 1].coord_y);
  278. if (active_mode == Mode.History && i == 0) start_pos = new Vector3(w.coord_x, 0.5f, w.coord_y);
  279. var end_pos = new Vector3(w.coord_x, 0.5f, w.coord_y);
  280. var progress = "";
  281. if (active_mode == Mode.History) progress = $"\n{i + 1} из {Workers[u.id].Count}";
  282. //if (starting)
  283. Position(step, start_pos, end_pos, u, w, progress);
  284. // StartingAccPositiong(m.value, time_step);
  285. }
  286. step += INTERPOLATION_PERIOD; // 0.1f;
  287. moving[u.id].step = step;
  288. if (Math.Round(step, 1) > 1)
  289. {
  290. Debug.Log($"step:{step}");
  291. i++;
  292. moving[u.id].index = i;
  293. }
  294. if (active_mode == Mode.RealTime)
  295. if (Math.Round(step, 1) > 1)
  296. {
  297. Debug.Log($"Mode.RealTime step:{step}");
  298. Workers.Remove(u.id);
  299. Debug.LogWarning($"clear coord user {u.id}");
  300. }
  301. if (active_mode == Mode.History)
  302. if (i == Workers[u.id].Count)
  303. {
  304. //StopProgress();
  305. Workers.Remove(u.id);
  306. }
  307. }
  308. /// <summary>
  309. /// Отображение маяков
  310. /// </summary>
  311. /// <param name="b"></param>
  312. public static void AddBeacon(Beacon b)
  313. {
  314. var beacon = Instantiate(Resources.Load("GameObjects/Beacon", typeof(GameObject))) as GameObject;
  315. beacon.transform.position = new Vector3(b.x, 0.5f, b.y);
  316. beacon.name = $"BeaconButton_{b.id}";
  317. beacon.GetComponent<BeaconController>().info = false;
  318. beacon.transform.SetParent(GameObject.Find("Beacons").transform);
  319. beacon.transform.GetChild(0).GetChild(0).GetChild(0).GetComponent<Text>().text = $"{b.id}\nuuid={b.uuid}\nmajor={b.major}\nminor={b.minor}";
  320. b.beacon = beacon;
  321. }
  322. void OnGUI()
  323. {
  324. //if (Input.GetKeyDown(KeyCode.BackQuote))
  325. DebugHelper.DrawConsole();
  326. }
  327. /// <summary>
  328. /// Остановка отрисовки при смене режима история/онлайн
  329. /// </summary>
  330. public void СhangeMode()
  331. {
  332. StopProgress();
  333. active_mode = Mode.Stop;
  334. mode = DropdownMode.value;
  335. switch (DropdownMode.value)
  336. {
  337. case 0:
  338. DateTimePanel.SetActive(false);
  339. foreach(var u in users)
  340. u.Value.toggle_user.SetActive(u.Value.online);
  341. break;
  342. case 1:
  343. DateTimePanel.SetActive(true);
  344. foreach (var u in users)
  345. u.Value.toggle_user.SetActive(true);
  346. break;
  347. }
  348. }
  349. /// <summary>
  350. /// Смена позиции маркера
  351. /// </summary>
  352. public void MarkerMove()
  353. {
  354. if(users != null)
  355. foreach (var u in users)
  356. {
  357. if (u.Value != null)
  358. {
  359. if (u.Value.marker.activeSelf != u.Value.toggle.isOn) u.Value.marker.SetActive(u.Value.toggle.isOn);
  360. if (active_mode == Mode.RealTime && u.Value.toggle.isOn && !Workers.ContainsKey(u.Value.id))
  361. {
  362. Debug.LogWarning($"send coord user {u.Value.id}");
  363. var index = company.locations_index[company.active_location];
  364. client.CoordinatesRequest(0, 0, 1, company.locations[index].id, u.Value.id);
  365. u.Value.toggle_user.SetActive(u.Value.online);
  366. }
  367. if (u.Value.toggle.isOn && Workers.ContainsKey(u.Value.id) && active_mode != Mode.Stop/*&& starting*/ /*&& end_send[m.value.acc_id]*/)
  368. {
  369. StartingAccPositiong(u.Value);
  370. if (active_mode == Mode.History && !Workers.Any())
  371. {
  372. //var temp = Workers.Values.Max(v => v.Count);
  373. //if (m.i == temp - 1 && moving[moving.Keys.Last()].step >= 1f)
  374. //{
  375. StopProgress();
  376. //}
  377. //if (active_mode == Mode.RealTime && moving[moving.Keys.Last()].index == 1)
  378. //{
  379. // starting = false;
  380. //}
  381. }
  382. }
  383. }
  384. }
  385. }
  386. /// <summary>
  387. /// Загрузка объектов локации
  388. /// </summary>
  389. /// <param name="location"></param>
  390. //public void LoadLocation(Location location)
  391. //{
  392. // print("PlayerController.LoadLocation");
  393. // if (load_location_elements.ContainsKey(location.id))
  394. // {
  395. // location.Load();
  396. // }
  397. //}
  398. public void BroadcastStart(uint id)
  399. {
  400. if (user_broadcast.HasValue)
  401. {
  402. client.ImageStreamStopSend(user_broadcast.Value);
  403. var camera_button = users[user_broadcast.Value].toggle_user.transform.GetChild(1).GetComponent<Button>();
  404. camera_button.GetComponent<Image>().color = Color.white;
  405. broadcast = false;
  406. }
  407. if (user_broadcast != id)
  408. {
  409. client.ImageStreamStartSend(id);
  410. user_broadcast = id;
  411. var name = UserInfo.transform.GetChild(1).GetChild(0).GetComponent<Text>();
  412. name.text = $"{id} {users[id].name}";
  413. name.GetComponent<RectTransform>().sizeDelta = new Vector2(name.preferredWidth, 30);
  414. var camera_button = users[id].toggle_user.transform.GetChild(1).GetComponent<Button>();
  415. camera_button.GetComponent<Image>().color = Color.green;
  416. UserInfo.SetActive(false);
  417. broadcast = true;
  418. }
  419. else
  420. {
  421. broadcast = false;
  422. user_broadcast = null;
  423. UserInfo.SetActive(false);
  424. }
  425. }
  426. public void BroadcastStop()
  427. {
  428. if (user_broadcast.HasValue)
  429. {
  430. client.ImageStreamStopSend(user_broadcast.Value);
  431. var camera_button = users[user_broadcast.Value].toggle_user.transform.GetChild(1).GetComponent<Button>();
  432. camera_button.GetComponent<Image>().color = Color.white;
  433. }
  434. broadcast = false;
  435. user_broadcast = null;
  436. UserInfo.SetActive(false);
  437. }
  438. }