IExportData.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. using UnityEditor;
  2. using UnityEngine;
  3. using UnityEngine.Timeline;
  4. using System.Collections.Generic;
  5. namespace UnityEditor.Formats.Fbx.Exporter
  6. {
  7. /// <summary>
  8. /// Export data containing extra information required to export
  9. /// </summary>
  10. internal interface IExportData
  11. {
  12. HashSet<GameObject> Objects { get; }
  13. }
  14. /// <summary>
  15. /// Export data containing what to export when
  16. /// exporting animation only.
  17. /// </summary>
  18. internal class AnimationOnlyExportData : IExportData
  19. {
  20. // map from animation clip to GameObject that has Animation/Animator
  21. // component containing clip
  22. public Dictionary<AnimationClip, GameObject> animationClips;
  23. // set of all GameObjects to export
  24. public HashSet<GameObject> goExportSet;
  25. public HashSet<GameObject> Objects { get { return goExportSet; } }
  26. // map from GameObject to component type to export
  27. public Dictionary<GameObject, System.Type> exportComponent;
  28. // first clip to export
  29. public AnimationClip defaultClip;
  30. public AnimationOnlyExportData(
  31. Dictionary<AnimationClip, GameObject> animClips,
  32. HashSet<GameObject> exportSet,
  33. Dictionary<GameObject, System.Type> exportComponent
  34. )
  35. {
  36. this.animationClips = animClips;
  37. this.goExportSet = exportSet;
  38. this.exportComponent = exportComponent;
  39. this.defaultClip = null;
  40. }
  41. public AnimationOnlyExportData()
  42. {
  43. this.animationClips = new Dictionary<AnimationClip, GameObject>();
  44. this.goExportSet = new HashSet<GameObject>();
  45. this.exportComponent = new Dictionary<GameObject, System.Type>();
  46. this.defaultClip = null;
  47. }
  48. /// <summary>
  49. /// collect all object dependencies for given animation clip
  50. /// </summary>
  51. public void CollectDependencies(
  52. AnimationClip animClip,
  53. GameObject rootObject,
  54. IExportOptions exportOptions
  55. )
  56. {
  57. Debug.Assert(rootObject != null);
  58. Debug.Assert(exportOptions != null);
  59. if (this.animationClips.ContainsKey(animClip))
  60. {
  61. // we have already exported gameobjects for this clip
  62. return;
  63. }
  64. // NOTE: the object (animationRootObject) containing the animation is not necessarily animated
  65. // when driven by an animator or animation component.
  66. this.animationClips.Add(animClip, rootObject);
  67. foreach (EditorCurveBinding uniCurveBinding in AnimationUtility.GetCurveBindings(animClip))
  68. {
  69. Object uniObj = AnimationUtility.GetAnimatedObject(rootObject, uniCurveBinding);
  70. if (!uniObj)
  71. {
  72. continue;
  73. }
  74. GameObject unityGo = ModelExporter.GetGameObject(uniObj);
  75. if (!unityGo)
  76. {
  77. continue;
  78. }
  79. if (!exportOptions.AnimateSkinnedMesh && unityGo.GetComponent<SkinnedMeshRenderer>())
  80. {
  81. continue;
  82. }
  83. // If we have a clip driving a camera or light then force the export of FbxNodeAttribute
  84. // so that they point the right way when imported into Maya.
  85. if (unityGo.GetComponent<Light>())
  86. this.exportComponent[unityGo] = typeof(Light);
  87. else if (unityGo.GetComponent<Camera>())
  88. this.exportComponent[unityGo] = typeof(Camera);
  89. this.goExportSet.Add(unityGo);
  90. }
  91. }
  92. /// <summary>
  93. /// collect all objects dependencies for animation clips.
  94. /// </summary>
  95. public void CollectDependencies(
  96. AnimationClip[] animClips,
  97. GameObject rootObject,
  98. IExportOptions exportOptions
  99. )
  100. {
  101. Debug.Assert(rootObject != null);
  102. Debug.Assert(exportOptions != null);
  103. foreach (var animClip in animClips)
  104. {
  105. CollectDependencies(animClip, rootObject, exportOptions);
  106. }
  107. }
  108. /// <summary>
  109. /// Get the property propertyName from object obj using reflection.
  110. /// </summary>
  111. /// <param name="obj"></param>
  112. /// <param name="propertyName"></param>
  113. /// <returns>property propertyName as an object</returns>
  114. private static object GetPropertyReflection(object obj, string propertyName)
  115. {
  116. return obj.GetType().GetProperty(propertyName).GetValue(obj, null);
  117. }
  118. /// <summary>
  119. /// Get the timeline clip from the given editor clip using reflection.
  120. /// </summary>
  121. /// <param name="editorClip"></param>
  122. /// <returns>the timeline clip or null if none</returns>
  123. private static TimelineClip GetTimelineClipFromEditorClip(object editorClip)
  124. {
  125. object clip = GetPropertyReflection(editorClip, "clip");
  126. return clip as TimelineClip;
  127. }
  128. /// <summary>
  129. /// Get the GameObject that the editor clip is bound to in the timeline using reflection.
  130. /// </summary>
  131. /// <param name="editorClip"></param>
  132. /// <returns>The GameObject bound to the editor clip or null if none.</returns>
  133. private static GameObject GetGameObjectBoundToEditorClip(object editorClip)
  134. {
  135. var timelineClip = GetTimelineClipFromEditorClip(editorClip);
  136. object parentTrack = timelineClip.parentTrack;
  137. AnimationTrack animTrack = parentTrack as AnimationTrack;
  138. Object animationTrackObject = UnityEditor.Timeline.TimelineEditor.inspectedDirector.GetGenericBinding(animTrack);
  139. GameObject animationTrackGO = null;
  140. if (animationTrackObject is GameObject)
  141. {
  142. animationTrackGO = animationTrackObject as GameObject;
  143. }
  144. else if (animationTrackObject is Animator)
  145. {
  146. animationTrackGO = (animationTrackObject as Animator).gameObject;
  147. }
  148. if (animationTrackGO == null)
  149. {
  150. Debug.LogErrorFormat("Could not export animation track object of type {0}", animationTrackObject.GetType().Name);
  151. return null;
  152. }
  153. return animationTrackGO;
  154. }
  155. /// <summary>
  156. /// Get the GameObject and it's corresponding animation clip from the given editor clip.
  157. /// </summary>
  158. /// <param name="editorClip"></param>
  159. /// <returns>KeyValuePair containing GameObject and corresponding AnimationClip</returns>
  160. public static KeyValuePair<GameObject, AnimationClip> GetGameObjectAndAnimationClip(Object editorClip)
  161. {
  162. if (!ModelExporter.IsEditorClip(editorClip))
  163. return new KeyValuePair<GameObject, AnimationClip>();
  164. TimelineClip timeLineClip = GetTimelineClipFromEditorClip(editorClip);
  165. var animationTrackGO = GetGameObjectBoundToEditorClip(editorClip);
  166. if (animationTrackGO == null)
  167. {
  168. return new KeyValuePair<GameObject, AnimationClip>();
  169. }
  170. return new KeyValuePair<GameObject, AnimationClip>(animationTrackGO, timeLineClip.animationClip);
  171. }
  172. /// <summary>
  173. /// Get the filename of the format {model}@{anim}.fbx from the given object
  174. /// </summary>
  175. /// <param name="obj"></param>
  176. /// <returns>filename for use for exporting animation clip</returns>
  177. public static string GetFileName(Object obj)
  178. {
  179. if (!ModelExporter.IsEditorClip(obj))
  180. {
  181. // not an editor clip so just return the name of the object
  182. return obj.name;
  183. }
  184. TimelineClip timeLineClip = GetTimelineClipFromEditorClip(obj);
  185. // if the timeline clip name already contains an @, then take this as the
  186. // filename to avoid duplicate @
  187. if (timeLineClip.displayName.Contains("@"))
  188. {
  189. return timeLineClip.displayName;
  190. }
  191. var goBound = GetGameObjectBoundToEditorClip(obj);
  192. if (goBound == null)
  193. {
  194. return obj.name;
  195. }
  196. return string.Format("{0}@{1}", goBound.name, timeLineClip.displayName);
  197. }
  198. }
  199. }