/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or the license accompanying this file. Do not * remove or modify any license notices. This file is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ #include #include #include #include namespace EMotionFX { class RemoveMotionDeselectsThatMotion : public CommandRunnerFixtureBase { }; TEST_F(RemoveMotionDeselectsThatMotion, ExecuteCommands) { ExecuteCommands({ R"str(CreateMotionSet -name MotionSet0)str", }); // Select the motion set (there is no command for this) EMStudio::MotionSetsWindowPlugin* motionSetsWindowPlugin = static_cast(EMStudio::GetPluginManager()->FindActivePlugin(EMStudio::MotionSetsWindowPlugin::CLASS_ID)); ASSERT_TRUE(motionSetsWindowPlugin) << "Motion Window plugin not loaded"; EMotionFX::MotionSet* motionSet = EMotionFX::GetMotionManager().FindMotionSetByID(0); ASSERT_TRUE(motionSet) << "Motion set with id 0 does not exist"; motionSetsWindowPlugin->SetSelectedSet(motionSet); ExecuteCommands({ R"str(ImportMotion -filename Gems/EMotionFX/Code/Tests/TestAssets/Rin/rin_idle.motion)str", R"str(MotionSetAddMotion -motionSetID 0 -motionFilenamesAndIds Gems/EMotionFX/Code/Tests/TestAssets/Rin/rin_idle.motion;rin_idle)str", R"str(Select -motionIndex 0)str", }); EXPECT_TRUE(CommandSystem::GetCommandManager()->GetCurrentSelection().GetSingleMotion()); ExecuteCommands({ R"str(MotionSetRemoveMotion -motionSetID 0 -motionIds rin_idle)str", R"str(RemoveMotion -filename Gems/EMotionFX/Code/Tests/TestAssets/Rin/rin_idle.motion)str", }); EXPECT_FALSE(CommandSystem::GetCommandManager()->GetCurrentSelection().GetSingleMotion()); } } // end namespace EMotionFX