AnimatedConstraintExportTest.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. using NUnit.Framework;
  2. using System.Collections.Generic;
  3. namespace Autodesk.Fbx.UseCaseTests
  4. {
  5. public class AnimatedConstraintExportTest : AnimationClipsExportTest
  6. {
  7. protected override string[] PropertyNames
  8. {
  9. get
  10. {
  11. return new string[] {
  12. "Weight"
  13. };
  14. }
  15. }
  16. protected override string[] Components
  17. {
  18. get
  19. {
  20. return new string[] { null };
  21. }
  22. }
  23. protected const string ConstraintName = "posConstraint";
  24. [SetUp]
  25. public override void Init()
  26. {
  27. fileNamePrefix = "_safe_to_delete__animated_constraint_export_test";
  28. base.Init();
  29. }
  30. protected override FbxScene CreateScene(FbxManager manager)
  31. {
  32. // Create a scene with a single node that has an animation clip
  33. // attached to it
  34. FbxScene scene = FbxScene.Create(manager, "myScene");
  35. FbxNode sourceNode = FbxNode.Create(scene, "source");
  36. FbxNode constrainedNode = FbxNode.Create(scene, "constrained");
  37. scene.GetRootNode().AddChild(sourceNode);
  38. scene.GetRootNode().AddChild(constrainedNode);
  39. FbxConstraint posConstraint = CreatePositionConstraint(scene, sourceNode, constrainedNode);
  40. Assert.That(posConstraint, Is.Not.Null);
  41. bool result = posConstraint.ConnectDstObject(scene);
  42. Assert.That(result, Is.True);
  43. // animate weight + active
  44. // setup anim stack
  45. FbxAnimStack fbxAnimStack = CreateAnimStack(scene);
  46. // add an animation layer
  47. FbxAnimLayer fbxAnimLayer = FbxAnimLayer.Create(scene, "animBaseLayer");
  48. fbxAnimStack.AddMember(fbxAnimLayer);
  49. // set up the translation
  50. CreateAnimCurves(
  51. posConstraint, fbxAnimLayer, PropertyComponentList, (index) => { return index * 2.0; }, (index) => { return index * 3 - 2; }
  52. );
  53. // TODO: avoid needing to do this by creating typemaps for
  54. // FbxObject::GetSrcObjectCount and FbxCast.
  55. // Not trivial to do as both fbxobject.i and fbxemitter.i
  56. // have to be moved up before the ignore all statement
  57. // to allow use of templates.
  58. scene.SetCurrentAnimationStack(fbxAnimStack);
  59. return scene;
  60. }
  61. protected FbxConstraint CreatePositionConstraint(FbxScene scene, FbxNode sourceNode, FbxNode constrainedNode)
  62. {
  63. FbxConstraintPosition constraint = FbxConstraintPosition.Create(scene, ConstraintName);
  64. constraint.SetConstrainedObject(constrainedNode);
  65. constraint.AddConstraintSource(sourceNode);
  66. constraint.AffectX.Set(true);
  67. constraint.AffectY.Set(true);
  68. constraint.AffectZ.Set(true);
  69. constraint.Translation.Set(new FbxDouble3(1, 2, 3));
  70. return constraint;
  71. }
  72. protected override void CheckScene(FbxScene scene)
  73. {
  74. FbxScene origScene = CreateScene(FbxManager);
  75. Assert.That(origScene.GetRootNode().GetChildCount(), Is.EqualTo(scene.GetRootNode().GetChildCount()));
  76. // check nodes match
  77. FbxNode origSourceNode = origScene.GetRootNode().GetChild(0);
  78. FbxNode origConstrainedNode = origScene.GetRootNode().GetChild(1);
  79. FbxNode importSourceNode = scene.GetRootNode().GetChild(0);
  80. FbxNode importConstrainedNode = scene.GetRootNode().GetChild(1);
  81. Assert.That(origSourceNode, Is.Not.Null);
  82. Assert.That(importSourceNode, Is.Not.Null);
  83. Assert.That(origConstrainedNode, Is.Not.Null);
  84. Assert.That(importConstrainedNode, Is.Not.Null);
  85. Assert.That(importSourceNode.GetName(), Is.EqualTo(origSourceNode.GetName()));
  86. Assert.That(importConstrainedNode.GetName(), Is.EqualTo(origConstrainedNode.GetName()));
  87. // check constraints match
  88. // TODO: find a way to cast to FbxConstraint
  89. Assert.That(scene.GetSrcObjectCount(), Is.EqualTo(origScene.GetSrcObjectCount()));
  90. FbxObject origPosConstraint = origScene.FindSrcObject(ConstraintName);
  91. FbxObject importPosConstraint = scene.FindSrcObject(ConstraintName);
  92. Assert.That(origPosConstraint, Is.Not.Null);
  93. Assert.That(importPosConstraint, Is.Not.Null);
  94. Assert.That(importPosConstraint.GetName(), Is.EqualTo(origPosConstraint.GetName()));
  95. // check animation matches
  96. FbxAnimStack origStack = origScene.GetCurrentAnimationStack();
  97. FbxAnimStack importStack = scene.GetCurrentAnimationStack();
  98. CheckAnimStack(origStack, importStack);
  99. FbxAnimLayer origLayer = origStack.GetAnimLayerMember();
  100. FbxAnimLayer importLayer = importStack.GetAnimLayerMember();
  101. Assert.That(origLayer, Is.Not.Null);
  102. Assert.That(importLayer, Is.Not.Null);
  103. Assert.That(scene.GetGlobalSettings().GetTimeMode(), Is.EqualTo(FbxTime.EMode.eFrames30));
  104. CheckAnimCurve(origPosConstraint, importPosConstraint, origLayer, importLayer, PropertyComponentList);
  105. }
  106. }
  107. }