ChannelEnumMaskControl.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using System;
  2. using System.Reflection;
  3. using UnityEngine;
  4. using UnityEditor.Graphing;
  5. using UnityEngine.UIElements;
  6. namespace UnityEditor.ShaderGraph.Drawing.Controls
  7. {
  8. [AttributeUsage(AttributeTargets.Property)]
  9. class ChannelEnumMaskControlAttribute : Attribute, IControlAttribute
  10. {
  11. string m_Label;
  12. int m_SlotId;
  13. public ChannelEnumMaskControlAttribute(string label = null, int slotId = 0)
  14. {
  15. m_Label = label;
  16. m_SlotId = slotId;
  17. }
  18. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  19. {
  20. return new ChannelEnumMaskControlView(m_Label, m_SlotId, node, propertyInfo);
  21. }
  22. }
  23. class ChannelEnumMaskControlView : VisualElement, AbstractMaterialNodeModificationListener
  24. {
  25. string m_Label;
  26. AbstractMaterialNode m_Node;
  27. PropertyInfo m_PropertyInfo;
  28. IMGUIContainer m_Container;
  29. int m_SlotId;
  30. public ChannelEnumMaskControlView(string label, int slotId, AbstractMaterialNode node, PropertyInfo propertyInfo)
  31. {
  32. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/ChannelEnumMaskControlView"));
  33. m_Node = node;
  34. m_PropertyInfo = propertyInfo;
  35. m_SlotId = slotId;
  36. //if (!propertyInfo.PropertyType.IsEnum)
  37. //throw new ArgumentException("Property must be an enum.", "propertyInfo");
  38. m_Label = label;
  39. m_Container = new IMGUIContainer(OnGUIHandler);
  40. Add(m_Container);
  41. }
  42. void OnGUIHandler()
  43. {
  44. GUILayout.BeginHorizontal();
  45. GUILayout.Label(m_Label);
  46. UpdatePopup();
  47. GUILayout.EndHorizontal();
  48. }
  49. public void OnNodeModified(ModificationScope scope)
  50. {
  51. if (scope == ModificationScope.Graph)
  52. m_Container.MarkDirtyRepaint();
  53. }
  54. private void UpdatePopup()
  55. {
  56. var value = (int)m_PropertyInfo.GetValue(m_Node, null);
  57. using (var changeCheckScope = new EditorGUI.ChangeCheckScope())
  58. {
  59. int channelCount = SlotValueHelper.GetChannelCount(m_Node.FindSlot<MaterialSlot>(m_SlotId).concreteValueType);
  60. string[] enumEntryNames = Enum.GetNames(typeof(TextureChannel));
  61. string[] popupEntries = new string[channelCount];
  62. for (int i = 0; i < popupEntries.Length; i++)
  63. popupEntries[i] = enumEntryNames[i];
  64. value = EditorGUILayout.MaskField("", value, popupEntries, GUILayout.Width(80f));
  65. if (changeCheckScope.changed)
  66. {
  67. m_Node.owner.owner.RegisterCompleteObjectUndo("Change " + m_Node.name);
  68. m_PropertyInfo.SetValue(m_Node, value, null);
  69. }
  70. }
  71. }
  72. }
  73. }