ToggleControl.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. using System;
  2. using System.Reflection;
  3. using UnityEditor.Graphing;
  4. using UnityEngine;
  5. using UnityEngine.UIElements;
  6. namespace UnityEditor.ShaderGraph.Drawing.Controls
  7. {
  8. [Serializable]
  9. struct ToggleData
  10. {
  11. public bool isOn;
  12. public bool isEnabled;
  13. public ToggleData(bool on, bool enabled)
  14. {
  15. isOn = on;
  16. isEnabled = enabled;
  17. }
  18. public ToggleData(bool on)
  19. {
  20. isOn = on;
  21. isEnabled = true;
  22. }
  23. }
  24. [AttributeUsage(AttributeTargets.Property)]
  25. class ToggleControlAttribute : Attribute, IControlAttribute
  26. {
  27. string m_Label;
  28. public ToggleControlAttribute(string label = null)
  29. {
  30. m_Label = label;
  31. }
  32. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  33. {
  34. return new ToggleControlView(m_Label, node, propertyInfo);
  35. }
  36. }
  37. class ToggleControlView : VisualElement, AbstractMaterialNodeModificationListener
  38. {
  39. AbstractMaterialNode m_Node;
  40. PropertyInfo m_PropertyInfo;
  41. Label m_Label;
  42. Toggle m_Toggle;
  43. public ToggleControlView(string label, AbstractMaterialNode node, PropertyInfo propertyInfo)
  44. {
  45. m_Node = node;
  46. m_PropertyInfo = propertyInfo;
  47. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/ToggleControlView"));
  48. if (propertyInfo.PropertyType != typeof(ToggleData))
  49. throw new ArgumentException("Property must be a Toggle.", "propertyInfo");
  50. label = label ?? ObjectNames.NicifyVariableName(propertyInfo.Name);
  51. var value = (ToggleData)m_PropertyInfo.GetValue(m_Node, null);
  52. var panel = new VisualElement { name = "togglePanel" };
  53. if (!string.IsNullOrEmpty(label))
  54. {
  55. m_Label = new Label(label);
  56. m_Label.SetEnabled(value.isEnabled);
  57. panel.Add(m_Label);
  58. }
  59. m_Toggle = new Toggle();
  60. m_Toggle.OnToggleChanged(OnChangeToggle);
  61. m_Toggle.SetEnabled(value.isEnabled);
  62. m_Toggle.value = value.isOn;
  63. panel.Add(m_Toggle);
  64. Add(panel);
  65. }
  66. public void OnNodeModified(ModificationScope scope)
  67. {
  68. var value = (ToggleData)m_PropertyInfo.GetValue(m_Node, null);
  69. m_Toggle.SetEnabled(value.isEnabled);
  70. if (m_Label != null)
  71. m_Label.SetEnabled(value.isEnabled);
  72. if (scope == ModificationScope.Graph)
  73. {
  74. this.MarkDirtyRepaint();
  75. }
  76. }
  77. void OnChangeToggle(ChangeEvent<bool> evt)
  78. {
  79. m_Node.owner.owner.RegisterCompleteObjectUndo("Toggle Change");
  80. var value = (ToggleData)m_PropertyInfo.GetValue(m_Node, null);
  81. value.isOn = evt.newValue;
  82. m_PropertyInfo.SetValue(m_Node, value, null);
  83. this.MarkDirtyRepaint();
  84. }
  85. }
  86. }