CameraExportTest.cs 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 CameraExportTest : AnimationClipsExportTest
  13. {
  14. [SetUp]
  15. public override void Init ()
  16. {
  17. fileNamePrefix = "_safe_to_delete__camera_export_test";
  18. base.Init ();
  19. }
  20. protected override FbxScene CreateScene (FbxManager manager)
  21. {
  22. FbxScene scene = base.CreateScene(manager);
  23. FbxNode cameraNode = scene.GetRootNode ().GetChild (0);
  24. FbxCamera camera = FbxCamera.Create (scene, "camera");
  25. camera.ProjectionType.Set (FbxCamera.EProjectionType.ePerspective);
  26. camera.SetAspect (FbxCamera.EAspectRatioMode.eFixedRatio, 300, 400);
  27. camera.FilmAspectRatio.Set (240);
  28. camera.SetApertureWidth (4);
  29. camera.SetApertureHeight (2);
  30. camera.SetApertureMode (FbxCamera.EApertureMode.eFocalLength);
  31. camera.FocalLength.Set (32);
  32. camera.SetNearPlane (1);
  33. camera.SetFarPlane (100);
  34. // create custom property (background color)
  35. var bgColorProperty = FbxProperty.Create (cameraNode, Globals.FbxColor4DT, "backgroundColor");
  36. Assert.IsTrue (bgColorProperty.IsValid ());
  37. bgColorProperty.Set (new FbxColor(0.5, 0.4, 0.1, 1));
  38. // Must be marked user-defined or it won't be shown in most DCCs
  39. bgColorProperty.ModifyFlag (FbxPropertyFlags.EFlags.eUserDefined, true);
  40. bgColorProperty.ModifyFlag (FbxPropertyFlags.EFlags.eAnimatable, true);
  41. Assert.IsTrue (bgColorProperty.GetFlag (FbxPropertyFlags.EFlags.eUserDefined));
  42. Assert.IsTrue (bgColorProperty.GetFlag (FbxPropertyFlags.EFlags.eAnimatable));
  43. // create custom property (clear flags)
  44. var clearFlagsProperty = FbxProperty.Create (cameraNode, Globals.FbxIntDT, "clearFlags");
  45. Assert.IsTrue (clearFlagsProperty.IsValid ());
  46. clearFlagsProperty.Set (4);
  47. // Must be marked user-defined or it won't be shown in most DCCs
  48. clearFlagsProperty.ModifyFlag (FbxPropertyFlags.EFlags.eUserDefined, true);
  49. clearFlagsProperty.ModifyFlag (FbxPropertyFlags.EFlags.eAnimatable, true);
  50. Assert.IsTrue (clearFlagsProperty.GetFlag (FbxPropertyFlags.EFlags.eUserDefined));
  51. Assert.IsTrue (clearFlagsProperty.GetFlag (FbxPropertyFlags.EFlags.eAnimatable));
  52. // Add camera properties to animation clip
  53. FbxAnimStack animStack = scene.GetCurrentAnimationStack ();
  54. FbxAnimLayer animLayer = animStack.GetAnimLayerMember ();
  55. // TODO: (UNI-19438) Figure out why trying to do GetCurve for NearPlane always returns null
  56. CreateAnimCurves (cameraNode, animLayer, new List<PropertyComponentPair> () {
  57. new PropertyComponentPair("backgroundColor", new string[] {
  58. Globals.FBXSDK_CURVENODE_COLOR_RED,
  59. Globals.FBXSDK_CURVENODE_COLOR_GREEN,
  60. Globals.FBXSDK_CURVENODE_COLOR_BLUE, "W"
  61. }),
  62. new PropertyComponentPair("FocalLength", new string[]{null}),
  63. new PropertyComponentPair("clearFlags", new string[]{null})
  64. }, (index) => { return index; }, (index) => { return index/5.0f; }, camera);
  65. cameraNode.SetNodeAttribute (camera);
  66. // set the default camera
  67. scene.GetGlobalSettings ().SetDefaultCamera (cameraNode.GetName());
  68. return scene;
  69. }
  70. protected override void CheckScene (FbxScene scene)
  71. {
  72. base.CheckScene (scene);
  73. FbxScene origScene = CreateScene (FbxManager);
  74. FbxNode origCameraNode = origScene.GetRootNode ().GetChild (0);
  75. FbxNode importCameraNode = scene.GetRootNode ().GetChild (0);
  76. Assert.IsNotNull (origCameraNode);
  77. Assert.IsNotNull (importCameraNode);
  78. Assert.AreEqual (origScene.GetGlobalSettings ().GetDefaultCamera (), scene.GetGlobalSettings ().GetDefaultCamera ());
  79. FbxCamera origCamera = origCameraNode.GetCamera ();
  80. FbxCamera importCamera = importCameraNode.GetCamera ();
  81. Assert.IsNotNull (origCamera);
  82. Assert.IsNotNull (importCamera);
  83. CheckCameraSettings (origCamera, importCamera, origCameraNode, importCameraNode);
  84. // check anim
  85. FbxAnimStack origAnimStack = origScene.GetCurrentAnimationStack();
  86. FbxAnimLayer origAnimLayer = origAnimStack.GetAnimLayerMember ();
  87. Assert.IsNotNull (origAnimStack);
  88. Assert.IsNotNull (origAnimLayer);
  89. FbxAnimStack importAnimStack = scene.GetCurrentAnimationStack();
  90. FbxAnimLayer importAnimLayer = importAnimStack.GetAnimLayerMember ();
  91. Assert.IsNotNull (importAnimStack);
  92. Assert.IsNotNull (importAnimLayer);
  93. CheckAnimCurve (origCameraNode, importCameraNode, origAnimLayer, importAnimLayer, new List<PropertyComponentPair>(){
  94. new PropertyComponentPair("backgroundColor", new string[] {
  95. Globals.FBXSDK_CURVENODE_COLOR_RED,
  96. Globals.FBXSDK_CURVENODE_COLOR_GREEN,
  97. Globals.FBXSDK_CURVENODE_COLOR_BLUE, "W"
  98. }),
  99. new PropertyComponentPair("FocalLength", new string[]{null}),
  100. new PropertyComponentPair("clearFlags", new string[]{null})
  101. }, origCamera, importCamera);
  102. }
  103. protected void CheckCameraSettings(FbxCamera origCamera, FbxCamera importCamera, FbxNode origCameraNode, FbxNode importCameraNode)
  104. {
  105. Assert.AreEqual (origCamera.ProjectionType.Get (), importCamera.ProjectionType.Get ());
  106. Assert.AreEqual (origCamera.AspectWidth.Get (), importCamera.AspectWidth.Get ());
  107. Assert.AreEqual (origCamera.AspectHeight.Get (), importCamera.AspectHeight.Get ());
  108. Assert.AreEqual (origCamera.GetAspectRatioMode (), importCamera.GetAspectRatioMode ());
  109. Assert.AreEqual (origCamera.FilmAspectRatio.Get (), importCamera.FilmAspectRatio.Get ());
  110. Assert.AreEqual (origCamera.GetApertureWidth (), importCamera.GetApertureWidth ());
  111. Assert.AreEqual (origCamera.GetApertureHeight (), importCamera.GetApertureHeight ());
  112. Assert.AreEqual (origCamera.GetApertureMode (), origCamera.GetApertureMode ());
  113. Assert.AreEqual (origCamera.FocalLength.Get (), importCamera.FocalLength.Get ());
  114. Assert.AreEqual (origCamera.GetNearPlane (), importCamera.GetNearPlane ());
  115. Assert.AreEqual (origCamera.GetFarPlane (), importCamera.GetFarPlane ());
  116. foreach (var customProp in new string[]{ "backgroundColor", "clearFlags" }) {
  117. FbxProperty property = origCameraNode.FindProperty (customProp);
  118. Assert.IsNotNull (property);
  119. Assert.IsTrue (property.IsValid ());
  120. FbxProperty importBgColorProp = importCameraNode.FindProperty (customProp);
  121. Assert.IsNotNull (importBgColorProp);
  122. Assert.IsTrue (importBgColorProp.IsValid ());
  123. if (property.GetPropertyDataType ().Equals(Globals.FbxColor4DT)) {
  124. Assert.AreEqual(property.GetFbxColor(), property.GetFbxColor());
  125. }
  126. else if (property.GetPropertyDataType().Equals(Globals.FbxIntDT)){
  127. Assert.AreEqual(property.GetInt(), property.GetInt());
  128. }
  129. Assert.AreEqual (property.GetFlag (FbxPropertyFlags.EFlags.eUserDefined),
  130. importBgColorProp.GetFlag (FbxPropertyFlags.EFlags.eUserDefined));
  131. Assert.AreEqual (property.GetFlag (FbxPropertyFlags.EFlags.eAnimatable),
  132. importBgColorProp.GetFlag (FbxPropertyFlags.EFlags.eAnimatable));
  133. }
  134. }
  135. }
  136. }