Skip to content

class AggregationPipeline

AggregationPipeline provides a pipeline for a single aggregation processor to be applied on the input scene.

Properties

PropertyDescription
NameThe name of the AggregationPipeline object. (Inherited from Object)

Methods

MethodDescription
AddCascadedPipelineAdd a cascaded child pipeline. The child pipeline will execute on the scene output from this pipeline. (Inherited from Pipeline)
AddMaterialCasterAdd a material caster. Material casting requires the mapping image generation to be enabled (SetGenerateMappingImage in MappingImageSettings returned by GetMappingImageSettings). If called with a material index set to non-zero, the mapping image for the corresponding output material will be used. See GetOutputMaterialCount/SetOutputMaterialCount in MappingImageSettings. (Inherited from Pipeline)
AddMaterialCasterByTypeAdd a material caster by type name. Type name should undecorated base name of caster, for example "Color", "AmbientOcclusion", "Normal" etc. Material casting requires the mapping image generation to be enabled (SetGenerateMappingImage in MappingImageSettings returned by GetMappingImageSettings). If called with a material index set to non-zero, the mapping image for the corresponding output material will be used. See GetOutputMaterialCount/SetOutputMaterialCount in MappingImageSettings. (Inherited from Pipeline)
AddObserverAdds a user-defined observer object to the interface, that will receive events from the interface. (Inherited from Object)
GetActiveSelectionSetsGet the names of all currently active selection sets used by this pipeline, based on the current settings (Inherited from Pipeline)
GetAggregationSettingsThe aggregation settings object for this pipeline.
GetAttributeTessellationSettingsThe settings for handling attribute tessellation of the output scene.
GetBoolParameterGet a named parameter boolean value including parameter path. (Inherited from Pipeline)
GetCascadedPipelineByIndexThe cascaded child pipeline object for the given index. (Inherited from Pipeline)
GetCascadedPipelineCountGet number of cascaded child pipelines. (Inherited from Pipeline)
GetClassGet the name of the AggregationPipeline class. (Inherited from Object)
GetDoubleParameterGet a named parameter floating point value including parameter path. (Inherited from Pipeline)
GetEnumParameterGet a named parameter enum value as int including parameter path. (Inherited from Pipeline)
GetGenerateLightmapTexCoordSettingsThe settings object to create an extra set of TexCoord used for light mapping.
GetGeometryCullingSettingsThe geometry culling settings object for this pipeline.
GetIntParameterGet a named parameter integer value including parameter path. (Inherited from Pipeline)
GetMappingImageThe mapping image from the performed remeshing. Should only be called after the pipeline has been run. The return value will be null if the pipeline does not use material casting and mapping images. (Inherited from Pipeline)
GetMappingImageSettingsThe mapping image settings object containing the mapping image settings for this pipeline. The return value will be null if the pipeline does not use material casting and mapping images. (Inherited from Pipeline)
GetMaterialCasterByIndexGet the material caster in the pipeline for the given index, which must be less than the material caster count. (Inherited from Pipeline)
GetMaterialCasterCountGet the number of material casters for the pipeline. (Inherited from Pipeline)
GetMaterialCastersThe material casters for the pipeline. (Inherited from Pipeline)
GetParameterTypeGet a named parameter data type including parameter path. (Inherited from Pipeline)
GetPercentDoneReturns the current progress of the pipeline as a value between 0 and 100. (Inherited from Pipeline)
GetPipelineSettingsThe settings for the pipeline. (Inherited from Pipeline)
GetProcessedSceneThe resulting scene from the last execution of this pipeline. (Inherited from Pipeline)
GetStringParameterGet a named parameter string value including parameter path. (Inherited from Pipeline)
GetUIntParameterGet a named parameter unsigned integer value including parameter path. (Inherited from Pipeline)
GetVertexWeightSettingsThe vertex weight settings object for this pipeline.
GetVisibilitySettingsThe settings for handling visibility weights. Visibility settings contains the parameters for how to compute the visibility of a scene and how to use it.
IsAReturns true if AggregationPipeline is a or is a descendant of the class named as the type parameter. (Inherited from Object)
IsNullReturns true if the AggregationPipeline object is invalid. (Inherited from Object)
IsSameObjectAsReturns true if the AggregationPipeline object is valid. (Inherited from Object)
NewCopyCreate a new clone of the pipeline, copying all settings and material casters as well as creating new copies of all cascaded pipelines. (Inherited from Pipeline)
NonNullReturns true if the AggregationPipeline object is valid. (Inherited from Object)
PrintInfoPrints the content/info of the AggregationPipeline object to the log. (Inherited from Object)
RemoveCascadedPipelineRemove a cascaded child pipeline. (Inherited from Pipeline)
RemoveObserverRemoves a previously added observer object. (Inherited from Object)
RunSceneRun the pipeline on the given scene, which will be modified and contain the result of the pipeline when the function returns. Please note that internal references might be modified by the pipeline. The caller should refresh any reference that is cached outside the scene after running the pipeline. (Inherited from Pipeline)
RunSceneFromFileRun the pipeline on the scene loaded from the given input scene file, and optionally write the resulting scene to the given output scene file. If the scene is not written to file it can be accessed with the GetProcessedScene method. When using cascaded pipelines with RunSceneFromFile and the output file format does not support cascaded scenes (OBJ, FBX, glTF), only the scene from the first top level pipeline is exported to the output file. (Inherited from Pipeline)
SetBoolParameterSet a named parameter boolean value including parameter path. (Inherited from Pipeline)
SetDoubleParameterSet a named parameter floating point value including parameter path. (Inherited from Pipeline)
SetEnumParameterSet a named parameter enum value including parameter path. (Inherited from Pipeline)
SetIntParameterSet a named parameter integer value including parameter path. (Inherited from Pipeline)
SetParameterFromStringSet a named parameter value including parameter path. The string will be parsed with best effort according to the parameter data type. (Inherited from Pipeline)
SetStringParameterSet a named parameter string value including parameter path. (Inherited from Pipeline)
SetUIntParameterSet a named parameter unsigned integer value including parameter path. (Inherited from Pipeline)

