Vector4MaterialSlot.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEditor.Graphing;
  4. using UnityEditor.ShaderGraph.Drawing.Slots;
  5. using UnityEditor.ShaderGraph.Internal;
  6. using UnityEngine;
  7. using UnityEngine.UIElements;
  8. namespace UnityEditor.ShaderGraph
  9. {
  10. [Serializable]
  11. class Vector4MaterialSlot : MaterialSlot, IMaterialSlotHasValue<Vector4>
  12. {
  13. [SerializeField]
  14. private Vector4 m_Value;
  15. [SerializeField]
  16. private Vector4 m_DefaultValue = Vector4.zero;
  17. string[] m_Labels;
  18. public Vector4MaterialSlot()
  19. {
  20. m_Labels = new[] { "X", "Y", "Z", "W" };
  21. }
  22. public Vector4MaterialSlot(
  23. int slotId,
  24. string displayName,
  25. string shaderOutputName,
  26. SlotType slotType,
  27. Vector4 value,
  28. ShaderStageCapability stageCapability = ShaderStageCapability.All,
  29. string label1 = "X",
  30. string label2 = "Y",
  31. string label3 = "Z",
  32. string label4 = "W",
  33. bool hidden = false)
  34. : base(slotId, displayName, shaderOutputName, slotType, stageCapability, hidden)
  35. {
  36. m_Value = value;
  37. m_Labels = new[] { label1, label2, label3, label4 };
  38. }
  39. public Vector4 defaultValue { get { return m_DefaultValue; } }
  40. public Vector4 value
  41. {
  42. get { return m_Value; }
  43. set { m_Value = value; }
  44. }
  45. public override VisualElement InstantiateControl()
  46. {
  47. return new MultiFloatSlotControlView(owner, m_Labels, () => value, (newValue) => value = newValue);
  48. }
  49. protected override string ConcreteSlotValueAsVariable()
  50. {
  51. return string.Format("$precision4 ({0}, {1}, {2}, {3})"
  52. , NodeUtils.FloatToShaderValue(value.x)
  53. , NodeUtils.FloatToShaderValue(value.y)
  54. , NodeUtils.FloatToShaderValue(value.z)
  55. , NodeUtils.FloatToShaderValue(value.w));
  56. }
  57. public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
  58. {
  59. if (!generationMode.IsPreview())
  60. return;
  61. var matOwner = owner as AbstractMaterialNode;
  62. if (matOwner == null)
  63. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  64. var property = new Vector4ShaderProperty()
  65. {
  66. overrideReferenceName = matOwner.GetVariableNameForSlot(id),
  67. generatePropertyBlock = false,
  68. value = value
  69. };
  70. properties.AddShaderProperty(property);
  71. }
  72. public override void GetPreviewProperties(List<PreviewProperty> properties, string name)
  73. {
  74. var pp = new PreviewProperty(PropertyType.Vector4)
  75. {
  76. name = name,
  77. vector4Value = new Vector4(value.x, value.y, value.z, value.w),
  78. };
  79. properties.Add(pp);
  80. }
  81. public override SlotValueType valueType { get { return SlotValueType.Vector4; } }
  82. public override ConcreteSlotValueType concreteValueType { get { return ConcreteSlotValueType.Vector4; } }
  83. public override void CopyValuesFrom(MaterialSlot foundSlot)
  84. {
  85. var slot = foundSlot as Vector4MaterialSlot;
  86. if (slot != null)
  87. value = slot.value;
  88. }
  89. }
  90. }