ShaderGraphRequirementsPerKeyword.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using UnityEditor.ShaderGraph;
  4. using UnityEditor.ShaderGraph.Internal;
  5. namespace Data.Util
  6. {
  7. sealed class ShaderGraphRequirementsPerKeyword: KeywordDependentCollection<
  8. ShaderGraphRequirements,
  9. ShaderGraphRequirementsPerKeyword.All,
  10. ShaderGraphRequirementsPerKeyword.AllPermutations,
  11. ShaderGraphRequirementsPerKeyword.ForPermutationIndex,
  12. ShaderGraphRequirementsPerKeyword.Base,
  13. ShaderGraphRequirementsPerKeyword.IRequirements,
  14. ShaderGraphRequirementsPerKeyword.IRequirementsSet
  15. >
  16. {
  17. public interface IRequirements: KeywordDependentCollection.IInstance, KeywordDependentCollection.ISet<IRequirements>
  18. {
  19. void SetRequirements(ShaderGraphRequirements value);
  20. ShaderGraphRequirements requirements { get; set; }
  21. }
  22. public interface IRequirementsSet: KeywordDependentCollection.ISet<IRequirements>
  23. {
  24. }
  25. public struct ForPermutationIndex: IRequirements, IRequirementsSet
  26. {
  27. private ShaderGraphRequirementsPerKeyword m_Source;
  28. private int m_PermutationIndex;
  29. public KeywordDependentCollection.KeywordPermutationInstanceType type => KeywordDependentCollection.KeywordPermutationInstanceType.Permutation;
  30. public IEnumerable<IRequirements> instances => Enumerable.Repeat<IRequirements>(this, 1);
  31. public int instanceCount => 1;
  32. public int permutationIndex => m_PermutationIndex;
  33. public ShaderGraphRequirements requirements
  34. {
  35. get => m_Source.GetOrCreateForPermutationIndex(m_PermutationIndex);
  36. set => m_Source.SetForPermutationIndex(m_PermutationIndex, value);
  37. }
  38. public void SetRequirements(ShaderGraphRequirements value) => requirements = value;
  39. internal ForPermutationIndex(ShaderGraphRequirementsPerKeyword source, int index)
  40. {
  41. m_Source = source;
  42. m_PermutationIndex = index;
  43. }
  44. }
  45. public struct Base : IRequirements, IRequirementsSet
  46. {
  47. private ShaderGraphRequirementsPerKeyword m_Source;
  48. public int instanceCount => 1;
  49. public int permutationIndex => -1;
  50. public KeywordDependentCollection.KeywordPermutationInstanceType type => KeywordDependentCollection.KeywordPermutationInstanceType.Base;
  51. public IEnumerable<IRequirements> instances => Enumerable.Repeat<IRequirements>(this, 1);
  52. public ShaderGraphRequirements requirements
  53. {
  54. get => m_Source.baseStorage;
  55. set => m_Source.baseStorage = value;
  56. }
  57. public void SetRequirements(ShaderGraphRequirements value) => requirements = value;
  58. internal Base(ShaderGraphRequirementsPerKeyword source)
  59. {
  60. m_Source = source;
  61. }
  62. }
  63. public struct All : IRequirementsSet
  64. {
  65. private ShaderGraphRequirementsPerKeyword m_Source;
  66. public int instanceCount => m_Source.permutationCount + 1;
  67. internal All(ShaderGraphRequirementsPerKeyword source)
  68. {
  69. m_Source = source;
  70. }
  71. public IEnumerable<IRequirements> instances
  72. {
  73. get
  74. {
  75. var self = this;
  76. return m_Source.permutationStorages
  77. .Select((v, i) => new ForPermutationIndex(self.m_Source, i) as IRequirements)
  78. .Union(Enumerable.Repeat((IRequirements)m_Source.baseInstance, 1));
  79. }
  80. }
  81. }
  82. public struct AllPermutations : IRequirementsSet
  83. {
  84. private ShaderGraphRequirementsPerKeyword m_Source;
  85. public int instanceCount => m_Source.permutationCount;
  86. internal AllPermutations(ShaderGraphRequirementsPerKeyword source)
  87. {
  88. m_Source = source;
  89. }
  90. public IEnumerable<IRequirements> instances
  91. {
  92. get
  93. {
  94. var self = this;
  95. return m_Source.permutationStorages
  96. .Select((v, i) => new ForPermutationIndex(self.m_Source, i) as IRequirements);
  97. }
  98. }
  99. }
  100. public void UnionWith(ShaderGraphRequirementsPerKeyword other)
  101. {
  102. baseStorage = baseStorage.Union(other.baseStorage);
  103. for (var i = 0; i < other.permutationCount; ++i)
  104. SetForPermutationIndex(i,
  105. GetOrCreateForPermutationIndex(i).Union(other.GetOrCreateForPermutationIndex(i)));
  106. }
  107. protected override All CreateAllSmartPointer() => new All(this);
  108. protected override AllPermutations CreateAllPermutationsSmartPointer() => new AllPermutations(this);
  109. protected override ForPermutationIndex CreateForPermutationSmartPointer(int index) => new ForPermutationIndex(this, index);
  110. protected override Base CreateBaseSmartPointer() => new Base(this);
  111. }
  112. }