Static methods

MethodDescription
IsClassAReturns true if the class is a or is a descendant of the class named as the type parameter. (Inherited from Object)
SafeCastSafeCast makes sure the input object is of a class that can be cast into spAggregationPipeline, and if this is the case, returns the object cast into spAggregationPipeline. (Inherited from Object)

Properties details

Name

The name of the AggregationPipeline object. (Inherited from Object)

Syntax

cpp
// Setter
void SetName( const char * name ) const;

// Getter
spString GetName() const;

SetName parameters

TypeNameMinMaxDescription
const char *nameNew name of the object.

GetName return value

Type: spString

Methods details

AddCascadedPipeline

Add a cascaded child pipeline. The child pipeline will execute on the scene output from this pipeline.

Syntax

cpp
void AddCascadedPipeline( const spPipeline & pipeline ) const;

Parameters

TypeNameMinMaxDescription
PipelinepipelineThe pipeline to add as a cascaded child pipeline.

AddMaterialCaster

Add a material caster. Material casting requires the mapping image generation to be enabled (SetGenerateMappingImage in MappingImageSettings returned by GetMappingImageSettings). If called with a material index set to non-zero, the mapping image for the corresponding output material will be used. See GetOutputMaterialCount/SetOutputMaterialCount in MappingImageSettings.

Syntax

cpp
void AddMaterialCaster( const spMaterialCaster & MaterialCaster , unsigned int MaterialIndex ) const;

Parameters

TypeNameMinMaxDescription
MaterialCasterMaterialCasterThe material caster to add.
unsigned intMaterialIndexThe material index the caster will be associated with, 0 for first material.

AddMaterialCasterByType

Add a material caster by type name. Type name should undecorated base name of caster, for example "Color", "AmbientOcclusion", "Normal" etc. Material casting requires the mapping image generation to be enabled (SetGenerateMappingImage in MappingImageSettings returned by GetMappingImageSettings). If called with a material index set to non-zero, the mapping image for the corresponding output material will be used. See GetOutputMaterialCount/SetOutputMaterialCount in MappingImageSettings.

