AnimationClipsExportTest.cs 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. // ***********************************************************************
  2. // Copyright (c) 2017 Unity Technologies. All rights reserved.
  3. //
  4. // Licensed under the ##LICENSENAME##.
  5. // See LICENSE.md file in the project root for full license information.
  6. // ***********************************************************************
  7. using NUnit.Framework;
  8. using System.Collections.Generic;
  9. using Autodesk.Fbx;
  10. namespace Autodesk.Fbx.UseCaseTests
  11. {
  12. public class AnimationClipsExportTest : RoundTripTestBase
  13. {
  14. protected int m_keyCount = 5;
  15. protected virtual string[] PropertyNames
  16. {
  17. get
  18. {
  19. return new string[] {
  20. "Lcl Translation",
  21. "Lcl Rotation",
  22. "Lcl Scaling"
  23. };
  24. }
  25. }
  26. protected virtual string[] Components
  27. {
  28. get
  29. {
  30. return new string[] {
  31. Globals.FBXSDK_CURVENODE_COMPONENT_X,
  32. Globals.FBXSDK_CURVENODE_COMPONENT_Y,
  33. Globals.FBXSDK_CURVENODE_COMPONENT_Z
  34. };
  35. }
  36. }
  37. protected List<PropertyComponentPair> m_propComponentList;
  38. protected virtual List<PropertyComponentPair> PropertyComponentList
  39. {
  40. get
  41. {
  42. if (m_propComponentList == null)
  43. {
  44. m_propComponentList = new List<PropertyComponentPair>();
  45. foreach (var prop in PropertyNames)
  46. {
  47. m_propComponentList.Add(new PropertyComponentPair(prop, Components));
  48. }
  49. }
  50. return m_propComponentList;
  51. }
  52. }
  53. protected struct PropertyComponentPair
  54. {
  55. public string propertyName;
  56. public string[] componentList;
  57. public PropertyComponentPair(string propName, string[] components)
  58. {
  59. propertyName = propName;
  60. componentList = components;
  61. }
  62. }
  63. [SetUp]
  64. public override void Init ()
  65. {
  66. fileNamePrefix = "_safe_to_delete__animation_clips_export_test";
  67. base.Init ();
  68. }
  69. protected override FbxScene CreateScene (FbxManager manager)
  70. {
  71. // Create a scene with a single node that has an animation clip
  72. // attached to it
  73. FbxScene scene = FbxScene.Create (manager, "myScene");
  74. FbxNode animNode = FbxNode.Create (scene, "animNode");
  75. // setup anim stack
  76. FbxAnimStack fbxAnimStack = CreateAnimStack(scene);
  77. // add an animation layer
  78. FbxAnimLayer fbxAnimLayer = FbxAnimLayer.Create (scene, "animBaseLayer");
  79. fbxAnimStack.AddMember (fbxAnimLayer);
  80. // set up the translation
  81. CreateAnimCurves (
  82. animNode, fbxAnimLayer, PropertyComponentList, (index) => { return index*2.0; }, (index) => { return index*3.0f - 1; }
  83. );
  84. // TODO: avoid needing to this by creating typemaps for
  85. // FbxObject::GetSrcObjectCount and FbxCast.
  86. // Not trivial to do as both fbxobject.i and fbxemitter.i
  87. // have to be moved up before the ignore all statement
  88. // to allow use of templates.
  89. scene.SetCurrentAnimationStack (fbxAnimStack);
  90. scene.GetRootNode().AddChild (animNode);
  91. return scene;
  92. }
  93. protected FbxAnimStack CreateAnimStack(FbxScene scene)
  94. {
  95. FbxAnimStack fbxAnimStack = FbxAnimStack.Create(scene, "animClip");
  96. fbxAnimStack.Description.Set("Animation Take");
  97. FbxTime.EMode timeMode = FbxTime.EMode.eFrames30;
  98. scene.GetGlobalSettings().SetTimeMode(timeMode);
  99. // set time correctly
  100. var fbxStartTime = FbxTime.FromSecondDouble(0);
  101. var fbxStopTime = FbxTime.FromSecondDouble(25);
  102. fbxAnimStack.SetLocalTimeSpan(new FbxTimeSpan(fbxStartTime, fbxStopTime));
  103. return fbxAnimStack;
  104. }
  105. protected void CreateAnimCurves(
  106. FbxObject animObject, FbxAnimLayer animLayer,
  107. List<PropertyComponentPair> properties,
  108. System.Func<int,double> calcTime, // lambda function for calculating time based on index
  109. System.Func<int,float> calcValue, // lambda function for calculating value based on index
  110. FbxNodeAttribute animNodeAttr=null)
  111. {
  112. foreach(var pair in properties){
  113. FbxProperty fbxProperty = animObject.FindProperty (pair.propertyName, false);
  114. if (animNodeAttr != null && (fbxProperty == null || !fbxProperty.IsValid ())) {
  115. // backup method for finding the property if we can't find it on the node itself
  116. fbxProperty = animNodeAttr.FindProperty (pair.propertyName, false);
  117. }
  118. Assert.IsNotNull (fbxProperty);
  119. Assert.IsTrue (fbxProperty.IsValid ());
  120. Assert.That(fbxProperty.GetFlag(FbxPropertyFlags.EFlags.eAnimatable), Is.True);
  121. foreach (var component in pair.componentList) {
  122. // Create the AnimCurve on the channel
  123. FbxAnimCurve fbxAnimCurve = fbxProperty.GetCurve (animLayer, component, true);
  124. Assert.IsNotNull (fbxAnimCurve);
  125. fbxAnimCurve.KeyModifyBegin ();
  126. for (int keyIndex = 0; keyIndex < m_keyCount; ++keyIndex) {
  127. FbxTime fbxTime = FbxTime.FromSecondDouble(calcTime(keyIndex));
  128. fbxAnimCurve.KeyAdd (fbxTime);
  129. fbxAnimCurve.KeySet (keyIndex, fbxTime, calcValue(keyIndex));
  130. }
  131. fbxAnimCurve.KeyModifyEnd ();
  132. }
  133. }
  134. }
  135. protected override void CheckScene (FbxScene scene)
  136. {
  137. FbxScene origScene = CreateScene (FbxManager);
  138. FbxNode origAnimNode = origScene.GetRootNode ().GetChild (0);
  139. FbxNode importAnimNode = scene.GetRootNode ().GetChild (0);
  140. Assert.AreEqual (origScene.GetRootNode ().GetChildCount (), scene.GetRootNode ().GetChildCount ());
  141. Assert.IsNotNull (origAnimNode);
  142. Assert.IsNotNull (importAnimNode);
  143. Assert.AreEqual (origAnimNode.GetName (), importAnimNode.GetName ());
  144. FbxAnimStack origStack = origScene.GetCurrentAnimationStack ();
  145. FbxAnimStack importStack = scene.GetCurrentAnimationStack ();
  146. CheckAnimStack(origStack, importStack);
  147. FbxAnimLayer origLayer = origStack.GetAnimLayerMember ();
  148. FbxAnimLayer importLayer = importStack.GetAnimLayerMember ();
  149. Assert.IsNotNull (origLayer);
  150. Assert.IsNotNull (importLayer);
  151. Assert.AreEqual(FbxTime.EMode.eFrames30, scene.GetGlobalSettings().GetTimeMode());
  152. CheckAnimCurve (origAnimNode, importAnimNode, origLayer, importLayer, PropertyComponentList);
  153. }
  154. protected void CheckAnimStack(FbxAnimStack origStack, FbxAnimStack importStack)
  155. {
  156. Assert.IsNotNull(origStack);
  157. Assert.IsNotNull(importStack);
  158. Assert.AreEqual(origStack.GetName(), importStack.GetName());
  159. Assert.AreEqual(origStack.Description.Get(), importStack.Description.Get());
  160. Assert.AreEqual(origStack.GetMemberCount(), importStack.GetMemberCount());
  161. Assert.AreEqual(origStack.GetLocalTimeSpan(), importStack.GetLocalTimeSpan());
  162. }
  163. protected void CheckAnimCurve(
  164. FbxObject origAnimObject, FbxObject importAnimObject,
  165. FbxAnimLayer origLayer, FbxAnimLayer importLayer,
  166. List<PropertyComponentPair> propCompPairs,
  167. FbxNodeAttribute origNodeAttr=null, FbxNodeAttribute importNodeAttr=null)
  168. {
  169. foreach (var pair in propCompPairs) {
  170. FbxProperty origProperty = origAnimObject.FindProperty (pair.propertyName, false);
  171. if (origNodeAttr != null && (origProperty == null || !origProperty.IsValid ())) {
  172. origProperty = origNodeAttr.FindProperty (pair.propertyName, false);
  173. }
  174. FbxProperty importProperty = importAnimObject.FindProperty (pair.propertyName, false);
  175. if (importNodeAttr != null && (importProperty == null || !importProperty.IsValid ())) {
  176. importProperty = importNodeAttr.FindProperty (pair.propertyName, false);
  177. }
  178. Assert.IsNotNull (origProperty);
  179. Assert.IsNotNull (importProperty);
  180. Assert.IsTrue (origProperty.IsValid ());
  181. Assert.IsTrue (importProperty.IsValid ());
  182. foreach (var component in pair.componentList) {
  183. FbxAnimCurve origAnimCurve = origProperty.GetCurve (origLayer, component, false);
  184. FbxAnimCurve importAnimCurve = importProperty.GetCurve (importLayer, component, false);
  185. Assert.IsNotNull (origAnimCurve);
  186. Assert.IsNotNull (importAnimCurve);
  187. Assert.AreEqual (origAnimCurve.KeyGetCount (), importAnimCurve.KeyGetCount ());
  188. for (int i = 0; i < origAnimCurve.KeyGetCount (); i++) {
  189. Assert.AreEqual (origAnimCurve.KeyGetTime (i), importAnimCurve.KeyGetTime (i));
  190. Assert.AreEqual (origAnimCurve.KeyGetValue (i), importAnimCurve.KeyGetValue (i));
  191. }
  192. }
  193. }
  194. }
  195. }
  196. }