FbxNodeTest.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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 Autodesk.Fbx;
  9. namespace Autodesk.Fbx.UnitTests
  10. {
  11. public class FbxNodeTest : Base<FbxNode>
  12. {
  13. [Test]
  14. public void TestBasics ()
  15. {
  16. bool ok;
  17. FbxNode found;
  18. // Call every function once in a non-corner-case way
  19. var root = CreateObject("root");
  20. Assert.AreEqual(0, root.GetChildCount()); // non-recursive
  21. Assert.AreEqual(0, root.GetChildCount(true)); // recursive
  22. var t = root.LclTranslation;
  23. Assert.AreEqual(new FbxDouble3(0,0,0), t.Get());
  24. var s = root.LclScaling;
  25. Assert.AreEqual(new FbxDouble3(1,1,1), s.Get());
  26. var r = root.LclRotation;
  27. Assert.AreEqual(new FbxDouble3(0,0,0), r.Get());
  28. var vi = root.VisibilityInheritance;
  29. Assert.AreEqual (true, vi.Get ());
  30. var child = CreateObject("child");
  31. ok = root.AddChild(child);
  32. Assert.IsTrue(ok);
  33. Assert.AreEqual(0, child.GetChildCount()); // non-recursive
  34. Assert.AreEqual(0, child.GetChildCount(true)); // recursive
  35. Assert.AreEqual(1, root.GetChildCount()); // non-recursive
  36. Assert.AreEqual(1, root.GetChildCount(true)); // recursive
  37. found = child.GetParent();
  38. Assert.AreEqual(root, found);
  39. found = root.GetChild(0);
  40. Assert.AreEqual(child, found);
  41. var grandchild = CreateObject("grandchild");
  42. ok = child.AddChild(grandchild);
  43. Assert.IsTrue(ok);
  44. Assert.AreEqual(0, grandchild.GetChildCount()); // non-recursive
  45. Assert.AreEqual(0, grandchild.GetChildCount(true)); // recursive
  46. Assert.AreEqual(1, child.GetChildCount()); // non-recursive
  47. Assert.AreEqual(1, child.GetChildCount(true)); // recursive
  48. Assert.AreEqual(1, root.GetChildCount()); // non-recursive
  49. Assert.AreEqual(2, root.GetChildCount(true)); // recursive
  50. found = root.GetChild(0);
  51. Assert.AreEqual(child, found);
  52. found = child.GetChild(0);
  53. Assert.AreEqual(grandchild, found);
  54. // Create a node from the grandchild. That's a child.
  55. var greatgrandchild = FbxNode.Create(grandchild, "greatgrandchild");
  56. Assert.AreEqual(1, grandchild.GetChildCount());
  57. found = root.FindChild("child"); // recursive
  58. Assert.AreEqual(child, found);
  59. found = root.FindChild("grandchild"); // recursive
  60. Assert.AreEqual(grandchild, found);
  61. found = root.FindChild("grandchild", pRecursive: false);
  62. Assert.IsNull(found);
  63. greatgrandchild.SetName("greatest");
  64. found = root.FindChild("greatgrandchild", pRecursive: true, pInitial: false);
  65. Assert.AreEqual(null, found);
  66. found = root.FindChild("greatgrandchild", pRecursive: true, pInitial: true);
  67. Assert.AreEqual(greatgrandchild, found);
  68. // Destroying the grandchild recursively nukes the great-grandchild and unparents from child.
  69. grandchild.Destroy(pRecursive: true);
  70. Assert.That(() => { greatgrandchild.GetName(); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  71. Assert.AreEqual(0, child.GetChildCount());
  72. // Destroying the child non-recursively (after adding a new
  73. // grandchild) doesn't destroy the grandchild.
  74. grandchild = CreateObject("grandchild2");
  75. child.AddChild(grandchild);
  76. child.Destroy();
  77. Assert.AreEqual("grandchild2", grandchild.GetName()); // actually compare by name => check it doesn't throw
  78. // That unparents the grandchild.
  79. Assert.IsNull(grandchild.GetParent());
  80. // Recursively destroying the root does not destroy the grandchild.
  81. root.Destroy(pRecursive: true);
  82. Assert.AreEqual("grandchild2", grandchild.GetName()); // actually compare by name => check it doesn't throw
  83. // Test we can remove a child.
  84. var fooNode = FbxNode.Create(grandchild, "foo");
  85. grandchild.RemoveChild(fooNode);
  86. Assert.IsNull(fooNode.GetParent());
  87. Assert.AreEqual(0, grandchild.GetChildCount());
  88. // Add a material.
  89. var mat = FbxSurfaceMaterial.Create(Manager, "mat");
  90. Assert.AreEqual(0, fooNode.AddMaterial(mat));
  91. Assert.That(() => { fooNode.AddMaterial (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  92. int matIndex = fooNode.GetMaterialIndex ("mat");
  93. Assert.GreaterOrEqual (matIndex, 0);
  94. Assert.AreEqual (fooNode.GetMaterial (matIndex), mat);
  95. // test that invalid material index doesnt crash
  96. fooNode.GetMaterial(int.MinValue);
  97. fooNode.GetMaterial (int.MaxValue);
  98. Assert.Less (fooNode.GetMaterialIndex ("not a mat"), 0);
  99. // TODO: Find a way to do a null arg check without breaking Create function
  100. // (as they both us pName as a param)
  101. //Assert.That(() => { fooNode.GetMaterialIndex (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  102. // Test whether it's a skeleton, camera, etc. It isn't.
  103. Assert.IsNull(fooNode.GetCamera());
  104. Assert.IsNull(fooNode.GetGeometry());
  105. Assert.IsNull(fooNode.GetMesh());
  106. Assert.IsNull(fooNode.GetNodeAttribute());
  107. Assert.IsNull(fooNode.GetSkeleton());
  108. Assert.IsNull (fooNode.GetLight ());
  109. // Test that we can get at the limits by reference.
  110. Assert.IsNotNull(fooNode.GetTranslationLimits());
  111. Assert.IsNotNull(fooNode.GetRotationLimits());
  112. Assert.IsNotNull(fooNode.GetScalingLimits());
  113. var limits = fooNode.GetTranslationLimits();
  114. Assert.IsFalse(limits.GetActive());
  115. limits.SetActive(true);
  116. Assert.IsTrue(fooNode.GetTranslationLimits().GetActive());
  117. }
  118. [Test]
  119. public void TestSetNodeAttribute()
  120. {
  121. using (FbxNode node = CreateObject ("root")) {
  122. var nodeAttribute = FbxNodeAttribute.Create (Manager, "node attribute");
  123. // from Fbx Sdk 2017 docs:
  124. // Returns pointer to previous node attribute. NULL if the node didn't have a node
  125. // attribute, or if the new node attribute is equal to the one currently set.
  126. FbxNodeAttribute prevNodeAttribute = node.SetNodeAttribute (nodeAttribute);
  127. Assert.IsNull (prevNodeAttribute);
  128. Assert.AreEqual (nodeAttribute, node.GetNodeAttribute ());
  129. prevNodeAttribute = node.SetNodeAttribute (nodeAttribute);
  130. Assert.IsNull(prevNodeAttribute);
  131. Assert.AreEqual (nodeAttribute, node.GetNodeAttribute ());
  132. prevNodeAttribute = node.SetNodeAttribute(FbxNodeAttribute.Create(Manager, "node attribute 2"));
  133. Assert.AreEqual (prevNodeAttribute, nodeAttribute);
  134. }
  135. }
  136. [Test]
  137. public void TestSetNullNodeAttribute()
  138. {
  139. using (FbxNode node = CreateObject ("root")) {
  140. // passing a null NodeAttribute throws a ArgumentNullException
  141. Assert.That (() => { node.SetNodeAttribute (null); }, Throws.Exception.TypeOf<System.ArgumentNullException>());
  142. Assert.IsNull (node.GetNodeAttribute ());
  143. }
  144. }
  145. [Test]
  146. public void TestSetShadingModeToWireFrame()
  147. {
  148. using (FbxNode node = CreateObject ("root")) {
  149. node.SetShadingMode (FbxNode.EShadingMode.eWireFrame);
  150. Assert.AreEqual (FbxNode.EShadingMode.eWireFrame, node.GetShadingMode ());
  151. }
  152. }
  153. [Test]
  154. public void TestSetVisibility()
  155. {
  156. using(FbxNode node = CreateObject("root")){
  157. node.SetVisibility (false);
  158. Assert.AreEqual (node.GetVisibility (), false);
  159. }
  160. }
  161. [Test]
  162. public void TestEvaluateGlobalTransform()
  163. {
  164. // make sure it doesn't crash
  165. using (FbxNode node = CreateObject ("root")) {
  166. node.EvaluateGlobalTransform ();
  167. node.EvaluateGlobalTransform (new FbxTime());
  168. node.EvaluateGlobalTransform (new FbxTime(), FbxNode.EPivotSet.eDestinationPivot); // eSourcePivot is default
  169. node.EvaluateGlobalTransform (new FbxTime(), FbxNode.EPivotSet.eSourcePivot, true); // false is default
  170. node.EvaluateGlobalTransform (new FbxTime(), FbxNode.EPivotSet.eSourcePivot, false, true); // false is default
  171. }
  172. }
  173. [Test]
  174. public void TestEvaluateLocalTransform()
  175. {
  176. // make sure it doesn't crash
  177. using (FbxNode node = CreateObject ("root")) {
  178. node.EvaluateLocalTransform ();
  179. node.EvaluateLocalTransform (new FbxTime());
  180. node.EvaluateLocalTransform (new FbxTime(), FbxNode.EPivotSet.eDestinationPivot); // eSourcePivot is default
  181. node.EvaluateLocalTransform (new FbxTime(), FbxNode.EPivotSet.eSourcePivot, true); // false is default
  182. node.EvaluateLocalTransform (new FbxTime(), FbxNode.EPivotSet.eSourcePivot, false, true); // false is default
  183. }
  184. }
  185. [Test]
  186. public void TestGetMesh(){
  187. // make sure it doesn't crash
  188. using (FbxNode node = CreateObject ("root")) {
  189. FbxMesh mesh = FbxMesh.Create (Manager, "mesh");
  190. node.SetNodeAttribute (mesh);
  191. Assert.AreEqual (mesh, node.GetMesh ());
  192. }
  193. }
  194. [Test]
  195. public void TestGetLight(){
  196. // make sure it doesn't crash
  197. using (FbxNode node = CreateObject ("root")) {
  198. FbxLight light = FbxLight.Create (Manager, "light");
  199. node.SetNodeAttribute (light);
  200. Assert.AreEqual (light, node.GetLight ());
  201. }
  202. }
  203. [Test]
  204. public void TestSetRotationScalePivotOffset(){
  205. using (FbxNode node = CreateObject ("root")) {
  206. FbxVector4 rot = new FbxVector4 (1, 2, 3);
  207. node.SetPreRotation (FbxNode.EPivotSet.eSourcePivot, rot);
  208. Assert.AreEqual(rot, node.GetPreRotation(FbxNode.EPivotSet.eSourcePivot));
  209. Assert.AreNotEqual (rot, node.GetPreRotation (FbxNode.EPivotSet.eDestinationPivot));
  210. node.SetPostRotation (FbxNode.EPivotSet.eSourcePivot, rot);
  211. Assert.AreEqual (rot, node.GetPostRotation (FbxNode.EPivotSet.eSourcePivot));
  212. rot.X = 5;
  213. node.SetPostRotation (FbxNode.EPivotSet.eDestinationPivot, rot);
  214. Assert.AreEqual (rot, node.GetPostRotation (FbxNode.EPivotSet.eDestinationPivot));
  215. node.SetRotationPivot (FbxNode.EPivotSet.eSourcePivot, rot);
  216. Assert.AreEqual (rot, node.GetRotationPivot (FbxNode.EPivotSet.eSourcePivot));
  217. node.SetRotationOffset (FbxNode.EPivotSet.eSourcePivot, rot);
  218. Assert.AreEqual (rot, node.GetRotationOffset (FbxNode.EPivotSet.eSourcePivot));
  219. node.SetScalingPivot (FbxNode.EPivotSet.eSourcePivot, rot);
  220. Assert.AreEqual (rot, node.GetScalingPivot (FbxNode.EPivotSet.eSourcePivot));
  221. node.SetScalingOffset (FbxNode.EPivotSet.eSourcePivot, rot);
  222. Assert.AreEqual (rot, node.GetScalingOffset (FbxNode.EPivotSet.eSourcePivot));
  223. }
  224. }
  225. [Test]
  226. public void TestSetPivotState(){
  227. using (FbxNode node = CreateObject ("root")) {
  228. // make sure it doesn't crash
  229. node.SetPivotState (FbxNode.EPivotSet.eSourcePivot, FbxNode.EPivotState.ePivotActive);
  230. }
  231. }
  232. [Test]
  233. public void TestSetRotationActive(){
  234. using (FbxNode node = CreateObject ("root")) {
  235. node.SetRotationActive (true);
  236. Assert.AreEqual(true, node.GetRotationActive());
  237. }
  238. }
  239. [Test]
  240. public void TestSetRotationOrder(){
  241. using (FbxNode node = CreateObject ("root")) {
  242. // test that it works
  243. node.SetRotationOrder (FbxNode.EPivotSet.eSourcePivot, FbxEuler.EOrder.eOrderXZY);
  244. int output = 0;
  245. node.GetRotationOrder (FbxNode.EPivotSet.eSourcePivot, out output);
  246. Assert.AreEqual (FbxEuler.EOrder.eOrderXZY, (FbxEuler.EOrder)output);
  247. // same with destination pivot
  248. node.SetRotationOrder (FbxNode.EPivotSet.eDestinationPivot, FbxEuler.EOrder.eOrderZXY);
  249. output = 0;
  250. node.GetRotationOrder (FbxNode.EPivotSet.eDestinationPivot, out output);
  251. Assert.AreEqual (FbxEuler.EOrder.eOrderZXY, (FbxEuler.EOrder)output);
  252. }
  253. }
  254. [Test]
  255. public void TestTransformInheritType(){
  256. using (FbxNode node = CreateObject ("root")) {
  257. node.SetTransformationInheritType (FbxTransform.EInheritType.eInheritRrs);
  258. Assert.AreEqual (FbxTransform.EInheritType.eInheritRrs, node.InheritType.Get());
  259. }
  260. }
  261. }
  262. }