123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- using Assets.Scripts.Models;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading;
- using UnityEngine;
- using UnityEngine.SceneManagement;
- using UnityEngine.UI;
- public class PlayerController : MonoBehaviour
- {
- public static PlayerController instance;
- public Dictionary<uint, List<Structure>> Workers = new Dictionary<uint, List<Structure>>();
- public List<Structure> TestStructures = new List<Structure>();
- public List<Beacon> Beacons = new List<Beacon>();
- public GameObject WorkersList; // scroll content
-
- public GameObject DateTimePanel;
- public GameObject StartHour;
- public GameObject StartMin;
- public GameObject StartSec;
- public GameObject EndHour;
- public GameObject EndMin;
- public GameObject EndSec;
- public GameObject StartStopButton;
- //public GameObject ErrorDialog;
- public Dropdown DropdownMode;
- public Toggle ToggleLine;
- public Toggle ToggleDisappearance;
- public GameObject DatePicker;
- Camera camera;
- public Toggle projection;
-
-
- //public GameObject LocationGameObject;
- public GameObject UserInfo;
- public GameObject Editor;
- public uint? user_broadcast = null;
- public bool broadcast = false;
- public List<Marker> markers;
- public enum Mode { RealTime = 0, History = 1, Stop = 2 };
- public static Mode active_mode = Mode.Stop;
- int mode = 0;
- //public GameObject Time;
- Client client;
- static EditorController editor;
- CompanyController company;
- DateTimePicker Date;
- //public List<GameObject> maps;
- static bool starting = false; // флаг остановки
- public Dictionary<uint, bool> end_send = new Dictionary<uint, bool>(); // флаги завершения загрузки
- Dictionary<uint, MarkerMoving> moving = new Dictionary<uint, MarkerMoving>(); // флаги начала движения
-
-
- float interpolationPeriod = 0.1f;
- //float time_realtime = 0;
- float time_draw = 0;
- public List<User> users = new List<User>();
- public bool users_load = false;
- public bool beacons_load = false;
-
- //List<bool> StartStop = new List<bool>();
- private void Awake()
- {
- instance = this;
- }
- // Start is called before the first frame update
- void Start()
- {
- DebugHelper.ActivateConsole();
- client = Client.instance;
- company = CompanyController.instance;
- editor = Editor.GetComponent<EditorController>();
- camera = Camera.main;
- markers = new List<Marker>();
-
- Date = DatePicker.GetComponent<DateTimePicker>();
- //locations.Add(new Location { id = 1, name = "1 Братск" });
- //locations.Add(new Location { id = 22, name = "22 Офис Ижевск" });
- //locations.Add(new Location { id = 25, name = "25" });
- //locations.Add(new Location { id = 26, name = "26 Братское (вагрант)" });
- //foreach (var l in locations)
- // DropdownLocation.options.Add(new Dropdown.OptionData(l.name));
- //for (int i = 0; i < Locations.transform.childCount; i++)
- // maps.Add(Locations.transform.GetChild(i).gameObject);
-
- //Client.LocationsRequest();
- var broadcast_stop = UserInfo.transform.GetChild(1).GetChild(1).GetComponent<Button>();
- broadcast_stop.onClick.AddListener(() => BroadcastStop());
- }
-
-
- // Update is called once per frame
- void Update()
- {
- if (DropdownMode.value != mode)
- СhangeMode();
- time_draw += Time.deltaTime;
- if (time_draw >= interpolationPeriod)
- {
- MarkerMove();
- time_draw -= interpolationPeriod;
- }
- if (active_mode == Mode.RealTime && !starting)
- {
- foreach (var m in markers)
- {
- if (m.toggle.isOn)
- {
- var index = company.locations_index[company.active_location];
- client.CoordinatesRequest(0, 0, 1, company.locations[index].id, m.acc_id);
- end_send[m.acc_id] = false;
- }
- }
- starting = true;
- }
- if (ToggleLine.isOn)
- {
- foreach (var m in markers)
- m.marker_line.gameObject.SetActive(true);
- ToggleDisappearance.interactable = true;
- }
- else
- {
- foreach (var m in markers)
- {
- m.marker_line.gameObject.SetActive(false);
- m.marker_line.positionCount = 0;
- }
- ToggleDisappearance.interactable = false;
- }
- if (projection.isOn)
- {
- camera.orthographic = true;
- }
- else
- {
- camera.orthographic = false;
- }
- if (users_load)
- {
- users_load = false;
- foreach (var u in users.OrderBy(u => u.id))
- WorkerMarker(u, Color.green);
- }
- //LoadMaps(DropdownLocation, Locations);
- //if (locations.Any() && AuthorizationController.success)
- //{
- // active_location = DropdownLocation.value;
- // LoadLocation(locations[active_location]);
- //}
- }
- /// <summary>
- /// Создание маркера для сотрудника
- /// </summary>
- /// <param name="acc_id"></param>
- void WorkerMarker(User user, Color color)
- {
- var toggle_user = Instantiate(Resources.Load("GameObjects/ToggleUser", typeof(GameObject))) as GameObject;
- toggle_user.name = $"{user.id}";
- var toggle = toggle_user.transform.GetChild(0).GetComponent<Toggle>();
- toggle.transform.GetChild(1).gameObject.GetComponent<Text>().text = $"{user.id} {user.name}";
- toggle_user.transform.SetParent(WorkersList.transform);
- toggle.isOn = false;
- var camera_button = toggle_user.transform.GetChild(1).GetComponent<Button>();
- camera_button.onClick.AddListener(() => BroadcastStart(user.id));
- var marker = Instantiate(Resources.Load("GameObjects/Capsule", typeof(GameObject))) as GameObject;
- marker.name = $"marker_{user.id}";
- marker.transform.GetChild(0).transform.GetChild(0).transform.GetChild(0).GetComponent<Text>().text = $"{user.id}";
- marker.transform.SetParent(GameObject.Find("Markers").transform);
- marker.GetComponent<Renderer>().material.color = color; // UnityEngine.Random.ColorHSV(0f, 1f, 1f, 1f, 0.5f, 1f);
- marker.GetComponent<LabelObjectScript>().UserId = user.id;
- var marker_line = Instantiate(Resources.Load("GameObjects/Line", typeof(LineRenderer))) as LineRenderer;
- marker_line.name = $"marker_line_{user.id}";
- marker_line.startColor = color;
- marker_line.endColor = Color.white;
- marker_line.material.color = color;
- marker_line.transform.SetParent(GameObject.Find("Markers").transform);
- markers.Add(new Marker { acc_id = user.id, marker = marker, toggle = toggle, marker_line = marker_line, toggle_user = toggle_user });
- }
- /// <summary>
- /// Смена положения маркера
- /// </summary>
- /// <param name="step">Шаг до нового положения</param>
- /// <param name="start_pos">Начальное положение</param>
- /// <param name="end_pos">Финальное положение</param>
- /// <param name="marker">Маркер сотрудника</param>
- /// <param name="w">Данные из БД</param>
- /// <param name="progress">Номер записи из БД</param>
- /// <returns></returns>
- void Position(float step, Vector3 start_pos, Vector3 end_pos, Marker marker, Structure w, string progress)
- {
- if (marker.marker.activeSelf == true)
- {
- var x_position = Mathf.Lerp(start_pos.x, end_pos.x, step);
- var y_position = Mathf.Lerp(start_pos.z, end_pos.z, step);
- //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}");
- var new_position = new Vector3(x_position, 0.5f, y_position);
- if (marker.marker.transform.position != new_position)
- {
- marker.marker.transform.position = new Vector3(x_position, 0.5f, y_position);
- marker.marker_line.SetPosition(marker.marker_line.positionCount++, new Vector3(x_position, 0, y_position));
- if (ToggleDisappearance.isOn) marker.marker_line = LineDisappearance(marker.marker_line);
- }
- marker.marker.transform.GetChild(0).transform.GetChild(0).transform.GetChild(0).GetComponent<Text>().text = $"{w.acc_id} x={end_pos.x} y={end_pos.z}";
- marker.toggle.transform.GetChild(1).gameObject.GetComponent<Text>().text = $"{w.acc_id} {w.ts:hh:mm:ss}{progress}";
- }
- }
-
- /// <summary>
- /// Запуск отрисовки
- /// </summary>
- public void ButtonStart()
- {
- if (active_mode == Mode.Stop)
- foreach (var m in markers)
- m.marker_line.positionCount = 0;
- var button_text = StartStopButton.transform.GetChild(0);
- switch (DropdownMode.value)
- {
- case 0:
- //real_time = !real_time;
- if (active_mode == Mode.Stop/*real_time*/)
- {
- active_mode = Mode.RealTime;
- button_text.GetComponent<Text>().text = "Остановить";
- }
- else
- {
- active_mode = Mode.Stop;
- button_text.GetComponent<Text>().text = "Отобразить";
- }
- break;
- case 1:
- if (active_mode == Mode.Stop/*real_time*/) active_mode = Mode.History;
- else active_mode = Mode.Stop;
-
- if (active_mode == Mode.History/*history_start*/)
- {
- starting = true;
- var date = Date.Date;
- var time_start = date; //new DateTime(dates.ElementAt(DropdownData.value).Ticks);
- time_start = time_start.AddHours(int.Parse(StartHour.GetComponent<InputField>().text));
- time_start = time_start.AddMinutes(int.Parse(StartMin.GetComponent<InputField>().text));
- time_start = time_start.AddSeconds(int.Parse(StartSec.GetComponent<InputField>().text));
- Debug.Log(time_start);
- var time_end = date; //new DateTime(dates.ElementAt(DropdownData.value).Ticks);
- time_end = time_end.AddHours(int.Parse(EndHour.GetComponent<InputField>().text));
- time_end = time_end.AddMinutes(int.Parse(EndMin.GetComponent<InputField>().text));
- time_end = time_end.AddSeconds(int.Parse(EndSec.GetComponent<InputField>().text));
- foreach (var m in markers)
- {
- if (m.toggle.isOn)
- {
- client.CoordinatesRequest(time_start.Ticks, time_end.Ticks, 1, company.locations_index[company.active_location], m.acc_id);
- end_send[m.acc_id] = false;
- }
- }
- button_text.GetComponent<Text>().text = "Остановить";
- }
- else
- {
- StopProgress();
- }
- break;
- }
- }
- public void StopProgress()
- {
- starting = false;
- StartStopButton.transform.GetChild(0).GetComponent<Text>().text = "Отобразить";
- active_mode = Mode.Stop;
- foreach (var m in markers)
- {
- end_send[m.acc_id] = false;
- moving.Remove(m.acc_id);
- }
- }
- /// <summary>
- /// Затухание траектории
- /// </summary>
- /// <param name="lineRenderer">Траектория</param>
- /// <returns></returns>
- LineRenderer LineDisappearance(LineRenderer lineRenderer)
- {
- //LineRenderer lineRenderer = GetComponent<LineRenderer>();
- int newPositionCount = lineRenderer.positionCount - 1;
- Vector3[] newPositions = new Vector3[newPositionCount];
- for (int i = 0; i < newPositionCount; i++)
- {
- newPositions[i] = lineRenderer.GetPosition(i + 1);
- }
- lineRenderer.SetPositions(newPositions);
- return lineRenderer;
- }
- /// <summary>
- /// Смена положения по интервалу
- /// Шаги для плавного перемещения
- /// </summary>
- /// <param name="m">Данные о маркере</param>
- void StartingAccPositiong(Marker m)
- {
- int i = 0;
- float step = 0.1f;
- if (moving.ContainsKey(m.acc_id))
- {
- if (moving[m.acc_id].index < Workers[m.acc_id].Count) i = moving[m.acc_id].index;
- if (moving[m.acc_id].step < 1.1f) step = moving[m.acc_id].step;
- }
- else moving[m.acc_id] = new MarkerMoving();
- var worker = Workers[m.acc_id].OrderBy(wr => wr.ts).ToList();
- if (worker.Any())
- {
- var w = worker.ElementAt(i);
- var start_pos = m.marker.transform.position;
- if (i != 0) start_pos = new Vector3(worker[i - 1].coord_x, 0.5f, worker[i - 1].coord_y);
- if (active_mode == Mode.History && i == 0) start_pos = new Vector3(w.coord_x , 0.5f, w.coord_y);
- var end_pos = new Vector3(w.coord_x, 0.5f, w.coord_y);
- var progress = "";
- if (active_mode == Mode.History) progress = $"\n{i + 1} из {Workers[m.acc_id].Count}";
- if (starting) Position(step, start_pos, end_pos, m, w, progress);
- // StartingAccPositiong(m.value, time_step);
- }
- if (step >= 1) i++;
- step += interpolationPeriod; // 0.1f;
- moving[m.acc_id].index = i;
- moving[m.acc_id].step = step;
- }
- /// <summary>
- /// Отображение маяков
- /// </summary>
- /// <param name="b"></param>
- public static void AddBeacon(Beacon b)
- {
- var beacon = Instantiate(Resources.Load("GameObjects/Beacon", typeof(GameObject))) as GameObject;
- beacon.transform.position = new Vector3(b.x, 0.5f, b.y);
- beacon.name = $"BeaconButton_{b.id}";
- beacon.GetComponent<BeaconController>().info = false;
- beacon.transform.SetParent(GameObject.Find("Beacons").transform);
- beacon.transform.GetChild(0).GetChild(0).GetChild(0).GetComponent<Text>().text = $"{b.id}\nuuid={b.uuid}\nmajor={b.major}\nminor={b.minor}";
- b.beacon = beacon;
- }
- void OnGUI()
- {
- //if (Input.GetKeyDown(KeyCode.BackQuote))
- DebugHelper.DrawConsole();
- }
- //public static void LoadMaps(Dropdown DropdownLocation, GameObject Locations)
- //{
- // if (active_location != DropdownLocation.value && AuthorizationController.success && locations.Any())
- // {
- // if (active_location >= 0) Locations.transform.GetChild(active_location).gameObject.SetActive(false);
- // Locations.transform.GetChild(DropdownLocation.value).gameObject.SetActive(true);
- // active_location = DropdownLocation.value;
- // //if (locations[active_location].walls == null) locations[active_location].Load();
- // foreach (var b in Beacons)
- // {
- // Destroy(b.beacon);
- // Destroy(b.panel_button);
- // }
- // Beacons = new List<Beacon>();
- // if (ModeController.editor == true && DropdownLocation.value != DropdownLocation.options.Count - 1)
- // Client.BeaconsRequest(locations_index[active_location]);
- // if (ModeController.editor == false)
- // Client.BeaconsRequest(locations_index[active_location]);
- // }
- // //if (beacons_load)
- // //{
- // // beacons_load = false;
- // // foreach (var b in Beacons)
- // // {
- // // //if (ModeController.editor == false) AddBeacon(b);
- // // //if (ModeController.editor == true)
- // // editor.AddBeacon(b);
- // // }
- // //}
- //}
- /// <summary>
- /// Остановка отрисовки при смене режима история/онлайн
- /// </summary>
- public void СhangeMode()
- {
- StopProgress();
- active_mode = Mode.Stop;
- mode = DropdownMode.value;
- switch (DropdownMode.value)
- {
- case 0:
- DateTimePanel.SetActive(false);
- break;
- case 1:
- DateTimePanel.SetActive(true);
- break;
- }
- }
- /// <summary>
- /// Смена позиции маркера
- /// </summary>
- public void MarkerMove()
- {
- foreach (var m in markers.Select((value, i) => (value, i)))
- {
- m.value.marker.SetActive(m.value.toggle.isOn);
- if (m.value.toggle.isOn && Workers.ContainsKey(m.value.acc_id) && starting && end_send[m.value.acc_id])
- {
- //end_send[m.value.acc_id] = false;
- // moving.Add(true);
- //if (markers.Count - 1 == m.i)
- StartingAccPositiong(m.value);
- var temp = Workers.Values.Max(v => v.Count);
- if (active_mode == Mode.History && m.i == temp - 1 && moving[moving.Keys.Last()].step >= 1f)
- {
- StopProgress();
- }
- if (active_mode == Mode.RealTime && moving[moving.Keys.Last()].index == 1)
- {
- starting = false;
- }
- }
- }
- }
- /// <summary>
- /// Загрузка объектов локации
- /// </summary>
- /// <param name="location"></param>
- //public void LoadLocation(Location location)
- //{
- // print("PlayerController.LoadLocation");
- // if (load_location_elements.ContainsKey(location.id))
- // {
- // location.Load();
- // }
- //}
-
-
- public void BroadcastStart(uint id)
- {
- if (user_broadcast.HasValue)
- client.ImageStreamStopSend(user_broadcast.Value);
- if (user_broadcast != id)
- {
- client.ImageStreamStartSend(id);
- user_broadcast = id;
- var name = UserInfo.transform.GetChild(1).GetChild(0).GetComponent<Text>();
- name.text = $"{id} {users.Single(u => u.id == id).name}";
- name.GetComponent<RectTransform>().sizeDelta =new Vector2( name.preferredWidth, 30);
- }
- else
- {
- user_broadcast = null;
- UserInfo.SetActive(false);
- }
- }
- public void BroadcastStop()
- {
- if (user_broadcast.HasValue)
- client.ImageStreamStopSend(user_broadcast.Value);
- user_broadcast = null;
- UserInfo.SetActive(false);
- }
- }
|