PopupControl.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. using System;
  2. using System.Reflection;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using UnityEngine;
  6. using UnityEditor.UIElements;
  7. using UnityEngine.UIElements;
  8. namespace UnityEditor.ShaderGraph.Drawing.Controls
  9. {
  10. [AttributeUsage(AttributeTargets.Property)]
  11. class PopupControlAttribute : Attribute, IControlAttribute
  12. {
  13. string m_Label;
  14. //string[] m_Entries;
  15. public PopupControlAttribute(string label = null)
  16. {
  17. m_Label = label;
  18. //m_Entries = entries;
  19. }
  20. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  21. {
  22. return new PopupControlView(m_Label, node, propertyInfo);
  23. }
  24. }
  25. [Serializable]
  26. struct PopupList
  27. {
  28. public int selectedEntry;
  29. public string[] popupEntries;
  30. public PopupList(string[] entries, int defaultEntry)
  31. {
  32. popupEntries = entries;
  33. selectedEntry = defaultEntry;
  34. }
  35. }
  36. class PopupControlView : VisualElement
  37. {
  38. AbstractMaterialNode m_Node;
  39. PropertyInfo m_PropertyInfo;
  40. PopupField<string> m_PopupField;
  41. public PopupControlView(string label, AbstractMaterialNode node, PropertyInfo propertyInfo)
  42. {
  43. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/PopupControlView"));
  44. m_Node = node;
  45. m_PropertyInfo = propertyInfo;
  46. Type type = propertyInfo.PropertyType;
  47. if (type != typeof(PopupList))
  48. {
  49. throw new ArgumentException("Property must be a PopupList.", "propertyInfo");
  50. }
  51. Add(new Label(label ?? ObjectNames.NicifyVariableName(propertyInfo.Name)));
  52. var value = (PopupList)propertyInfo.GetValue(m_Node, null);
  53. m_PopupField = new PopupField<string>(new List<string>(value.popupEntries), value.selectedEntry);
  54. m_PopupField.RegisterValueChangedCallback(OnValueChanged);
  55. Add(m_PopupField);
  56. }
  57. void OnValueChanged(ChangeEvent<string> evt)
  58. {
  59. var value = (PopupList)m_PropertyInfo.GetValue(m_Node, null);
  60. value.selectedEntry = m_PopupField.index;
  61. m_PropertyInfo.SetValue(m_Node, value, null);
  62. m_Node.owner.owner.RegisterCompleteObjectUndo("Change " + m_Node.name);
  63. }
  64. }
  65. }