PortInputView.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. using System;
  2. using UnityEngine;
  3. using UnityEditor.Experimental.GraphView;
  4. using UnityEngine.UIElements;
  5. using UnityEngine.UIElements.StyleSheets;
  6. namespace UnityEditor.ShaderGraph.Drawing
  7. {
  8. class PortInputView : GraphElement, IDisposable
  9. {
  10. readonly CustomStyleProperty<Color> k_EdgeColorProperty = new CustomStyleProperty<Color>("--edge-color");
  11. Color m_EdgeColor = Color.red;
  12. public Color edgeColor
  13. {
  14. get { return m_EdgeColor; }
  15. }
  16. public MaterialSlot slot
  17. {
  18. get { return m_Slot; }
  19. }
  20. MaterialSlot m_Slot;
  21. ConcreteSlotValueType m_SlotType;
  22. VisualElement m_Control;
  23. VisualElement m_Container;
  24. EdgeControl m_EdgeControl;
  25. public PortInputView(MaterialSlot slot)
  26. {
  27. styleSheets.Add(Resources.Load<StyleSheet>("Styles/PortInputView"));
  28. pickingMode = PickingMode.Ignore;
  29. ClearClassList();
  30. m_Slot = slot;
  31. m_SlotType = slot.concreteValueType;
  32. AddToClassList("type" + m_SlotType);
  33. m_EdgeControl = new EdgeControl
  34. {
  35. @from = new Vector2(232f - 21f, 11.5f),
  36. to = new Vector2(232f, 11.5f),
  37. edgeWidth = 2,
  38. pickingMode = PickingMode.Ignore
  39. };
  40. Add(m_EdgeControl);
  41. m_Container = new VisualElement { name = "container" };
  42. {
  43. m_Control = this.slot.InstantiateControl();
  44. if (m_Control != null)
  45. m_Container.Add(m_Control);
  46. var slotElement = new VisualElement { name = "slot" };
  47. {
  48. slotElement.Add(new VisualElement { name = "dot" });
  49. }
  50. m_Container.Add(slotElement);
  51. }
  52. Add(m_Container);
  53. m_Container.visible = m_EdgeControl.visible = m_Control != null;
  54. RegisterCallback<CustomStyleResolvedEvent>(OnCustomStyleResolved);
  55. }
  56. private void OnCustomStyleResolved(CustomStyleResolvedEvent e)
  57. {
  58. Color colorValue;
  59. if (e.customStyle.TryGetValue(k_EdgeColorProperty, out colorValue))
  60. m_EdgeColor = colorValue;
  61. m_EdgeControl.UpdateLayout();
  62. m_EdgeControl.inputColor = edgeColor;
  63. m_EdgeControl.outputColor = edgeColor;
  64. }
  65. public void UpdateSlot(MaterialSlot newSlot)
  66. {
  67. m_Slot = newSlot;
  68. Recreate();
  69. }
  70. public void UpdateSlotType()
  71. {
  72. if (slot.concreteValueType != m_SlotType)
  73. Recreate();
  74. }
  75. void Recreate()
  76. {
  77. RemoveFromClassList("type" + m_SlotType);
  78. m_SlotType = slot.concreteValueType;
  79. AddToClassList("type" + m_SlotType);
  80. if (m_Control != null)
  81. {
  82. var disposable = m_Control as IDisposable;
  83. if (disposable != null)
  84. disposable.Dispose();
  85. m_Container.Remove(m_Control);
  86. }
  87. m_Control = slot.InstantiateControl();
  88. if (m_Control != null)
  89. m_Container.Insert(0, m_Control);
  90. m_Container.visible = m_EdgeControl.visible = m_Control != null;
  91. }
  92. public void Dispose()
  93. {
  94. var disposable = m_Control as IDisposable;
  95. if (disposable != null)
  96. disposable.Dispose();
  97. }
  98. }
  99. }