Syntax

cpp
spMaterialCaster AddMaterialCasterByType( const char * CasterType , unsigned int MaterialIndex ) const;

Parameters

TypeNameMinMaxDescription
const char *CasterTypeCaster type name, like "Color", "AmbientOcclusion", "Normal" or similar.
unsigned intMaterialIndexThe material index the caster will be associated with, 0 for first material.

Return value

Type: MaterialCaster

AddObserver

Adds a user-defined observer object to the interface, that will receive events from the interface. (Inherited from Object)

Syntax

cpp
rid AddObserver( const spObserver & observer ) const;

Parameters

TypeNameMinMaxDescription
ObserverobserverObserver is the object that will receive events.

Return value

Type: rid

GetActiveSelectionSets

Get the names of all currently active selection sets used by this pipeline, based on the current settings

Syntax

cpp
void GetActiveSelectionSets( const spStringArray & sets ) const;

Parameters

TypeNameMinMaxDescription
StringArraysetsThe array recieving unique names of all selection sets being used by this pipeline.

GetAggregationSettings

The aggregation settings object for this pipeline.

Syntax

cpp
spAggregationSettings GetAggregationSettings() const;

Parameters

GetAggregationSettings takes no parameters.

Return value

Type: AggregationSettings

GetAttributeTessellationSettings

The settings for handling attribute tessellation of the output scene.

Syntax

cpp
spAttributeTessellationSettings GetAttributeTessellationSettings() const;

Parameters

GetAttributeTessellationSettings takes no parameters.

Return value

Type: AttributeTessellationSettings

GetBoolParameter

Get a named parameter boolean value including parameter path.

Syntax

