Nuke binary plugins 16.0.1
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Loading...
Searching...
No Matches
DD::Image::GeometryProviderI Class Referenceabstract

#include <GeometryProviderI.h>

Inheritance diagram for DD::Image::GeometryProviderI:
DD::Image::GeomOp DD::Image::ScenePrimExporterOpI DD::Image::CreateOrEditGeomOp DD::Image::NullGeomOp DD::Image::SourceGeomOp DD::Image::AxisOp DD::Image::CameraOp DD::Image::LightOp DD::Image::ComplexLightOp

Public Member Functions

virtual GeometryProviderIasGeometryProvider ()=0
 
virtual OpgetGeometryProviderOp ()=0
 
OpgetGeometryProviderOp () const
 Same as getGeometryProviderOp() but const.
 
virtual fdk::Hash geometryComposeState () const =0
 
virtual fdk::Hash geometryEditState () const =0
 
virtual bool geometryStateVaries () const =0
 
virtual usg::LayerRef buildGeometryLayer (bool appendTo=false, const fdk::TimeValueSet &sampleTimes=fdk::TimeValueSet())=0
 
virtual usg::LayerRef getGeometryLayer (const fdk::TimeValueSet &sampleTimes=fdk::TimeValueSet())
 
virtual bool canProvideGeometryStage () const
 
virtual void buildGeometryStage (usg::StageRef &stage, const usg::ArgSet &requestArgs, const fdk::TimeValueSet &sampleTimes=fdk::TimeValueSet())
 
virtual usg::StageRef getGeometryStage (const fdk::TimeValueSet &sampleTimes=fdk::TimeValueSet())
 

Static Public Member Functions

static void buildStage (usg::StageRef &stage, const usg::ArgSet &requestArgs, const OpSet &ops, const fdk::TimeValueSet *additionalTimes=nullptr)
 
static void buildStage (usg::StageRef &stage, const usg::ArgSet &requestArgs, Op *geometryProviderOp, const fdk::TimeValueSet *additionalTimes=nullptr)
 

Detailed Description

Interface class to attach to another class, usually an Op, that can provide geometry in the form of usg::Layers or a usg::Stage. Subclasses can decide to provide both a Layer and a Stage, or just a Layer. If providing both then the Layer would commonly be the root layer set in the provided Stage.

Op examples utilizing this interface are GeomOp, AxisOp (CameraOp, LightOp) and ScanlineRender2.

The returned Layer and Stage are usually local caches on the attached object as downstream consumers typically do not have persistent caches in Nuke due to the procedural graph mechanisms. A good example of this is the Viewer which contains a Stage reference but relies on each Node to store the geometry data in local Layers and provide a Stage when asked.

However the object could also pass the interface methods up the graph to an input to provide geometry if the object itself is not geometry aware. A good use of this would be an Iop with a geometry input that wants the Viewer to access the geometry passing through the Iop. ScanlineRender2 does this for example.

Note that code accessing GeometryProvider methods should be aware that it may not always be on an Op and should be able to handle null being returned from getGeometryProviderOp().

Member Function Documentation

◆ buildStage() [1/2]

void GeometryProviderI::buildStage ( usg::StageRef &  stage,
const usg::ArgSet &  requestArgs,
const OpSet &  ops,
const fdk::TimeValueSet *  additionalTimes = nullptr 
)
static

Build the passed-in stage. If the OpSet is empty or the Ops are all invalid the stage is emptied.

All Ops in the set must be from the same Node, otherwise only the first Op in the set will be used and all others from different Nodes will be ignored.

These Ops are typically the inputs to a Viewer, renderer Iop, or an Op that wants to sample geometry. Only Ops that can generate geometry (specifically a Layer or Stage) are supported, which includes GeomOps or any Op with the GeometryProviderI interface attached.

The outputContext() of each Op is used to define the requested times and views to be processed for the usg::Stage. A GeometryProvider should try to fulfill the requested Op times at a minimum, but is free to add additional time samples.

If additionalTimes is provided those are added to the requested times set.

References buildGeometryStage(), DD::Image::GeomOp::buildGeometryStage(), DD::Image::Op::geometryProvider(), DD::Image::Op::geomOp(), and DD::Image::Op::node().

Referenced by buildStage(), and DD::Image::SceneLoaderOpI::updateScenePrim().

◆ buildStage() [2/2]

void GeometryProviderI::buildStage ( usg::StageRef &  stage,
const usg::ArgSet &  requestArgs,
Op geometryProviderOp,
const fdk::TimeValueSet *  additionalTimes = nullptr 
)
static

Same as buildStage(OpSet) but for a single Op that can cast to GeomOp or GeometryProviderI. If Op won't cast then stage is cleared.

References buildStage().

◆ asGeometryProvider()

virtual GeometryProviderI * DD::Image::GeometryProviderI::asGeometryProvider ( )
pure virtual

Allow subclasses to gain access to sibling functions. Should return 'this'. Must implement.

Implemented in DD::Image::AxisOp, DD::Image::GeomOp, and DD::Image::ScenePrimExporterOpI.

◆ getGeometryProviderOp()

virtual Op * DD::Image::GeometryProviderI::getGeometryProviderOp ( )
pure virtual

If the interface is attached to an Op return it. Should return 'this' if attached to an Op, otherwise null. Must implement.

Implemented in DD::Image::AxisOp, DD::Image::GeomOp, and DD::Image::ScenePrimExporterOpI.

