VfxMasterNode.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEditor.Graphing;
  5. using UnityEditor.ShaderGraph.Internal;
  6. using UnityEditor.ShaderGraph.Drawing;
  7. using UnityEditor.ShaderGraph.Drawing.Controls;
  8. using UnityEngine;
  9. using UnityEngine.Rendering;
  10. using UnityEngine.UIElements;
  11. using UnityEditor.Graphing.Util;
  12. namespace UnityEditor.ShaderGraph
  13. {
  14. [Serializable]
  15. [Title("Master", "Visual Effect")]
  16. sealed class VfxMasterNode : MasterNode, IMayRequirePosition
  17. {
  18. const string BaseColorSlotName = "Base Color";
  19. const string MetallicSlotName = "Metallic";
  20. const string SmoothnessSlotName = "Smoothness";
  21. const string NormalSlotName = "Normal";
  22. const string AlphaSlotName = "Alpha";
  23. const string EmissiveSlotName = "Emissive";
  24. const string ColorSlotName = "Color";
  25. const string AlphaThresholdSlotName = "AlphaThreshold";
  26. public VfxMasterNode()
  27. {
  28. UpdateNodeAfterDeserialization();
  29. }
  30. [SerializeField]
  31. bool m_Lit;
  32. public ToggleData lit
  33. {
  34. get { return new ToggleData(m_Lit); }
  35. set
  36. {
  37. if (m_Lit == value.isOn)
  38. return;
  39. m_Lit = value.isOn;
  40. UpdateNodeAfterDeserialization();
  41. Dirty(ModificationScope.Topological);
  42. }
  43. }
  44. [SerializeField]
  45. bool m_AlphaTest;
  46. public ToggleData alphaTest
  47. {
  48. get { return new ToggleData(m_AlphaTest); }
  49. set
  50. {
  51. if (m_AlphaTest == value.isOn)
  52. return;
  53. m_AlphaTest = value.isOn;
  54. UpdateNodeAfterDeserialization();
  55. Dirty(ModificationScope.Topological);
  56. }
  57. }
  58. public override void UpdateNodeAfterDeserialization()
  59. {
  60. base.UpdateNodeAfterDeserialization();
  61. name = "Visual Effect Master";
  62. HashSet<int> usedSlots = new HashSet<int>();
  63. if ( lit.isOn)
  64. {
  65. AddSlot(new ColorRGBMaterialSlot(ShaderGraphVfxAsset.BaseColorSlotId, BaseColorSlotName, NodeUtils.GetHLSLSafeName(BaseColorSlotName), SlotType.Input, Color.grey.gamma, ColorMode.Default, ShaderStageCapability.Fragment));
  66. usedSlots.Add(ShaderGraphVfxAsset.BaseColorSlotId);
  67. AddSlot(new Vector1MaterialSlot(ShaderGraphVfxAsset.MetallicSlotId, MetallicSlotName, MetallicSlotName, SlotType.Input, 0.5f, ShaderStageCapability.Fragment));
  68. usedSlots.Add(ShaderGraphVfxAsset.MetallicSlotId);
  69. AddSlot(new Vector1MaterialSlot(ShaderGraphVfxAsset.SmoothnessSlotId, SmoothnessSlotName, SmoothnessSlotName, SlotType.Input, 0.5f, ShaderStageCapability.Fragment));
  70. usedSlots.Add(ShaderGraphVfxAsset.SmoothnessSlotId);
  71. AddSlot(new Vector3MaterialSlot(ShaderGraphVfxAsset.NormalSlotId, NormalSlotName, NormalSlotName, SlotType.Input, new Vector3(0,0,1), ShaderStageCapability.Fragment));
  72. usedSlots.Add(ShaderGraphVfxAsset.NormalSlotId);
  73. AddSlot(new ColorRGBMaterialSlot(ShaderGraphVfxAsset.EmissiveSlotId, EmissiveSlotName, NodeUtils.GetHLSLSafeName(EmissiveSlotName), SlotType.Input, Color.black, ColorMode.HDR, ShaderStageCapability.Fragment));
  74. usedSlots.Add(ShaderGraphVfxAsset.EmissiveSlotId);
  75. }
  76. else
  77. {
  78. AddSlot(new ColorRGBMaterialSlot(ShaderGraphVfxAsset.ColorSlotId, ColorSlotName, NodeUtils.GetHLSLSafeName(ColorSlotName), SlotType.Input, Color.grey.gamma, ColorMode.HDR, ShaderStageCapability.Fragment));
  79. usedSlots.Add(ShaderGraphVfxAsset.ColorSlotId);
  80. }
  81. AddSlot(new Vector1MaterialSlot(ShaderGraphVfxAsset.AlphaSlotId, AlphaSlotName, AlphaSlotName, SlotType.Input, 1, ShaderStageCapability.Fragment));
  82. usedSlots.Add(ShaderGraphVfxAsset.AlphaSlotId);
  83. if( alphaTest.isOn)
  84. {
  85. AddSlot(new Vector1MaterialSlot(ShaderGraphVfxAsset.AlphaThresholdSlotId, AlphaThresholdSlotName, AlphaThresholdSlotName, SlotType.Input, 1, ShaderStageCapability.Fragment));
  86. usedSlots.Add(ShaderGraphVfxAsset.AlphaThresholdSlotId);
  87. }
  88. RemoveSlotsNameNotMatching(usedSlots);
  89. }
  90. public override void ProcessPreviewMaterial(Material previewMaterial)
  91. {
  92. }
  93. class SettingsView : VisualElement
  94. {
  95. readonly VfxMasterNode m_Node;
  96. public SettingsView(VfxMasterNode node)
  97. {
  98. m_Node = node;
  99. PropertySheet ps = new PropertySheet();
  100. ps.Add(new PropertyRow(new Label("Alpha Mask")), (row) =>
  101. {
  102. row.Add(new Toggle(), (toggle) =>
  103. {
  104. toggle.value = m_Node.alphaTest.isOn;
  105. toggle.OnToggleChanged(ChangeAlphaTest);
  106. });
  107. });
  108. ps.Add(new PropertyRow(new Label("Lit")), (System.Action<PropertyRow>)((row) =>
  109. {
  110. row.Add(new Toggle(), (System.Action<Toggle>)((toggle) =>
  111. {
  112. toggle.value = m_Node.lit.isOn;
  113. toggle.OnToggleChanged(this.ChangeLit);
  114. }));
  115. }));
  116. Add(ps);
  117. }
  118. void ChangeAlphaTest(ChangeEvent<bool> e)
  119. {
  120. m_Node.alphaTest = new ToggleData(e.newValue, m_Node.alphaTest.isEnabled);
  121. }
  122. void ChangeLit(ChangeEvent<bool> e)
  123. {
  124. m_Node.lit = new ToggleData(e.newValue, m_Node.alphaTest.isEnabled);
  125. }
  126. }
  127. protected override VisualElement CreateCommonSettingsElement()
  128. {
  129. return new SettingsView(this);
  130. }
  131. public override bool hasPreview => false;
  132. public NeededCoordinateSpace RequiresPosition(ShaderStageCapability stageCapability)
  133. {
  134. List<MaterialSlot> slots = new List<MaterialSlot>();
  135. GetSlots(slots);
  136. List<MaterialSlot> validSlots = new List<MaterialSlot>();
  137. for (int i = 0; i < slots.Count; i++)
  138. {
  139. if (slots[i].stageCapability != ShaderStageCapability.All && slots[i].stageCapability != stageCapability)
  140. continue;
  141. validSlots.Add(slots[i]);
  142. }
  143. return validSlots.OfType<IMayRequirePosition>().Aggregate(NeededCoordinateSpace.None, (mask, node) => mask | node.RequiresPosition(stageCapability));
  144. }
  145. public override string GetShader(GenerationMode mode, string outputName, out List<PropertyCollector.TextureInfo> configuredTextures, List<string> sourceAssetDependencyPaths = null)
  146. {
  147. throw new System.NotImplementedException();
  148. }
  149. public override bool IsPipelineCompatible(RenderPipelineAsset renderPipelineAsset)
  150. {
  151. return true;
  152. }
  153. public override int GetPreviewPassIndex()
  154. {
  155. return 0;
  156. }
  157. }
  158. }