BeaconsEditorController.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. /// <summary>
  7. /// опт
  8. /// </summary>
  9. public class BeaconsEditorController : MonoBehaviour
  10. {
  11. public Dictionary<uint, Beacon> Beacons = new Dictionary<uint, Beacon>();
  12. // Start is called before the first frame update
  13. void Start()
  14. {
  15. }
  16. // Update is called once per frame
  17. void Update()
  18. {
  19. }
  20. public Beacon CreateBeacon(uint loaction_id)
  21. {
  22. var beacon = new Beacon
  23. {
  24. id = Convert.ToUInt32(4000000000 + Beacons.Count),
  25. location_id = loaction_id,
  26. enabled = true
  27. };
  28. AddBeacon(beacon);
  29. return beacon;
  30. }
  31. public void EditBeacon(Beacon beacon, string name)
  32. {
  33. }
  34. /// <summary>
  35. /// опт
  36. /// </summary>
  37. /// <param name="b"></param>
  38. public void AddBeacon(Beacon b)
  39. {
  40. var beacon = Instantiate(Resources.Load("GameObjects/Beacon", typeof(GameObject))) as GameObject;
  41. if (ModeController.editor) beacon.GetComponent<BeaconController>().mode = BeaconController.Mode.Editor;
  42. beacon.name = $"Beacon_{b.id}";
  43. beacon.transform.position = new Vector3(b.x, 0.5f, b.y);
  44. var beaconController = beacon.GetComponent<BeaconController>();
  45. beaconController.InformationPanel(b);
  46. beaconController.id = $"{b.id}";
  47. beaconController.BeaconEnabled(b, b.enabled);
  48. beacon.transform.SetParent(transform);
  49. var name_beacon = $"Маяк {b?.id.ToString() ?? Beacons.Count.ToString()}";
  50. //PanelBeaconEdit.transform.GetChild(0).GetComponent<Text>().text = name_beacon;
  51. var panel_button = Instantiate(Resources.Load("GameObjects/Panel_Beacon", typeof(GameObject))) as GameObject;
  52. //
  53. panel_button.name = $"Beacon_{b?.id.ToString() ?? Beacons.Count.ToString()}";
  54. var button = panel_button.transform.GetChild(0).GetComponent<Button>();
  55. button.name = $"BeaconButton_{Beacons.Count}";
  56. button.transform.GetChild(0).GetComponent<Text>().text = name_beacon;
  57. b.beacon = beacon;
  58. b.panel_button = panel_button;
  59. Beacons.Add(b.id, b);
  60. }
  61. public void SetParent(Transform parent)
  62. {
  63. foreach (var b in Beacons)
  64. b.Value.panel_button.transform.SetParent(parent);
  65. }
  66. public void DeleteBeacon(Beacon b)
  67. {
  68. Destroy(b.beacon);
  69. Destroy(b.panel_button);
  70. Beacons.Remove(b.id);
  71. }
  72. public void DeleteAllBeacons()
  73. {
  74. foreach (var b in Beacons)
  75. DeleteBeacon(b.Value);
  76. }
  77. }