VisibilityExportTest.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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;
  9. using Autodesk.Fbx;
  10. namespace Autodesk.Fbx.UseCaseTests
  11. {
  12. public class VisibilityExportTest : RoundTripTestBase
  13. {
  14. [SetUp]
  15. public override void Init ()
  16. {
  17. fileNamePrefix = "_safe_to_delete__visibility_export_test";
  18. base.Init ();
  19. }
  20. protected override FbxScene CreateScene (FbxManager manager)
  21. {
  22. // create the following node hierarchy to test:
  23. // Root
  24. // / \
  25. // Child0 Child1
  26. // |
  27. // Child2
  28. // / | \
  29. // Child3 Child4 Child5
  30. FbxScene scene = FbxScene.Create (manager, "myScene");
  31. FbxNode root = FbxNode.Create (scene, "Root");
  32. // set the root invisible
  33. root.SetVisibility(false);
  34. // don't let children inherit visibility of invisible root node
  35. root.VisibilityInheritance.Set(false);
  36. FbxNode[] children = new FbxNode[6];
  37. for (int i = 0; i < children.Length; i++) {
  38. children [i] = FbxNode.Create (scene, "Child" + i);
  39. // set even nodes visible, and odd nodes invisible
  40. children [i].SetVisibility (i%2 == 0);
  41. }
  42. scene.GetRootNode ().AddChild (root);
  43. root.AddChild (children [0]);
  44. root.AddChild (children [1]);
  45. children [1].AddChild (children [2]);
  46. children [2].AddChild (children [3]);
  47. children [2].AddChild (children [4]);
  48. children [2].AddChild (children [5]);
  49. return scene;
  50. }
  51. protected override void CheckScene (FbxScene scene)
  52. {
  53. FbxScene origScene = CreateScene (FbxManager);
  54. // Compare the hierarchy of the two scenes
  55. FbxNode origRoot = origScene.GetRootNode();
  56. FbxNode importRoot = scene.GetRootNode ();
  57. CheckSceneHelper (origRoot, importRoot);
  58. }
  59. // compare the hierarchy of two nodes
  60. private void CheckSceneHelper(FbxNode node1, FbxNode node2)
  61. {
  62. if (node1 == null && node2 == null) {
  63. return;
  64. }
  65. Assert.IsNotNull (node1);
  66. Assert.IsNotNull (node2);
  67. Assert.AreEqual (node1.GetChildCount (), node2.GetChildCount ());
  68. Assert.AreEqual (node1.GetName (), node2.GetName ());
  69. Assert.AreEqual (node1.GetVisibility (), node2.GetVisibility ());
  70. Assert.AreEqual (node1.VisibilityInheritance.Get (), node2.VisibilityInheritance.Get ());
  71. for (int i = 0; i < node1.GetChildCount (); i++) {
  72. // recurse through the hierarchy
  73. CheckSceneHelper (node1.GetChild (i), node2.GetChild (i));
  74. }
  75. }
  76. }
  77. }