Location.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.IO;
  7. using UnityEngine;
  8. public class Location
  9. {
  10. public uint company_id;
  11. public uint id { get; set; }
  12. public string name { get; set; }
  13. public List<Wall> walls { get; set; }
  14. public Dictionary<uint, Beacon> beacons { get; set; }
  15. public GameObject plane { get; set; }
  16. public string texture_url { get; set; }
  17. public List<Zone> zones { get; set; }
  18. public GameObject location { get; set; }
  19. public static List<string> contents = new List<string> { "Walls", "Zones", "Beacons" };
  20. public void Save()
  21. {
  22. MemoryStream ms = new MemoryStream();
  23. BinaryWriter bw = new BinaryWriter(ms);
  24. var urlb = Encoding.UTF8.GetBytes(texture_url);
  25. ushort urllen = (ushort)urlb.Length;
  26. bw.Write(id);
  27. bw.Write(plane.transform.localScale.x);
  28. bw.Write(plane.transform.localScale.z);
  29. bw.Write(plane.transform.localPosition.x);
  30. bw.Write(plane.transform.localPosition.z);
  31. bw.Write(Client.instance.company_id/*company_id*/);
  32. bw.Write(urllen);
  33. bw.Write(urlb);
  34. Debug.LogWarning($"save location id={id}, comapny id={company_id}");
  35. //ms.Write(bdata, 0, bdata.Length);
  36. //Debug.Log("imagesend bytes "+ms.ToArray().Length);
  37. var data = Client.ConstructVariablePacket(56, ms.ToArray());
  38. Client.SendEnqueue(data);
  39. }
  40. public static void TextureGetURL(byte[] bytedata)
  41. {
  42. var loc_id = BitConverter.ToUInt32(bytedata, 5);
  43. var urllen = bytedata.Length - 9;
  44. var loc = CompanyController.instance.GetLocation(loc_id);
  45. var url = Encoding.UTF8.GetString(bytedata, 9, urllen);
  46. loc.texture_url = url;
  47. loc.Save();
  48. //Debug.Log("get url " + url+" loc_id "+loc.id);
  49. }
  50. public void SaveTexture(byte[] img)
  51. {
  52. Debug.Log("SaveTexture");
  53. MemoryStream ms = new MemoryStream();
  54. BinaryWriter bw = new BinaryWriter(ms);
  55. bw.Write(id);
  56. bw.Write(img);
  57. Client.SendEnqueue(Client.ConstructVariablePacket(57, ms.ToArray()));
  58. }
  59. public void SaveContents()
  60. {
  61. foreach (Wall wall in walls)
  62. {
  63. wall.Save();
  64. }
  65. foreach (var z in zones)
  66. {
  67. z.Save();
  68. }
  69. Beacon.Save(beacons.Values.ToList());
  70. }
  71. public void Load()
  72. {
  73. Debug.Log("Location.Load");
  74. Zone.LoadByLocationId(id);
  75. Wall.LoadByLocationId(id);
  76. Beacon.Request(id);
  77. //Client.instance.SendGetUsers();
  78. }
  79. public static void LocationsRequest(uint companyId=0)
  80. {
  81. if (companyId == 0)
  82. companyId = Client.instance.company_id;
  83. Client.SendFourByteParamPacket(54, companyId);
  84. }
  85. public static void ReceiveLocations(byte[] bytedata)
  86. {
  87. var company = CompanyController.instance;
  88. company.locations = new Dictionary<uint, Location>();
  89. company.locations_index = new List<uint>();
  90. int read = 5;
  91. while (read < bytedata.Length)
  92. {
  93. var id = BitConverter.ToUInt32(bytedata, read);
  94. var x = BitConverter.ToSingle(bytedata, read + 4);
  95. var y = BitConverter.ToSingle(bytedata, read + 8);
  96. var scalex = BitConverter.ToSingle(bytedata, read + 12);
  97. var scalez = BitConverter.ToSingle(bytedata, read + 16);
  98. var posx = BitConverter.ToSingle(bytedata, read + 20);
  99. var posz = BitConverter.ToSingle(bytedata, read + 24);
  100. var lenimg = BitConverter.ToUInt16(bytedata, read + 28);
  101. var img = Encoding.UTF8.GetString(bytedata, read + 30, lenimg);
  102. var lenname = BitConverter.ToUInt16(bytedata, read + 30 + lenimg);
  103. var name = Encoding.UTF8.GetString(bytedata, read + 32 + lenimg, lenname);
  104. var company_id = BitConverter.ToUInt32(bytedata, read + 32 + lenimg + lenname);
  105. read += (36 + lenimg + lenname);
  106. Debug.Log($"location received company_id {company_id} read {read} id {id} x {x} y {y} scalex {scalex} scalez {scalez} posx {posx} posz {posz} lenimg {lenimg} img {img} lenname {lenname} name {name}");
  107. var plane = UnityEngine.Object.Instantiate(Resources.Load("GameObjects/Plane", typeof(GameObject))) as GameObject;
  108. if (scalex == 0) scalex = 1; if (scalez == 0) scalez = 1;
  109. plane.transform.localScale = new Vector3(scalex, WallCreate.WallHeight, scalez);
  110. if (posx == 0) posx = scalex / 2; if (posz == 0) posz = scalez / 2;
  111. plane.transform.position = new Vector3(posx, 0.01f, posz);
  112. var Location = new GameObject();
  113. Location.name = name;
  114. plane.transform.SetParent(Location.transform);
  115. foreach (var g in contents)
  116. {
  117. var go = new GameObject();
  118. go.name = g;
  119. go.transform.SetParent(Location.transform);
  120. }
  121. company.locations[id] =new Location { id = id, name = name, texture_url = img, location = Location, plane = plane, company_id = company_id };
  122. company.locations_index.Add(id);
  123. Debug.Log("locations count "+ company.locations.Count);
  124. }
  125. company.load_location = true;
  126. }
  127. public void LocationActive(bool active, LocationZones lzs)
  128. {
  129. location.SetActive(active);
  130. if (beacons != null)
  131. foreach (var b in beacons.Values)
  132. if (b.panel_button != null)
  133. b.panel_button.SetActive(active);
  134. if (zones != null)
  135. foreach (var z in zones)
  136. if (z.buttons != null)
  137. {
  138. z.buttons.SetActive(active);
  139. var lz = lzs.ZoneInfos[z.id];
  140. lz.gameObject.SetActive(active);
  141. }
  142. if (active)
  143. {
  144. Camera.main.GetComponent<CameraController>().location = plane;
  145. Camera.main.GetComponent<CameraController>().CameraCenter();
  146. }
  147. }
  148. }