TracktionEngine
Public Types | Public Member Functions | List of all members
tracktion::engine::WaveNodeRealTime Class Referencefinal

An Node that plays back a wave file. More...

Inheritance diagram for tracktion::engine::WaveNodeRealTime:

Public Types

enum class  SyncTempo { no , yes }
 Represets whether the file should try and match Edit tempo changes. More...
 
enum class  SyncPitch { no , yes }
 Represets whether the file should try and match Edit pitch changes. More...
 

Public Member Functions

 WaveNodeRealTime (const AudioFile &, TimeRange editTime, TimeDuration offset, TimeRange loopSection, LiveClipLevel, double speedRatio, const juce::AudioChannelSet &sourceChannelsToUse, const juce::AudioChannelSet &destChannelsToFill, ProcessState &, EditItemID, bool isOfflineRender, ResamplingQuality=ResamplingQuality::lagrange, SpeedFadeDescription={}, std::optional< tempo::Sequence::Position > editTempoSequence={}, TimeStretcher::Mode=TimeStretcher::Mode::defaultMode, TimeStretcher::ElastiqueProOptions={}, float pitchChangeSemitones=0.0f)
 offset is a time added to the start of the file, e.g. More...
 
 WaveNodeRealTime (const AudioFile &, TimeStretcher::Mode, TimeStretcher::ElastiqueProOptions, BeatRange editTime, BeatDuration offset, BeatRange loopSection, LiveClipLevel, const juce::AudioChannelSet &sourceChannelsToUse, const juce::AudioChannelSet &destChannelsToFill, ProcessState &, EditItemID, bool isOfflineRender, ResamplingQuality, SpeedFadeDescription, std::optional< tempo::Sequence::Position > editTempoSequence, std::optional< WarpMap >, tempo::Sequence sourceFileTempoMap, SyncTempo, SyncPitch, std::optional< tempo::Sequence > chordPitchSequence)
 
void setDynamicOffsetBeats (BeatDuration) override
 Sets an offset to be applied to all times in this node, effectively shifting it forwards or backwards in time. More...
 
graph::NodeProperties getNodeProperties () override
 Should return the properties of the node. More...
 
void prepareToPlay (const graph::PlaybackInitialisationInfo &) override
 Called once before playback begins for each node. More...
 
bool isReadyToProcess () override
 Should return true when this node is ready to be processed. More...
 
void process (ProcessContext &) override
 Called when the node is to be processed. More...
 
- Public Member Functions inherited from tracktion::graph::Node
 Node ()=default
 
virtual ~Node ()=default
 
void initialise (const PlaybackInitialisationInfo &)
 Call once after the graph has been constructed to initialise buffers etc. More...
 
void prepareForNextBlock (juce::Range< int64_t > referenceSampleRange)
 Call before processing the next block, used to reset the process status. More...
 
void process (choc::buffer::FrameCount numSamples, juce::Range< int64_t > referenceSampleRange)
 Call to process the node, which will in turn call the process method with the buffers to fill. More...
 
bool hasProcessed () const
 Returns true if this node has processed and its outputs can be retrieved. More...
 
AudioAndMidiBuffer getProcessedOutput ()
 Returns the processed audio and MIDI output. More...
 
virtual TransformResult transform (Node &, const std::vector< Node * > &, TransformCache &)
 Called after construction to give the node a chance to modify its topology. More...
 
virtual std::vector< Node * > getDirectInputNodes ()
 Should return all the inputs directly feeding in to this node. More...
 
virtual std::vector< Node * > getInternalNodes ()
 Can return Nodes that are internal to this Node but don't make up the main graph constructed from getDirectInputNodes(). More...
 
void retain ()
 Retains the buffers so they won't be deallocated after the Node has processed. More...
 
void release ()
 Releases the buffers allowing internal storage to be deallocated. More...
 
virtual size_t getAllocatedBytes () const
 
- Public Member Functions inherited from tracktion::engine::TracktionEngineNode
 TracktionEngineNode (ProcessState &)
 Creates a TracktionEngineNode. More...
 
virtual ~TracktionEngineNode ()=default
 Destructor. More...
 
int getNumSamples () const
 Returns the number of samples in the current process block. More...
 
double getSampleRate () const
 Returns the sample rate of the current process block. More...
 
juce::Range< int64_t > getTimelineSampleRange () const
 Returns the timeline sample range of the current process block. More...
 
TimeRange getEditTimeRange () const
 Returns the edit time range of the current process block. More...
 
BeatRange getEditBeatRange () const
 Returns the edit beat range of the current process block. More...
 
juce::Range< int64_t > getReferenceSampleRange () const
 Returns the reference sample range (from the DeviceManager) of the current process block. More...
 
tempo::Key getKey () const
 Returns the key of the current process block. More...
 
double getPlaybackSpeedRatio () const
 Returns the playback speed ratio of the current process block. More...
 
std::optional< TimePosition > getTimeOfNextChange () const
 May return the time of the next tempo or time sig change. More...
 
std::optional< BeatPosition > getBeatOfNextChange () const
 May return the time of the next tempo or time sig change. More...
 
tracktion::graph::PlayHeadStategetPlayHeadState ()
 Returns the PlayHeadState in use. More...
 
tracktion::graph::PlayHeadgetPlayHead ()
 Returns the PlayHead in use. More...
 
