KeywordCollector.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 KeywordCollector
  8. {
  9. public readonly List<ShaderKeyword> keywords;
  10. public readonly List<List<KeyValuePair<ShaderKeyword, int>>> permutations;
  11. public KeywordCollector()
  12. {
  13. keywords = new List<ShaderKeyword>();
  14. permutations = new List<List<KeyValuePair<ShaderKeyword, int>>>();
  15. }
  16. public void AddShaderKeyword(ShaderKeyword chunk)
  17. {
  18. if (keywords.Any(x => x.referenceName == chunk.referenceName))
  19. return;
  20. keywords.Add(chunk);
  21. }
  22. public void GetKeywordsDeclaration(ShaderStringBuilder builder, GenerationMode mode)
  23. {
  24. if(keywords.Count == 0)
  25. return;
  26. // Declare keywords
  27. foreach (var keyword in keywords)
  28. {
  29. // Hardcode active keywords in preview to reduce compiled variants
  30. if(mode == GenerationMode.Preview)
  31. {
  32. string declaration = keyword.GetKeywordPreviewDeclarationString();
  33. if(!string.IsNullOrEmpty(declaration))
  34. {
  35. builder.AppendLine(declaration);
  36. }
  37. }
  38. else
  39. {
  40. string declaration = keyword.GetKeywordDeclarationString();
  41. if(!string.IsNullOrEmpty(declaration))
  42. {
  43. builder.AppendLine(declaration);
  44. }
  45. }
  46. }
  47. // Declare another keyword per permutation for simpler if/defs in the graph code
  48. builder.AppendNewLine();
  49. KeywordUtil.GetKeywordPermutationDeclarations(builder, permutations);
  50. builder.AppendNewLine();
  51. }
  52. public void CalculateKeywordPermutations()
  53. {
  54. permutations.Clear();
  55. // Initialize current permutation
  56. List<KeyValuePair<ShaderKeyword, int>> currentPermutation = new List<KeyValuePair<ShaderKeyword, int>>();
  57. for(int i = 0; i < keywords.Count; i++)
  58. {
  59. currentPermutation.Add(new KeyValuePair<ShaderKeyword, int>(keywords[i], 0));
  60. }
  61. // Recursively permute keywords
  62. PermuteKeywords(keywords, currentPermutation, 0);
  63. }
  64. void PermuteKeywords(List<ShaderKeyword> keywords, List<KeyValuePair<ShaderKeyword, int>> currentPermutation, int currentIndex)
  65. {
  66. if(currentIndex == keywords.Count)
  67. return;
  68. // Iterate each possible keyword at the current index
  69. int entryCount = keywords[currentIndex].keywordType == KeywordType.Enum ? keywords[currentIndex].entries.Count : 2;
  70. for(int i = 0; i < entryCount; i++)
  71. {
  72. // Set the index in the current permutation to the correct value
  73. currentPermutation[currentIndex] = new KeyValuePair<ShaderKeyword, int>(keywords[currentIndex], i);
  74. // If the current index is the last keyword we are finished with this permutation
  75. if(currentIndex == keywords.Count - 1)
  76. {
  77. permutations.Add(currentPermutation);
  78. }
  79. // Otherwise we continue adding keywords to this permutation
  80. else
  81. {
  82. PermuteKeywords(keywords, currentPermutation, currentIndex + 1);
  83. }
  84. // Duplicate current permutation
  85. currentPermutation = currentPermutation.Select(item => item).ToList();
  86. }
  87. }
  88. }
  89. }