123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using UnityEditor.ShaderGraph.Drawing;
- using UnityEngine;
- using UnityEditor.Graphing;
- using UnityEditor.Rendering;
- using UnityEngine.Rendering.ShaderGraph;
- using UnityEngine.UIElements;
- namespace UnityEditor.ShaderGraph
- {
- class SubGraphOutputNode : AbstractMaterialNode, IHasSettings
- {
- static string s_MissingOutputSlot = "A Sub Graph must have at least one output slot";
- public SubGraphOutputNode()
- {
- name = "Output";
- }
- // Link to the Sub Graph overview page instead of the specific Node page, seems more useful
- public override string documentationURL => Documentation.GetPageLink("Sub-graph");
- void ValidateShaderStage()
- {
- List<MaterialSlot> slots = new List<MaterialSlot>();
- GetInputSlots(slots);
- foreach(MaterialSlot slot in slots)
- slot.stageCapability = ShaderStageCapability.All;
- var effectiveStage = ShaderStageCapability.All;
- foreach (var slot in slots)
- {
- var stage = NodeUtils.GetEffectiveShaderStageCapability(slot, true);
- if (stage != ShaderStageCapability.All)
- {
- effectiveStage = stage;
- break;
- }
- }
- foreach(MaterialSlot slot in slots)
- slot.stageCapability = effectiveStage;
- }
- void ValidateSlotName()
- {
- List<MaterialSlot> slots = new List<MaterialSlot>();
- GetInputSlots(slots);
- foreach (var slot in slots)
- {
- var error = NodeUtils.ValidateSlotName(slot.RawDisplayName(), out string errorMessage);
- if (error)
- {
- owner.AddValidationError(tempId, errorMessage);
- break;
- }
- }
- }
- public override void ValidateNode()
- {
- ValidateShaderStage();
- if (!this.GetInputSlots<MaterialSlot>().Any())
- {
- owner.AddValidationError(tempId, s_MissingOutputSlot, ShaderCompilerMessageSeverity.Warning);
- }
- base.ValidateNode();
- }
- protected override void OnSlotsChanged()
- {
- base.OnSlotsChanged();
- ValidateNode();
- }
- public int AddSlot(ConcreteSlotValueType concreteValueType)
- {
- var index = this.GetInputSlots<ISlot>().Count() + 1;
- name = NodeUtils.GetDuplicateSafeNameForSlot(this, index, "Out_" + concreteValueType.ToString());
- AddSlot(MaterialSlot.CreateMaterialSlot(concreteValueType.ToSlotValueType(), index, name,
- NodeUtils.GetHLSLSafeName(name), SlotType.Input, Vector4.zero));
- return index;
- }
- public VisualElement CreateSettingsElement()
- {
- PropertySheet ps = new PropertySheet();
- ps.Add(new ReorderableSlotListView(this, SlotType.Input));
- return ps;
- }
- public override bool canDeleteNode => false;
- public override bool canCopyNode => false;
- }
- }
|