LightExportTest.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 LightExportTest : AnimationClipsExportTest
  13. {
  14. [SetUp]
  15. public override void Init ()
  16. {
  17. fileNamePrefix = "_safe_to_delete__light_export_test";
  18. base.Init ();
  19. }
  20. protected override FbxScene CreateScene (FbxManager manager)
  21. {
  22. FbxScene scene = base.CreateScene (manager);
  23. FbxNode lightNode = scene.GetRootNode ().GetChild (0);
  24. FbxLight light = FbxLight.Create (scene, "light");
  25. light.LightType.Set(FbxLight.EType.eSpot);
  26. light.InnerAngle.Set(20);
  27. light.OuterAngle.Set(95);
  28. // Export bounceIntensity as custom property
  29. ExportFloatProperty (lightNode, 3, "bounceIntensity");
  30. light.Color.Set (new FbxDouble3(0.3, 0.1, 0.75));
  31. // Export colorTemperature as custom property
  32. ExportFloatProperty (lightNode, 6, "colorTemperature");
  33. light.FileName.Set ("/path/to/texture.png");
  34. light.DrawGroundProjection.Set (true);
  35. light.DrawVolumetricLight.Set (true);
  36. light.DrawFrontFacingVolumetricLight.Set (false);
  37. ExportFloatProperty (lightNode, 4.2f, "cookieSize");
  38. light.Intensity.Set (120);
  39. light.FarAttenuationStart.Set (0.01f /* none zero start */);
  40. light.FarAttenuationEnd.Set(9.8f);
  41. light.CastShadows.Set (true);
  42. FbxAnimStack animStack = scene.GetCurrentAnimationStack ();
  43. FbxAnimLayer animLayer = animStack.GetAnimLayerMember ();
  44. // TODO: (UNI-19438) figure out why trying to add anim curves to FbxNodeAttribute.sColor,
  45. // Intensity and InnerAngle fails
  46. // add animation
  47. CreateAnimCurves (lightNode, animLayer, new List<PropertyComponentPair> () {
  48. new PropertyComponentPair ("colorTemperature", new string[]{null}),
  49. new PropertyComponentPair ("cookieSize", new string[]{null})
  50. }, (index) => { return (index + 1)/2.0; }, (index) => { return index%2; });
  51. // set ambient lighting
  52. scene.GetGlobalSettings ().SetAmbientColor (new FbxColor (0.1, 0.2, 0.3));
  53. lightNode.SetNodeAttribute (light);
  54. scene.GetRootNode ().AddChild (lightNode);
  55. return scene;
  56. }
  57. protected FbxProperty ExportFloatProperty (FbxObject fbxObject, float value, string name)
  58. {
  59. var fbxProperty = FbxProperty.Create (fbxObject, Globals.FbxDoubleDT, name);
  60. Assert.IsTrue (fbxProperty.IsValid ());
  61. fbxProperty.Set (value);
  62. // Must be marked user-defined or it won't be shown in most DCCs
  63. fbxProperty.ModifyFlag (FbxPropertyFlags.EFlags.eUserDefined, true);
  64. fbxProperty.ModifyFlag (FbxPropertyFlags.EFlags.eAnimatable, true);
  65. return fbxProperty;
  66. }
  67. protected override void CheckScene (FbxScene scene)
  68. {
  69. base.CheckScene (scene);
  70. FbxScene origScene = CreateScene (FbxManager);
  71. FbxNode origLightNode = origScene.GetRootNode ().GetChild (0);
  72. FbxNode importLightNode = scene.GetRootNode ().GetChild (0);
  73. Assert.IsNotNull (origLightNode);
  74. Assert.IsNotNull (importLightNode);
  75. FbxLight origLight = origLightNode.GetLight ();
  76. FbxLight importLight = importLightNode.GetLight ();
  77. Assert.IsNotNull (origLight);
  78. Assert.IsNotNull (importLight);
  79. Assert.AreEqual (origLight.GetName (), importLight.GetName ());
  80. // Check properties
  81. CheckProperties(
  82. origLightNode, importLightNode,
  83. origLight, importLight,
  84. new string[]{ "bounceIntensity", "colorTemperature", "cookieSize" }
  85. );
  86. // Check anim
  87. FbxAnimStack origAnimStack = origScene.GetCurrentAnimationStack();
  88. FbxAnimLayer origAnimLayer = origAnimStack.GetAnimLayerMember ();
  89. Assert.IsNotNull (origAnimStack);
  90. Assert.IsNotNull (origAnimLayer);
  91. FbxAnimStack importAnimStack = scene.GetCurrentAnimationStack();
  92. FbxAnimLayer importAnimLayer = importAnimStack.GetAnimLayerMember ();
  93. Assert.IsNotNull (importAnimStack);
  94. Assert.IsNotNull (importAnimLayer);
  95. // TODO: (UNI-19438) figure out why trying to add anim curves to FbxNodeAttribute.sColor,
  96. // Intensity and InnerAngle fails
  97. CheckAnimCurve (origLightNode, importLightNode, origAnimLayer, importAnimLayer, new List<PropertyComponentPair>(){
  98. new PropertyComponentPair ("colorTemperature", new string[]{null}),
  99. new PropertyComponentPair ("cookieSize", new string[]{null})
  100. }, origLight, importLight);
  101. }
  102. protected void CheckProperties(
  103. FbxNode origLightNode, FbxNode importLightNode,
  104. FbxLight origLight, FbxLight importLight, string[] customProperties)
  105. {
  106. Assert.AreEqual (origLight.LightType.Get (), importLight.LightType.Get ());
  107. Assert.AreEqual (origLight.InnerAngle.Get (), importLight.InnerAngle.Get ());
  108. Assert.AreEqual (origLight.OuterAngle.Get (), importLight.OuterAngle.Get ());
  109. Assert.AreEqual (origLight.Color.Get (), importLight.Color.Get ());
  110. Assert.AreEqual (origLight.FileName.Get (), importLight.FileName.Get ());
  111. Assert.AreEqual (origLight.DrawGroundProjection.Get (), importLight.DrawGroundProjection.Get ());
  112. Assert.AreEqual (origLight.DrawVolumetricLight.Get (), importLight.DrawVolumetricLight.Get ());
  113. Assert.That (origLight.DrawFrontFacingVolumetricLight.Get (), Is.EqualTo(importLight.DrawFrontFacingVolumetricLight.Get ()).Within(2).Ulps);
  114. Assert.AreEqual (origLight.Intensity.Get (), importLight.Intensity.Get ());
  115. Assert.That (origLight.FarAttenuationStart.Get (), Is.EqualTo(importLight.FarAttenuationStart.Get ()).Within(2).Ulps);
  116. Assert.That (origLight.FarAttenuationEnd.Get (), Is.EqualTo(importLight.FarAttenuationEnd.Get ()).Within(2).Ulps);
  117. Assert.AreEqual (origLight.CastShadows.Get (), importLight.CastShadows.Get ());
  118. foreach (var customProp in customProperties) {
  119. var origProperty = origLightNode.FindProperty (customProp);
  120. var importProperty = importLightNode.FindProperty (customProp);
  121. Assert.IsNotNull (origProperty);
  122. Assert.IsNotNull (importProperty);
  123. Assert.AreEqual (origProperty.GetFloat (), importProperty.GetFloat ());
  124. }
  125. }
  126. }
  127. }