using Assets.Scripts.Models; using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Threading; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class PlayerController : MonoBehaviour { public static PlayerController instance; public Dictionary> Workers = new Dictionary>(); public List TestStructures = new List(); 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 LocationZones locationZones; public Dropdown DropdownMode; public Toggle ToggleAllUsers; // отображение всех маркеров пользователей public Toggle ToggleLine; public Toggle ToggleDisappearance; public GameObject DatePicker; Camera camera; public GameObject UserInfo; public GameObject Editor; public uint? user_broadcast = null; public bool broadcast = false; public Dictionary users; public enum Mode { RealTime = 0, History = 1, Stop = 2 }; public static Mode active_mode = Mode.Stop; int mode = 0; Client client; CompanyController company; EditorController editor; DateTimePicker Date; public Dictionary end_send = new Dictionary(); // флаги завершения загрузки Dictionary moving = new Dictionary(); // флаги начала движения const float INTERPOLATION_PERIOD = 0.1f; float time_draw = 0; public bool users_load = false; public bool beacons_load = false; //List StartStop = new List(); 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(); camera = Camera.main; //users = new Dictionary(); Date = DatePicker.GetComponent(); //Client.LocationsRequest(); var broadcast_stop = UserInfo.transform.GetChild(1).GetChild(1).GetComponent