EnumConversionControl.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. using System;
  2. using System.Linq;
  3. using System.Reflection;
  4. using UnityEditor.UIElements;
  5. using UnityEngine;
  6. using UnityEngine.UIElements;
  7. namespace UnityEditor.ShaderGraph.Drawing.Controls
  8. {
  9. interface IEnumConversion
  10. {
  11. Enum from { get; set; }
  12. Enum to { get; set; }
  13. }
  14. [AttributeUsage(AttributeTargets.Property)]
  15. class EnumConversionControlAttribute : Attribute, IControlAttribute
  16. {
  17. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  18. {
  19. return new EnumConversionControlView(node, propertyInfo);
  20. }
  21. }
  22. class EnumConversionControlView : VisualElement
  23. {
  24. AbstractMaterialNode m_Node;
  25. PropertyInfo m_PropertyInfo;
  26. IEnumConversion value
  27. {
  28. get { return (IEnumConversion)m_PropertyInfo.GetValue(m_Node, null); }
  29. set { m_PropertyInfo.SetValue(m_Node, value, null); }
  30. }
  31. public EnumConversionControlView(AbstractMaterialNode node, PropertyInfo propertyInfo)
  32. {
  33. if (!propertyInfo.PropertyType.GetInterfaces().Any(t => t == typeof(IEnumConversion)))
  34. throw new ArgumentException("Property type must implement IEnumConversion.");
  35. m_Node = node;
  36. m_PropertyInfo = propertyInfo;
  37. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/EnumConversionControlView"));
  38. var currentValue = value;
  39. var ec = (IEnumConversion)propertyInfo.GetValue(m_Node, null);
  40. propertyInfo.SetValue(m_Node, ec, null);
  41. var fromField = new EnumField(currentValue.from);
  42. fromField.RegisterValueChangedCallback(OnFromChanged);
  43. Add(fromField);
  44. var arrowLabel = new Label("➔");
  45. Add(arrowLabel);
  46. var toField = new EnumField(currentValue.to);
  47. toField.RegisterValueChangedCallback(OnToChanged);
  48. Add(toField);
  49. }
  50. void OnFromChanged(ChangeEvent<Enum> evt)
  51. {
  52. var currentValue = value;
  53. if (!Equals(currentValue.from, evt.newValue))
  54. {
  55. m_Node.owner.owner.RegisterCompleteObjectUndo("Change Colorspace From");
  56. currentValue.from = evt.newValue;
  57. value = currentValue;
  58. }
  59. }
  60. void OnToChanged(ChangeEvent<Enum> evt)
  61. {
  62. var currentValue = value;
  63. if (!Equals(currentValue.to, evt.newValue))
  64. {
  65. m_Node.owner.owner.RegisterCompleteObjectUndo("Change Colorspace To");
  66. currentValue.to = evt.newValue;
  67. value = currentValue;
  68. }
  69. }
  70. }
  71. }