PropertyCollector.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Text;
  4. using UnityEditor.ShaderGraph.Internal;
  5. namespace UnityEditor.ShaderGraph
  6. {
  7. class PropertyCollector
  8. {
  9. public struct TextureInfo
  10. {
  11. public string name;
  12. public int textureId;
  13. public bool modifiable;
  14. }
  15. public readonly List<AbstractShaderProperty> properties = new List<AbstractShaderProperty>();
  16. public void AddShaderProperty(AbstractShaderProperty chunk)
  17. {
  18. if (properties.Any(x => x.referenceName == chunk.referenceName))
  19. return;
  20. properties.Add(chunk);
  21. }
  22. public void GetPropertiesDeclaration(ShaderStringBuilder builder, GenerationMode mode, ConcretePrecision inheritedPrecision)
  23. {
  24. foreach (var prop in properties)
  25. {
  26. prop.ValidateConcretePrecision(inheritedPrecision);
  27. }
  28. var batchAll = mode == GenerationMode.Preview;
  29. builder.AppendLine("CBUFFER_START(UnityPerMaterial)");
  30. int instancedCount = 0;
  31. foreach (var prop in properties.Where(n => batchAll || (n.generatePropertyBlock && n.isBatchable)))
  32. {
  33. if (!prop.gpuInstanced)
  34. builder.AppendLine(prop.GetPropertyDeclarationString());
  35. else
  36. instancedCount++;
  37. }
  38. if (instancedCount > 0)
  39. {
  40. builder.AppendLine("#ifdef UNITY_DOTS_INSTANCING_ENABLED");
  41. foreach (var prop in properties.Where(n => batchAll || (n.generatePropertyBlock && n.isBatchable)))
  42. {
  43. if (prop.gpuInstanced)
  44. builder.AppendLine(prop.GetPropertyDeclarationString("_dummy;"));
  45. }
  46. builder.AppendLine("#else");
  47. foreach (var prop in properties.Where(n => batchAll || (n.generatePropertyBlock && n.isBatchable)))
  48. {
  49. if (prop.gpuInstanced)
  50. builder.AppendLine(prop.GetPropertyDeclarationString());
  51. }
  52. builder.AppendLine("#endif");
  53. }
  54. builder.AppendLine("CBUFFER_END");
  55. if (batchAll)
  56. return;
  57. foreach (var prop in properties.Where(n => !n.isBatchable || !n.generatePropertyBlock))
  58. {
  59. builder.AppendLine(prop.GetPropertyDeclarationString());
  60. }
  61. }
  62. public int GetDotsInstancingPropertiesCount(GenerationMode mode)
  63. {
  64. var batchAll = mode == GenerationMode.Preview;
  65. return properties.Where(n => (batchAll || (n.generatePropertyBlock && n.isBatchable)) && n.gpuInstanced).Count();
  66. }
  67. public string GetDotsInstancingPropertiesDeclaration(GenerationMode mode)
  68. {
  69. var builder = new ShaderStringBuilder();
  70. var batchAll = mode == GenerationMode.Preview;
  71. int instancedCount = GetDotsInstancingPropertiesCount(mode);
  72. if (instancedCount > 0)
  73. {
  74. builder.AppendLine("#if defined(UNITY_DOTS_INSTANCING_ENABLED)");
  75. builder.AppendLine("#define SHADER_GRAPH_GENERATED");
  76. builder.Append("#define DOTS_CUSTOM_ADDITIONAL_MATERIAL_VARS\t");
  77. int count = 0;
  78. foreach (var prop in properties.Where(n => batchAll || (n.generatePropertyBlock && n.isBatchable)))
  79. {
  80. if (prop.gpuInstanced)
  81. {
  82. string varName = $"{prop.referenceName}_Array";
  83. string sType = prop.concreteShaderValueType.ToShaderString(prop.concretePrecision);
  84. builder.Append("UNITY_DEFINE_INSTANCED_PROP({0}, {1})", sType, varName);
  85. if (count < instancedCount - 1)
  86. builder.Append("\\");
  87. builder.AppendLine("");
  88. count++;
  89. }
  90. }
  91. foreach (var prop in properties.Where(n => batchAll || (n.generatePropertyBlock && n.isBatchable)))
  92. {
  93. if (prop.gpuInstanced)
  94. {
  95. string varName = $"{prop.referenceName}_Array";
  96. builder.AppendLine("#define {0} UNITY_ACCESS_INSTANCED_PROP(unity_Builtins0, {1})", prop.referenceName, varName);
  97. }
  98. }
  99. }
  100. builder.AppendLine("#endif");
  101. return builder.ToString();
  102. }
  103. public List<TextureInfo> GetConfiguredTexutres()
  104. {
  105. var result = new List<TextureInfo>();
  106. foreach (var prop in properties.OfType<Texture2DShaderProperty>())
  107. {
  108. if (prop.referenceName != null)
  109. {
  110. var textureInfo = new TextureInfo
  111. {
  112. name = prop.referenceName,
  113. textureId = prop.value.texture != null ? prop.value.texture.GetInstanceID() : 0,
  114. modifiable = prop.modifiable
  115. };
  116. result.Add(textureInfo);
  117. }
  118. }
  119. foreach (var prop in properties.OfType<Texture2DArrayShaderProperty>())
  120. {
  121. if (prop.referenceName != null)
  122. {
  123. var textureInfo = new TextureInfo
  124. {
  125. name = prop.referenceName,
  126. textureId = prop.value.textureArray != null ? prop.value.textureArray.GetInstanceID() : 0,
  127. modifiable = prop.modifiable
  128. };
  129. result.Add(textureInfo);
  130. }
  131. }
  132. foreach (var prop in properties.OfType<Texture3DShaderProperty>())
  133. {
  134. if (prop.referenceName != null)
  135. {
  136. var textureInfo = new TextureInfo
  137. {
  138. name = prop.referenceName,
  139. textureId = prop.value.texture != null ? prop.value.texture.GetInstanceID() : 0,
  140. modifiable = prop.modifiable
  141. };
  142. result.Add(textureInfo);
  143. }
  144. }
  145. foreach (var prop in properties.OfType<CubemapShaderProperty>())
  146. {
  147. if (prop.referenceName != null)
  148. {
  149. var textureInfo = new TextureInfo
  150. {
  151. name = prop.referenceName,
  152. textureId = prop.value.cubemap != null ? prop.value.cubemap.GetInstanceID() : 0,
  153. modifiable = prop.modifiable
  154. };
  155. result.Add(textureInfo);
  156. }
  157. }
  158. return result;
  159. }
  160. }
  161. }