User.cs 7.3 KB

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