ZonesEditorController.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.id = z.id;
  49. zoneController.name_zone = z.name;
  50. zoneController.Rename($"Zone_{Zones.Count + 1}", z.name);
  51. if (z != null)
  52. {
  53. zone.transform.position = new Vector3(z.start_height, 1, z.start_width);
  54. zone.transform.localScale = new Vector3(z.end_height, 1, z.end_width);
  55. }
  56. }
  57. public void DeleteZone(uint id)
  58. {
  59. Destroy(Zones[id].go);
  60. Destroy(Zones[id].buttons);
  61. Zones.Remove(id);
  62. }
  63. }