Vertex.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEditor;
  4. using UnityEngine;
  5. public class Vertex : MonoBehaviour
  6. {
  7. public bool isSelected;
  8. public List<Vertex> neighbours;
  9. public Vertex assignNeighbour;
  10. [EasyButtons.Button]
  11. void bindSelected(){
  12. bindSelected();
  13. }
  14. [EasyButtons.Button]
  15. void addNeighbour(){
  16. AddNeighbour();
  17. }
  18. [MenuItem("Vertex/bind_selected #b")]
  19. static void bind_selected()
  20. {
  21. List<Vertex> selectedVerticies = new List<Vertex>();
  22. foreach (Object obj in Selection.objects)
  23. {
  24. try
  25. {
  26. selectedVerticies.Add(((GameObject)obj).GetComponent<Vertex>());
  27. }
  28. catch
  29. {
  30. }
  31. }
  32. foreach (Vertex vertex in selectedVerticies)
  33. {
  34. foreach (Vertex newNeighbour in selectedVerticies)
  35. {
  36. if (newNeighbour == vertex) { continue; }
  37. if (!vertex.neighbours.Contains(newNeighbour)) { vertex.neighbours.Add(newNeighbour); }
  38. if (!newNeighbour.neighbours.Contains(vertex)) { newNeighbour.neighbours.Add(vertex); }
  39. }
  40. }
  41. }
  42. [MenuItem("Vertex/unbind_selected #u")]
  43. static void unbind_selected()
  44. {
  45. List<Vertex> selectedVerticies = new List<Vertex>();
  46. foreach (Object obj in Selection.objects)
  47. {
  48. try
  49. {
  50. selectedVerticies.Add(((GameObject)obj).GetComponent<Vertex>());
  51. }
  52. catch
  53. {
  54. }
  55. }
  56. foreach (Vertex vertex in selectedVerticies)
  57. {
  58. foreach (Vertex newNeighbour in selectedVerticies)
  59. {
  60. if (newNeighbour == vertex) { continue; }
  61. if (vertex.neighbours.Contains(newNeighbour)) { vertex.neighbours.Remove(newNeighbour); }
  62. if (newNeighbour.neighbours.Contains(vertex)) { newNeighbour.neighbours.Remove(vertex); }
  63. }
  64. }
  65. }
  66. [MenuItem("Vertex/add_neighbour #e")]
  67. static void AddNeighbour()
  68. {
  69. List<Vertex> selectedVerticies = new List<Vertex>();
  70. foreach (Object obj in Selection.objects)
  71. {
  72. Debug.Log(obj.name);
  73. try
  74. {
  75. selectedVerticies.Add(((GameObject)obj).GetComponent<Vertex>());
  76. }
  77. catch
  78. {
  79. }
  80. }
  81. if (selectedVerticies.Count == 1)
  82. {
  83. GameObject go = Instantiate(selectedVerticies[0].gameObject, selectedVerticies[0].transform.position, Quaternion.identity);
  84. if (selectedVerticies[0].neighbours == null) { selectedVerticies[0].neighbours = new List<Vertex>(); }
  85. selectedVerticies[0].neighbours.Add(go.GetComponent<Vertex>());
  86. go.GetComponent<Vertex>().neighbours = new List<Vertex>();
  87. go.GetComponent<Vertex>().neighbours.Add(selectedVerticies[0]);
  88. go.transform.parent = selectedVerticies[0].transform.parent;
  89. go.transform.name = selectedVerticies[0].transform.name;
  90. UnityEditor.Selection.activeGameObject = go;
  91. }
  92. else if (selectedVerticies.Count > 1)
  93. {
  94. Object[] selections = new Object[selectedVerticies.Count];
  95. for (int i = 0; i < selectedVerticies.Count; i++)
  96. {
  97. GameObject go = Instantiate(selectedVerticies[i].gameObject, selectedVerticies[i].transform.position, Quaternion.identity);
  98. if (selectedVerticies[i].neighbours == null) { selectedVerticies[i].neighbours = new List<Vertex>(); }
  99. selectedVerticies[i].neighbours.Add(go.GetComponent<Vertex>());
  100. go.GetComponent<Vertex>().neighbours = new List<Vertex>();
  101. go.GetComponent<Vertex>().neighbours.Add(selectedVerticies[i]);
  102. go.transform.parent = selectedVerticies[i].transform.parent;
  103. go.transform.name = selectedVerticies[i].transform.name;
  104. selections[i] = go;
  105. }
  106. Selection.objects = selections;
  107. }
  108. else
  109. {
  110. Debug.LogError("Please select single vertex to add new neighbour!");
  111. }
  112. }
  113. void Start()
  114. {
  115. }
  116. // Update is called once per frame
  117. void Update()
  118. {
  119. }
  120. void OnDrawGizmos()
  121. {
  122. isSelected = false;
  123. foreach (Object obj in UnityEditor.Selection.objects)
  124. {
  125. if ((GameObject)obj == gameObject)
  126. {
  127. isSelected = true;
  128. break;
  129. }
  130. }
  131. Gizmos.color = (isSelected) ? Color.green : Color.red;
  132. Gizmos.DrawSphere(transform.position, 0.1f);
  133. foreach (Vertex neighbour in neighbours)
  134. {
  135. if (neighbour == null)
  136. {
  137. neighbours.Remove(neighbour);
  138. }
  139. if (!neighbour.neighbours.Contains(this))
  140. {
  141. neighbour.neighbours.Add(this);
  142. }
  143. Gizmos.color = (isSelected || neighbour.isSelected) ? Color.green : Color.red; Gizmos.DrawLine(transform.position, neighbour.transform.position);
  144. }
  145. }
  146. void OnValidate()
  147. {
  148. if (assignNeighbour != null)
  149. {
  150. if (!neighbours.Contains(assignNeighbour)) { neighbours.Add(assignNeighbour); }
  151. if (!assignNeighbour.neighbours.Contains(this)) { assignNeighbour.neighbours.Add(this); }
  152. assignNeighbour = null;
  153. }
  154. }
  155. }