8884227fe6
This translates all usages of MCore::Array to AZStd::vector. It is designed to be as minimal of a change as possible (no changing to range-for loops or other C++11 stuff). We can decide to submit this wholesale, or submit it to a separate branch that we can then integrate individual files from once we're ready to do a specific class's transition. It does not completely solve the `uint32`->`size_t` transition. One important finding from doing this: `MCore::Array` uses a `memcpy` when it reallocates. `AZStd::vector` will use the contained type's copy or move constructor, per element. This is a significant change in behavior. If you have type, `SomeStruct` that defines a destructor, that type is copyable and not movable. So if you have a `MCore::Array<SomeStruct>`, and you call `Add(); Add(); Add()`, that reallocates 3 times, copying the contents using `memcpy`, and never invokes `SomeStruct`'s copy constructor or destructor. Translating that to `AZStd::vector<SomeStruct>` and calling `push_back(); push_back(); push_back();` will still reallocate 3 times, but it sees that `SomeStruct` is non-movable, and uses the copy constructor to make the copies, and then the destructor on the previous values. This call to the destructor wasn't there before, and can cause things to be deleted that weren't before. The solution to this is to make that struct be a move-only type. Where possible, this was done by changing that type to use `AZStd::unique_ptr` instead of a raw pointer, to get the proper move behavior. Where that is not possible (types that inherit from `MCore::MemoryObject`), a hand-written move constructor was created. In general: GetLength() becomes size() GetMaxLength() becomes capacity() GetIsEmpty() becomes empty() Reserve() becomes reserve() ReserveExact() becomes reserve() Resize() becomes resize() ResizeFast() becomes resize_no_construct() Add() becomes emplace_back() AddExact() becomes emplace_back() AddEmpty() becomes emplace_back() AddEmptyExact() becomes emplace_back() GetPtr() becomes data() GetItem() becomes at() Shrink() becomes shrink_to_fit() GetFirst() becomes front() GetLast() becomes back() Remove() becomes erase() RemoveFirst() becomes erase() RemoveLast() becomes pop_back() RemoveByValue() becomes if (const auto it = AZStd::find(...); it != end(container)) container.erase(it); Insert() becomes emplace() Swap() becomes swap() Clear(true) becomes clear(); shrink_to_fit() Clear() becomes clear(); shrink_to_fit() Clear(false) becomes clear() Swap() becomes swap() Find() becomes AZStd::find MoveElements() becomes AZStd::move SetMemoryCategory() is removed Signed-off-by: Chris Burel <burelc@amazon.com>
207 lines
8.0 KiB
C++
207 lines
8.0 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#include <AzTest/AzTest.h>
|
|
#include <AzCore/UnitTest/TestTypes.h>
|
|
|
|
#include <EMotionFX/CommandSystem/Source/CommandSystemConfig.h>
|
|
#include <AzCore/std/containers/vector.h>
|
|
#include <MCore/Source/Command.h>
|
|
#include <MCore/Source/StringIdPool.h>
|
|
|
|
#include <EMotionFX/CommandSystem/Source/AnimGraphConnectionCommands.h>
|
|
#include <EMotionFX/CommandSystem/Source/CommandManager.h>
|
|
|
|
#include <AzCore/std/sort.h>
|
|
#include <EMotionFX/Source/ActorInstance.h>
|
|
#include <EMotionFX/Source/ActorManager.h>
|
|
#include <EMotionFX/Source/AnimGraph.h>
|
|
#include <EMotionFX/Source/AnimGraphInstance.h>
|
|
#include <EMotionFX/Source/AnimGraphManager.h>
|
|
#include <EMotionFX/Source/AnimGraphNode.h>
|
|
#include <EMotionFX/Source/AnimGraphParameterCondition.h>
|
|
#include <EMotionFX/Source/AnimGraphTagCondition.h>
|
|
#include <EMotionFX/Source/AnimGraphStateMachine.h>
|
|
#include <EMotionFX/Source/BlendTreeParameterNode.h>
|
|
#include <EMotionFX/Source/Parameter/Parameter.h>
|
|
#include <EMotionFX/Source/Parameter/ParameterFactory.h>
|
|
#include <EMotionFX/Source/Parameter/ValueParameter.h>
|
|
#include <MCore/Source/LogManager.h>
|
|
#include <MCore/Source/AttributeFactory.h>
|
|
#include <MCore/Source/ReflectionSerializer.h>
|
|
|
|
#include <Tests/Matchers.h>
|
|
|
|
namespace AnimGraphParameterCommandsTests
|
|
{
|
|
namespace AZStd
|
|
{
|
|
using namespace ::AZStd;
|
|
} // namespace AZStd
|
|
|
|
namespace AZ
|
|
{
|
|
using namespace ::AZ;
|
|
} // namespace AZ
|
|
|
|
namespace MCore
|
|
{
|
|
using ::MCore::Command;
|
|
using ::MCore::CommandGroup;
|
|
using ::MCore::CommandLine;
|
|
using ::MCore::CommandSyntax;
|
|
using ::MCore::MCORE_MEMCATEGORY_COMMANDSYSTEM;
|
|
using ::MCore::MCORE_DEFAULT_ALIGNMENT;
|
|
using ::MCore::AlignedAllocate;
|
|
using ::MCore::AlignedFree;
|
|
using ::MCore::GetStringIdPool;
|
|
using ::MCore::ReflectionSerializer;
|
|
using ::MCore::LogWarning;
|
|
} // namespace MCore
|
|
|
|
namespace EMotionFX
|
|
{
|
|
// Import real implementations that are not mocked
|
|
using ::EMotionFX::AnimGraphNodeId;
|
|
using ::EMotionFX::AnimGraphConnectionId;
|
|
|
|
// Forward declare types that will be mocked
|
|
class Actor;
|
|
class AnimGraph;
|
|
class AnimGraphInstance;
|
|
class AnimGraphNode;
|
|
class AnimGraphObject;
|
|
class AnimGraphObjectData;
|
|
class AnimGraphStateTransition;
|
|
class AnimGraphTransitionCondition;
|
|
class GroupParameter;
|
|
class Parameter;
|
|
class ParameterFactory;
|
|
class ValueParameter;
|
|
class BlendTreeConnection;
|
|
|
|
using ParameterVector = AZStd::vector<Parameter*>;
|
|
using ValueParameterVector = AZStd::vector<ValueParameter*>;
|
|
using GroupParameterVector = AZStd::vector<GroupParameter*>;
|
|
} // namespace EMotionFX
|
|
|
|
namespace CommandSystem
|
|
{
|
|
using ::CommandSystem::SelectionList;
|
|
|
|
void DeleteNodeConnection([[maybe_unused]] MCore::CommandGroup* commandGroup, [[maybe_unused]] const EMotionFX::AnimGraphNode* targetNode, [[maybe_unused]] const EMotionFX::BlendTreeConnection* connection, [[maybe_unused]] bool updateUniqueData = true) {}
|
|
} // namespace CommandSystem
|
|
|
|
#include <Tests/Mocks/ActorManager.h>
|
|
#include <Tests/Mocks/AnimGraph.h>
|
|
#include <Tests/Mocks/AnimGraphInstance.h>
|
|
#include <Tests/Mocks/AnimGraphManager.h>
|
|
#include <Tests/Mocks/AnimGraphObject.h>
|
|
#include <Tests/Mocks/AnimGraphObjectData.h>
|
|
#include <Tests/Mocks/AnimGraphNode.h>
|
|
#include <Tests/Mocks/AnimGraphStateTransition.h>
|
|
#include <Tests/Mocks/EMotionFXManager.h>
|
|
#include <Tests/Mocks/ObjectAffectedByParameterChanges.h>
|
|
#include <Tests/Mocks/Parameter.h>
|
|
#include <Tests/Mocks/ParameterFactory.h>
|
|
#include <Tests/Mocks/GroupParameter.h>
|
|
#include <Tests/Mocks/ValueParameter.h>
|
|
#include <Tests/Mocks/CommandManager.h>
|
|
#include <Tests/Mocks/CommandSystemCommandManager.h>
|
|
#include <Tests/Mocks/BlendTreeParameterNode.h>
|
|
|
|
#include <EMotionFX/CommandSystem/Source/AnimGraphParameterCommands.cpp>
|
|
|
|
class TestParameter
|
|
: public EMotionFX::ValueParameter
|
|
{
|
|
public:
|
|
AZ_RTTI(TestParameter, "{6C91B0BE-EFCF-4270-A356-28B1C4612CCE}", EMotionFX::ValueParameter);
|
|
};
|
|
|
|
class AnimGraphParameterCommandsFixture
|
|
: public UnitTest::AllocatorsTestFixture
|
|
{
|
|
public:
|
|
void SetUp() override
|
|
{
|
|
UnitTest::AllocatorsTestFixture::SetUp();
|
|
::MCore::Initializer::Init(); // create the MCoreSystem object for MCore containers
|
|
}
|
|
|
|
void TearDown() override
|
|
{
|
|
::MCore::Initializer::Shutdown();
|
|
UnitTest::AllocatorsTestFixture::TearDown();
|
|
}
|
|
};
|
|
|
|
TEST_F(AnimGraphParameterCommandsFixture, CreatingAParameterUpdatesObjectsAfterParameterIsAddedToInstances)
|
|
{
|
|
EMotionFX::EMotionFXManager& manager = EMotionFX::GetEMotionFX();
|
|
EMotionFX::AnimGraphManager animGraphManager;
|
|
EMotionFX::AnimGraph animGraph;
|
|
EMotionFX::AnimGraphInstance animGraphInstance0;
|
|
EMotionFX::BlendTreeParameterNode parameterNode;
|
|
TestParameter parameter;
|
|
|
|
EXPECT_CALL(manager, GetAnimGraphManager())
|
|
.WillRepeatedly(testing::Return(&animGraphManager));
|
|
|
|
EXPECT_CALL(animGraph, GetID())
|
|
.WillRepeatedly(testing::Return(0));
|
|
EXPECT_CALL(animGraph, GetNumParameters())
|
|
.WillOnce(testing::Return(0));
|
|
EXPECT_CALL(animGraph, AddParameter(¶meter, nullptr))
|
|
.WillOnce(testing::Return(true));
|
|
EXPECT_CALL(animGraph, FindParameterByName(StrEq("testParameter")))
|
|
.WillOnce(testing::Return(nullptr));
|
|
EXPECT_CALL(animGraph, FindParameterIndex(¶meter))
|
|
.WillOnce(testing::Return(AZ::Success<size_t>(0)));
|
|
EXPECT_CALL(animGraph, FindParameter(0))
|
|
.WillOnce(testing::Return(¶meter));
|
|
EXPECT_CALL(animGraph, FindValueParameterIndex(¶meter))
|
|
.WillOnce(testing::Return(AZ::Success<size_t>(0)));
|
|
EXPECT_CALL(animGraph, GetNumAnimGraphInstances())
|
|
.WillRepeatedly(testing::Return(1));
|
|
EXPECT_CALL(animGraph, GetAnimGraphInstance(0))
|
|
.WillRepeatedly(testing::Return(&animGraphInstance0));
|
|
AZStd::vector<EMotionFX::AnimGraphObject*> objectsAffectedByParameterChanges {¶meterNode};
|
|
EXPECT_CALL(animGraph, RecursiveCollectObjectsOfType(azrtti_typeid<EMotionFX::ObjectAffectedByParameterChanges>(), testing::_))
|
|
.WillRepeatedly(testing::SetArgReferee<1>(objectsAffectedByParameterChanges));
|
|
EXPECT_CALL(animGraph, GetDirtyFlag())
|
|
.WillOnce(testing::Return(false));
|
|
EXPECT_CALL(animGraph, SetDirtyFlag(true));
|
|
|
|
EXPECT_CALL(animGraphManager, FindAnimGraphByID(animGraph.GetID()))
|
|
.WillRepeatedly(testing::Return(&animGraph));
|
|
EXPECT_CALL(animGraphManager, RecursiveCollectObjectsAffectedBy(&animGraph, testing::_));
|
|
|
|
EXPECT_CALL(*EMotionFX::Internal::GetParameterFactory(), CreateImpl(azrtti_typeid<TestParameter>()))
|
|
.WillOnce(testing::Return(¶meter));
|
|
|
|
EXPECT_CALL(parameter, SetName(StrEq("testParameter")));
|
|
EXPECT_CALL(parameter, SetDescription(StrEq("The Test Parameter Description")));
|
|
|
|
{
|
|
testing::InSequence sequence;
|
|
// AnimGraphInstance::InsertParameterValue must be called before
|
|
// AnimGraphNode::ParameterAdded
|
|
EXPECT_CALL(animGraphInstance0, InsertParameterValue(0));
|
|
EXPECT_CALL(parameterNode, ParameterAdded(StrEq("testParameter")));
|
|
}
|
|
|
|
MCore::CommandLine parameters(R"(-name testParameter -animGraphID 0 -type "{6C91B0BE-EFCF-4270-A356-28B1C4612CCE}" -description "The Test Parameter Description")");
|
|
|
|
AZStd::string outResult;
|
|
CommandSystem::CommandAnimGraphCreateParameter command;
|
|
EXPECT_TRUE(command.Execute(parameters, outResult)) << outResult.c_str();
|
|
|
|
}
|
|
} // namespace AnimGraphParameterCommandsTests
|