123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using UnityEngine;
- namespace UnityEditor.ShaderGraph
- {
- struct FunctionSource
- {
- public string code;
- public HashSet<AbstractMaterialNode> nodes;
- }
- class FunctionRegistry
- {
- Dictionary<string, FunctionSource> m_Sources = new Dictionary<string, FunctionSource>();
- bool m_Validate = false;
- ShaderStringBuilder m_Builder;
- public FunctionRegistry(ShaderStringBuilder builder, bool validate = false)
- {
- m_Builder = builder;
- m_Validate = validate;
- }
- internal ShaderStringBuilder builder => m_Builder;
- public Dictionary<string, FunctionSource> sources => m_Sources;
- public List<string> names { get; } = new List<string>();
- public void ProvideFunction(string name, Action<ShaderStringBuilder> generator)
- {
- FunctionSource existingSource;
- if (m_Sources.TryGetValue(name, out existingSource))
- {
- existingSource.nodes.Add(builder.currentNode);
- if (m_Validate)
- {
- var startIndex = builder.length;
- generator(builder);
- var length = builder.length - startIndex;
- var code = builder.ToString(startIndex, length);
- builder.length -= length;
- if (code != existingSource.code)
- Debug.LogErrorFormat(@"Function `{0}` has varying implementations:{1}{1}{2}{1}{1}{3}", name, Environment.NewLine, code, existingSource);
- }
- }
- else
- {
- builder.AppendNewLine();
- var startIndex = builder.length;
- generator(builder);
- var length = builder.length - startIndex;
- var code = m_Validate ? builder.ToString(startIndex, length) : string.Empty;
- m_Sources.Add(name, new FunctionSource { code = code, nodes = new HashSet<AbstractMaterialNode> {builder.currentNode} });
- names.Add(name);
- }
- }
- }
- }
|