HlslFunctionView.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. using System;
  2. using System.Linq;
  3. using UnityEngine;
  4. using UnityEngine.UIElements;
  5. using UnityEditor.UIElements;
  6. using UnityEditor.Graphing;
  7. namespace UnityEditor.ShaderGraph.Drawing
  8. {
  9. [Serializable]
  10. public enum HlslSourceType { File, String };
  11. internal class HlslFunctionView : VisualElement
  12. {
  13. private EnumField m_Type;
  14. private TextField m_FunctionName;
  15. private ObjectField m_FunctionSource;
  16. private TextField m_FunctionBody;
  17. internal HlslFunctionView(CustomFunctionNode node)
  18. {
  19. styleSheets.Add(Resources.Load<StyleSheet>("Styles/HlslFunctionView"));
  20. Draw(node);
  21. }
  22. private void Draw(CustomFunctionNode node)
  23. {
  24. var currentControls = this.Children().ToArray();
  25. for(int i = 0; i < currentControls.Length; i++)
  26. currentControls[i].RemoveFromHierarchy();
  27. m_Type = new EnumField(node.sourceType);
  28. m_Type.RegisterValueChangedCallback(s =>
  29. {
  30. if((HlslSourceType)s.newValue != node.sourceType)
  31. {
  32. node.owner.owner.RegisterCompleteObjectUndo("Change Function Type");
  33. node.sourceType = (HlslSourceType)s.newValue;
  34. Draw(node);
  35. node.ValidateNode();
  36. node.Dirty(ModificationScope.Graph);
  37. }
  38. });
  39. m_FunctionName = new TextField { value = node.functionName, multiline = false };
  40. m_FunctionName.RegisterCallback<FocusInEvent>(s =>
  41. {
  42. if(m_FunctionName.value == CustomFunctionNode.defaultFunctionName)
  43. m_FunctionName.value = "";
  44. });
  45. m_FunctionName.RegisterCallback<FocusOutEvent>(s =>
  46. {
  47. if(m_FunctionName.value == "")
  48. m_FunctionName.value = CustomFunctionNode.defaultFunctionName;
  49. if(m_FunctionName.value != node.functionName)
  50. {
  51. node.owner.owner.RegisterCompleteObjectUndo("Change Function Name");
  52. node.functionName = m_FunctionName.value;
  53. node.ValidateNode();
  54. node.Dirty(ModificationScope.Graph);
  55. }
  56. });
  57. string path = AssetDatabase.GUIDToAssetPath(node.functionSource);
  58. m_FunctionSource = new ObjectField() { value = AssetDatabase.LoadAssetAtPath<TextAsset>(path), objectType = typeof(TextAsset)};
  59. m_FunctionSource.RegisterValueChangedCallback(s =>
  60. {
  61. long localId;
  62. string guidString = string.Empty;
  63. if(s.newValue != null)
  64. {
  65. AssetDatabase.TryGetGUIDAndLocalFileIdentifier((TextAsset)s.newValue, out guidString, out localId);
  66. }
  67. if(guidString != node.functionSource)
  68. {
  69. node.owner.owner.RegisterCompleteObjectUndo("Change Function Source");
  70. node.functionSource = guidString;
  71. Draw(node);
  72. node.ValidateNode();
  73. node.Dirty(ModificationScope.Graph);
  74. }
  75. });
  76. m_FunctionBody = new TextField { value = node.functionBody, multiline = true };
  77. m_FunctionBody.RegisterCallback<FocusInEvent>(s =>
  78. {
  79. if(m_FunctionBody.value == CustomFunctionNode.defaultFunctionBody)
  80. m_FunctionBody.value = "";
  81. });
  82. m_FunctionBody.RegisterCallback<FocusOutEvent>(s =>
  83. {
  84. if(m_FunctionBody.value == "")
  85. m_FunctionBody.value = CustomFunctionNode.defaultFunctionBody;
  86. if(m_FunctionBody.value != node.functionBody)
  87. {
  88. node.owner.owner.RegisterCompleteObjectUndo("Change Function Body");
  89. node.functionBody = m_FunctionBody.value;
  90. node.ValidateNode();
  91. node.Dirty(ModificationScope.Graph);
  92. }
  93. });
  94. VisualElement typeRow = new VisualElement() { name = "Row" };
  95. {
  96. typeRow.Add(new Label("Type"));
  97. typeRow.Add(m_Type);
  98. }
  99. Add(typeRow);
  100. VisualElement nameRow = new VisualElement() { name = "Row" };
  101. {
  102. nameRow.Add(new Label("Name"));
  103. nameRow.Add(m_FunctionName);
  104. }
  105. Add(nameRow);
  106. switch(node.sourceType)
  107. {
  108. case HlslSourceType.File:
  109. VisualElement sourceRow = new VisualElement() { name = "Row" };
  110. {
  111. sourceRow.Add(new Label("Source"));
  112. sourceRow.Add(m_FunctionSource);
  113. }
  114. Add(sourceRow);
  115. break;
  116. case HlslSourceType.String:
  117. VisualElement bodyRow = new VisualElement() { name = "Row" };
  118. {
  119. bodyRow.Add(new Label("Body"));
  120. bodyRow.style.height = 200;
  121. bodyRow.Add(m_FunctionBody);
  122. }
  123. Add(bodyRow);
  124. break;
  125. }
  126. }
  127. }
  128. }