BlackboardProvider.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnityEditor.Graphing;
  5. using UnityEngine;
  6. using UnityEditor.Experimental.GraphView;
  7. using UnityEditor.ShaderGraph.Internal;
  8. using UnityEngine.UIElements;
  9. namespace UnityEditor.ShaderGraph.Drawing
  10. {
  11. class BlackboardProvider
  12. {
  13. readonly GraphData m_Graph;
  14. public static readonly Texture2D exposedIcon = Resources.Load<Texture2D>("GraphView/Nodes/BlackboardFieldExposed");
  15. readonly Dictionary<Guid, BlackboardRow> m_InputRows;
  16. readonly BlackboardSection m_PropertySection;
  17. readonly BlackboardSection m_KeywordSection;
  18. public Blackboard blackboard { get; private set; }
  19. Label m_PathLabel;
  20. TextField m_PathLabelTextField;
  21. bool m_EditPathCancelled = false;
  22. List<Node> m_SelectedNodes = new List<Node>();
  23. Dictionary<ShaderInput, bool> m_ExpandedInputs = new Dictionary<ShaderInput, bool>();
  24. public Dictionary<ShaderInput, bool> expandedInputs
  25. {
  26. get { return m_ExpandedInputs; }
  27. }
  28. public string assetName
  29. {
  30. get { return blackboard.title; }
  31. set
  32. {
  33. blackboard.title = value;
  34. }
  35. }
  36. public BlackboardProvider(GraphData graph)
  37. {
  38. m_Graph = graph;
  39. m_InputRows = new Dictionary<Guid, BlackboardRow>();
  40. blackboard = new Blackboard()
  41. {
  42. scrollable = true,
  43. subTitle = FormatPath(graph.path),
  44. editTextRequested = EditTextRequested,
  45. addItemRequested = AddItemRequested,
  46. moveItemRequested = MoveItemRequested
  47. };
  48. m_PathLabel = blackboard.hierarchy.ElementAt(0).Q<Label>("subTitleLabel");
  49. m_PathLabel.RegisterCallback<MouseDownEvent>(OnMouseDownEvent);
  50. m_PathLabelTextField = new TextField { visible = false };
  51. m_PathLabelTextField.Q("unity-text-input").RegisterCallback<FocusOutEvent>(e => { OnEditPathTextFinished(); });
  52. m_PathLabelTextField.Q("unity-text-input").RegisterCallback<KeyDownEvent>(OnPathTextFieldKeyPressed);
  53. blackboard.hierarchy.Add(m_PathLabelTextField);
  54. m_PropertySection = new BlackboardSection { title = "Properties" };
  55. foreach (var property in graph.properties)
  56. AddInputRow(property);
  57. blackboard.Add(m_PropertySection);
  58. m_KeywordSection = new BlackboardSection { title = "Keywords" };
  59. foreach (var keyword in graph.keywords)
  60. AddInputRow(keyword);
  61. blackboard.Add(m_KeywordSection);
  62. }
  63. void OnDragUpdatedEvent(DragUpdatedEvent evt)
  64. {
  65. if (m_SelectedNodes.Any())
  66. {
  67. foreach (var node in m_SelectedNodes)
  68. {
  69. node.RemoveFromClassList("hovered");
  70. }
  71. m_SelectedNodes.Clear();
  72. }
  73. }
  74. void OnMouseDownEvent(MouseDownEvent evt)
  75. {
  76. if (evt.clickCount == 2 && evt.button == (int)MouseButton.LeftMouse)
  77. {
  78. StartEditingPath();
  79. evt.PreventDefault();
  80. }
  81. }
  82. void StartEditingPath()
  83. {
  84. m_PathLabelTextField.visible = true;
  85. m_PathLabelTextField.value = m_PathLabel.text;
  86. m_PathLabelTextField.style.position = Position.Absolute;
  87. var rect = m_PathLabel.ChangeCoordinatesTo(blackboard, new Rect(Vector2.zero, m_PathLabel.layout.size));
  88. m_PathLabelTextField.style.left = rect.xMin;
  89. m_PathLabelTextField.style.top = rect.yMin;
  90. m_PathLabelTextField.style.width = rect.width;
  91. m_PathLabelTextField.style.fontSize = 11;
  92. m_PathLabelTextField.style.marginLeft = 0;
  93. m_PathLabelTextField.style.marginRight = 0;
  94. m_PathLabelTextField.style.marginTop = 0;
  95. m_PathLabelTextField.style.marginBottom = 0;
  96. m_PathLabel.visible = false;
  97. m_PathLabelTextField.Q("unity-text-input").Focus();
  98. m_PathLabelTextField.SelectAll();
  99. }
  100. void OnPathTextFieldKeyPressed(KeyDownEvent evt)
  101. {
  102. switch (evt.keyCode)
  103. {
  104. case KeyCode.Escape:
  105. m_EditPathCancelled = true;
  106. m_PathLabelTextField.Q("unity-text-input").Blur();
  107. break;
  108. case KeyCode.Return:
  109. case KeyCode.KeypadEnter:
  110. m_PathLabelTextField.Q("unity-text-input").Blur();
  111. break;
  112. default:
  113. break;
  114. }
  115. }
  116. void OnEditPathTextFinished()
  117. {
  118. m_PathLabel.visible = true;
  119. m_PathLabelTextField.visible = false;
  120. var newPath = m_PathLabelTextField.text;
  121. if (!m_EditPathCancelled && (newPath != m_PathLabel.text))
  122. {
  123. newPath = SanitizePath(newPath);
  124. }
  125. m_Graph.path = newPath;
  126. m_PathLabel.text = FormatPath(newPath);
  127. m_EditPathCancelled = false;
  128. }
  129. static string FormatPath(string path)
  130. {
  131. if (string.IsNullOrEmpty(path))
  132. return "—";
  133. return path;
  134. }
  135. static string SanitizePath(string path)
  136. {
  137. var splitString = path.Split('/');
  138. List<string> newStrings = new List<string>();
  139. foreach (string s in splitString)
  140. {
  141. var str = s.Trim();
  142. if (!string.IsNullOrEmpty(str))
  143. {
  144. newStrings.Add(str);
  145. }
  146. }
  147. return string.Join("/", newStrings.ToArray());
  148. }
  149. void MoveItemRequested(Blackboard blackboard, int newIndex, VisualElement visualElement)
  150. {
  151. var input = visualElement.userData as ShaderInput;
  152. if (input == null)
  153. return;
  154. m_Graph.owner.RegisterCompleteObjectUndo("Move Graph Input");
  155. switch(input)
  156. {
  157. case AbstractShaderProperty property:
  158. m_Graph.MoveProperty(property, newIndex);
  159. break;
  160. case ShaderKeyword keyword:
  161. m_Graph.MoveKeyword(keyword, newIndex);
  162. break;
  163. default:
  164. throw new ArgumentOutOfRangeException();
  165. }
  166. }
  167. void AddItemRequested(Blackboard blackboard)
  168. {
  169. var gm = new GenericMenu();
  170. AddPropertyItems(gm);
  171. AddKeywordItems(gm);
  172. gm.ShowAsContext();
  173. }
  174. void AddPropertyItems(GenericMenu gm)
  175. {
  176. gm.AddItem(new GUIContent($"Vector1"), false, () => AddInputRow(new Vector1ShaderProperty(), true));
  177. gm.AddItem(new GUIContent($"Vector2"), false, () => AddInputRow(new Vector2ShaderProperty(), true));
  178. gm.AddItem(new GUIContent($"Vector3"), false, () => AddInputRow(new Vector3ShaderProperty(), true));
  179. gm.AddItem(new GUIContent($"Vector4"), false, () => AddInputRow(new Vector4ShaderProperty(), true));
  180. gm.AddItem(new GUIContent($"Color"), false, () => AddInputRow(new ColorShaderProperty(), true));
  181. gm.AddItem(new GUIContent($"Texture2D"), false, () => AddInputRow(new Texture2DShaderProperty(), true));
  182. gm.AddItem(new GUIContent($"Texture2D Array"), false, () => AddInputRow(new Texture2DArrayShaderProperty(), true));
  183. gm.AddItem(new GUIContent($"Texture3D"), false, () => AddInputRow(new Texture3DShaderProperty(), true));
  184. gm.AddItem(new GUIContent($"Cubemap"), false, () => AddInputRow(new CubemapShaderProperty(), true));
  185. gm.AddItem(new GUIContent($"Boolean"), false, () => AddInputRow(new BooleanShaderProperty(), true));
  186. gm.AddItem(new GUIContent($"Matrix2x2"), false, () => AddInputRow(new Matrix2ShaderProperty(), true));
  187. gm.AddItem(new GUIContent($"Matrix3x3"), false, () => AddInputRow(new Matrix3ShaderProperty(), true));
  188. gm.AddItem(new GUIContent($"Matrix4x4"), false, () => AddInputRow(new Matrix4ShaderProperty(), true));
  189. gm.AddItem(new GUIContent($"SamplerState"), false, () => AddInputRow(new SamplerStateShaderProperty(), true));
  190. gm.AddItem(new GUIContent($"Gradient"), false, () => AddInputRow(new GradientShaderProperty(), true));
  191. gm.AddSeparator($"/");
  192. }
  193. void AddKeywordItems(GenericMenu gm)
  194. {
  195. gm.AddItem(new GUIContent($"Keyword/Boolean"), false, () => AddInputRow(new ShaderKeyword(KeywordType.Boolean), true));
  196. gm.AddItem(new GUIContent($"Keyword/Enum"), false, () => AddInputRow(new ShaderKeyword(KeywordType.Enum), true));
  197. gm.AddSeparator($"Keyword/");
  198. foreach (var builtinKeywordDescriptor in KeywordUtil.GetBuiltinKeywordDescriptors())
  199. {
  200. var keyword = ShaderKeyword.Create(builtinKeywordDescriptor);
  201. AddBuiltinKeyword(gm, keyword);
  202. }
  203. }
  204. void AddBuiltinKeyword(GenericMenu gm, ShaderKeyword keyword)
  205. {
  206. if(m_Graph.keywords.Where(x => x.referenceName == keyword.referenceName).Any())
  207. {
  208. gm.AddDisabledItem(new GUIContent($"Keyword/{keyword.displayName}"));
  209. }
  210. else
  211. {
  212. gm.AddItem(new GUIContent($"Keyword/{keyword.displayName}"), false, () => AddInputRow(keyword.Copy(), true));
  213. }
  214. }
  215. void EditTextRequested(Blackboard blackboard, VisualElement visualElement, string newText)
  216. {
  217. var field = (BlackboardField)visualElement;
  218. var input = (ShaderInput)field.userData;
  219. if (!string.IsNullOrEmpty(newText) && newText != input.displayName)
  220. {
  221. m_Graph.owner.RegisterCompleteObjectUndo("Edit Graph Input Name");
  222. input.displayName = newText;
  223. m_Graph.SanitizeGraphInputName(input);
  224. field.text = input.displayName;
  225. DirtyNodes();
  226. }
  227. }
  228. public void HandleGraphChanges()
  229. {
  230. foreach (var inputGuid in m_Graph.removedInputs)
  231. {
  232. BlackboardRow row;
  233. if (m_InputRows.TryGetValue(inputGuid, out row))
  234. {
  235. row.RemoveFromHierarchy();
  236. m_InputRows.Remove(inputGuid);
  237. }
  238. }
  239. foreach (var input in m_Graph.addedInputs)
  240. AddInputRow(input, index: m_Graph.GetGraphInputIndex(input));
  241. foreach (var expandedInput in expandedInputs)
  242. {
  243. SessionState.SetBool(expandedInput.Key.guid.ToString(), expandedInput.Value);
  244. }
  245. if (m_Graph.movedInputs.Any())
  246. {
  247. foreach (var row in m_InputRows.Values)
  248. row.RemoveFromHierarchy();
  249. foreach (var property in m_Graph.properties)
  250. m_PropertySection.Add(m_InputRows[property.guid]);
  251. foreach (var keyword in m_Graph.keywords)
  252. m_KeywordSection.Add(m_InputRows[keyword.guid]);
  253. }
  254. m_ExpandedInputs.Clear();
  255. }
  256. void AddInputRow(ShaderInput input, bool create = false, int index = -1)
  257. {
  258. if (m_InputRows.ContainsKey(input.guid))
  259. return;
  260. if (create)
  261. {
  262. m_Graph.SanitizeGraphInputName(input);
  263. input.generatePropertyBlock = input.isExposable;
  264. }
  265. BlackboardField field = null;
  266. BlackboardRow row = null;
  267. switch(input)
  268. {
  269. case AbstractShaderProperty property:
  270. {
  271. var icon = (m_Graph.isSubGraph || (property.isExposable && property.generatePropertyBlock)) ? exposedIcon : null;
  272. field = new BlackboardField(icon, property.displayName, property.propertyType.ToString()) { userData = property };
  273. var propertyView = new BlackboardFieldPropertyView(field, m_Graph, property);
  274. row = new BlackboardRow(field, propertyView) { userData = input };
  275. if (index < 0)
  276. index = m_InputRows.Count;
  277. if (index == m_InputRows.Count)
  278. m_PropertySection.Add(row);
  279. else
  280. m_PropertySection.Insert(index, row);
  281. break;
  282. }
  283. case ShaderKeyword keyword:
  284. {
  285. var icon = (m_Graph.isSubGraph || (keyword.isExposable && keyword.generatePropertyBlock)) ? exposedIcon : null;
  286. var typeText = keyword.isEditable ? keyword.keywordType.ToString() : "Built-in Keyword";
  287. field = new BlackboardField(icon, keyword.displayName, typeText) { userData = keyword };
  288. var keywordView = new BlackboardFieldKeywordView(field, m_Graph, keyword);
  289. row = new BlackboardRow(field, keywordView);
  290. if (index < 0)
  291. index = m_InputRows.Count;
  292. if (index == m_InputRows.Count)
  293. m_KeywordSection.Add(row);
  294. else
  295. m_KeywordSection.Insert(index, row);
  296. break;
  297. }
  298. default:
  299. throw new ArgumentOutOfRangeException();
  300. }
  301. if(field == null || row == null)
  302. return;
  303. var pill = row.Q<Pill>();
  304. pill.RegisterCallback<MouseEnterEvent>(evt => OnMouseHover(evt, input));
  305. pill.RegisterCallback<MouseLeaveEvent>(evt => OnMouseHover(evt, input));
  306. pill.RegisterCallback<DragUpdatedEvent>(OnDragUpdatedEvent);
  307. var expandButton = row.Q<Button>("expandButton");
  308. expandButton.RegisterCallback<MouseDownEvent>(evt => OnExpanded(evt, input), TrickleDown.TrickleDown);
  309. m_InputRows[input.guid] = row;
  310. m_InputRows[input.guid].expanded = SessionState.GetBool(input.guid.ToString(), true);
  311. if (create)
  312. {
  313. row.expanded = true;
  314. m_Graph.owner.RegisterCompleteObjectUndo("Create Graph Input");
  315. m_Graph.AddGraphInput(input);
  316. field.OpenTextEditor();
  317. if(input as ShaderKeyword != null)
  318. {
  319. m_Graph.OnKeywordChangedNoValidate();
  320. }
  321. }
  322. }
  323. void OnExpanded(MouseDownEvent evt, ShaderInput input)
  324. {
  325. m_ExpandedInputs[input] = !m_InputRows[input.guid].expanded;
  326. }
  327. void DirtyNodes()
  328. {
  329. foreach (var node in m_Graph.GetNodes<PropertyNode>())
  330. {
  331. node.OnEnable();
  332. node.Dirty(ModificationScope.Node);
  333. }
  334. foreach (var node in m_Graph.GetNodes<KeywordNode>())
  335. {
  336. node.OnEnable();
  337. node.Dirty(ModificationScope.Node);
  338. }
  339. }
  340. public BlackboardRow GetBlackboardRow(Guid guid)
  341. {
  342. return m_InputRows[guid];
  343. }
  344. void OnMouseHover(EventBase evt, ShaderInput input)
  345. {
  346. var graphView = blackboard.GetFirstAncestorOfType<MaterialGraphView>();
  347. if (evt.eventTypeId == MouseEnterEvent.TypeId())
  348. {
  349. foreach (var node in graphView.nodes.ToList())
  350. {
  351. if(input is AbstractShaderProperty property)
  352. {
  353. if (node.userData is PropertyNode propertyNode)
  354. {
  355. if (propertyNode.propertyGuid == input.guid)
  356. {
  357. m_SelectedNodes.Add(node);
  358. node.AddToClassList("hovered");
  359. }
  360. }
  361. }
  362. else if(input is ShaderKeyword keyword)
  363. {
  364. if (node.userData is KeywordNode keywordNode)
  365. {
  366. if (keywordNode.keywordGuid == input.guid)
  367. {
  368. m_SelectedNodes.Add(node);
  369. node.AddToClassList("hovered");
  370. }
  371. }
  372. }
  373. }
  374. }
  375. else if (evt.eventTypeId == MouseLeaveEvent.TypeId() && m_SelectedNodes.Any())
  376. {
  377. foreach (var node in m_SelectedNodes)
  378. {
  379. node.RemoveFromClassList("hovered");
  380. }
  381. m_SelectedNodes.Clear();
  382. }
  383. }
  384. }
  385. }