cpp
bool GetBoolParameter( const char * name ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".

Return value

Type: bool

GetCascadedPipelineByIndex

The cascaded child pipeline object for the given index.

Syntax

cpp
spPipeline GetCascadedPipelineByIndex( unsigned int index ) const;

Parameters

TypeNameMinMaxDescription
unsigned intindexThe index of the cascaded child pipeline.

Return value

Type: Pipeline

GetCascadedPipelineCount

Get number of cascaded child pipelines.

Syntax

cpp
unsigned int GetCascadedPipelineCount() const;

Parameters

GetCascadedPipelineCount takes no parameters.

Return value

Type: unsigned int

GetClass

Get the name of the AggregationPipeline class. (Inherited from Object)

Syntax

cpp
spString GetClass() const;

Parameters

GetClass takes no parameters.

Return value

Type: spString

GetDoubleParameter

Get a named parameter floating point value including parameter path.

Syntax

cpp
double GetDoubleParameter( const char * name ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".

Return value

Type: double

GetEnumParameter

Get a named parameter enum value as int including parameter path.

Syntax

cpp
int GetEnumParameter( const char * name ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".

Return value

Type: int

GetGenerateLightmapTexCoordSettings

The settings object to create an extra set of TexCoord used for light mapping.

Syntax

cpp
spGenerateLightmapTexCoordSettings GetGenerateLightmapTexCoordSettings() const;

Parameters

GetGenerateLightmapTexCoordSettings takes no parameters.

Return value

Type: GenerateLightmapTexCoordSettings

GetGeometryCullingSettings

The geometry culling settings object for this pipeline.

Syntax

cpp
spGeometryCullingSettings GetGeometryCullingSettings() const;

Parameters

GetGeometryCullingSettings takes no parameters.

Return value

Type: GeometryCullingSettings

GetIntParameter

Get a named parameter integer value including parameter path.

Syntax

cpp
int GetIntParameter( const char * name ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".

Return value

Type: int

GetMappingImage

The mapping image from the performed remeshing. Should only be called after the pipeline has been run. The return value will be null if the pipeline does not use material casting and mapping images.

Syntax

cpp
spMappingImage GetMappingImage( unsigned int materialIndex ) const;

Parameters

TypeNameMinMaxDescription
unsigned intmaterialIndexThe index of the output material to get the mapping image for.

Return value

Type: MappingImage

GetMappingImageSettings

The mapping image settings object containing the mapping image settings for this pipeline. The return value will be null if the pipeline does not use material casting and mapping images.

Syntax

cpp
spMappingImageSettings GetMappingImageSettings() const;

Parameters

GetMappingImageSettings takes no parameters.

Return value

Type: MappingImageSettings

GetMaterialCasterByIndex

Get the material caster in the pipeline for the given index, which must be less than the material caster count.

Syntax

cpp
spMaterialCaster GetMaterialCasterByIndex( unsigned int index ) const;

Parameters

TypeNameMinMaxDescription
unsigned intindex0MaterialCasterCountMaterial caster index, must be less than the material caster count.

Return value

Type: MaterialCaster

GetMaterialCasterCount

Get the number of material casters for the pipeline.

Syntax

cpp
unsigned int GetMaterialCasterCount() const;

Parameters

GetMaterialCasterCount takes no parameters.

Return value

Type: unsigned int

GetMaterialCasters

The material casters for the pipeline.

Syntax

cpp
spObjectCollection GetMaterialCasters() const;

Parameters

GetMaterialCasters takes no parameters.

Return value

Type: ObjectCollection

GetParameterType

Get a named parameter data type including parameter path.

Syntax

cpp
Simplygon::ESettingValueType GetParameterType( const char * name ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".

Return value

Type: ESettingValueType

KeyValueComment
Invalid0Invalid settings value type.
Bool1Bool settings type.
Int2Int settings type.
Uint3Unsigned int settings type.
Double4Double floating point settings type.
String5String settings type.
EPipelineRunMode6EPipelineRunMode settings type.
EChartAggregatorMode8EChartAggregatorMode settings type.
ETexcoordGeneratorType9ETexcoordGeneratorType settings type.
EOcclusionMode10EOcclusionMode settings type.
EStopCondition11EStopCondition settings type.
EDataCreationPreferences12EDataCreationPreferences settings type.
EReductionHeuristics13EReductionHeuristics settings type.
EWeightsFromColorMode14EWeightsFromColorMode settings type.
ESurfaceTransferMode15ESurfaceTransferMode settings type.
ERemeshingMode16ERemeshingMode settings type.
ETangentSpaceMethod17ETangentSpaceMethod settings type.
EGeometryDataFieldType18EGeometryDataFieldType settings type.
EAtlasFillMode19EAtlasFillMode settings type.
EDitherPatterns20EDitherPatterns settings type.
EComputeVisibilityMode21EComputeVisibilityMode settings type.
ESurfaceAreaScale22ESurfaceAreaScale settings type.
EImpostorType23EImpostorType settings type.
ESymmetryAxis24ESymmetryAxis settings type.
EPixelFormat25EPixelFormat settings type.
EColorComponent26EColorComponent settings type.
EHoleFilling27EHoleFilling settings type.
EImageInputFormat28EImageInputFormat settings type.
EImageOutputFormat29EImageOutputFormat settings type.
EDDSCompressionType30EDDSCompressionType settings type.
EBillboardMode31EBillboardMode settings type.
EOpacityType32EOpacityType settings type.
EInputSceneValidationActionType33EInputSceneValidationActionType settings type.
EAttributeTessellationDensityMode34EAttributeTessellationDensityMode settings type.
EBlendOperation35EBlendOperation settings type.
EAttributeFormat36EAttributeFormat settings type.
ETransformationSpace37ETransformationSpace settings type.
EReferenceExportMode38EReferenceExportMode settings type.
EImageColorSpace39EImageColorSpace settings type.
EReductionPerformanceMode40EReductionPerformanceMode settings type.
EAttributeTessellationFieldType41EAttributeTessellationFieldType settings type.
EFlipBackfacingMode42EFlipBackfacingMode settings type.
EComputeCasterShaderCodeInputMode43EComputeCasterShaderCodeInputMode settings type.

GetPercentDone

Returns the current progress of the pipeline as a value between 0 and 100.

Syntax

cpp
real GetPercentDone() const;

Parameters

GetPercentDone takes no parameters.

Return value

Type: real

GetPipelineSettings

The settings for the pipeline.

Syntax

cpp
spPipelineSettings GetPipelineSettings() const;

Parameters

GetPipelineSettings takes no parameters.

Return value

Type: PipelineSettings

GetProcessedScene

The resulting scene from the last execution of this pipeline.

Syntax

cpp
spScene GetProcessedScene() const;

Parameters

GetProcessedScene takes no parameters.

Return value

Type: Scene

GetStringParameter

Get a named parameter string value including parameter path.

Syntax

cpp
spString GetStringParameter( const char * name ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".

Return value

Type: spString

GetUIntParameter

Get a named parameter unsigned integer value including parameter path.

Syntax

cpp
unsigned int GetUIntParameter( const char * name ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".

Return value

Type: unsigned int

GetVertexWeightSettings

The vertex weight settings object for this pipeline.

Syntax

cpp
spVertexWeightSettings GetVertexWeightSettings() const;

Parameters

GetVertexWeightSettings takes no parameters.

Return value

Type: VertexWeightSettings

GetVisibilitySettings

The settings for handling visibility weights. Visibility settings contains the parameters for how to compute the visibility of a scene and how to use it.

Syntax

cpp
spVisibilitySettings GetVisibilitySettings() const;

Parameters

GetVisibilitySettings takes no parameters.

Return value

Type: VisibilitySettings

IsA

Returns true if AggregationPipeline is a or is a descendant of the class named as the type parameter. (Inherited from Object)

Syntax

cpp
bool IsA( const char * type ) const;

Parameters

TypeNameMinMaxDescription
const char *typeName of the class to check if AggregationPipeline is, or is a descendant of.

Return value

Type: bool

IsNull

Returns true if the AggregationPipeline object is invalid. (Inherited from Object)

Syntax

cpp
bool IsNull() const;

Parameters

IsNull takes no parameters.

Return value

Type: bool

IsSameObjectAs

Returns true if the AggregationPipeline object is valid. (Inherited from Object)

Syntax

cpp
bool IsSameObjectAs( const spObject & object ) const;

Parameters

TypeNameMinMaxDescription
ObjectobjectObject to compare with.

Return value

Type: bool

NewCopy

Create a new clone of the pipeline, copying all settings and material casters as well as creating new copies of all cascaded pipelines.

Syntax

cpp
spPipeline NewCopy() const;

Parameters

TypeNameMinMaxDescription

Return value

Type: Pipeline

NonNull

Returns true if the AggregationPipeline object is valid. (Inherited from Object)

Syntax

cpp
bool NonNull() const;

Parameters

NonNull takes no parameters.

Return value

Type: bool

PrintInfo

Prints the content/info of the AggregationPipeline object to the log. (Inherited from Object)

Syntax

cpp
void PrintInfo() const;

Parameters

PrintInfo takes no parameters.

RemoveCascadedPipeline

Remove a cascaded child pipeline.

Syntax

cpp
void RemoveCascadedPipeline( const spPipeline & pipeline ) const;

Parameters

TypeNameMinMaxDescription
PipelinepipelineThe pipeline to remove from list of cascaded child pipelines.

RemoveObserver

Removes a previously added observer object. (Inherited from Object)

Syntax

cpp
void RemoveObserver( rid observerId ) const;

Parameters

TypeNameMinMaxDescription
ridobserverIdObserverId is the id returned by AddObserver when the observer was added.

RunScene

Run the pipeline on the given scene, which will be modified and contain the result of the pipeline when the function returns. Please note that internal references might be modified by the pipeline. The caller should refresh any reference that is cached outside the scene after running the pipeline.

Syntax

cpp
Simplygon::EErrorCodes RunScene( const spScene & scene , Simplygon::EPipelineRunMode runMode ) const;

Parameters

TypeNameMinMaxDescription
ScenesceneThe scene to run the pipeline on.
EPipelineRunModerunModePipeline run mode controlling if pipeline run in this or separate/distributed process. Valid values are the SG_PIPELINE_RUN* constants (from PipelineRunMode enum).

Return value

Type: EErrorCodes

KeyValueComment
NoError0No error, the initialization or process has finished, and with no errors
NoLicense-1no license was found (or licence expired)
NotInitialized-2the SDK is not initialized, or no process object has been loaded/created
AlreadyInitialized-3the SDK is already initialized
DLLOrDependenciesNotFound-4the specified file was not found. This might also mean that a .dll cannot be loaded because there is a missing dependency, such as the runtime environment.
InvalidInputParam-5an invalid parameter was passed to the method
FailedTesting-6the reduction failed post-testing
DLLAndHeaderFileIsNotMatching-7the Simplygon DLL and header file interface versions do not match
DLLFailedToLoad-8the Simplygon DLL failed loading, probably because of a missing dependency
LicenseNotForThisApplication-9the license is not made for this application of Simplygon
LicenseNotForThisPlatform-10the license is not made for this platform of Simplygon
LicenseNotForThisVersion-11the license is not made for this version of Simplygon
FailedToCreatePipelineSerializer-12failed to create pipeline serializer
FailedToRunPipeline-13failed to run pipeline
UnhandledException-14an unhandled exception was encountered
FileError-15a file read/write failed.
InvalidPath-16a path is invalid or a file/directory is missing.
DependencyMissing-17a needed dependency is missing. see log for info on what is missing.
UnexpectedError-18an unexpected error happened.
FailedToUploadFreeLicenseAsset-50failed to upload free license asset
ExceptionalError-1000An exceptional and fatal error occurred, and has been reported to the error handler. The library is placed in an exceptional state, and you should unload and reload the Simplygon library to avoid memory leaks.
FailedToResolveLicenseServerHostName-10001cannot reach the licensing server, cant look up server, check DNS
FailedToConnectToLicenseServer-10002cannot contact the licensing server, check firewall/proxy server
FailedToConnectToLicenseServerAndSendData-10003Failed to connect to the license server. Please check that your internet connection is working and outgoing connections to license.simplygon.com port 443 are not blocked by a firewall or proxy.
FailedToConnectToLicenseServerAndReceiveData-10004cannot receive data from the licensing server, check firewall/proxy server
DataFromLicenseServerIsCorrupt-10005data from licensing server is corrupted, try again, check connection
LicenseHasExpired-10006the license has expired
LicenseIsInvalid-10007the license data is corrupted, please reinstall the license key
LicenseNotForThisProduct-10008the license is not for this product, please contact licensing, and replace license key
NoNetworkCardFound-10009no network card was found on the machine
LicenseDecodeFailed-10010could not decode license, it is corrupted
LicenseLockNotMatchingMachine-10011the license is locked to another machine
ConnectionToLicenseServerLost-10012Connection to license server lost
LicenseHashDataCorrupt-10013could not decode license, it is corrupted
LicenseExpired-10014the license is invalid, please contact licensing
LicenseNotLockedForThisMachine-10020the license is locked to another machine
YourLicenseRequiresLatestWindows10-10024your license requires latest Windows 10 version
LicenseServerReturnedBadRequest-10400Bad license request. Please reach out to SimplygonSupport[at]microsoft.com for support
ProcessingCap-10403You have reached the maximum number of processings for your license. Please try again in 24 hours or reach out to SimplygonSales@microsoft.com for support..
UnknownLicenseKey-10404You are using an unknown license key. Please verify so you typed in the license key correctly and try again
LicenseIsNotActive-10410You are using an inactive license key. Please reach out to SimplygonSales[at]microsoft.com for support
MaxNodesReachForThisLicense-10409You have reached the maximum number of nodes for your license. After 48 hours of not using Simplygon on a machine the license will be released and can be installed on another machine
YourLicenseRequiresLatestSimplygon-10426The license key you are using requires you to update to the latest version before you can use Simplygon
LicenseServerReturnServerError-10501Bad license request. Please reach out to SimplygonSupport[at]microsoft.com for support
ProcessingValidationError-20001The process was aborted, because of a validation error. Either the process settings or the input data was invalid, or a combination thereof. Use GetErrorMessages in the main Simplygon object to retrieve error messages, and see the log for details. Note that the library is not left in an exceptional state, and it is safe to continue processing other scenes.

RunSceneFromFile

Run the pipeline on the scene loaded from the given input scene file, and optionally write the resulting scene to the given output scene file. If the scene is not written to file it can be accessed with the GetProcessedScene method. When using cascaded pipelines with RunSceneFromFile and the output file format does not support cascaded scenes (OBJ, FBX, glTF), only the scene from the first top level pipeline is exported to the output file.

Syntax

cpp
Simplygon::EErrorCodes RunSceneFromFile( const char * inputScene , const char * outputScene , Simplygon::EPipelineRunMode runMode ) const;

Parameters

TypeNameMinMaxDescription
const char *inputSceneThe file path of the input scene file.
const char *outputSceneThe file path of the output scene file (can be null)
EPipelineRunModerunModePipeline run mode controlling if pipeline run in this or separate/distributed process. Valid values are the SG_PIPELINE_RUN* constants (from PipelineRunMode enum).

Return value

Type: EErrorCodes

KeyValueComment
NoError0No error, the initialization or process has finished, and with no errors
NoLicense-1no license was found (or licence expired)
NotInitialized-2the SDK is not initialized, or no process object has been loaded/created
AlreadyInitialized-3the SDK is already initialized
DLLOrDependenciesNotFound-4the specified file was not found. This might also mean that a .dll cannot be loaded because there is a missing dependency, such as the runtime environment.
InvalidInputParam-5an invalid parameter was passed to the method
FailedTesting-6the reduction failed post-testing
DLLAndHeaderFileIsNotMatching-7the Simplygon DLL and header file interface versions do not match
DLLFailedToLoad-8the Simplygon DLL failed loading, probably because of a missing dependency
LicenseNotForThisApplication-9the license is not made for this application of Simplygon
LicenseNotForThisPlatform-10the license is not made for this platform of Simplygon
LicenseNotForThisVersion-11the license is not made for this version of Simplygon
FailedToCreatePipelineSerializer-12failed to create pipeline serializer
FailedToRunPipeline-13failed to run pipeline
UnhandledException-14an unhandled exception was encountered
FileError-15a file read/write failed.
InvalidPath-16a path is invalid or a file/directory is missing.
DependencyMissing-17a needed dependency is missing. see log for info on what is missing.
UnexpectedError-18an unexpected error happened.
FailedToUploadFreeLicenseAsset-50failed to upload free license asset
ExceptionalError-1000An exceptional and fatal error occurred, and has been reported to the error handler. The library is placed in an exceptional state, and you should unload and reload the Simplygon library to avoid memory leaks.
FailedToResolveLicenseServerHostName-10001cannot reach the licensing server, cant look up server, check DNS
FailedToConnectToLicenseServer-10002cannot contact the licensing server, check firewall/proxy server
FailedToConnectToLicenseServerAndSendData-10003Failed to connect to the license server. Please check that your internet connection is working and outgoing connections to license.simplygon.com port 443 are not blocked by a firewall or proxy.
FailedToConnectToLicenseServerAndReceiveData-10004cannot receive data from the licensing server, check firewall/proxy server
DataFromLicenseServerIsCorrupt-10005data from licensing server is corrupted, try again, check connection
LicenseHasExpired-10006the license has expired
LicenseIsInvalid-10007the license data is corrupted, please reinstall the license key
LicenseNotForThisProduct-10008the license is not for this product, please contact licensing, and replace license key
NoNetworkCardFound-10009no network card was found on the machine
LicenseDecodeFailed-10010could not decode license, it is corrupted
LicenseLockNotMatchingMachine-10011the license is locked to another machine
ConnectionToLicenseServerLost-10012Connection to license server lost
LicenseHashDataCorrupt-10013could not decode license, it is corrupted
LicenseExpired-10014the license is invalid, please contact licensing
LicenseNotLockedForThisMachine-10020the license is locked to another machine
YourLicenseRequiresLatestWindows10-10024your license requires latest Windows 10 version
LicenseServerReturnedBadRequest-10400Bad license request. Please reach out to SimplygonSupport[at]microsoft.com for support
ProcessingCap-10403You have reached the maximum number of processings for your license. Please try again in 24 hours or reach out to SimplygonSales@microsoft.com for support..
UnknownLicenseKey-10404You are using an unknown license key. Please verify so you typed in the license key correctly and try again
LicenseIsNotActive-10410You are using an inactive license key. Please reach out to SimplygonSales[at]microsoft.com for support
MaxNodesReachForThisLicense-10409You have reached the maximum number of nodes for your license. After 48 hours of not using Simplygon on a machine the license will be released and can be installed on another machine
YourLicenseRequiresLatestSimplygon-10426The license key you are using requires you to update to the latest version before you can use Simplygon
LicenseServerReturnServerError-10501Bad license request. Please reach out to SimplygonSupport[at]microsoft.com for support
ProcessingValidationError-20001The process was aborted, because of a validation error. Either the process settings or the input data was invalid, or a combination thereof. Use GetErrorMessages in the main Simplygon object to retrieve error messages, and see the log for details. Note that the library is not left in an exceptional state, and it is safe to continue processing other scenes.

SetBoolParameter

Set a named parameter boolean value including parameter path.

Syntax

cpp
bool SetBoolParameter( const char * name , bool value ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".
boolvalueNew value for parameter.

Return value

Type: bool

SetDoubleParameter

Set a named parameter floating point value including parameter path.

Syntax

cpp
bool SetDoubleParameter( const char * name , double value ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".
doublevalueNew value for parameter.

Return value

Type: bool

SetEnumParameter

Set a named parameter enum value including parameter path.

Syntax

cpp
bool SetEnumParameter( const char * name , int value , Simplygon::ESettingValueType valueEnumType ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".
intvalueNew value for parameter.
ESettingValueTypevalueEnumTypeValue type of enum for parameter value.

Return value

Type: bool

SetIntParameter

Set a named parameter integer value including parameter path.

Syntax

cpp
bool SetIntParameter( const char * name , int value ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".
intvalueNew value for parameter.

Return value

Type: bool

SetParameterFromString

Set a named parameter value including parameter path. The string will be parsed with best effort according to the parameter data type.

Syntax

cpp
bool SetParameterFromString( const char * name , const char * value ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".
const char *valueNew value for parameter.

Return value

Type: bool

SetStringParameter

Set a named parameter string value including parameter path.

Syntax

cpp
bool SetStringParameter( const char * name , const char * value ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".
const char *valueNew value for parameter.

Return value

Type: bool

SetUIntParameter

Set a named parameter unsigned integer value including parameter path.

Syntax

cpp
bool SetUIntParameter( const char * name , unsigned int value ) const;

Parameters

TypeNameMinMaxDescription
const char *nameParameter path separated with forward slash, like "/RemeshingProcessor/Reduction/MergeGeometries".
unsigned intvalueNew value for parameter.

Return value

Type: bool

Static methods details

IsClassA

Returns true if the class is a or is a descendant of the class named as the type parameter. (Inherited from Object)

Syntax

cpp
static bool IsClassA( const char * type ) const;

Parameters

TypeNameMinMaxDescription
const char *typeName of the class to check if the class is, or is a descendant of.

Return value

Type: bool

SafeCast

SafeCast makes sure the input object is of a class that can be cast into spAggregationPipeline, and if this is the case, returns the object cast into spAggregationPipeline. (Inherited from Object)

Syntax

cpp
static spAggregationPipeline SafeCast( const spObject & object ) const;

Parameters

TypeNameMinMaxDescription
ObjectobjectObject to cast.

Return value

Type: AggregationPipeline