GradientUtil.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. using UnityEditor.ShaderGraph.Internal;
  2. using UnityEditor.Graphing;
  3. using UnityEngine;
  4. namespace UnityEditor.ShaderGraph
  5. {
  6. static class GradientUtil
  7. {
  8. public static string GetGradientValue(Gradient gradient, string delimiter = ";")
  9. {
  10. string colorKeys = "";
  11. for(int i = 0; i < 8; i++)
  12. {
  13. if(i < gradient.colorKeys.Length)
  14. colorKeys += $"$precision4({NodeUtils.FloatToShaderValue(gradient.colorKeys[i].color.r)}, " +
  15. $"{NodeUtils.FloatToShaderValue(gradient.colorKeys[i].color.g)}, " +
  16. $"{NodeUtils.FloatToShaderValue(gradient.colorKeys[i].color.b)}, " +
  17. $"{NodeUtils.FloatToShaderValue(gradient.colorKeys[i].time)})";
  18. else
  19. colorKeys += "$precision4(0, 0, 0, 0)";
  20. if(i < 7)
  21. colorKeys += ",";
  22. }
  23. string alphaKeys = "";
  24. for(int i = 0; i < 8; i++)
  25. {
  26. if(i < gradient.alphaKeys.Length)
  27. alphaKeys += $"$precision2({NodeUtils.FloatToShaderValue(gradient.alphaKeys[i].alpha)}, {NodeUtils.FloatToShaderValue(gradient.alphaKeys[i].time)})";
  28. else
  29. alphaKeys += "$precision2(0, 0)";
  30. if(i < 7)
  31. alphaKeys += ",";
  32. }
  33. return $"NewGradient({(int)gradient.mode}, {gradient.colorKeys.Length}, {gradient.alphaKeys.Length}, {colorKeys}, {alphaKeys}){delimiter}";
  34. }
  35. public static string GetGradientForPreview(string name)
  36. {
  37. string colorKeys = "";
  38. for(int i = 0; i < 8; i++)
  39. {
  40. colorKeys += $"{name}_ColorKey{i}";
  41. if(i < 7)
  42. colorKeys += ",";
  43. }
  44. string alphaKeys = "";
  45. for(int i = 0; i < 8; i++)
  46. {
  47. alphaKeys += $"{name}_AlphaKey{i}";
  48. if(i < 7)
  49. alphaKeys += ",";
  50. }
  51. return $"NewGradient({name}_Type, {name}_ColorsLength, {name}_AlphasLength, {colorKeys}, {alphaKeys})";
  52. }
  53. public static void GetGradientPropertiesForPreview(PropertyCollector properties, string name, Gradient value)
  54. {
  55. properties.AddShaderProperty(new Vector1ShaderProperty()
  56. {
  57. overrideReferenceName = $"{name}_Type",
  58. value = (int)value.mode,
  59. generatePropertyBlock = false
  60. });
  61. properties.AddShaderProperty(new Vector1ShaderProperty()
  62. {
  63. overrideReferenceName = $"{name}_ColorsLength",
  64. value = value.colorKeys.Length,
  65. generatePropertyBlock = false
  66. });
  67. properties.AddShaderProperty(new Vector1ShaderProperty()
  68. {
  69. overrideReferenceName = $"{name}_AlphasLength",
  70. value = value.alphaKeys.Length,
  71. generatePropertyBlock = false
  72. });
  73. for (int i = 0; i < 8; i++)
  74. {
  75. properties.AddShaderProperty(new Vector4ShaderProperty()
  76. {
  77. overrideReferenceName = $"{name}_ColorKey{i}",
  78. value = i < value.colorKeys.Length ? GradientUtil.ColorKeyToVector(value.colorKeys[i]) : Vector4.zero,
  79. generatePropertyBlock = false
  80. });
  81. }
  82. for (int i = 0; i < 8; i++)
  83. {
  84. properties.AddShaderProperty(new Vector2ShaderProperty()
  85. {
  86. overrideReferenceName = $"{name}_AlphaKey{i}",
  87. value = i < value.alphaKeys.Length ? GradientUtil.AlphaKeyToVector(value.alphaKeys[i]) : Vector2.zero,
  88. generatePropertyBlock = false
  89. });
  90. }
  91. }
  92. public static bool CheckEquivalency(Gradient A, Gradient B)
  93. {
  94. var currentMode = A.mode;
  95. var currentColorKeys = A.colorKeys;
  96. var currentAlphaKeys = A.alphaKeys;
  97. var newMode = B.mode;
  98. var newColorKeys = B.colorKeys;
  99. var newAlphaKeys = B.alphaKeys;
  100. if (currentMode != newMode || currentColorKeys.Length != newColorKeys.Length || currentAlphaKeys.Length != newAlphaKeys.Length)
  101. {
  102. return false;
  103. }
  104. else
  105. {
  106. for (var i = 0; i < currentColorKeys.Length; i++)
  107. {
  108. if (currentColorKeys[i].color != newColorKeys[i].color || Mathf.Abs(currentColorKeys[i].time - newColorKeys[i].time) > 1e-9)
  109. return false;
  110. }
  111. for (var i = 0; i < currentAlphaKeys.Length; i++)
  112. {
  113. if (Mathf.Abs(currentAlphaKeys[i].alpha - newAlphaKeys[i].alpha) > 1e-9 || Mathf.Abs(currentAlphaKeys[i].time - newAlphaKeys[i].time) > 1e-9)
  114. return false;
  115. }
  116. }
  117. return true;
  118. }
  119. public static Vector4 ColorKeyToVector(GradientColorKey key)
  120. {
  121. return new Vector4(key.color.r, key.color.g, key.color.b, key.time);
  122. }
  123. public static Vector2 AlphaKeyToVector(GradientAlphaKey key)
  124. {
  125. return new Vector2(key.alpha, key.time);
  126. }
  127. }
  128. }