NeededCoordinateSpace.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. using System;
  2. using System.Linq;
  3. namespace UnityEditor.ShaderGraph.Internal
  4. {
  5. [Flags]
  6. public enum NeededCoordinateSpace
  7. {
  8. None = 0,
  9. Object = 1 << 0,
  10. View = 1 << 1,
  11. World = 1 << 2,
  12. Tangent = 1 << 3,
  13. AbsoluteWorld = 1 << 4
  14. }
  15. public enum CoordinateSpace
  16. {
  17. Object,
  18. View,
  19. World,
  20. Tangent,
  21. AbsoluteWorld
  22. }
  23. public enum InterpolatorType
  24. {
  25. Normal,
  26. BiTangent,
  27. Tangent,
  28. ViewDirection,
  29. Position
  30. }
  31. public static class CoordinateSpaceExtensions
  32. {
  33. static int s_SpaceCount = Enum.GetValues(typeof(CoordinateSpace)).Length;
  34. static int s_InterpolatorCount = Enum.GetValues(typeof(InterpolatorType)).Length;
  35. static string[] s_VariableNames = new string[s_SpaceCount * s_InterpolatorCount];
  36. public static string ToVariableName(this CoordinateSpace space, InterpolatorType type)
  37. {
  38. var index = (int)space + (int)type * s_SpaceCount;
  39. if (string.IsNullOrEmpty(s_VariableNames[index]))
  40. s_VariableNames[index] = string.Format("{0}Space{1}", space, type);
  41. return s_VariableNames[index];
  42. }
  43. public static NeededCoordinateSpace ToNeededCoordinateSpace(this CoordinateSpace space)
  44. {
  45. switch (space)
  46. {
  47. case CoordinateSpace.Object:
  48. return NeededCoordinateSpace.Object;
  49. case CoordinateSpace.View:
  50. return NeededCoordinateSpace.View;
  51. case CoordinateSpace.World:
  52. return NeededCoordinateSpace.World;
  53. case CoordinateSpace.Tangent:
  54. return NeededCoordinateSpace.Tangent;
  55. case CoordinateSpace.AbsoluteWorld:
  56. return NeededCoordinateSpace.AbsoluteWorld;
  57. default:
  58. throw new ArgumentOutOfRangeException(nameof(space), space, null);
  59. }
  60. }
  61. public static CoordinateSpace ToCoordinateSpace(this NeededCoordinateSpace space)
  62. {
  63. switch (space)
  64. {
  65. case NeededCoordinateSpace.Object:
  66. return CoordinateSpace.Object;
  67. case NeededCoordinateSpace.View:
  68. return CoordinateSpace.View;
  69. case NeededCoordinateSpace.World:
  70. return CoordinateSpace.World;
  71. case NeededCoordinateSpace.Tangent:
  72. return CoordinateSpace.Tangent;
  73. case NeededCoordinateSpace.AbsoluteWorld:
  74. return CoordinateSpace.AbsoluteWorld;
  75. default:
  76. throw new ArgumentOutOfRangeException(nameof(space), space, null);
  77. }
  78. }
  79. }
  80. }