GraphCompilationResult.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using UnityEngine;
  6. namespace UnityEditor.ShaderGraph
  7. {
  8. // Required for Unity to handle nested array serialization
  9. [Serializable]
  10. struct IntArray
  11. {
  12. public int[] array;
  13. public int this[int i]
  14. {
  15. get => array[i];
  16. set => array[i] = value;
  17. }
  18. public static implicit operator IntArray(int[] array)
  19. {
  20. return new IntArray { array = array };
  21. }
  22. public static implicit operator int[](IntArray array)
  23. {
  24. return array.array;
  25. }
  26. }
  27. [Serializable]
  28. class GraphCompilationResult
  29. {
  30. public string[] codeSnippets;
  31. public int[] sharedCodeIndices;
  32. public IntArray[] outputCodeIndices;
  33. public string GenerateCode(int[] outputIndices)
  34. {
  35. var codeIndexSet = new HashSet<int>();
  36. foreach (var codeIndex in sharedCodeIndices)
  37. {
  38. codeIndexSet.Add(codeIndex);
  39. }
  40. foreach (var outputIndex in outputIndices)
  41. {
  42. foreach (var codeIndex in outputCodeIndices[outputIndex].array)
  43. {
  44. codeIndexSet.Add(codeIndex);
  45. }
  46. }
  47. var codeIndices = new int[codeIndexSet.Count];
  48. codeIndexSet.CopyTo(codeIndices);
  49. Array.Sort(codeIndices);
  50. var charCount = 0;
  51. foreach (var codeIndex in codeIndices)
  52. {
  53. charCount += codeSnippets[codeIndex].Length;
  54. }
  55. var sb = new StringBuilder();
  56. sb.EnsureCapacity(charCount);
  57. foreach (var codeIndex in codeIndices)
  58. {
  59. sb.Append(codeSnippets[codeIndex]);
  60. }
  61. return sb.ToString();
  62. }
  63. }
  64. }