EditorController.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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. var l = company.locations[company.locations_index[company.active_location]];
  89. l.plane.GetComponent<TouchScript>().Resize = ToggleScalePanel.isOn;
  90. }
  91. string texture_url = "";
  92. /// <summary>
  93. /// Изменение размеров панели
  94. /// Загрузка текстуры
  95. /// </summary>
  96. public void UpdatePanel()
  97. {
  98. var p = company.locations[company.locations_index[company.active_location]].plane;
  99. if (!Image.text.Equals(texture_url))
  100. {
  101. StartCoroutine(SendingFormController.LoadImage(Image.text, p));
  102. texture_url = Image.text;
  103. }
  104. var x = 1f;
  105. if (!SizeX.text.Equals(""))
  106. x = float.Parse(SizeX.text, CultureInfo.InvariantCulture);
  107. var y = 1f;
  108. if (!SizeY.text.Equals(""))
  109. y = float.Parse(SizeY.text, CultureInfo.InvariantCulture);
  110. p.transform.localScale = new Vector3(x, 1, y);
  111. var scale = p.transform.localScale;
  112. p.transform.position = new Vector3(scale.x * 5, 0, scale.z * 5);
  113. }
  114. public void Save()
  115. {
  116. //SceneManager.LoadScene("Location");
  117. tools.CursorOff();
  118. if (!Name.text.Equals(""))
  119. {
  120. //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};
  121. Location location;
  122. if (EditLocation.id != 0) location = EditLocation;
  123. else location = new Location { id = Convert.ToUInt32(4000000000), plane = plane, location = NewLocation };
  124. location.name = Name.text;
  125. location.texture_url = Image.text;
  126. if (WallCreate.Walls.ContainsKey(EditLocation.id)) location.walls.AddRange(WallCreate.Walls[EditLocation.id]);
  127. //if (WallCreate.Zones.ContainsKey(EditLocation.id)) location.zones.AddRange(WallCreate.Zones[EditLocation.id]);
  128. if (WallCreate.Zones.ContainsKey(EditLocation.id)) location.zones = WallCreate.Zones[EditLocation.id];
  129. if (Beacons.ContainsKey(EditLocation.id))
  130. {
  131. foreach(var b in Beacons[EditLocation.id])
  132. {
  133. var go = b.beacon;
  134. b.x = go.transform.position.x;
  135. b.y = go.transform.position.z;
  136. b.z = go.transform.position.y;
  137. }
  138. location.beacons.AddRange(Beacons[EditLocation.id]);
  139. }
  140. company.DropdownLocation.options.Last().text = location.name;
  141. location.location.name = location.name;
  142. location.Save();
  143. location.SaveContents();
  144. mode.Switch();
  145. }
  146. else
  147. {
  148. Dialog.SetActive(true);
  149. Dialog.transform.GetChild(0).GetComponent<Text>().text = "Введите название локации";
  150. Dialog.transform.GetChild(2).GetComponent<Button>().onClick.AddListener(() =>
  151. {
  152. Dialog.SetActive(false);
  153. });
  154. }
  155. }
  156. public void Back()
  157. {
  158. //SceneManager.LoadScene("Location");
  159. mode.Switch();
  160. }
  161. public void AddBeacon(CompanyController company, Beacon b = null)
  162. {
  163. //PanelBeaconEdit.SetActive(true);
  164. var location = company.locations[company.locations_index[company.active_location]];
  165. var beacon = Instantiate(Resources.Load("GameObjects/Beacon", typeof(GameObject))) as GameObject;
  166. if (ModeController.editor) beacon.GetComponent<BeaconController>().mode = BeaconController.Mode.Editor;
  167. beacon.name = $"Beacon_{b?.id.ToString() ?? Beacons.Count.ToString()}";
  168. if (b != null)
  169. {
  170. //beacon.transform.position = new Vector3(b.x / 100, 0.5f, b.y / 100);
  171. beacon.transform.position = new Vector3(b.x, 0.5f, b.y);
  172. //beacon.transform.GetChild(0).GetChild(0).GetChild(0).GetComponent<Text>().text
  173. beacon.GetComponent<BeaconController>().text_info = $"{b.id}\n{b.vagrant_label}\nuuid={b.uuid}\nmajor={b.major}\nminor={b.minor}\nmac={b.mac}";
  174. beacon.GetComponent<BeaconController>().id = $"{b.id}";
  175. if (b.enabled == false) beacon.GetComponent<Renderer>().material.color = Color.grey;
  176. }
  177. beacon.transform.SetParent(location.location.transform.GetChild(3).transform);
  178. var name_beacon = $"Маяк {b?.id.ToString() ?? Beacons.Count.ToString()}";
  179. PanelBeaconEdit.transform.GetChild(0).GetComponent<Text>().text = name_beacon;
  180. var panel_button = Instantiate(Resources.Load("GameObjects/Panel_Beacon", typeof(GameObject))) as GameObject;
  181. panel_button.transform.SetParent(BeaconsContent.transform);
  182. panel_button.name = $"Beacon_{b?.id.ToString() ?? Beacons.Count.ToString()}";
  183. var button = panel_button.transform.GetChild(0).GetComponent<Button>();
  184. button.name = $"BeaconButton_{Beacons.Count}";
  185. button.transform.GetChild(0).GetComponent<Text>().text = name_beacon;
  186. //var b = new Beacon { };
  187. var shader1 = Shader.Find("Outlined/Silhouetted Bumped Diffuse");
  188. var shader2 = Shader.Find("Standard");
  189. //var text = PanelBeaconEdit.transform.GetChild(0).GetComponent<Text>().text = "";
  190. //var uuid = PanelBeaconEdit.transform.GetChild(1).GetComponent<InputField>().text = "";
  191. if (b == null)
  192. {
  193. b = new Beacon();
  194. b.location_id = location.id;
  195. b.id = Convert.ToUInt32(4000000000 + Beacons[location.id].Count);
  196. b.enabled = true;
  197. BeaconEdit(b, name_beacon);
  198. }
  199. button.onClick.AddListener(() =>
  200. {
  201. BeaconEdit(b, name_beacon);
  202. //b.beacon.GetComponent<Renderer>().material.shader = shader1;
  203. //edit_beacon = b.beacon;
  204. });
  205. var button_ok = PanelBeaconEdit.transform.GetChild(7).transform.GetChild(0).GetComponent<Button>();
  206. button_ok.onClick.RemoveAllListeners();
  207. button_ok.onClick.AddListener(() =>
  208. {
  209. b.uuid = PanelBeaconEdit.transform.GetChild(2).GetComponent<InputField>().text;
  210. b.minor = ushort.Parse(PanelBeaconEdit.transform.GetChild(3).GetComponent<InputField>().text);
  211. b.major = ushort.Parse(PanelBeaconEdit.transform.GetChild(4).GetComponent<InputField>().text);
  212. b.mac = PanelBeaconEdit.transform.GetChild(5).GetComponent<InputField>().text;
  213. b.enabled = PanelBeaconEdit.transform.GetChild(6).GetComponent<Toggle>().isOn;
  214. PanelBeaconEdit.SetActive(false);
  215. //b.beacon.GetComponent<Renderer>().material.shader = shader2;
  216. });
  217. //var button_close = PanelBeaconEdit.transform.GetChild(7).transform.GetChild(1).GetComponent<Button>();
  218. //button_close.onClick.AddListener(() =>
  219. //{
  220. // PanelBeaconEdit.SetActive(false);
  221. // b.beacon.GetComponent<Renderer>().material.shader = shader1;
  222. //});
  223. var button_del = panel_button.transform.GetChild(2).GetComponent<Button>();
  224. button_del.onClick.AddListener(() =>
  225. {
  226. Destroy(beacon);
  227. Destroy(panel_button);
  228. Beacons[location.id].Remove(b);
  229. if (PanelBeaconEdit.activeSelf) PanelBeaconEdit.SetActive(false);
  230. });
  231. //b.id = (uint)Beacons.Count;
  232. b.beacon = beacon;
  233. b.panel_button = panel_button;
  234. Beacons[location.id].Add(b);
  235. }
  236. void BeaconEdit(Beacon b, string name_beacon)
  237. {
  238. PanelBeaconEdit.SetActive(true);
  239. PanelBeaconEdit.transform.GetChild(0).GetComponent<Text>().text = name_beacon;
  240. if (b != null)
  241. {
  242. PanelBeaconEdit.transform.GetChild(1).GetComponent<InputField>().text = b.uuid;
  243. PanelBeaconEdit.transform.GetChild(2).GetComponent<InputField>().text = b.vagrant_label.ToString();
  244. PanelBeaconEdit.transform.GetChild(3).GetComponent<InputField>().text = $"{b.major}";
  245. PanelBeaconEdit.transform.GetChild(4).GetComponent<InputField>().text = $"{b.major}";
  246. PanelBeaconEdit.transform.GetChild(5).GetComponent<InputField>().text = b.mac;
  247. PanelBeaconEdit.transform.GetChild(6).GetComponent<Toggle>().isOn = b.enabled;
  248. }
  249. }
  250. //GameObject edit_beacon;
  251. public void CloseBeaconParameters()
  252. {
  253. PanelBeaconEdit.SetActive(false);
  254. //var shader2 = Shader.Find("Standard");
  255. //edit_beacon.GetComponent<Renderer>().material.shader = shader2;
  256. }
  257. }