EditorController.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Globalization;
  5. using System.Linq;
  6. using UnityEngine;
  7. using UnityEngine.SceneManagement;
  8. using UnityEngine.UI;
  9. /// <summary>
  10. /// Редактор
  11. /// </summary>
  12. public class EditorController : MonoBehaviour
  13. {
  14. public static EditorController instance;
  15. public InputField Name;
  16. public InputField Image;
  17. public InputField SizeX;
  18. public InputField SizeY;
  19. public GameObject BeaconsContent;
  20. public GameObject PanelBeaconEdit;
  21. public GameObject Player;
  22. public GameObject ButtonMode;
  23. public GameObject EditorTools;
  24. public Toggle ToggleScalePanel;
  25. public Dropdown DropdownLocation;
  26. public Transform Locations;
  27. public Button ButtonAddBeacon;
  28. public GameObject Dialog;
  29. public GameObject NewLocation;
  30. public GameObject plane;
  31. public Location newLocation;
  32. public Dictionary<uint, List<Beacon>> Beacons = new Dictionary<uint, List<Beacon>>();
  33. CompanyController company;
  34. ModeController mode;
  35. ToolsController tools;
  36. public Location EditLocation;
  37. private void Awake()
  38. {
  39. instance = this;
  40. }
  41. // Start is called before the first frame update
  42. void Start()
  43. {
  44. company = CompanyController.instance;
  45. mode = ButtonMode.GetComponent<ModeController>();
  46. tools = EditorTools.GetComponent<ToolsController>();
  47. ButtonAddBeacon.onClick.AddListener(() => {
  48. AddBeacon(company);
  49. });
  50. var random = new System.Random();
  51. int number = random.Next(2000000000, int.MaxValue);
  52. uint uintNumber = (uint)(number + (uint)int.MaxValue);
  53. if (NewLocation == null)
  54. {
  55. NewLocation = new GameObject();
  56. NewLocation.transform.SetParent(Locations);
  57. NewLocation.name = "NewLocation";
  58. NewLocation.transform.position = Vector3.zero;
  59. NewLocation.SetActive(false);
  60. plane = Instantiate(Resources.Load("GameObjects/Plane", typeof(GameObject))) as GameObject;
  61. plane.transform.SetParent(NewLocation.transform);
  62. plane.transform.position = new Vector3(plane.transform.localScale.x * 5, 0, plane.transform.localScale.z * 5);
  63. foreach (var g in Location.contents)
  64. {
  65. var go = new GameObject();
  66. go.name = g;
  67. go.transform.SetParent(NewLocation.transform);
  68. }
  69. newLocation = new Location
  70. {
  71. id = uintNumber,
  72. location = NewLocation,
  73. walls = new List<Wall>(),
  74. zones = new List<Zone>(),
  75. beacons = new List<Beacon>(),
  76. plane = plane,
  77. texture_url = ""
  78. };
  79. company.locations[newLocation.id] = newLocation;
  80. company.locations_index.Add(newLocation.id);
  81. DropdownLocation.options.Add(new Dropdown.OptionData("Новая локация"));
  82. DropdownLocation.RefreshShownValue();
  83. }
  84. }
  85. // Update is called once per frame
  86. void Update()
  87. {
  88. if (company.active_location >= 0 && company.locations != null)
  89. {
  90. var l = company.locations[company.locations_index[company.active_location]];
  91. l.plane.GetComponent<TouchScript>().Resize = ToggleScalePanel.isOn;
  92. }
  93. }
  94. string texture_url = "";
  95. /// <summary>
  96. /// Изменение размеров панели
  97. /// Загрузка текстуры
  98. /// </summary>
  99. public void UpdatePanel()
  100. {
  101. var p = company.locations[company.locations_index[company.active_location]].plane;
  102. if (!Image.text.Equals(texture_url))
  103. {
  104. StartCoroutine(SendingFormController.LoadImage(Image.text, p));
  105. texture_url = Image.text;
  106. }
  107. var x = 1f;
  108. if (!SizeX.text.Equals(""))
  109. x = float.Parse(SizeX.text, CultureInfo.InvariantCulture);
  110. var y = 1f;
  111. if (!SizeY.text.Equals(""))
  112. y = float.Parse(SizeY.text, CultureInfo.InvariantCulture);
  113. p.transform.localScale = new Vector3(x, 1, y);
  114. var scale = p.transform.localScale;
  115. p.transform.position = new Vector3(scale.x * 5, 0, scale.z * 5);
  116. }
  117. public void Save()
  118. {
  119. //SceneManager.LoadScene("Location");
  120. tools.CursorOff();
  121. if (!Name.text.Equals(""))
  122. {
  123. //var location = new Location { id = 0, name = Name.text, beacons = Beacons, zones = WallCreate.Zones, walls = WallCreate.Walls, texture_url = Image.text, plane = plane, location = NewLocation};
  124. Location location;
  125. if (EditLocation.id != 0) location = EditLocation;
  126. else location = new Location { id = Convert.ToUInt32(4000000000), plane = plane, location = NewLocation };
  127. location.name = Name.text;
  128. location.texture_url = Image.text;
  129. if (WallCreate.Walls.ContainsKey(EditLocation.id)) location.walls.AddRange(WallCreate.Walls[EditLocation.id]);
  130. //if (WallCreate.Zones.ContainsKey(EditLocation.id)) location.zones.AddRange(WallCreate.Zones[EditLocation.id]);
  131. if (WallCreate.Zones.ContainsKey(EditLocation.id)) location.zones = WallCreate.Zones[EditLocation.id];
  132. if (Beacons.ContainsKey(EditLocation.id))
  133. {
  134. foreach(var b in Beacons[EditLocation.id])
  135. {
  136. var go = b.beacon;
  137. b.x = go.transform.position.x;
  138. b.y = go.transform.position.z;
  139. b.z = go.transform.position.y;
  140. }
  141. location.beacons.AddRange(Beacons[EditLocation.id]);
  142. }
  143. company.DropdownLocation.options.Last().text = location.name;
  144. location.location.name = location.name;
  145. location.Save();
  146. location.SaveContents();
  147. mode.Switch();
  148. }
  149. else
  150. {
  151. Dialog.SetActive(true);
  152. Dialog.transform.GetChild(0).GetComponent<Text>().text = "Введите название локации";
  153. Dialog.transform.GetChild(2).GetComponent<Button>().onClick.AddListener(() =>
  154. {
  155. Dialog.SetActive(false);
  156. });
  157. }
  158. }
  159. public void Back()
  160. {
  161. //SceneManager.LoadScene("Location");
  162. mode.Switch();
  163. }
  164. public void AddBeacon(CompanyController company, Beacon b = null)
  165. {
  166. //PanelBeaconEdit.SetActive(true);
  167. var location = company.locations[company.locations_index[company.active_location]];
  168. var beacon = Instantiate(Resources.Load("GameObjects/Beacon", typeof(GameObject))) as GameObject;
  169. if (ModeController.editor) beacon.GetComponent<BeaconController>().mode = BeaconController.Mode.Editor;
  170. beacon.name = $"Beacon_{b?.id.ToString() ?? Beacons.Count.ToString()}";
  171. if (b != null)
  172. {
  173. //beacon.transform.position = new Vector3(b.x / 100, 0.5f, b.y / 100);
  174. beacon.transform.position = new Vector3(b.x, 0.5f, b.y);
  175. //beacon.transform.GetChild(0).GetChild(0).GetChild(0).GetComponent<Text>().text
  176. beacon.GetComponent<BeaconController>().text_info = $"{b.id}\n{b.vagrant_label}\nuuid={b.uuid}\nmajor={b.major}\nminor={b.minor}\nmac={b.mac}";
  177. beacon.GetComponent<BeaconController>().id = $"{b.id}";
  178. if (b.enabled == false) beacon.GetComponent<Renderer>().material.color = Color.grey;
  179. }
  180. beacon.transform.SetParent(location.location.transform.GetChild(3).transform);
  181. var name_beacon = $"Маяк {b?.id.ToString() ?? Beacons.Count.ToString()}";
  182. PanelBeaconEdit.transform.GetChild(0).GetComponent<Text>().text = name_beacon;
  183. var panel_button = Instantiate(Resources.Load("GameObjects/Panel_Beacon", typeof(GameObject))) as GameObject;
  184. panel_button.transform.SetParent(BeaconsContent.transform);
  185. panel_button.name = $"Beacon_{b?.id.ToString() ?? Beacons.Count.ToString()}";
  186. var button = panel_button.transform.GetChild(0).GetComponent<Button>();
  187. button.name = $"BeaconButton_{Beacons.Count}";
  188. button.transform.GetChild(0).GetComponent<Text>().text = name_beacon;
  189. //var b = new Beacon { };
  190. var shader1 = Shader.Find("Outlined/Silhouetted Bumped Diffuse");
  191. var shader2 = Shader.Find("Standard");
  192. //var text = PanelBeaconEdit.transform.GetChild(0).GetComponent<Text>().text = "";
  193. //var uuid = PanelBeaconEdit.transform.GetChild(1).GetComponent<InputField>().text = "";
  194. if (b == null)
  195. {
  196. b = new Beacon();
  197. b.location_id = location.id;
  198. b.id = Convert.ToUInt32(4000000000 + Beacons[location.id].Count);
  199. b.enabled = true;
  200. BeaconEdit(b, name_beacon);
  201. }
  202. button.onClick.AddListener(() =>
  203. {
  204. BeaconEdit(b, name_beacon);
  205. //b.beacon.GetComponent<Renderer>().material.shader = shader1;
  206. //edit_beacon = b.beacon;
  207. });
  208. var button_ok = PanelBeaconEdit.transform.GetChild(7).transform.GetChild(0).GetComponent<Button>();
  209. button_ok.onClick.RemoveAllListeners();
  210. button_ok.onClick.AddListener(() =>
  211. {
  212. b.uuid = PanelBeaconEdit.transform.GetChild(2).GetComponent<InputField>().text;
  213. b.minor = ushort.Parse(PanelBeaconEdit.transform.GetChild(3).GetComponent<InputField>().text);
  214. b.major = ushort.Parse(PanelBeaconEdit.transform.GetChild(4).GetComponent<InputField>().text);
  215. b.mac = PanelBeaconEdit.transform.GetChild(5).GetComponent<InputField>().text;
  216. b.enabled = PanelBeaconEdit.transform.GetChild(6).GetComponent<Toggle>().isOn;
  217. PanelBeaconEdit.SetActive(false);
  218. //b.beacon.GetComponent<Renderer>().material.shader = shader2;
  219. });
  220. //var button_close = PanelBeaconEdit.transform.GetChild(7).transform.GetChild(1).GetComponent<Button>();
  221. //button_close.onClick.AddListener(() =>
  222. //{
  223. // PanelBeaconEdit.SetActive(false);
  224. // b.beacon.GetComponent<Renderer>().material.shader = shader1;
  225. //});
  226. var button_del = panel_button.transform.GetChild(2).GetComponent<Button>();
  227. button_del.onClick.AddListener(() =>
  228. {
  229. Destroy(beacon);
  230. Destroy(panel_button);
  231. Beacons[location.id].Remove(b);
  232. if (PanelBeaconEdit.activeSelf) PanelBeaconEdit.SetActive(false);
  233. });
  234. //b.id = (uint)Beacons.Count;
  235. b.beacon = beacon;
  236. b.panel_button = panel_button;
  237. Beacons[location.id].Add(b);
  238. }
  239. void BeaconEdit(Beacon b, string name_beacon)
  240. {
  241. PanelBeaconEdit.SetActive(true);
  242. PanelBeaconEdit.transform.GetChild(0).GetComponent<Text>().text = name_beacon;
  243. if (b != null)
  244. {
  245. PanelBeaconEdit.transform.GetChild(1).GetComponent<InputField>().text = b.uuid;
  246. PanelBeaconEdit.transform.GetChild(2).GetComponent<InputField>().text = b.vagrant_label.ToString();
  247. PanelBeaconEdit.transform.GetChild(3).GetComponent<InputField>().text = $"{b.major}";
  248. PanelBeaconEdit.transform.GetChild(4).GetComponent<InputField>().text = $"{b.major}";
  249. PanelBeaconEdit.transform.GetChild(5).GetComponent<InputField>().text = b.mac;
  250. PanelBeaconEdit.transform.GetChild(6).GetComponent<Toggle>().isOn = b.enabled;
  251. }
  252. }
  253. //GameObject edit_beacon;
  254. public void CloseBeaconParameters()
  255. {
  256. PanelBeaconEdit.SetActive(false);
  257. //var shader2 = Shader.Find("Standard");
  258. //edit_beacon.GetComponent<Renderer>().material.shader = shader2;
  259. }
  260. }