ChannelEnumControl.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Reflection;
  4. using UnityEngine;
  5. using UnityEditor.Graphing;
  6. using UnityEditor.UIElements;
  7. using UnityEngine.UIElements;
  8. namespace UnityEditor.ShaderGraph.Drawing.Controls
  9. {
  10. [AttributeUsage(AttributeTargets.Property)]
  11. class ChannelEnumControlAttribute : Attribute, IControlAttribute
  12. {
  13. string m_Label;
  14. int m_SlotId;
  15. public ChannelEnumControlAttribute(string label = null, int slotId = 0)
  16. {
  17. m_Label = label;
  18. m_SlotId = slotId;
  19. }
  20. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  21. {
  22. return new ChannelEnumControlView(m_Label, m_SlotId, node, propertyInfo);
  23. }
  24. }
  25. class ChannelEnumControlView : VisualElement, AbstractMaterialNodeModificationListener
  26. {
  27. AbstractMaterialNode m_Node;
  28. PropertyInfo m_PropertyInfo;
  29. int m_SlotId;
  30. PopupField<string> m_PopupField;
  31. string[] m_ValueNames;
  32. int m_PreviousChannelCount = -1;
  33. public ChannelEnumControlView(string label, int slotId, AbstractMaterialNode node, PropertyInfo propertyInfo)
  34. {
  35. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/ChannelEnumControlView"));
  36. m_Node = node;
  37. m_PropertyInfo = propertyInfo;
  38. m_SlotId = slotId;
  39. if (!propertyInfo.PropertyType.IsEnum)
  40. throw new ArgumentException("Property must be an enum.", "propertyInfo");
  41. Add(new Label(label ?? ObjectNames.NicifyVariableName(propertyInfo.Name)));
  42. var value = (Enum)m_PropertyInfo.GetValue(m_Node, null);
  43. m_ValueNames = Enum.GetNames(value.GetType());
  44. CreatePopup();
  45. }
  46. void OnValueChanged(ChangeEvent<string> evt)
  47. {
  48. var index = m_PopupField.index;
  49. var value = (int)m_PropertyInfo.GetValue(m_Node, null);
  50. if (!index.Equals(value))
  51. {
  52. m_Node.owner.owner.RegisterCompleteObjectUndo("Change " + m_Node.name);
  53. m_PropertyInfo.SetValue(m_Node, index, null);
  54. }
  55. CreatePopup();
  56. }
  57. public void OnNodeModified(ModificationScope scope)
  58. {
  59. if (scope == ModificationScope.Node)
  60. {
  61. CreatePopup();
  62. m_PopupField.MarkDirtyRepaint();
  63. }
  64. }
  65. void CreatePopup()
  66. {
  67. int channelCount = SlotValueHelper.GetChannelCount(m_Node.FindSlot<MaterialSlot>(m_SlotId).concreteValueType);
  68. if (m_PopupField != null)
  69. {
  70. if (channelCount == m_PreviousChannelCount)
  71. return;
  72. Remove(m_PopupField);
  73. }
  74. m_PreviousChannelCount = channelCount;
  75. List<string> popupEntries = new List<string>();
  76. for (int i = 0; i < channelCount; i++)
  77. popupEntries.Add(m_ValueNames[i]);
  78. var value = (int)m_PropertyInfo.GetValue(m_Node, null);
  79. if (value >= channelCount)
  80. value = 0;
  81. m_PopupField = new PopupField<string>(popupEntries, value);
  82. m_PopupField.RegisterValueChangedCallback(OnValueChanged);
  83. Add(m_PopupField);
  84. }
  85. }
  86. }