Files
maxwell hayes b4982c7a01 [Metasounds] [DynamicOperator] Implement rebinding functionality in built-in metasound nodes
#jira UE-184050
#rb Phil.Popp

#preflight 6465166bfa4cf4165156c34c

[CL 25567002 by maxwell hayes in ue5-main branch]
2023-05-22 13:28:27 -04:00

168 lines
5.6 KiB
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Internationalization/Text.h"
#include "MetasoundFacade.h"
#include "MetasoundExecutableOperator.h"
#include "MetasoundNodeRegistrationMacro.h"
#include "MetasoundPrimitives.h"
#include "MetasoundStandardNodesNames.h"
#include "MetasoundStandardNodesCategories.h"
#include "DSP/Dsp.h"
#include "MetasoundParamHelper.h"
#define LOCTEXT_NAMESPACE "MetasoundStandardNodes_DecibelsToLinearGain"
namespace Metasound
{
namespace DecibelsToLinearGainVertexNames
{
METASOUND_PARAM(InputDecibelGain, "Decibels", "Input logarithmic (dB) gain.");
METASOUND_PARAM(OutputLinearGain, "Linear Gain", "Output corresponding linear gain.");
}
class FDecibelsToLinearGainOperator : public TExecutableOperator<FDecibelsToLinearGainOperator>
{
public:
static const FNodeClassMetadata& GetNodeInfo();
static const FVertexInterface& GetVertexInterface();
static TUniquePtr<IOperator> CreateOperator(const FCreateOperatorParams& InParams, FBuildErrorArray& OutErrors);
FDecibelsToLinearGainOperator(const FCreateOperatorParams& InParams, const FFloatReadRef& InDecibelGain);
virtual void BindInputs(FInputVertexInterfaceData& InOutVertexData) override;
virtual void BindOutputs(FOutputVertexInterfaceData& InOutVertexData) override;
virtual FDataReferenceCollection GetInputs() const override;
virtual FDataReferenceCollection GetOutputs() const override;
void Reset(const IOperator::FResetParams& InParams);
void Execute();
private:
// The input dB value
FFloatReadRef DecibelGainInput;
// The output linear gain
FFloatWriteRef LinearGainOutput;
};
FDecibelsToLinearGainOperator::FDecibelsToLinearGainOperator(const FCreateOperatorParams& InParams, const FFloatReadRef& InDecibelGain)
: DecibelGainInput(InDecibelGain)
, LinearGainOutput(FFloatWriteRef::CreateNew())
{
Reset(InParams);
}
void FDecibelsToLinearGainOperator::BindInputs(FInputVertexInterfaceData& InOutVertexData)
{
using namespace DecibelsToLinearGainVertexNames;
InOutVertexData.BindReadVertex(METASOUND_GET_PARAM_NAME(InputDecibelGain), DecibelGainInput);
}
void FDecibelsToLinearGainOperator::BindOutputs(FOutputVertexInterfaceData& InOutVertexData)
{
using namespace DecibelsToLinearGainVertexNames;
InOutVertexData.BindReadVertex(METASOUND_GET_PARAM_NAME(OutputLinearGain), LinearGainOutput);
}
FDataReferenceCollection FDecibelsToLinearGainOperator::GetInputs() const
{
// This should never be called. Bind(...) is called instead. This method
// exists as a stop-gap until the API can be deprecated and removed.
checkNoEntry();
return {};
}
FDataReferenceCollection FDecibelsToLinearGainOperator::GetOutputs() const
{
// This should never be called. Bind(...) is called instead. This method
// exists as a stop-gap until the API can be deprecated and removed.
checkNoEntry();
return {};
}
void FDecibelsToLinearGainOperator::Reset(const IOperator::FResetParams& InParams)
{
Execute();
}
void FDecibelsToLinearGainOperator::Execute()
{
*LinearGainOutput = Audio::ConvertToLinear(*DecibelGainInput);
}
const FVertexInterface& FDecibelsToLinearGainOperator::GetVertexInterface()
{
using namespace DecibelsToLinearGainVertexNames;
static const FVertexInterface Interface(
FInputVertexInterface(
TInputDataVertex<float>(METASOUND_GET_PARAM_NAME_AND_METADATA(InputDecibelGain), 0.0f)
),
FOutputVertexInterface(
TOutputDataVertex<float>(METASOUND_GET_PARAM_NAME_AND_METADATA(OutputLinearGain))
)
);
return Interface;
}
const FNodeClassMetadata& FDecibelsToLinearGainOperator::GetNodeInfo()
{
auto InitNodeInfo = []() -> FNodeClassMetadata
{
const FName DataTypeName = GetMetasoundDataTypeName<float>();
const FName OperatorName = TEXT("Decibels to Linear Gain");
const FText NodeDisplayName = METASOUND_LOCTEXT("Metasound_DecibelsToLinearGainName", "Decibels to Linear Gain");
const FText NodeDescription = METASOUND_LOCTEXT("Metasound_DecibelsToLinearGainDescription", "Converts a logarithmic (dB) gain value to a linear gain value.");
FNodeClassMetadata Info;
Info.ClassName = { StandardNodes::Namespace, OperatorName, DataTypeName };
Info.MajorVersion = 1;
Info.MinorVersion = 0;
Info.DisplayName = NodeDisplayName;
Info.Description = NodeDescription;
Info.Author = PluginAuthor;
Info.PromptIfMissing = PluginNodeMissingPrompt;
Info.DefaultInterface = GetVertexInterface();
Info.CategoryHierarchy.Emplace(NodeCategories::Dynamics);
return Info;
};
static const FNodeClassMetadata Info = InitNodeInfo();
return Info;
}
TUniquePtr<IOperator> FDecibelsToLinearGainOperator::CreateOperator(const FCreateOperatorParams& InParams, FBuildErrorArray& OutErrors)
{
using namespace DecibelsToLinearGainVertexNames;
const FDataReferenceCollection& InputCollection = InParams.InputDataReferences;
const FInputVertexInterface& InputInterface = GetVertexInterface().GetInputInterface();
FFloatReadRef InDecibelGain = InputCollection.GetDataReadReferenceOrConstructWithVertexDefault<float>(InputInterface, METASOUND_GET_PARAM_NAME(InputDecibelGain), InParams.OperatorSettings);
return MakeUnique<FDecibelsToLinearGainOperator>(InParams, InDecibelGain);
}
class METASOUNDSTANDARDNODES_API FDecibelsToLinearGainNode : public FNodeFacade
{
public:
/**
* Constructor used by the Metasound Frontend.
*/
FDecibelsToLinearGainNode(const FNodeInitData& InitData)
: FNodeFacade(InitData.InstanceName, InitData.InstanceID, TFacadeOperatorClass <FDecibelsToLinearGainOperator>())
{
}
};
METASOUND_REGISTER_NODE(FDecibelsToLinearGainNode)
}
#undef LOCTEXT_NAMESPACE