You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
68 lines
2.3 KiB
C++
68 lines
2.3 KiB
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#include "Systems/IntegerChannelEvaluatorSystem.h"
|
||
|
|
#include "EntitySystem/BuiltInComponentTypes.h"
|
||
|
|
#include "EntitySystem/MovieSceneEntitySystemTask.h"
|
||
|
|
#include "EntitySystem/MovieSceneEntitySystemLinker.h"
|
||
|
|
#include "EntitySystem/MovieSceneEvalTimeSystem.h"
|
||
|
|
#include "Channels/MovieSceneIntegerChannel.h"
|
||
|
|
#include "Math/NumericLimits.h"
|
||
|
|
|
||
|
|
DECLARE_CYCLE_STAT(TEXT("MovieScene: Evaluate integer channels"), MovieSceneEval_EvaluateIntegerChannelTask, STATGROUP_MovieSceneECS);
|
||
|
|
|
||
|
|
namespace UE
|
||
|
|
{
|
||
|
|
namespace MovieScene
|
||
|
|
{
|
||
|
|
|
||
|
|
// @todo: for multi-bindings we currently re-evaluate the integer channel for each binding, even though the time is the same.
|
||
|
|
// Do we need to optimize for this case using something like the code below, while pessimizing the common (non-multi-bind) codepath??
|
||
|
|
struct FEvaluateIntegerChannels
|
||
|
|
{
|
||
|
|
void ForEachEntity(FSourceIntegerChannel IntegerChannel, FFrameTime FrameTime, int32& OutResult)
|
||
|
|
{
|
||
|
|
if (!IntegerChannel.Source->Evaluate(FrameTime, OutResult))
|
||
|
|
{
|
||
|
|
OutResult = MIN_int32;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
} // namespace MovieScene
|
||
|
|
} // namespace UE
|
||
|
|
|
||
|
|
|
||
|
|
UIntegerChannelEvaluatorSystem::UIntegerChannelEvaluatorSystem(const FObjectInitializer& ObjInit)
|
||
|
|
: Super(ObjInit)
|
||
|
|
{
|
||
|
|
using namespace UE::MovieScene;
|
||
|
|
|
||
|
|
const FBuiltInComponentTypes* BuiltInComponents = FBuiltInComponentTypes::Get();
|
||
|
|
RelevantComponent = BuiltInComponents->IntegerChannel;
|
||
|
|
|
||
|
|
if (HasAnyFlags(RF_ClassDefaultObject))
|
||
|
|
{
|
||
|
|
DefineComponentProducer(UIntegerChannelEvaluatorSystem::StaticClass(), BuiltInComponents->IntegerResult);
|
||
|
|
|
||
|
|
DefineImplicitPrerequisite(UMovieSceneEvalTimeSystem::StaticClass(), GetClass());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
void UIntegerChannelEvaluatorSystem::OnRun(FSystemTaskPrerequisites& InPrerequisites, FSystemSubsequentTasks& Subsequents)
|
||
|
|
{
|
||
|
|
using namespace UE::MovieScene;
|
||
|
|
|
||
|
|
const FBuiltInComponentTypes* BuiltInComponents = FBuiltInComponentTypes::Get();
|
||
|
|
|
||
|
|
// Evaluate integer channels per instance and write the evaluated value into the output
|
||
|
|
FEntityTaskBuilder()
|
||
|
|
.Read(BuiltInComponents->IntegerChannel)
|
||
|
|
.Read(BuiltInComponents->EvalTime)
|
||
|
|
.Write(BuiltInComponents->IntegerResult)
|
||
|
|
.FilterNone({ BuiltInComponents->Tags.Ignored })
|
||
|
|
.SetStat(GET_STATID(MovieSceneEval_EvaluateIntegerChannelTask))
|
||
|
|
.Dispatch_PerEntity<FEvaluateIntegerChannels>(&Linker->EntityManager, InPrerequisites, &Subsequents);
|
||
|
|
}
|
||
|
|
|