FunctionRegistry.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace UnityEditor.ShaderGraph
  5. {
  6. struct FunctionSource
  7. {
  8. public string code;
  9. public HashSet<AbstractMaterialNode> nodes;
  10. }
  11. class FunctionRegistry
  12. {
  13. Dictionary<string, FunctionSource> m_Sources = new Dictionary<string, FunctionSource>();
  14. bool m_Validate = false;
  15. ShaderStringBuilder m_Builder;
  16. public FunctionRegistry(ShaderStringBuilder builder, bool validate = false)
  17. {
  18. m_Builder = builder;
  19. m_Validate = validate;
  20. }
  21. internal ShaderStringBuilder builder => m_Builder;
  22. public Dictionary<string, FunctionSource> sources => m_Sources;
  23. public List<string> names { get; } = new List<string>();
  24. public void ProvideFunction(string name, Action<ShaderStringBuilder> generator)
  25. {
  26. FunctionSource existingSource;
  27. if (m_Sources.TryGetValue(name, out existingSource))
  28. {
  29. existingSource.nodes.Add(builder.currentNode);
  30. if (m_Validate)
  31. {
  32. var startIndex = builder.length;
  33. generator(builder);
  34. var length = builder.length - startIndex;
  35. var code = builder.ToString(startIndex, length);
  36. builder.length -= length;
  37. if (code != existingSource.code)
  38. Debug.LogErrorFormat(@"Function `{0}` has varying implementations:{1}{1}{2}{1}{1}{3}", name, Environment.NewLine, code, existingSource);
  39. }
  40. }
  41. else
  42. {
  43. builder.AppendNewLine();
  44. var startIndex = builder.length;
  45. generator(builder);
  46. var length = builder.length - startIndex;
  47. var code = m_Validate ? builder.ToString(startIndex, length) : string.Empty;
  48. m_Sources.Add(name, new FunctionSource { code = code, nodes = new HashSet<AbstractMaterialNode> {builder.currentNode} });
  49. names.Add(name);
  50. }
  51. }
  52. }
  53. }