SliderControl.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. using System;
  2. using System.Reflection;
  3. using UnityEngine;
  4. using UnityEditor.Graphing;
  5. using System.Globalization;
  6. using UnityEditor.UIElements;
  7. using UnityEngine.UIElements;
  8. namespace UnityEditor.ShaderGraph.Drawing.Controls
  9. {
  10. [AttributeUsage(AttributeTargets.Property)]
  11. class SliderControlAttribute : Attribute, IControlAttribute
  12. {
  13. string m_Label;
  14. bool m_DisplayMinMax;
  15. public SliderControlAttribute(string label = null, bool displayMinMax = false)
  16. {
  17. m_Label = label;
  18. m_DisplayMinMax = displayMinMax;
  19. }
  20. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  21. {
  22. return new SliderControlView(m_Label, m_DisplayMinMax, node, propertyInfo);
  23. }
  24. }
  25. class SliderControlView : VisualElement, AbstractMaterialNodeModificationListener
  26. {
  27. AbstractMaterialNode m_Node;
  28. PropertyInfo m_PropertyInfo;
  29. bool m_DisplayMinMax;
  30. Vector3 m_Value;
  31. VisualElement m_SliderPanel;
  32. Slider m_Slider;
  33. FloatField m_SliderInput;
  34. FloatField m_MinField;
  35. FloatField m_MaxField;
  36. public SliderControlView(string label, bool displayMinMax, AbstractMaterialNode node, PropertyInfo propertyInfo)
  37. {
  38. m_Node = node;
  39. m_PropertyInfo = propertyInfo;
  40. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/SliderControlView"));
  41. m_DisplayMinMax = displayMinMax;
  42. if (propertyInfo.PropertyType != typeof(Vector3))
  43. throw new ArgumentException("Property must be of type Vector3.", "propertyInfo");
  44. new GUIContent(label ?? ObjectNames.NicifyVariableName(propertyInfo.Name));
  45. m_Value = (Vector3)m_PropertyInfo.GetValue(m_Node, null);
  46. m_Slider = new Slider(m_Value.y, m_Value.z) { value = m_Value.x };
  47. m_Slider.RegisterValueChangedCallback((evt) => OnChangeSlider(evt.newValue));
  48. m_SliderInput = new FloatField { value = m_Value.x };
  49. m_SliderInput.RegisterValueChangedCallback(evt =>
  50. {
  51. var value = (float)evt.newValue;
  52. m_Value.x = value;
  53. m_PropertyInfo.SetValue(m_Node, m_Value, null);
  54. this.MarkDirtyRepaint();
  55. });
  56. m_SliderInput.Q("unity-text-input").RegisterCallback<FocusOutEvent>(evt =>
  57. {
  58. float minValue = Mathf.Min(m_Value.x, m_Value.y);
  59. float maxValue = Mathf.Max(m_Value.x, m_Value.z);
  60. m_Value = new Vector3(m_Value.x, minValue, maxValue);
  61. m_MinField.value = minValue;
  62. m_MaxField.value = maxValue;
  63. UpdateSlider();
  64. m_PropertyInfo.SetValue(m_Node, m_Value, null);
  65. this.MarkDirtyRepaint();
  66. });
  67. m_SliderPanel = new VisualElement { name = "SliderPanel" };
  68. if (!string.IsNullOrEmpty(label))
  69. m_SliderPanel.Add(new Label(label));
  70. m_SliderPanel.Add(m_Slider);
  71. m_SliderPanel.Add(m_SliderInput);
  72. Add(m_SliderPanel);
  73. if (m_DisplayMinMax)
  74. {
  75. var fieldsPanel = new VisualElement { name = "FieldsPanel" };
  76. m_MinField = AddMinMaxField(fieldsPanel, "Min", 1);
  77. m_MaxField = AddMinMaxField(fieldsPanel, "Max", 2);
  78. Add(fieldsPanel);
  79. }
  80. }
  81. public void OnNodeModified(ModificationScope scope)
  82. {
  83. if (scope == ModificationScope.Graph)
  84. {
  85. this.MarkDirtyRepaint();
  86. }
  87. }
  88. void OnChangeSlider(float newValue)
  89. {
  90. m_Node.owner.owner.RegisterCompleteObjectUndo("Slider Change");
  91. var value = (Vector3)m_PropertyInfo.GetValue(m_Node, null);
  92. value.x = newValue;
  93. m_PropertyInfo.SetValue(m_Node, value, null);
  94. if (m_SliderInput != null)
  95. m_SliderInput.value = newValue;
  96. m_PropertyInfo.SetValue(m_Node, m_Value, null);
  97. this.MarkDirtyRepaint();
  98. }
  99. void UpdateSlider()
  100. {
  101. m_SliderPanel.Remove(m_Slider);
  102. m_Slider = new Slider(m_Value.y, m_Value.z) { value = m_Value.x };
  103. m_Slider.RegisterValueChangedCallback((evt) => OnChangeSlider(evt.newValue));
  104. m_SliderPanel.Add(m_Slider);
  105. m_SliderPanel.Add(m_SliderInput);
  106. }
  107. FloatField AddMinMaxField(VisualElement panel, string label, int index)
  108. {
  109. var floatField = new FloatField { value = m_Value[index] };
  110. if (label != null)
  111. {
  112. var labelField = new Label(label);
  113. panel.Add(labelField);
  114. }
  115. floatField.RegisterValueChangedCallback(evt =>
  116. {
  117. m_Value[index] = (float)evt.newValue;
  118. m_PropertyInfo.SetValue(m_Node, m_Value, null);
  119. this.MarkDirtyRepaint();
  120. });
  121. floatField.Q("unity-text-input").RegisterCallback<FocusOutEvent>(evt =>
  122. {
  123. if (index == 1)
  124. {
  125. m_Value[index] = Mathf.Min(m_Value[index], m_Value.z);
  126. m_MinField.value = m_Value[index];
  127. }
  128. else
  129. {
  130. m_Value[index] = Mathf.Max(m_Value[index], m_Value.y);
  131. m_MaxField.value = m_Value[index];
  132. }
  133. float newValue = Mathf.Max(Mathf.Min(m_Value.x, m_Value.z), m_Value.y);
  134. m_Value.x = newValue;
  135. m_SliderInput.value = newValue;
  136. UpdateSlider();
  137. m_PropertyInfo.SetValue(m_Node, m_Value, null);
  138. this.MarkDirtyRepaint();
  139. });
  140. panel.Add(floatField);
  141. return floatField;
  142. }
  143. void Repaint<T>(MouseEventBase<T> evt) where T : MouseEventBase<T>, new()
  144. {
  145. evt.StopPropagation();
  146. this.MarkDirtyRepaint();
  147. }
  148. }
  149. }