PreviewProperty.cs 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using UnityEngine;
  4. using UnityEditor.ShaderGraph.Internal;
  5. namespace UnityEditor.ShaderGraph
  6. {
  7. struct PreviewProperty
  8. {
  9. public string name { get; set; }
  10. public PropertyType propType { get; private set; }
  11. public PreviewProperty(PropertyType type) : this()
  12. {
  13. propType = type;
  14. }
  15. [StructLayout(LayoutKind.Explicit)]
  16. struct ClassData
  17. {
  18. [FieldOffset(0)]
  19. public Texture textureValue;
  20. [FieldOffset(0)]
  21. public Cubemap cubemapValue;
  22. [FieldOffset(0)]
  23. public Gradient gradientValue;
  24. }
  25. [StructLayout(LayoutKind.Explicit)]
  26. struct StructData
  27. {
  28. [FieldOffset(0)]
  29. public Color colorValue;
  30. [FieldOffset(0)]
  31. public Vector4 vector4Value;
  32. [FieldOffset(0)]
  33. public float floatValue;
  34. [FieldOffset(0)]
  35. public bool booleanValue;
  36. [FieldOffset(0)]
  37. public Matrix4x4 matrixValue;
  38. }
  39. ClassData m_ClassData;
  40. StructData m_StructData;
  41. public Color colorValue
  42. {
  43. get
  44. {
  45. if (propType != PropertyType.Color)
  46. throw new ArgumentException(string.Format(k_GetErrorMessage, PropertyType.Color, propType));
  47. return m_StructData.colorValue;
  48. }
  49. set
  50. {
  51. if (propType != PropertyType.Color)
  52. throw new ArgumentException(string.Format(k_SetErrorMessage, PropertyType.Color, propType));
  53. m_StructData.colorValue = value;
  54. }
  55. }
  56. public Texture textureValue
  57. {
  58. get
  59. {
  60. if (propType != PropertyType.Texture2D && propType != PropertyType.Texture2DArray && propType != PropertyType.Texture3D)
  61. throw new ArgumentException(string.Format(k_GetErrorMessage, PropertyType.Texture2D, propType));
  62. return m_ClassData.textureValue;
  63. }
  64. set
  65. {
  66. if (propType != PropertyType.Texture2D && propType != PropertyType.Texture2DArray && propType != PropertyType.Texture3D)
  67. throw new ArgumentException(string.Format(k_SetErrorMessage, PropertyType.Texture2D, propType));
  68. m_ClassData.textureValue = value;
  69. }
  70. }
  71. public Cubemap cubemapValue
  72. {
  73. get
  74. {
  75. if (propType != PropertyType.Cubemap)
  76. throw new ArgumentException(string.Format(k_GetErrorMessage, PropertyType.Cubemap, propType));
  77. return m_ClassData.cubemapValue;
  78. }
  79. set
  80. {
  81. if (propType != PropertyType.Cubemap)
  82. throw new ArgumentException(string.Format(k_SetErrorMessage, PropertyType.Cubemap, propType));
  83. m_ClassData.cubemapValue = value;
  84. }
  85. }
  86. public Gradient gradientValue
  87. {
  88. get
  89. {
  90. if (propType != PropertyType.Gradient)
  91. throw new ArgumentException(string.Format(k_GetErrorMessage, PropertyType.Gradient, propType));
  92. return m_ClassData.gradientValue;
  93. }
  94. set
  95. {
  96. if (propType != PropertyType.Gradient)
  97. throw new ArgumentException(string.Format(k_SetErrorMessage, PropertyType.Gradient, propType));
  98. m_ClassData.gradientValue = value;
  99. }
  100. }
  101. public Vector4 vector4Value
  102. {
  103. get
  104. {
  105. if (propType != PropertyType.Vector2 && propType != PropertyType.Vector3 && propType != PropertyType.Vector4)
  106. throw new ArgumentException(string.Format(k_GetErrorMessage, PropertyType.Vector4, propType));
  107. return m_StructData.vector4Value;
  108. }
  109. set
  110. {
  111. if (propType != PropertyType.Vector2 && propType != PropertyType.Vector3 && propType != PropertyType.Vector4
  112. && propType != PropertyType.Matrix2 && propType != PropertyType.Matrix3 && propType != PropertyType.Matrix4)
  113. throw new ArgumentException(string.Format(k_SetErrorMessage, PropertyType.Vector4, propType));
  114. m_StructData.vector4Value = value;
  115. }
  116. }
  117. public float floatValue
  118. {
  119. get
  120. {
  121. if (propType != PropertyType.Vector1)
  122. throw new ArgumentException(string.Format(k_GetErrorMessage, PropertyType.Vector1, propType));
  123. return m_StructData.floatValue;
  124. }
  125. set
  126. {
  127. if (propType != PropertyType.Vector1)
  128. throw new ArgumentException(string.Format(k_SetErrorMessage, PropertyType.Vector1, propType));
  129. m_StructData.floatValue = value;
  130. }
  131. }
  132. public bool booleanValue
  133. {
  134. get
  135. {
  136. if (propType != PropertyType.Boolean)
  137. throw new ArgumentException(string.Format(k_GetErrorMessage, PropertyType.Boolean, propType));
  138. return m_StructData.booleanValue;
  139. }
  140. set
  141. {
  142. if (propType != PropertyType.Boolean)
  143. throw new ArgumentException(string.Format(k_SetErrorMessage, PropertyType.Boolean, propType));
  144. m_StructData.booleanValue = value;
  145. }
  146. }
  147. public Matrix4x4 matrixValue
  148. {
  149. get
  150. {
  151. if (propType != PropertyType.Matrix2 && propType != PropertyType.Matrix3 && propType != PropertyType.Matrix4)
  152. throw new ArgumentException(string.Format(k_GetErrorMessage, PropertyType.Boolean, propType));
  153. return m_StructData.matrixValue;
  154. }
  155. set
  156. {
  157. if (propType != PropertyType.Matrix2 && propType != PropertyType.Matrix3 && propType != PropertyType.Matrix4)
  158. throw new ArgumentException(string.Format(k_SetErrorMessage, PropertyType.Boolean, propType));
  159. m_StructData.matrixValue = value;
  160. }
  161. }
  162. const string k_SetErrorMessage = "Cannot set a {0} property on a PreviewProperty with type {1}.";
  163. const string k_GetErrorMessage = "Cannot get a {0} property on a PreviewProperty with type {1}.";
  164. public void SetMaterialPropertyBlockValue(Material mat)
  165. {
  166. if ((propType == PropertyType.Texture2D || propType == PropertyType.Texture2DArray || propType == PropertyType.Texture3D) && textureValue != null)
  167. mat.SetTexture(name, m_ClassData.textureValue);
  168. else if (propType == PropertyType.Cubemap && cubemapValue != null)
  169. mat.SetTexture(name, m_ClassData.cubemapValue);
  170. else if (propType == PropertyType.Color)
  171. mat.SetColor(name, m_StructData.colorValue);
  172. else if (propType == PropertyType.Vector2 || propType == PropertyType.Vector3 || propType == PropertyType.Vector4)
  173. mat.SetVector(name, m_StructData.vector4Value);
  174. else if (propType == PropertyType.Vector1)
  175. mat.SetFloat(name, m_StructData.floatValue);
  176. else if (propType == PropertyType.Boolean)
  177. mat.SetFloat(name, m_StructData.booleanValue ? 1 : 0);
  178. else if (propType == PropertyType.Matrix2 || propType == PropertyType.Matrix3 || propType == PropertyType.Matrix4)
  179. mat.SetMatrix(name, m_StructData.matrixValue);
  180. else if (propType == PropertyType.Gradient)
  181. {
  182. mat.SetFloat(string.Format("{0}_Type", name), (int)m_ClassData.gradientValue.mode);
  183. mat.SetFloat(string.Format("{0}_ColorsLength", name), m_ClassData.gradientValue.colorKeys.Length);
  184. mat.SetFloat(string.Format("{0}_AlphasLength", name), m_ClassData.gradientValue.alphaKeys.Length);
  185. for (int i = 0; i < 8; i++)
  186. mat.SetVector(string.Format("{0}_ColorKey{1}", name, i), i < m_ClassData.gradientValue.colorKeys.Length ? GradientUtil.ColorKeyToVector(m_ClassData.gradientValue.colorKeys[i]) : Vector4.zero);
  187. for (int i = 0; i < 8; i++)
  188. mat.SetVector(string.Format("{0}_AlphaKey{1}", name, i), i < m_ClassData.gradientValue.alphaKeys.Length ? GradientUtil.AlphaKeyToVector(m_ClassData.gradientValue.alphaKeys[i]) : Vector2.zero);
  189. }
  190. }
  191. }
  192. static class PreviewPropertyExtensions
  193. {
  194. public static void SetPreviewProperty(this Material mat, PreviewProperty previewProperty)
  195. {
  196. previewProperty.SetMaterialPropertyBlockValue(mat);
  197. }
  198. }
  199. }