VectorControl.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. using System;
  2. using System.Globalization;
  3. using System.Linq;
  4. using System.Reflection;
  5. using UnityEngine;
  6. using UnityEditor.UIElements;
  7. using UnityEngine.UIElements;
  8. namespace UnityEditor.ShaderGraph.Drawing.Controls
  9. {
  10. [AttributeUsage(AttributeTargets.Property)]
  11. class MultiFloatControlAttribute : Attribute, IControlAttribute
  12. {
  13. string m_Label;
  14. string m_SubLabel1;
  15. string m_SubLabel2;
  16. string m_SubLabel3;
  17. string m_SubLabel4;
  18. public MultiFloatControlAttribute(string label = null, string subLabel1 = "X", string subLabel2 = "Y", string subLabel3 = "Z", string subLabel4 = "W")
  19. {
  20. m_SubLabel1 = subLabel1;
  21. m_SubLabel2 = subLabel2;
  22. m_SubLabel3 = subLabel3;
  23. m_SubLabel4 = subLabel4;
  24. m_Label = label;
  25. }
  26. public VisualElement InstantiateControl(AbstractMaterialNode node, PropertyInfo propertyInfo)
  27. {
  28. if (!MultiFloatControlView.validTypes.Contains(propertyInfo.PropertyType))
  29. return null;
  30. return new MultiFloatControlView(m_Label, m_SubLabel1, m_SubLabel2, m_SubLabel3, m_SubLabel4, node, propertyInfo);
  31. }
  32. }
  33. class MultiFloatControlView : VisualElement
  34. {
  35. public static Type[] validTypes = { typeof(float), typeof(Vector2), typeof(Vector3), typeof(Vector4) };
  36. AbstractMaterialNode m_Node;
  37. PropertyInfo m_PropertyInfo;
  38. Vector4 m_Value;
  39. int m_UndoGroup = -1;
  40. public MultiFloatControlView(string label, string subLabel1, string subLabel2, string subLabel3, string subLabel4, AbstractMaterialNode node, PropertyInfo propertyInfo)
  41. {
  42. var components = Array.IndexOf(validTypes, propertyInfo.PropertyType) + 1;
  43. if (components == -1)
  44. throw new ArgumentException("Property must be of type float, Vector2, Vector3 or Vector4.", "propertyInfo");
  45. styleSheets.Add(Resources.Load<StyleSheet>("Styles/Controls/MultiFloatControlView"));
  46. m_Node = node;
  47. m_PropertyInfo = propertyInfo;
  48. label = label ?? ObjectNames.NicifyVariableName(propertyInfo.Name);
  49. if (!string.IsNullOrEmpty(label))
  50. Add(new Label(label));
  51. m_Value = GetValue();
  52. AddField(0, subLabel1);
  53. if (components > 1)
  54. AddField(1, subLabel2);
  55. if (components > 2)
  56. AddField(2, subLabel3);
  57. if (components > 3)
  58. AddField(3, subLabel4);
  59. }
  60. void AddField(int index, string subLabel)
  61. {
  62. var dummy = new VisualElement { name = "dummy" };
  63. var label = new Label(subLabel);
  64. dummy.Add(label);
  65. Add(dummy);
  66. var field = new FloatField { userData = index, value = m_Value[index] };
  67. var dragger = new FieldMouseDragger<double>(field);
  68. dragger.SetDragZone(label);
  69. field.RegisterCallback<MouseDownEvent>(Repaint);
  70. field.RegisterCallback<MouseMoveEvent>(Repaint);
  71. field.RegisterValueChangedCallback(evt =>
  72. {
  73. var value = GetValue();
  74. value[index] = (float)evt.newValue;
  75. SetValue(value);
  76. m_UndoGroup = -1;
  77. this.MarkDirtyRepaint();
  78. });
  79. field.Q("unity-text-input").RegisterCallback<InputEvent>(evt =>
  80. {
  81. if (m_UndoGroup == -1)
  82. {
  83. m_UndoGroup = Undo.GetCurrentGroup();
  84. m_Node.owner.owner.RegisterCompleteObjectUndo("Change " + m_Node.name);
  85. }
  86. float newValue;
  87. if (!float.TryParse(evt.newData, NumberStyles.Float, CultureInfo.InvariantCulture.NumberFormat, out newValue))
  88. newValue = 0f;
  89. var value = GetValue();
  90. value[index] = newValue;
  91. SetValue(value);
  92. this.MarkDirtyRepaint();
  93. });
  94. field.Q("unity-text-input").RegisterCallback<KeyDownEvent>(evt =>
  95. {
  96. if (evt.keyCode == KeyCode.Escape && m_UndoGroup > -1)
  97. {
  98. Undo.RevertAllDownToGroup(m_UndoGroup);
  99. m_UndoGroup = -1;
  100. m_Value = GetValue();
  101. evt.StopPropagation();
  102. }
  103. this.MarkDirtyRepaint();
  104. });
  105. Add(field);
  106. }
  107. object ValueToPropertyType(Vector4 value)
  108. {
  109. if (m_PropertyInfo.PropertyType == typeof(float))
  110. return value.x;
  111. if (m_PropertyInfo.PropertyType == typeof(Vector2))
  112. return (Vector2)value;
  113. if (m_PropertyInfo.PropertyType == typeof(Vector3))
  114. return (Vector3)value;
  115. return value;
  116. }
  117. Vector4 GetValue()
  118. {
  119. var value = m_PropertyInfo.GetValue(m_Node, null);
  120. if (m_PropertyInfo.PropertyType == typeof(float))
  121. return new Vector4((float)value, 0f, 0f, 0f);
  122. if (m_PropertyInfo.PropertyType == typeof(Vector2))
  123. return (Vector2)value;
  124. if (m_PropertyInfo.PropertyType == typeof(Vector3))
  125. return (Vector3)value;
  126. return (Vector4)value;
  127. }
  128. void SetValue(Vector4 value)
  129. {
  130. m_PropertyInfo.SetValue(m_Node, ValueToPropertyType(value), null);
  131. }
  132. void Repaint<T>(MouseEventBase<T> evt) where T : MouseEventBase<T>, new()
  133. {
  134. evt.StopPropagation();
  135. this.MarkDirtyRepaint();
  136. }
  137. }
  138. }