8#ifndef PXR_USD_SDR_SHADER_PROPERTY_H
9#define PXR_USD_SDR_SHADER_PROPERTY_H
14#include "pxr/usd/sdr/api.h"
18#include "pxr/base/vt/value.h"
22PXR_NAMESPACE_OPEN_SCOPE
26#define SDR_PROPERTY_TYPE_TOKENS \
28 ((String, "string")) \
31 ((Color4, "color4")) \
33 ((Normal, "normal")) \
34 ((Vector, "vector")) \
35 ((Matrix, "matrix")) \
36 ((Struct, "struct")) \
37 ((Terminal, "terminal")) \
38 ((Vstruct, "vstruct")) \
39 ((Unknown, "unknown"))
44#define SDR_PROPERTY_METADATA_TOKENS \
48 ((RenderType, "renderType")) \
50 ((Widget, "widget")) \
52 ((Options, "options")) \
53 ((IsDynamicArray, "isDynamicArray")) \
54 ((Connectable, "connectable")) \
56 ((ValidConnectionTypes, "validConnectionTypes")) \
57 ((VstructMemberOf, "vstructMemberOf")) \
58 ((VstructMemberName, "vstructMemberName")) \
59 ((VstructConditionalExpr, "vstructConditionalExpr"))\
60 ((IsAssetIdentifier, "__SDR__isAssetIdentifier"))\
61 ((ImplementationName, "__SDR__implementationName"))\
62 ((SdrUsdDefinitionType, "sdrUsdDefinitionType"))\
63 ((DefaultInput, "__SDR__defaultinput")) \
64 ((Target, "__SDR__target")) \
65 ((Colorspace, "__SDR__colorspace"))
69#define SDR_PROPERTY_ROLE_TOKENS \
72#define SDR_PROPERTY_TOKENS \
73 ((PageDelimiter, ":"))
77 SDR_PROPERTY_METADATA_TOKENS);
79 SDR_PROPERTY_ROLE_TOKENS);
97 const NdrTokenMap& metadata,
98 const NdrTokenMap& hints,
99 const NdrOptionVec& options
134 const NdrTokenMap&
GetHints()
const {
return _hints; }
161 return _vstructMemberOf;
167 return _vstructMemberName;
182 return _vstructConditionalExpr;
203 return _validConnectionTypes;
238 return _sdfTypeDefaultValue;
263 friend void SdrShaderNode::_PostProcessProperties();
268 void _SetUsdEncodingVersion(
int usdEncodingVersion);
272 void _ConvertToVStruct();
277 void _FinalizeProperty();
281 const NdrTokenMap _hints;
282 const NdrOptionVec _options;
285 NdrTokenVec _validConnectionTypes;
291 TfToken _vstructConditionalExpr;
297 int _usdEncodingVersion;
300PXR_NAMESPACE_CLOSE_SCOPE
Represents a property (input or output) that is part of a NdrNode instance.
A specialized version of NdrProperty which holds shading information.
SDR_API bool IsVStruct() const
Returns true if the field is the head of a vstruct.
SDR_API const TfToken & GetVStructMemberOf() const
If this field is part of a vstruct, this is the name of the struct.
SDR_API bool IsConnectable() const override
Whether this property can be connected to other properties.
SDR_API bool CanConnectTo(const NdrProperty &other) const override
Determines if this property can be connected to the specified property.
SDR_API const TfToken & GetLabel() const
The label assigned to this property, if any.
SDR_API const TfToken & GetPage() const
The page (group), eg "Advanced", this property appears on, if any.
SDR_API const TfToken & GetWidget() const
The widget "hint" that indicates the widget that can best display the type of data contained in this ...
SDR_API bool IsAssetIdentifier() const
Determines if the value held by this property is an asset identifier (eg, a file path); the logic for...
SDR_API const TfToken & GetVStructMemberName() const
If this field is part of a vstruct, this is its name in the struct.
SDR_API std::string GetHelp() const
The help message assigned to this property, if any.
SDR_API const NdrOptionVec & GetOptions() const
If the property has a set of valid values that are pre-determined, this will return the valid option ...
SDR_API const NdrSdfTypeIndicator GetTypeAsSdfType() const override
Converts the property's type from GetType() into a SdfValueTypeName.
SDR_API const NdrTokenVec & GetValidConnectionTypes() const
Gets the list of valid connection types for this property.
SDR_API std::string GetImplementationName() const
Returns the implementation name of this property.
SDR_API const VtValue & GetDefaultValueAsSdfType() const override
Accessor for default value corresponding to the SdfValueTypeName returned by GetTypeAsSdfType.
SDR_API bool IsDefaultInput() const
Determines if the value held by this property is the default input for this node.
SDR_API bool IsVStructMember() const
Returns true if this field is part of a vstruct.
SDR_API const NdrTokenMap & GetHints() const
Any UI "hints" that are associated with this property.
SDR_API const TfToken & GetVStructConditionalExpr() const
If this field is part of a vstruct, this is the conditional expression.
Token for efficient comparison, assignment, and hashing of known strings.
Provides a container which may hold any type, and provides introspection and iteration over array typ...
This file defines some macros that are useful for declaring and using static TfTokens.
#define TF_DECLARE_PUBLIC_TOKENS(...)
Macro to define public tokens.
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...