◆ geometryComposeState()

virtual fdk::Hash DD::Image::GeometryProviderI::geometryComposeState ( ) const
pure virtual

Compose state of output geometry. Subclass should return a hash which represents the composition state (define geometry) of the stage it could produce. Multiple calls to this method should return exactly the same hash as long as a built stage does not need to be recomposed.

Must implement.

Implemented in DD::Image::GeomOp, and DD::Image::ScenePrimExporterOpI.

Referenced by DD::Image::GeomOp::appendGeometryProviderToTarget(), and buildGeometryStage().

◆ geometryEditState()

virtual fdk::Hash DD::Image::GeometryProviderI::geometryEditState ( ) const
pure virtual

Edit state of output layer(s). Subclass should return a hash which represents the edit state (modify values) of the layers it will produce. Multiple calls to this method should return exactly the same hash as long as the resulting Layer attribute can be appended to. When this hash changes the contents of all attributes in the layer are likely invalid and any time samples cleared out.

Must implement.

Implemented in DD::Image::GeomOp, and DD::Image::ScenePrimExporterOpI.

Referenced by DD::Image::GeomOp::appendGeometryProviderToTarget().

◆ geometryStateVaries()

virtual bool DD::Image::GeometryProviderI::geometryStateVaries ( ) const
pure virtual

Does the geometry state have contributions from an animating source? A subclass should either return true if it doesn't know for certain, or determine the animation state from local parameters and input info.

This is a hint to downstream nodes that the per-frame evaluated hash state of an Op will likely vary, it does not indicate that the actual geometry data changes over time.

Must implement.

Implemented in DD::Image::GeomOp, and DD::Image::ScenePrimExporterOpI.

Referenced by DD::Image::GeomOp::appendGeometryProviderToTarget().

◆ buildGeometryLayer()

virtual usg::LayerRef DD::Image::GeometryProviderI::buildGeometryLayer ( bool  appendTo = false,
const fdk::TimeValueSet &  sampleTimes = fdk::TimeValueSet() 
)
pure virtual

Build a usg::Layer, which is owned by the GeometryProviderI subclass. sampleTimes is for optional samples that the caller might need explicit time samples for, but this behavior is dependent on the subclass implementation.

If appendTo is false (the default) then the subclass is assumed to be initializing its Layer and defining prims and attributes. If appendTo is true then the subclass should only add additional time samples to the previously-defined attributes and avoid changing the existence of prims or attributes as this would cause a Stage using the Layer to recompose.

Must implement.

Implemented in DD::Image::ScenePrimExporterOpI, and DD::Image::GeomOp.

Referenced by buildGeometryStage(), getGeometryLayer(), and DD::Image::GeomOpEngine::processScenegraph().

◆ getGeometryLayer()

usg::LayerRef GeometryProviderI::getGeometryLayer ( const fdk::TimeValueSet &  sampleTimes = fdk::TimeValueSet())
virtual

Provide a fully populated usg::Layer. sampleTimes is for optional sample times that a consumer might need explicit time samples for, but this behavior is dependent on the subclass implementation of buildGeometryLayer().

Default implementation calls buildGeometryLayer() with a local LayerRef and returns it. This is virtual to allow a subclass to do something more clever.

Reimplemented in DD::Image::ScenePrimExporterOpI.

References buildGeometryLayer().

◆ canProvideGeometryStage()

virtual bool DD::Image::GeometryProviderI::canProvideGeometryStage ( ) const
inlinevirtual

Return true if the Op this is attached to can build a usg::Stage via buildGeometryStage().

Default is not to provide Stage building.

Reimplemented in DD::Image::GeomOp, and DD::Image::ScenePrimExporterOpI.

◆ buildGeometryStage()

void GeometryProviderI::buildGeometryStage ( usg::StageRef &  stage,
const usg::ArgSet &  requestArgs,
const fdk::TimeValueSet &  sampleTimes = fdk::TimeValueSet() 
)
virtual

Build the provided usg::Stage. sampleTimes is for optional sample times that the caller might want explicit time samples for. However whether those additional times are filled in is depedent on the subclass implementation of buildGeometryStage().

Default implementation creates the stage from the layer built from calling buildGeometryLayer(). It compares the geometryComposeState() against the provided stage's composeState and if the same the stage won't be created then buildGeometryLayer() will be called in appendTo=true mode so the layer attribute contents can be modified without stage recomposition. If newly created the stage is set to LoadAll mode and its composeState set to the current geometryComposeState().

Reimplemented in DD::Image::GeomOp, and DD::Image::ScenePrimExporterOpI.

References buildGeometryLayer(), and geometryComposeState().

Referenced by buildStage(), and getGeometryStage().

◆ getGeometryStage()

usg::StageRef GeometryProviderI::getGeometryStage ( const fdk::TimeValueSet &  sampleTimes = fdk::TimeValueSet())
virtual

Provide a fully composed usg::Stage. A subclass implementing this

sampleTimes is for the sample times that the caller may want explicit time samples for. However whether those additional times are filled in is depedent on the subclass implementation of buildGeometryStage().

If the stage consumer wants to call the stage building repeatedly with different sample times then buildGeometryStage() should be used instead.

Default implementation calls buildGeometryStage() with a local StageRef and returns it. This is virtual to allow a subclass to do something more clever.

References buildGeometryStage().



©2025 The Foundry Visionmongers, Ltd. All Rights Reserved.
www.foundry.com