BindingTreeViewDataSource.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using UnityEditor;
  4. using UnityEditor.IMGUI.Controls;
  5. using UnityEditor.Timeline;
  6. using UnityEngine;
  7. namespace UnityEditorInternal
  8. {
  9. class BindingTreeViewDataSource : TreeViewDataSource
  10. {
  11. public const int RootID = int.MinValue;
  12. public const int GroupID = -1;
  13. AnimationClip m_Clip;
  14. CurveDataSource m_CurveDataSource;
  15. public BindingTreeViewDataSource(
  16. TreeViewController treeView, AnimationClip clip, CurveDataSource curveDataSource)
  17. : base(treeView)
  18. {
  19. m_Clip = clip;
  20. showRootItem = false;
  21. m_CurveDataSource = curveDataSource;
  22. }
  23. void SetupRootNodeSettings()
  24. {
  25. showRootItem = false;
  26. SetExpanded(RootID, true);
  27. SetExpanded(GroupID, true);
  28. }
  29. static string GroupName(EditorCurveBinding binding)
  30. {
  31. string property = AnimationWindowUtility.NicifyPropertyGroupName(binding.type, binding.propertyName);
  32. if (!string.IsNullOrEmpty(binding.path))
  33. {
  34. property = binding.path + " : " + property;
  35. }
  36. int lastArrayIdx = property.LastIndexOf("Array.");
  37. if (lastArrayIdx != -1)
  38. {
  39. property = property.Substring(0, lastArrayIdx - 1);
  40. }
  41. return property;
  42. }
  43. static string PropertyName(EditorCurveBinding binding, string arrayPrefixToRemove = "")
  44. {
  45. string propertyName = AnimationWindowUtility.GetPropertyDisplayName(binding.propertyName);
  46. if (propertyName.Contains("Array"))
  47. {
  48. propertyName = propertyName.Replace("Array.", "");
  49. propertyName = propertyName.Replace(arrayPrefixToRemove, "");
  50. propertyName = propertyName.TrimStart('.');
  51. }
  52. return propertyName;
  53. }
  54. public override void FetchData()
  55. {
  56. if (m_Clip == null)
  57. return;
  58. var bindings = AnimationUtility.GetCurveBindings(m_Clip)
  59. .Union(AnimationUtility.GetObjectReferenceCurveBindings(m_Clip))
  60. .ToArray();
  61. var results = bindings.GroupBy(p => GroupName(p), p => p, (key, g) => new
  62. {
  63. parent = key,
  64. bindings = g.ToList()
  65. }).OrderBy(t =>
  66. {
  67. //Force transform order first
  68. if (t.parent == "Position") return -3;
  69. if (t.parent == "Rotation") return -2;
  70. if (t.parent == "Scale") return -1;
  71. return 0;
  72. }).ThenBy(t => t.parent);
  73. m_RootItem = new CurveTreeViewNode(RootID, null, "root", null)
  74. {
  75. children = new List<TreeViewItem>(1)
  76. };
  77. var groupingNode = new CurveTreeViewNode(GroupID, m_RootItem, m_CurveDataSource.groupingName, bindings)
  78. {
  79. children = new List<TreeViewItem>()
  80. };
  81. m_RootItem.children.Add(groupingNode);
  82. foreach (var r in results)
  83. {
  84. var newNode = new CurveTreeViewNode(r.parent.GetHashCode(), groupingNode, r.parent, r.bindings.ToArray());
  85. groupingNode.children.Add(newNode);
  86. if (r.bindings.Count > 1)
  87. {
  88. for (int b = 0; b < r.bindings.Count; b++)
  89. {
  90. if (newNode.children == null)
  91. newNode.children = new List<TreeViewItem>();
  92. var binding = r.bindings[b];
  93. var bindingNode = new CurveTreeViewNode(binding.GetHashCode(), newNode, PropertyName(binding, newNode.displayName), new[] {binding});
  94. newNode.children.Add(bindingNode);
  95. }
  96. }
  97. }
  98. SetupRootNodeSettings();
  99. m_NeedRefreshRows = true;
  100. }
  101. public void UpdateData()
  102. {
  103. m_TreeView.ReloadData();
  104. }
  105. }
  106. class CurveTreeViewNode : TreeViewItem
  107. {
  108. EditorCurveBinding[] m_Bindings;
  109. public EditorCurveBinding[] bindings
  110. {
  111. get { return m_Bindings; }
  112. }
  113. public CurveTreeViewNode(int id, TreeViewItem parent, string displayName, EditorCurveBinding[] bindings)
  114. : base(id, parent != null ? parent.depth + 1 : -1, parent, displayName)
  115. {
  116. m_Bindings = bindings;
  117. }
  118. }
  119. }