BooleanMaterialSlot.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEditor.Graphing;
  4. using UnityEditor.ShaderGraph.Drawing.Slots;
  5. using UnityEditor.ShaderGraph.Internal;
  6. using UnityEngine;
  7. using UnityEngine.UIElements;
  8. namespace UnityEditor.ShaderGraph
  9. {
  10. [Serializable]
  11. class BooleanMaterialSlot : MaterialSlot, IMaterialSlotHasValue<bool>
  12. {
  13. [SerializeField]
  14. private bool m_Value;
  15. [SerializeField]
  16. private bool m_DefaultValue;
  17. public BooleanMaterialSlot()
  18. {}
  19. public BooleanMaterialSlot(
  20. int slotId,
  21. string displayName,
  22. string shaderOutputName,
  23. SlotType slotType,
  24. bool value,
  25. ShaderStageCapability stageCapability = ShaderStageCapability.All,
  26. bool hidden = false)
  27. : base(slotId, displayName, shaderOutputName, slotType, stageCapability, hidden)
  28. {
  29. m_DefaultValue = value;
  30. m_Value = value;
  31. }
  32. public override VisualElement InstantiateControl()
  33. {
  34. return new BooleanSlotControlView(this);
  35. }
  36. public bool defaultValue { get { return m_DefaultValue; } }
  37. public bool value
  38. {
  39. get { return m_Value; }
  40. set { m_Value = value; }
  41. }
  42. protected override string ConcreteSlotValueAsVariable()
  43. {
  44. return (value ? 1 : 0).ToString();
  45. }
  46. public override void AddDefaultProperty(PropertyCollector properties, GenerationMode generationMode)
  47. {
  48. if (!generationMode.IsPreview())
  49. return;
  50. var matOwner = owner as AbstractMaterialNode;
  51. if (matOwner == null)
  52. throw new Exception(string.Format("Slot {0} either has no owner, or the owner is not a {1}", this, typeof(AbstractMaterialNode)));
  53. var property = new BooleanShaderProperty()
  54. {
  55. overrideReferenceName = matOwner.GetVariableNameForSlot(id),
  56. generatePropertyBlock = false,
  57. value = value
  58. };
  59. properties.AddShaderProperty(property);
  60. }
  61. public override SlotValueType valueType { get { return SlotValueType.Boolean; } }
  62. public override ConcreteSlotValueType concreteValueType { get { return ConcreteSlotValueType.Boolean; } }
  63. public override void GetPreviewProperties(List<PreviewProperty> properties, string name)
  64. {
  65. var pp = new PreviewProperty(PropertyType.Boolean)
  66. {
  67. name = name,
  68. booleanValue = value
  69. };
  70. properties.Add(pp);
  71. }
  72. public override void CopyValuesFrom(MaterialSlot foundSlot)
  73. {
  74. var slot = foundSlot as BooleanMaterialSlot;
  75. if (slot != null)
  76. value = slot.value;
  77. }
  78. }
  79. }