ProcessStategetProcessState ()
 Returns the ProcessState in use. More...
 
void setProcessState (ProcessState &)
 
- Public Member Functions inherited from tracktion::engine::DynamicallyOffsettableNodeBase
 DynamicallyOffsettableNodeBase ()=default
 
virtual ~DynamicallyOffsettableNodeBase ()=default
 
virtual void setDynamicOffsetTime (TimeDuration)
 Sets an offset to be applied to all times in this node, effectively shifting it forwards or backwards in time. More...
 

Additional Inherited Members

- Public Attributes inherited from tracktion::graph::Node
void * internal = nullptr
 
int numOutputNodes = -1
 
- Protected Member Functions inherited from tracktion::graph::Node
virtual void prefetchBlock (juce::Range< int64_t >)
 Called before once on all Nodes before they are processed. More...
 
void setOptimisations (NodeOptimisations)
 This can be called to provide some hints about allocating or playing back a Node to improve efficiency. More...
 
void setAudioOutput (Node *sourceNode, const choc::buffer::ChannelArrayView< float > &)
 This can be called during your process function to set a view to the output. More...
 

Detailed Description

An Node that plays back a wave file.

Member Enumeration Documentation

◆ SyncTempo

Represets whether the file should try and match Edit tempo changes.

Enumerator
no 
yes 

◆ SyncPitch

Represets whether the file should try and match Edit pitch changes.

Enumerator
no 
yes 

Constructor & Destructor Documentation

◆ WaveNodeRealTime() [1/2]

tracktion::engine::WaveNodeRealTime::WaveNodeRealTime ( const AudioFile ,
TimeRange  editTime,
TimeDuration  offset,
TimeRange  loopSection,
LiveClipLevel  ,
double  speedRatio,
const juce::AudioChannelSet &  sourceChannelsToUse,
const juce::AudioChannelSet &  destChannelsToFill,
ProcessState ,
EditItemID  ,
bool  isOfflineRender,
ResamplingQuality  = ResamplingQuality::lagrange,
SpeedFadeDescription  = {},
std::optional< tempo::Sequence::Position >  editTempoSequence = {},
TimeStretcher::Mode  = TimeStretcher::Mode::defaultMode,
TimeStretcher::ElastiqueProOptions  = {},
float  pitchChangeSemitones = 0.0f 
)

offset is a time added to the start of the file, e.g.

an offset of 10.0 would produce ten seconds of silence followed by the file.

◆ WaveNodeRealTime() [2/2]

tracktion::engine::WaveNodeRealTime::WaveNodeRealTime ( const AudioFile ,
TimeStretcher::Mode  ,
TimeStretcher::ElastiqueProOptions  ,
BeatRange  editTime,
BeatDuration  offset,
BeatRange  loopSection,
LiveClipLevel  ,
const juce::AudioChannelSet &  sourceChannelsToUse,
const juce::AudioChannelSet &  destChannelsToFill,
ProcessState ,
EditItemID  ,
bool  isOfflineRender,
ResamplingQuality  ,
SpeedFadeDescription  ,
std::optional< tempo::Sequence::Position >  editTempoSequence,
std::optional< WarpMap ,
tempo::Sequence  sourceFileTempoMap,
SyncTempo  ,
SyncPitch  ,
std::optional< tempo::Sequence >  chordPitchSequence 
)
Parameters
sourceFileTempoMapA tempo map describing the changes in the source file. This is relative to the start of the file, not the positioning in the Edit. This map is also used to describe a single tempo/time sig for the file with a pair of changes at position 0. With this, the file playback will match tempo changes in the Edit.
chordPitchSequenceIf this is supplied and SyncPitch == yes, rather than syncing to the Edit's pitch sequence, it will sync to this pitch sequence.

Member Function Documentation

◆ setDynamicOffsetBeats()

void tracktion::engine::WaveNodeRealTime::setDynamicOffsetBeats ( BeatDuration  )
overridevirtual

Sets an offset to be applied to all times in this node, effectively shifting it forwards or backwards in time.

Reimplemented from tracktion::engine::DynamicallyOffsettableNodeBase.

◆ getNodeProperties()

graph::NodeProperties tracktion::engine::WaveNodeRealTime::getNodeProperties ( )
overridevirtual

Should return the properties of the node.

This should not be called until after initialise.

Implements tracktion::graph::Node.

◆ prepareToPlay()

void tracktion::engine::WaveNodeRealTime::prepareToPlay ( const graph::PlaybackInitialisationInfo )
overridevirtual

Called once before playback begins for each node.

Use this to allocate buffers etc. This step can be used to modify the topology of the graph (i.e. add/remove nodes). However, if you do this, you must make sure to call initialise on them so they are fully prepared for processing.

Reimplemented from tracktion::graph::Node.

◆ isReadyToProcess()

bool tracktion::engine::WaveNodeRealTime::isReadyToProcess ( )
overridevirtual

Should return true when this node is ready to be processed.

This is usually when its input's output buffers are ready.

Implements tracktion::graph::Node.

◆ process()

void tracktion::engine::WaveNodeRealTime::process ( ProcessContext )
overridevirtual

Called when the node is to be processed.

This should add in to the buffers available making sure not to change their size at all.

Implements tracktion::graph::Node.


The documentation for this class was generated from the following file: