ZonesEditorController.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 ZonesEditorController : MonoBehaviour
  10. {
  11. public Dictionary<uint, Zone> Zones = new Dictionary<uint, Zone>();
  12. //public class Zone
  13. //{
  14. //}
  15. // Start is called before the first frame update
  16. void Start()
  17. {
  18. }
  19. // Update is called once per frame
  20. void Update()
  21. {
  22. }
  23. public Zone CreateZone(uint location_id)
  24. {
  25. var z = new Zone {
  26. id = Convert.ToUInt32(4000000000 + Zones.Count),
  27. location_id = location_id,
  28. name = $"Зона {Zones.Count +1}"
  29. };
  30. AddZone(z);
  31. return z;
  32. }
  33. public void EditZone()
  34. {
  35. }
  36. /// <summary>
  37. /// добавление зоны
  38. /// </summary>
  39. /// <param name="Dialog"></param>
  40. /// <param name="location"></param>
  41. /// <param name="ZonesScroll"></param>
  42. /// <param name="z"></param>
  43. public void AddZone(Zone z)
  44. {
  45. var zone = Instantiate(Resources.Load("GameObjects/Zone", typeof(GameObject))) as GameObject;
  46. zone.transform.SetParent(transform);
  47. var zoneController = zone.GetComponent<ZoneController>();
  48. zoneController.Rename($"Zone_{Zones.Count + 1}", z.name);
  49. if (z != null)
  50. {
  51. zone.transform.position = new Vector3(z.start_height, 1, z.start_width);
  52. zone.transform.localScale = new Vector3(z.end_height, 1, z.end_width);
  53. }
  54. }
  55. public void DeleteZone(uint id)
  56. {
  57. Destroy(Zones[id].go);
  58. Destroy(Zones[id].buttons);
  59. Zones.Remove(id);
  60. }
  61. }