User.cs 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. using System;
  2. using UnityEngine;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using UnityEngine.UI;
  8. public class User
  9. {
  10. enum GetUserFlags { CompanyID, UserID };
  11. public uint id { get; set; }
  12. public uint company_id { get; set; }
  13. public string name_user { get; set; }
  14. public bool online { get; set; }
  15. public Toggle toggle { get; set; }
  16. public GameObject toggle_user { get; set; } //вся панель с toggle и кнопкой камеры
  17. public GameObject marker { get; set; }
  18. public LineRenderer marker_line { get; set; }
  19. //public uint acc_id { get; set; }
  20. //public bool starting { get; set; }
  21. public bool broadcast { get; set; }
  22. public static void UsersReceive(byte[] bytedata)
  23. {
  24. var player = PlayerController.instance;
  25. player.users = new Dictionary<uint, User>();
  26. var companyId = BitConverter.ToUInt32(bytedata, 5);
  27. int read = 9;
  28. while (read < bytedata.Length)
  29. {
  30. var id = BitConverter.ToUInt32(bytedata, read);
  31. var online = bytedata[read + 4];
  32. var lenname = bytedata[read + 5];
  33. var name = Encoding.UTF8.GetString(bytedata, read + 6, lenname);
  34. read += 6 + lenname;
  35. Debug.Log($"user received id {id} lenname {lenname} name {name} online {online} companyId {companyId}");
  36. player.users.Add(id, new User { id = id, name_user = name, online = online!=0, company_id=companyId });
  37. WorkerMarker(player.users[id], Color.green);
  38. }
  39. player.users_load = true;
  40. }
  41. public static void SendGetUsers()
  42. {
  43. SendGetUsersForCompany(Client.instance.company_id);
  44. }
  45. //companyId: 1 = Тайшет, 2 = Тестовая, 3 = Братское
  46. public static void SendGetUsersForCompany(uint companyId)
  47. {
  48. List<byte> list = new List<byte>();
  49. list.Add(47);
  50. list.Add((byte)GetUserFlags.CompanyID);
  51. list.AddRange(BitConverter.GetBytes(companyId));
  52. Client.SendEnqueue(list.ToArray());
  53. }
  54. public static void SendGetUser(uint userId)
  55. {
  56. List<byte> list = new List<byte>();
  57. list.Add(47);
  58. list.Add((byte)GetUserFlags.UserID);
  59. list.AddRange(BitConverter.GetBytes(userId));
  60. Client.SendEnqueue(list.ToArray());
  61. }
  62. public static User Find(uint id)
  63. {
  64. User user;
  65. PlayerController.instance.users.TryGetValue(id, out user);
  66. return user;
  67. }
  68. public static void LogInOut(byte[] bytedata)
  69. {
  70. var accid = BitConverter.ToUInt32(bytedata, 1);
  71. var cmd = bytedata[5];
  72. var u = User.Find(accid);
  73. if (u != null)
  74. {
  75. var b = cmd != 0;
  76. u.toggle_user.SetActive(b);
  77. u.marker.SetActive(b);
  78. }
  79. else
  80. {
  81. //Debug.LogError($"LogInOut accid {accid} not found");
  82. Debug.Log($"LogInOut accid {accid} not found in company");
  83. //SendGetUser(accid);
  84. }
  85. Debug.Log($"LogInOut accid {accid} cmd {cmd}");
  86. }
  87. public static void CoordinatesReceive(byte[] bytedata)
  88. {
  89. //var coordleng = bytedata.Length - 11;
  90. var accid = BitConverter.ToUInt32(bytedata, 5);
  91. var locid = BitConverter.ToUInt32(bytedata, 9);
  92. var player = PlayerController.instance;
  93. //WorkerController.TestStructures.Clear();
  94. //print("len " + BitConverter.ToUInt32(bytedata, 1));
  95. var worker = new List<Structure>();
  96. for (var read = 13; read < bytedata.Length; read += 20)
  97. {
  98. var id = BitConverter.ToUInt32(bytedata, read);
  99. var x = BitConverter.ToSingle(bytedata, read + 4);
  100. var y = BitConverter.ToSingle(bytedata, read + 8);
  101. var ticks = BitConverter.ToInt64(bytedata, read + 12);
  102. //print($"coord accid {accid} locid {locid} {id} x {x} y{y} ticks {ticks}");
  103. //WorkerController.markers.ElementAt(1).marker.transform.position = new Vector3(x, 0.5f, y);
  104. //WorkerController.TestStructures
  105. worker.Add(new Structure
  106. {
  107. id = id,
  108. coord_x = x,
  109. coord_y = y,
  110. ts = new DateTime(ticks),
  111. acc_id = accid,
  112. location_id = locid,
  113. zone_id = 1
  114. });
  115. }
  116. player.Workers[accid] = worker.OrderBy(w => w.ts).ToList();
  117. player.end_send[accid] = true;
  118. }
  119. /// <summary>
  120. /// Создание маркера для сотрудника
  121. /// </summary>
  122. /// <param name="acc_id"></param>
  123. public static void WorkerMarker(User user, Color color/*, GameObject WorkersList, Action<uint> BroadcastStart*/)
  124. {
  125. var toggle_user = UnityEngine.Object.Instantiate(Resources.Load("GameObjects/ToggleUser", typeof(GameObject))) as GameObject;
  126. toggle_user.name = $"{user.id}";
  127. var toggle = toggle_user.transform.GetChild(0).GetComponent<Toggle>();
  128. toggle.transform.GetChild(1).gameObject.GetComponent<Text>().text = $"{user.id} {user.name_user}";
  129. //toggle_user.transform.SetParent(WorkersList.transform);
  130. toggle.isOn = false;
  131. //var camera_button = toggle_user.transform.GetChild(1).GetComponent<Button>();
  132. //camera_button.onClick.AddListener(() => BroadcastStart(user.id));
  133. var marker = UnityEngine.Object.Instantiate(Resources.Load("GameObjects/Capsule", typeof(GameObject))) as GameObject;
  134. marker.name = $"marker_{user.id}";
  135. marker.transform.GetChild(0).transform.GetChild(0).transform.GetChild(0).GetComponent<Text>().text = $"<{user.id}>\n{user.name_user}"; // панель с именем над маркером
  136. var mode = ModeController.instance;
  137. marker.transform.SetParent(mode.Markers.transform);
  138. marker.GetComponent<Renderer>().material.color = color; // UnityEngine.Random.ColorHSV(0f, 1f, 1f, 1f, 0.5f, 1f);
  139. marker.GetComponent<LabelObjectScript>().UserId = user.id;
  140. var color_line = UnityEngine.Random.ColorHSV(0f, 1f, 1f, 1f, 0.5f, 1f);
  141. var marker_line = UnityEngine.Object.Instantiate(Resources.Load("GameObjects/Line", typeof(LineRenderer))) as LineRenderer;
  142. marker_line.name = $"marker_line_{user.id}";
  143. marker_line.startColor = color_line;
  144. marker_line.endColor = Color.white;
  145. marker_line.material.color = color_line;
  146. marker_line.transform.SetParent(mode.Markers.transform);
  147. user.marker = marker;
  148. user.toggle = toggle;
  149. user.marker_line = marker_line;
  150. user.toggle_user = toggle_user;
  151. var player = PlayerController.instance;
  152. toggle_user.transform.SetParent(player.WorkersList.transform);
  153. }
  154. public void SetParam(Action<uint> BroadcastStart)
  155. {
  156. var camera_button = toggle_user.transform.GetChild(1).GetComponent<Button>();
  157. camera_button.onClick.AddListener(() => BroadcastStart(id));
  158. }
  159. /// <summary>
  160. /// Отображение пользователей текущей компании
  161. /// </summary>
  162. public void UserCompany()
  163. {
  164. var active = CompanyController.instance.active_location + 1 == company_id;
  165. toggle_user.SetActive(active);
  166. marker.SetActive(active);
  167. }
  168. }