513f08e691
- aggiornamento versione - utilizzate le nostre librerie esterne libzip e zlib e non quelle incluse in lib3mf.
767 lines
34 KiB
C++
767 lines
34 KiB
C++
/*++
|
|
|
|
Copyright (C) 2024 3MF Consortium (Original Author)
|
|
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without modification,
|
|
are permitted provided that the following conditions are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
this list of conditions and the following disclaimer in the documentation
|
|
and/or other materials provided with the distribution.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
This file has been generated by the Automatic Component Toolkit (ACT) version 1.8.1-develop.
|
|
|
|
Abstract: This is an autogenerated C++-Header file with basic types in
|
|
order to allow an easy use of the 3MF Library
|
|
|
|
Interface version: 2.5.0
|
|
|
|
*/
|
|
|
|
#ifndef __LIB3MF_TYPES_HEADER_CPP
|
|
#define __LIB3MF_TYPES_HEADER_CPP
|
|
|
|
|
|
/*************************************************************************************************************************
|
|
Scalar types definition
|
|
**************************************************************************************************************************/
|
|
|
|
#ifdef LIB3MF_USELEGACYINTEGERTYPES
|
|
|
|
typedef unsigned char Lib3MF_uint8;
|
|
typedef unsigned short Lib3MF_uint16 ;
|
|
typedef unsigned int Lib3MF_uint32;
|
|
typedef unsigned long long Lib3MF_uint64;
|
|
typedef char Lib3MF_int8;
|
|
typedef short Lib3MF_int16;
|
|
typedef int Lib3MF_int32;
|
|
typedef long long Lib3MF_int64;
|
|
|
|
#else // LIB3MF_USELEGACYINTEGERTYPES
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef uint8_t Lib3MF_uint8;
|
|
typedef uint16_t Lib3MF_uint16;
|
|
typedef uint32_t Lib3MF_uint32;
|
|
typedef uint64_t Lib3MF_uint64;
|
|
typedef int8_t Lib3MF_int8;
|
|
typedef int16_t Lib3MF_int16;
|
|
typedef int32_t Lib3MF_int32;
|
|
typedef int64_t Lib3MF_int64 ;
|
|
|
|
#endif // LIB3MF_USELEGACYINTEGERTYPES
|
|
|
|
typedef float Lib3MF_single;
|
|
typedef double Lib3MF_double;
|
|
|
|
/*************************************************************************************************************************
|
|
General type definitions
|
|
**************************************************************************************************************************/
|
|
|
|
typedef Lib3MF_int32 Lib3MFResult;
|
|
typedef void * Lib3MFHandle;
|
|
typedef void * Lib3MF_pvoid;
|
|
|
|
/*************************************************************************************************************************
|
|
Version for Lib3MF
|
|
**************************************************************************************************************************/
|
|
|
|
#define LIB3MF_VERSION_MAJOR 2
|
|
#define LIB3MF_VERSION_MINOR 5
|
|
#define LIB3MF_VERSION_MICRO 0
|
|
#define LIB3MF_VERSION_PRERELEASEINFO ""
|
|
#define LIB3MF_VERSION_BUILDINFO ""
|
|
|
|
/*************************************************************************************************************************
|
|
Error constants for Lib3MF
|
|
**************************************************************************************************************************/
|
|
|
|
#define LIB3MF_SUCCESS 0
|
|
#define LIB3MF_ERROR_NOTIMPLEMENTED 1 /** functionality not implemented */
|
|
#define LIB3MF_ERROR_INVALIDPARAM 2 /** an invalid parameter was passed */
|
|
#define LIB3MF_ERROR_INVALIDCAST 3 /** a type cast failed */
|
|
#define LIB3MF_ERROR_BUFFERTOOSMALL 4 /** a provided buffer is too small */
|
|
#define LIB3MF_ERROR_GENERICEXCEPTION 5 /** a generic exception occurred */
|
|
#define LIB3MF_ERROR_COULDNOTLOADLIBRARY 6 /** the library could not be loaded */
|
|
#define LIB3MF_ERROR_COULDNOTFINDLIBRARYEXPORT 7 /** a required exported symbol could not be found in the library */
|
|
#define LIB3MF_ERROR_INCOMPATIBLEBINARYVERSION 8 /** the version of the binary interface does not match the bindings interface */
|
|
#define LIB3MF_ERROR_CALCULATIONABORTED 10 /** a calculation has been aborted */
|
|
#define LIB3MF_ERROR_SHOULDNOTBECALLED 11 /** functionality should not be called */
|
|
#define LIB3MF_ERROR_READERCLASSUNKNOWN 100 /** the queried reader class is unknown */
|
|
#define LIB3MF_ERROR_WRITERCLASSUNKNOWN 101 /** the queried writer class is unknown */
|
|
#define LIB3MF_ERROR_ITERATORINVALIDINDEX 102 /** the current index of an iterator is invalid */
|
|
#define LIB3MF_ERROR_INVALIDMODELRESOURCE 103 /** no Model Resource has been given */
|
|
#define LIB3MF_ERROR_RESOURCENOTFOUND 104 /** Resource not found */
|
|
#define LIB3MF_ERROR_INVALIDMODEL 105 /** A model is invalid */
|
|
#define LIB3MF_ERROR_INVALIDOBJECT 106 /** An object is invalid */
|
|
#define LIB3MF_ERROR_INVALIDMESHOBJECT 107 /** A mesh object is invalid */
|
|
#define LIB3MF_ERROR_INVALIDCOMPONENTSOBJECT 108 /** A components object is invalid */
|
|
#define LIB3MF_ERROR_INVALIDCOMPONENT 109 /** A component is invalid */
|
|
#define LIB3MF_ERROR_INVALIDBUILDITEM 110 /** A build item is invalid */
|
|
#define LIB3MF_ERROR_INVALIDBASEMATERIALGROUP 111 /** A basematerialgroup is invalid */
|
|
#define LIB3MF_ERROR_INVALIDSLICESTACKRESOURCE 112 /** A slicestack resource is invalid */
|
|
#define LIB3MF_ERROR_INVALIDTEXTURERESOURCE 113 /** A texture resource is invalid */
|
|
#define LIB3MF_ERROR_INVALIDCOLORGROUP 114 /** A color group resource is invalid */
|
|
#define LIB3MF_ERROR_INVALIDTEXTURE2DGROUP 115 /** A texture2d group resource is invalid */
|
|
#define LIB3MF_ERROR_INVALIDCOMPOSITEMATERIALS 116 /** A composite materials resource is invalid */
|
|
#define LIB3MF_ERROR_INVALIDMULTIPROPERTYGROUP 117 /** A MultiPropertyGroup resource is invalid */
|
|
#define LIB3MF_ERROR_INVALIDRESOURCEINDEX 120 /** A resource index is invalid */
|
|
#define LIB3MF_ERROR_ATTACHMENTNOTFOUND 121 /** Attachment not found */
|
|
#define LIB3MF_ERROR_FORBIDDENCYCLICREFERENCE 130 /** A component references one of its ancestors */
|
|
#define LIB3MF_ERROR_INVALIDATTACHMENTSTREAM 131 /** An attachment stream is invalid */
|
|
#define LIB3MF_ERROR_INVALIDPROPERTYCOUNT 132 /** Invalid property count. */
|
|
#define LIB3MF_ERROR_UNKOWNPROGRESSIDENTIFIER 140 /** A progress identifier is unknown */
|
|
#define LIB3MF_ERROR_ELEMENTCOUNTEXCEEDSLIMIT 141 /** An element buffer exceeds its spec limit */
|
|
#define LIB3MF_ERROR_INVALIDRESOURCE 142 /** A resource is invalid */
|
|
#define LIB3MF_ERROR_INVALIDLEVELSET 143 /** A level set is invalid */
|
|
#define LIB3MF_ERROR_COULDNOTFINDTRIANGLESET 144 /** Could not find triangle set */
|
|
#define LIB3MF_ERROR_INVALIDTRIANGLESETINDEX 145 /** Invalid triangle set index */
|
|
#define LIB3MF_ERROR_BEAMLATTICE_INVALID_OBJECTTYPE 2000 /** This object type is not valid for beamlattices */
|
|
#define LIB3MF_ERROR_INVALIDKEYSTORE 3000 /** The keystore object is invalid */
|
|
#define LIB3MF_ERROR_INVALIDKEYSTORECONSUMER 3001 /** The consumer keystore object is invalid */
|
|
#define LIB3MF_ERROR_KEYSTORECONSUMERNOTFOUND 3002 /** A consumer has not been found */
|
|
#define LIB3MF_ERROR_KEYSTORERESOURCEDATANOTFOUND 3003 /** A resource data has not been found */
|
|
#define LIB3MF_ERROR_SECURECONTEXTNOTREGISTERED 3004 /** A Key or Conentent encryption callback has not been registered */
|
|
#define LIB3MF_ERROR_INVALIDKEYSIZE 3005 /** The key size is invalid */
|
|
#define LIB3MF_ERROR_INCOMPATIBLEPORTTYPES 4000 /** Link could not be added, the port types are incompatible */
|
|
#define LIB3MF_ERROR_GRAPHISCYCLIC 4001 /** The functin graph is cyclic. Only dircected graphs are valid and can be topological sorted. */
|
|
#define LIB3MF_ERROR_INPUTNOTSET 4002 /** The input of a node is not set. */
|
|
#define LIB3MF_ERROR_INVALIDNODECONFIGURATION 4003 /** The selected node configuration is not supported */
|
|
|
|
/*************************************************************************************************************************
|
|
Error strings for Lib3MF
|
|
**************************************************************************************************************************/
|
|
|
|
inline const char * LIB3MF_GETERRORSTRING (Lib3MFResult nErrorCode) {
|
|
switch (nErrorCode) {
|
|
case LIB3MF_SUCCESS: return "no error";
|
|
case LIB3MF_ERROR_NOTIMPLEMENTED: return "functionality not implemented";
|
|
case LIB3MF_ERROR_INVALIDPARAM: return "an invalid parameter was passed";
|
|
case LIB3MF_ERROR_INVALIDCAST: return "a type cast failed";
|
|
case LIB3MF_ERROR_BUFFERTOOSMALL: return "a provided buffer is too small";
|
|
case LIB3MF_ERROR_GENERICEXCEPTION: return "a generic exception occurred";
|
|
case LIB3MF_ERROR_COULDNOTLOADLIBRARY: return "the library could not be loaded";
|
|
case LIB3MF_ERROR_COULDNOTFINDLIBRARYEXPORT: return "a required exported symbol could not be found in the library";
|
|
case LIB3MF_ERROR_INCOMPATIBLEBINARYVERSION: return "the version of the binary interface does not match the bindings interface";
|
|
case LIB3MF_ERROR_CALCULATIONABORTED: return "a calculation has been aborted";
|
|
case LIB3MF_ERROR_SHOULDNOTBECALLED: return "functionality should not be called";
|
|
case LIB3MF_ERROR_READERCLASSUNKNOWN: return "the queried reader class is unknown";
|
|
case LIB3MF_ERROR_WRITERCLASSUNKNOWN: return "the queried writer class is unknown";
|
|
case LIB3MF_ERROR_ITERATORINVALIDINDEX: return "the current index of an iterator is invalid";
|
|
case LIB3MF_ERROR_INVALIDMODELRESOURCE: return "no Model Resource has been given";
|
|
case LIB3MF_ERROR_RESOURCENOTFOUND: return "Resource not found";
|
|
case LIB3MF_ERROR_INVALIDMODEL: return "A model is invalid";
|
|
case LIB3MF_ERROR_INVALIDOBJECT: return "An object is invalid";
|
|
case LIB3MF_ERROR_INVALIDMESHOBJECT: return "A mesh object is invalid";
|
|
case LIB3MF_ERROR_INVALIDCOMPONENTSOBJECT: return "A components object is invalid";
|
|
case LIB3MF_ERROR_INVALIDCOMPONENT: return "A component is invalid";
|
|
case LIB3MF_ERROR_INVALIDBUILDITEM: return "A build item is invalid";
|
|
case LIB3MF_ERROR_INVALIDBASEMATERIALGROUP: return "A basematerialgroup is invalid";
|
|
case LIB3MF_ERROR_INVALIDSLICESTACKRESOURCE: return "A slicestack resource is invalid";
|
|
case LIB3MF_ERROR_INVALIDTEXTURERESOURCE: return "A texture resource is invalid";
|
|
case LIB3MF_ERROR_INVALIDCOLORGROUP: return "A color group resource is invalid";
|
|
case LIB3MF_ERROR_INVALIDTEXTURE2DGROUP: return "A texture2d group resource is invalid";
|
|
case LIB3MF_ERROR_INVALIDCOMPOSITEMATERIALS: return "A composite materials resource is invalid";
|
|
case LIB3MF_ERROR_INVALIDMULTIPROPERTYGROUP: return "A MultiPropertyGroup resource is invalid";
|
|
case LIB3MF_ERROR_INVALIDRESOURCEINDEX: return "A resource index is invalid";
|
|
case LIB3MF_ERROR_ATTACHMENTNOTFOUND: return "Attachment not found";
|
|
case LIB3MF_ERROR_FORBIDDENCYCLICREFERENCE: return "A component references one of its ancestors";
|
|
case LIB3MF_ERROR_INVALIDATTACHMENTSTREAM: return "An attachment stream is invalid";
|
|
case LIB3MF_ERROR_INVALIDPROPERTYCOUNT: return "Invalid property count.";
|
|
case LIB3MF_ERROR_UNKOWNPROGRESSIDENTIFIER: return "A progress identifier is unknown";
|
|
case LIB3MF_ERROR_ELEMENTCOUNTEXCEEDSLIMIT: return "An element buffer exceeds its spec limit";
|
|
case LIB3MF_ERROR_INVALIDRESOURCE: return "A resource is invalid";
|
|
case LIB3MF_ERROR_INVALIDLEVELSET: return "A level set is invalid";
|
|
case LIB3MF_ERROR_COULDNOTFINDTRIANGLESET: return "Could not find triangle set";
|
|
case LIB3MF_ERROR_INVALIDTRIANGLESETINDEX: return "Invalid triangle set index";
|
|
case LIB3MF_ERROR_BEAMLATTICE_INVALID_OBJECTTYPE: return "This object type is not valid for beamlattices";
|
|
case LIB3MF_ERROR_INVALIDKEYSTORE: return "The keystore object is invalid";
|
|
case LIB3MF_ERROR_INVALIDKEYSTORECONSUMER: return "The consumer keystore object is invalid";
|
|
case LIB3MF_ERROR_KEYSTORECONSUMERNOTFOUND: return "A consumer has not been found";
|
|
case LIB3MF_ERROR_KEYSTORERESOURCEDATANOTFOUND: return "A resource data has not been found";
|
|
case LIB3MF_ERROR_SECURECONTEXTNOTREGISTERED: return "A Key or Conentent encryption callback has not been registered";
|
|
case LIB3MF_ERROR_INVALIDKEYSIZE: return "The key size is invalid";
|
|
case LIB3MF_ERROR_INCOMPATIBLEPORTTYPES: return "Link could not be added, the port types are incompatible";
|
|
case LIB3MF_ERROR_GRAPHISCYCLIC: return "The functin graph is cyclic. Only dircected graphs are valid and can be topological sorted.";
|
|
case LIB3MF_ERROR_INPUTNOTSET: return "The input of a node is not set.";
|
|
case LIB3MF_ERROR_INVALIDNODECONFIGURATION: return "The selected node configuration is not supported";
|
|
default: return "unknown error";
|
|
}
|
|
}
|
|
|
|
/*************************************************************************************************************************
|
|
Declaration of handle classes
|
|
**************************************************************************************************************************/
|
|
|
|
typedef Lib3MFHandle Lib3MF_Base;
|
|
typedef Lib3MFHandle Lib3MF_Writer;
|
|
typedef Lib3MFHandle Lib3MF_Reader;
|
|
typedef Lib3MFHandle Lib3MF_PackagePart;
|
|
typedef Lib3MFHandle Lib3MF_Resource;
|
|
typedef Lib3MFHandle Lib3MF_ResourceIterator;
|
|
typedef Lib3MFHandle Lib3MF_SliceStackIterator;
|
|
typedef Lib3MFHandle Lib3MF_ObjectIterator;
|
|
typedef Lib3MFHandle Lib3MF_MeshObjectIterator;
|
|
typedef Lib3MFHandle Lib3MF_ComponentsObjectIterator;
|
|
typedef Lib3MFHandle Lib3MF_Texture2DIterator;
|
|
typedef Lib3MFHandle Lib3MF_BaseMaterialGroupIterator;
|
|
typedef Lib3MFHandle Lib3MF_ColorGroupIterator;
|
|
typedef Lib3MFHandle Lib3MF_Texture2DGroupIterator;
|
|
typedef Lib3MFHandle Lib3MF_CompositeMaterialsIterator;
|
|
typedef Lib3MFHandle Lib3MF_MultiPropertyGroupIterator;
|
|
typedef Lib3MFHandle Lib3MF_Image3DIterator;
|
|
typedef Lib3MFHandle Lib3MF_FunctionIterator;
|
|
typedef Lib3MFHandle Lib3MF_LevelSetIterator;
|
|
typedef Lib3MFHandle Lib3MF_MetaData;
|
|
typedef Lib3MFHandle Lib3MF_MetaDataGroup;
|
|
typedef Lib3MFHandle Lib3MF_TriangleSet;
|
|
typedef Lib3MFHandle Lib3MF_Object;
|
|
typedef Lib3MFHandle Lib3MF_MeshObject;
|
|
typedef Lib3MFHandle Lib3MF_LevelSet;
|
|
typedef Lib3MFHandle Lib3MF_BeamLattice;
|
|
typedef Lib3MFHandle Lib3MF_FunctionReference;
|
|
typedef Lib3MFHandle Lib3MF_VolumeDataColor;
|
|
typedef Lib3MFHandle Lib3MF_MaterialMapping;
|
|
typedef Lib3MFHandle Lib3MF_VolumeDataComposite;
|
|
typedef Lib3MFHandle Lib3MF_VolumeDataProperty;
|
|
typedef Lib3MFHandle Lib3MF_VolumeData;
|
|
typedef Lib3MFHandle Lib3MF_Component;
|
|
typedef Lib3MFHandle Lib3MF_ComponentsObject;
|
|
typedef Lib3MFHandle Lib3MF_BeamSet;
|
|
typedef Lib3MFHandle Lib3MF_BaseMaterialGroup;
|
|
typedef Lib3MFHandle Lib3MF_ColorGroup;
|
|
typedef Lib3MFHandle Lib3MF_Texture2DGroup;
|
|
typedef Lib3MFHandle Lib3MF_CompositeMaterials;
|
|
typedef Lib3MFHandle Lib3MF_MultiPropertyGroup;
|
|
typedef Lib3MFHandle Lib3MF_Image3D;
|
|
typedef Lib3MFHandle Lib3MF_ImageStack;
|
|
typedef Lib3MFHandle Lib3MF_Attachment;
|
|
typedef Lib3MFHandle Lib3MF_Texture2D;
|
|
typedef Lib3MFHandle Lib3MF_ImplicitPort;
|
|
typedef Lib3MFHandle Lib3MF_Iterator;
|
|
typedef Lib3MFHandle Lib3MF_ImplicitPortIterator;
|
|
typedef Lib3MFHandle Lib3MF_ImplicitNode;
|
|
typedef Lib3MFHandle Lib3MF_OneInputNode;
|
|
typedef Lib3MFHandle Lib3MF_SinNode;
|
|
typedef Lib3MFHandle Lib3MF_CosNode;
|
|
typedef Lib3MFHandle Lib3MF_TanNode;
|
|
typedef Lib3MFHandle Lib3MF_ArcSinNode;
|
|
typedef Lib3MFHandle Lib3MF_ArcCosNode;
|
|
typedef Lib3MFHandle Lib3MF_ArcTanNode;
|
|
typedef Lib3MFHandle Lib3MF_SinhNode;
|
|
typedef Lib3MFHandle Lib3MF_CoshNode;
|
|
typedef Lib3MFHandle Lib3MF_TanhNode;
|
|
typedef Lib3MFHandle Lib3MF_RoundNode;
|
|
typedef Lib3MFHandle Lib3MF_CeilNode;
|
|
typedef Lib3MFHandle Lib3MF_FloorNode;
|
|
typedef Lib3MFHandle Lib3MF_SignNode;
|
|
typedef Lib3MFHandle Lib3MF_FractNode;
|
|
typedef Lib3MFHandle Lib3MF_AbsNode;
|
|
typedef Lib3MFHandle Lib3MF_ExpNode;
|
|
typedef Lib3MFHandle Lib3MF_LogNode;
|
|
typedef Lib3MFHandle Lib3MF_Log2Node;
|
|
typedef Lib3MFHandle Lib3MF_Log10Node;
|
|
typedef Lib3MFHandle Lib3MF_LengthNode;
|
|
typedef Lib3MFHandle Lib3MF_TransposeNode;
|
|
typedef Lib3MFHandle Lib3MF_InverseNode;
|
|
typedef Lib3MFHandle Lib3MF_SqrtNode;
|
|
typedef Lib3MFHandle Lib3MF_ResourceIdNode;
|
|
typedef Lib3MFHandle Lib3MF_TwoInputNode;
|
|
typedef Lib3MFHandle Lib3MF_AdditionNode;
|
|
typedef Lib3MFHandle Lib3MF_SubtractionNode;
|
|
typedef Lib3MFHandle Lib3MF_MultiplicationNode;
|
|
typedef Lib3MFHandle Lib3MF_DivisionNode;
|
|
typedef Lib3MFHandle Lib3MF_DotNode;
|
|
typedef Lib3MFHandle Lib3MF_CrossNode;
|
|
typedef Lib3MFHandle Lib3MF_ArcTan2Node;
|
|
typedef Lib3MFHandle Lib3MF_MatVecMultiplicationNode;
|
|
typedef Lib3MFHandle Lib3MF_MinNode;
|
|
typedef Lib3MFHandle Lib3MF_MaxNode;
|
|
typedef Lib3MFHandle Lib3MF_FmodNode;
|
|
typedef Lib3MFHandle Lib3MF_ModNode;
|
|
typedef Lib3MFHandle Lib3MF_PowNode;
|
|
typedef Lib3MFHandle Lib3MF_SelectNode;
|
|
typedef Lib3MFHandle Lib3MF_ClampNode;
|
|
typedef Lib3MFHandle Lib3MF_ComposeVectorNode;
|
|
typedef Lib3MFHandle Lib3MF_VectorFromScalarNode;
|
|
typedef Lib3MFHandle Lib3MF_DecomposeVectorNode;
|
|
typedef Lib3MFHandle Lib3MF_ComposeMatrixNode;
|
|
typedef Lib3MFHandle Lib3MF_MatrixFromRowsNode;
|
|
typedef Lib3MFHandle Lib3MF_MatrixFromColumnsNode;
|
|
typedef Lib3MFHandle Lib3MF_ConstantNode;
|
|
typedef Lib3MFHandle Lib3MF_ConstVecNode;
|
|
typedef Lib3MFHandle Lib3MF_ConstMatNode;
|
|
typedef Lib3MFHandle Lib3MF_MeshNode;
|
|
typedef Lib3MFHandle Lib3MF_UnsignedMeshNode;
|
|
typedef Lib3MFHandle Lib3MF_BeamLatticeNode;
|
|
typedef Lib3MFHandle Lib3MF_FunctionGradientNode;
|
|
typedef Lib3MFHandle Lib3MF_NormalizeDistanceNode;
|
|
typedef Lib3MFHandle Lib3MF_FunctionCallNode;
|
|
typedef Lib3MFHandle Lib3MF_NodeIterator;
|
|
typedef Lib3MFHandle Lib3MF_Function;
|
|
typedef Lib3MFHandle Lib3MF_ImplicitFunction;
|
|
typedef Lib3MFHandle Lib3MF_FunctionFromImage3D;
|
|
typedef Lib3MFHandle Lib3MF_BuildItem;
|
|
typedef Lib3MFHandle Lib3MF_BuildItemIterator;
|
|
typedef Lib3MFHandle Lib3MF_Slice;
|
|
typedef Lib3MFHandle Lib3MF_SliceStack;
|
|
typedef Lib3MFHandle Lib3MF_Consumer;
|
|
typedef Lib3MFHandle Lib3MF_AccessRight;
|
|
typedef Lib3MFHandle Lib3MF_ContentEncryptionParams;
|
|
typedef Lib3MFHandle Lib3MF_ResourceData;
|
|
typedef Lib3MFHandle Lib3MF_ResourceDataGroup;
|
|
typedef Lib3MFHandle Lib3MF_KeyStore;
|
|
typedef Lib3MFHandle Lib3MF_Model;
|
|
|
|
namespace Lib3MF {
|
|
|
|
/*************************************************************************************************************************
|
|
Declaration of enums
|
|
**************************************************************************************************************************/
|
|
|
|
enum class ePropertyType : Lib3MF_int32 {
|
|
NoPropertyType = 0,
|
|
BaseMaterial = 1,
|
|
TexCoord = 2,
|
|
Colors = 3,
|
|
Composite = 4,
|
|
Multi = 5
|
|
};
|
|
|
|
enum class eSlicesMeshResolution : Lib3MF_int32 {
|
|
Fullres = 0,
|
|
Lowres = 1
|
|
};
|
|
|
|
enum class eModelUnit : Lib3MF_int32 {
|
|
MicroMeter = 0,
|
|
MilliMeter = 1,
|
|
CentiMeter = 2,
|
|
Inch = 3,
|
|
Foot = 4,
|
|
Meter = 5
|
|
};
|
|
|
|
enum class eObjectType : Lib3MF_int32 {
|
|
Other = 0,
|
|
Model = 1,
|
|
Support = 2,
|
|
SolidSupport = 3,
|
|
Surface = 4
|
|
};
|
|
|
|
enum class eTextureType : Lib3MF_int32 {
|
|
Unknown = 0,
|
|
PNG = 1,
|
|
JPEG = 2
|
|
};
|
|
|
|
enum class eTextureTileStyle : Lib3MF_int32 {
|
|
Wrap = 0,
|
|
Mirror = 1,
|
|
Clamp = 2,
|
|
NoTileStyle = 3
|
|
};
|
|
|
|
enum class eTextureFilter : Lib3MF_int32 {
|
|
Auto = 0,
|
|
Linear = 1,
|
|
Nearest = 2
|
|
};
|
|
|
|
enum class eBeamLatticeCapMode : Lib3MF_int32 {
|
|
Sphere = 0,
|
|
HemiSphere = 1,
|
|
Butt = 2
|
|
};
|
|
|
|
enum class eBeamLatticeClipMode : Lib3MF_int32 {
|
|
NoClipMode = 0,
|
|
Inside = 1,
|
|
Outside = 2
|
|
};
|
|
|
|
enum class eBeamLatticeBallMode : Lib3MF_int32 {
|
|
BeamLatticeBallModeNone = 0,
|
|
Mixed = 1,
|
|
All = 2
|
|
};
|
|
|
|
enum class eProgressIdentifier : Lib3MF_int32 {
|
|
QUERYCANCELED = 0,
|
|
DONE = 1,
|
|
CLEANUP = 2,
|
|
READSTREAM = 3,
|
|
EXTRACTOPCPACKAGE = 4,
|
|
READNONROOTMODELS = 5,
|
|
READROOTMODEL = 6,
|
|
READRESOURCES = 7,
|
|
READMESH = 8,
|
|
READSLICES = 9,
|
|
READBUILD = 10,
|
|
READCUSTOMATTACHMENT = 11,
|
|
READTEXTURETACHMENTS = 12,
|
|
CREATEOPCPACKAGE = 13,
|
|
WRITEMODELSTOSTREAM = 14,
|
|
WRITEROOTMODEL = 15,
|
|
WRITENONROOTMODELS = 16,
|
|
WRITEATTACHMENTS = 17,
|
|
WRITECONTENTTYPES = 18,
|
|
WRITENOBJECTS = 19,
|
|
WRITENODES = 20,
|
|
WRITETRIANGLES = 21,
|
|
WRITESLICES = 22,
|
|
WRITEKEYSTORE = 23
|
|
};
|
|
|
|
enum class eBlendMethod : Lib3MF_int32 {
|
|
NoBlendMethod = 0,
|
|
Mix = 1,
|
|
Multiply = 2
|
|
};
|
|
|
|
enum class eChannelName : Lib3MF_int32 {
|
|
Red = 0,
|
|
Green = 1,
|
|
Blue = 2,
|
|
Alpha = 3
|
|
};
|
|
|
|
enum class eCompositionMethod : Lib3MF_int32 {
|
|
WeightedSum = 0,
|
|
Multiply = 1,
|
|
Min = 2,
|
|
Max = 3,
|
|
Mask = 4
|
|
};
|
|
|
|
enum class eCompositionSpace : Lib3MF_int32 {
|
|
Raw = 0,
|
|
LinearColor = 1
|
|
};
|
|
|
|
/**
|
|
* enum class eImplicitNodeType - The type of the node
|
|
*/
|
|
enum class eImplicitNodeType : Lib3MF_int32 {
|
|
Addition = 0, /** Adds to values (scalar or vector) */
|
|
Subtraction = 1, /** Subtracts two values (scalar or vector) */
|
|
Multiplication = 2, /** Multiplies two values (scalar or vector) */
|
|
Division = 3, /** Divides two values (scalar or vector) */
|
|
Constant = 4, /** A constant scalar value */
|
|
ConstVec = 5, /** A constant vector value */
|
|
ConstMat = 6, /** A constant matrix value */
|
|
ComposeVector = 7, /** Creates a vector from three scalar values */
|
|
DecomposeVector = 8, /** Decomposes a vector into three scalar values */
|
|
ComposeMatrix = 9, /** Creates a matrix from nine scalar values */
|
|
MatrixFromColumns = 10, /** Creates a matrix from three column vector values */
|
|
MatrixFromRows = 11, /** Creates a matrix from three row vector values */
|
|
Dot = 12, /** Calculates the dot product of two vector values */
|
|
Cross = 13, /** Calculates the cross product of two vector values */
|
|
MatVecMultiplication = 14, /** Multiplies a matrix with a vector */
|
|
Transpose = 15, /** Transposes a matrix */
|
|
Inverse = 16, /** Computes the inverse of a matrix */
|
|
Sinus = 17, /** Calculates the sine */
|
|
Cosinus = 18, /** Calculates the cosine */
|
|
Tan = 19, /** Calculates the tangent */
|
|
ArcSin = 20, /** Calculates the arcsine */
|
|
ArcCos = 21, /** Calculates the arccosine */
|
|
ArcTan = 22, /** Calculates the arctangent */
|
|
ArcTan2 = 23, /** Calculates the arctangent */
|
|
Min = 24, /** Calculates the minimum of two values */
|
|
Max = 25, /** Calculates the maximum of two values */
|
|
Abs = 26, /** Calculates the absolute value */
|
|
Fmod = 27, /** Computes the remainder of the divison of the inputs (same behavior as C fmod) */
|
|
Pow = 28, /** Calculates the power A^B */
|
|
Sqrt = 29, /** Calculates the square root */
|
|
Exp = 30, /** Exponential function */
|
|
Log = 31, /** Natural logarithm */
|
|
Log2 = 32, /** Logarithm to the base 2 */
|
|
Log10 = 33, /** Logarithm to the base 10 */
|
|
Select = 34, /** If A is less than B returns C, else D */
|
|
Clamp = 35, /** Clamps the input value to min and max */
|
|
Sinh = 36, /** Calculates the hyperbolic sine */
|
|
Cosh = 37, /** Calculates the hyperbolic cosine */
|
|
Tanh = 38, /** Calculates the hyperbolic tangent */
|
|
Round = 39, /** Rounds a scalar value to the nearest integer */
|
|
Ceil = 40, /** Rounds a scalar value up to the nearest integer */
|
|
Floor = 41, /** Rounds a scalar value down to the nearest integer */
|
|
Sign = 42, /** Returns the sign */
|
|
Fract = 43, /** Returns the fractional part */
|
|
FunctionCall = 44, /** Calls a function */
|
|
Mesh = 45, /** Calculates the signed distance to a mesh */
|
|
Length = 46, /** Calculates the length of a vector */
|
|
ConstResourceID = 47, /** Selects a resource (function, mesh etc.) */
|
|
VectorFromScalar = 48, /** Creates a vector from one scalar value */
|
|
UnsignedMesh = 49, /** Calculates the unsigned distance to a mesh */
|
|
Mod = 50, /** Calculates the modulo of two values (same behaviour as glsl mod) */
|
|
BeamLattice = 51, /** Calculates the signed distance to a beam lattice */
|
|
FunctionGradient = 52, /** Calculates the gradient of a function */
|
|
NormalizeDistance = 53 /** Normalizes a distance field */
|
|
};
|
|
|
|
/**
|
|
* enum class eImplicitPortType - The type of the port
|
|
*/
|
|
enum class eImplicitPortType : Lib3MF_int32 {
|
|
Scalar = 0, /** Scalar */
|
|
Vector = 1, /** Vector */
|
|
Matrix = 2, /** 4x4 Matrix */
|
|
ResourceID = 3 /** Resource ID */
|
|
};
|
|
|
|
/**
|
|
* enum class eImplicitNodeConfiguration - Defines the input and output types of a node
|
|
*/
|
|
enum class eImplicitNodeConfiguration : Lib3MF_int32 {
|
|
Default = 0, /** Default */
|
|
ScalarToScalar = 1, /** Scalar -> Scalar */
|
|
VectorToVector = 2, /** Vector -> Vector */
|
|
MatrixToMatrix = 3 /** Matrix -> Matrix */
|
|
};
|
|
|
|
enum class eEncryptionAlgorithm : Lib3MF_int32 {
|
|
AES256_GCM = 1 /** http://www.w3.org/2009/xmlenc11#aes256-gcm */
|
|
};
|
|
|
|
enum class eWrappingAlgorithm : Lib3MF_int32 {
|
|
RSA_OAEP = 0 /** http://www.w3.org/2009/xmlenc11#rsa-oaep */
|
|
};
|
|
|
|
enum class eMgfAlgorithm : Lib3MF_int32 {
|
|
MGF1_SHA1 = 160, /** http://www.w3.org/2009/xmlenc11#mgf1sha1 */
|
|
MGF1_SHA224 = 224, /** http://www.w3.org/2009/xmlenc11#mgf1sha224 */
|
|
MGF1_SHA256 = 256, /** http://www.w3.org/2009/xmlenc11#mgf1sha256 */
|
|
MGF1_SHA384 = 384, /** http://www.w3.org/2009/xmlenc11#mgf1sha384 */
|
|
MGF1_SHA512 = 512 /** http://www.w3.org/2009/xmlenc11#mgf1sha512 */
|
|
};
|
|
|
|
enum class eDigestMethod : Lib3MF_int32 {
|
|
SHA1 = 160, /** http://www.w3.org/2000/09/xmldsig#sha1 */
|
|
SHA256 = 256 /** http://www.w3.org/2001/04/xmlenc#sha256 */
|
|
};
|
|
|
|
enum class eCompression : Lib3MF_int32 {
|
|
NoCompression = 0, /** No compression applied */
|
|
Deflate = 1 /** Deflate compression applied */
|
|
};
|
|
|
|
/*************************************************************************************************************************
|
|
Declaration of structs
|
|
**************************************************************************************************************************/
|
|
|
|
#pragma pack (1)
|
|
|
|
typedef struct sTriangle {
|
|
Lib3MF_uint32 m_Indices[3];
|
|
} sTriangle;
|
|
|
|
typedef struct sTriangleProperties {
|
|
Lib3MF_uint32 m_ResourceID;
|
|
Lib3MF_uint32 m_PropertyIDs[3];
|
|
} sTriangleProperties;
|
|
|
|
typedef struct sPosition {
|
|
Lib3MF_single m_Coordinates[3];
|
|
} sPosition;
|
|
|
|
typedef struct sPosition2D {
|
|
Lib3MF_single m_Coordinates[2];
|
|
} sPosition2D;
|
|
|
|
typedef struct sCompositeConstituent {
|
|
Lib3MF_uint32 m_PropertyID;
|
|
Lib3MF_double m_MixingRatio;
|
|
} sCompositeConstituent;
|
|
|
|
typedef struct sMultiPropertyLayer {
|
|
Lib3MF_uint32 m_ResourceID;
|
|
eBlendMethod m_TheBlendMethod;
|
|
} sMultiPropertyLayer;
|
|
|
|
typedef struct sTex2Coord {
|
|
Lib3MF_double m_U;
|
|
Lib3MF_double m_V;
|
|
} sTex2Coord;
|
|
|
|
typedef struct sTransform {
|
|
Lib3MF_single m_Fields[4][3];
|
|
} sTransform;
|
|
|
|
typedef struct sBox {
|
|
Lib3MF_single m_MinCoordinate[3];
|
|
Lib3MF_single m_MaxCoordinate[3];
|
|
} sBox;
|
|
|
|
typedef struct sColor {
|
|
Lib3MF_uint8 m_Red;
|
|
Lib3MF_uint8 m_Green;
|
|
Lib3MF_uint8 m_Blue;
|
|
Lib3MF_uint8 m_Alpha;
|
|
} sColor;
|
|
|
|
typedef struct sBeam {
|
|
Lib3MF_uint32 m_Indices[2];
|
|
Lib3MF_double m_Radii[2];
|
|
eBeamLatticeCapMode m_CapModes[2];
|
|
} sBeam;
|
|
|
|
typedef struct sBall {
|
|
Lib3MF_uint32 m_Index;
|
|
Lib3MF_double m_Radius;
|
|
} sBall;
|
|
|
|
typedef struct sVector {
|
|
Lib3MF_double m_Coordinates[3];
|
|
} sVector;
|
|
|
|
typedef struct sMatrix4x4 {
|
|
Lib3MF_double m_Field[4][4];
|
|
} sMatrix4x4;
|
|
|
|
#pragma pack ()
|
|
|
|
/*************************************************************************************************************************
|
|
Declaration of function pointers
|
|
**************************************************************************************************************************/
|
|
|
|
/**
|
|
* ProgressCallback - A callback function
|
|
*
|
|
* @param[out] pAbort - Returns whether the calculation should be aborted
|
|
* @param[in] dProgressValue - The value of the progress function: values in the interval [0,1] are progress; < mean no progress update
|
|
* @param[in] eProgressIdentifier - An identifier of progress
|
|
* @param[in] pUserData - Userdata that is passed to the callback function
|
|
*/
|
|
typedef void(*ProgressCallback)(bool *, Lib3MF_double, Lib3MF::eProgressIdentifier, Lib3MF_pvoid);
|
|
|
|
/**
|
|
* WriteCallback - Callback to call for writing a data chunk
|
|
*
|
|
* @param[in] nByteData - Pointer to the data to be written
|
|
* @param[in] nNumBytes - Number of bytes to write
|
|
* @param[in] pUserData - Userdata that is passed to the callback function
|
|
*/
|
|
typedef void(*WriteCallback)(Lib3MF_uint64, Lib3MF_uint64, Lib3MF_pvoid);
|
|
|
|
/**
|
|
* ReadCallback - Callback to call for reading a data chunk
|
|
*
|
|
* @param[in] nByteData - Pointer to a buffer to read data into
|
|
* @param[in] nNumBytes - Number of bytes to read
|
|
* @param[in] pUserData - Userdata that is passed to the callback function
|
|
*/
|
|
typedef void(*ReadCallback)(Lib3MF_uint64, Lib3MF_uint64, Lib3MF_pvoid);
|
|
|
|
/**
|
|
* SeekCallback - Callback to call for seeking in the stream
|
|
*
|
|
* @param[in] nPosition - Position in the stream to move to
|
|
* @param[in] pUserData - Userdata that is passed to the callback function
|
|
*/
|
|
typedef void(*SeekCallback)(Lib3MF_uint64, Lib3MF_pvoid);
|
|
|
|
/**
|
|
* RandomNumberCallback - Callback to generate random numbers
|
|
*
|
|
* @param[in] nByteData - Pointer to a buffer to read data into
|
|
* @param[in] nNumBytes - Size of available bytes in the buffer
|
|
* @param[in] pUserData - Userdata that is passed to the callback function
|
|
* @param[out] pBytesWritten - Number of bytes generated when succeed. 0 or less if failed.
|
|
*/
|
|
typedef void(*RandomNumberCallback)(Lib3MF_uint64, Lib3MF_uint64, Lib3MF_pvoid, Lib3MF_uint64 *);
|
|
|
|
/**
|
|
* KeyWrappingCallback - A callback used to wrap (encrypt) the content key available in keystore resource group
|
|
*
|
|
* @param[in] pKEKParams - The information about the parameters used used to wrap the key to the contents
|
|
* @param[in] nInBufferBufferSize - Number of elements in buffer
|
|
* @param[in] pInBufferBuffer - uint8 buffer of Buffer to the input value. When encrypting, this should be the plain key. When decrypting, this should be the key cipher.
|
|
* @param[in] nOutBufferBufferSize - Number of elements in buffer
|
|
* @param[out] pOutBufferNeededCount - will be filled with the count of the written elements, or needed buffer size.
|
|
* @param[out] pOutBufferBuffer - uint8 buffer of Buffer where the data will be placed. When encrypting, this will be the key cipher. When decrypting, this will be the plain key. When buffer is null, neededBytes contains the required bytes to run.
|
|
* @param[in] pUserData - Userdata that is passed to the callback function
|
|
* @param[out] pStatus - The needed/encrypted/decrypted bytes when succeed or zero when error.
|
|
*/
|
|
typedef void(*KeyWrappingCallback)(Lib3MF_AccessRight, Lib3MF_uint64, const Lib3MF_uint8 *, const Lib3MF_uint64, Lib3MF_uint64*, Lib3MF_uint8 *, Lib3MF_pvoid, Lib3MF_uint64 *);
|
|
|
|
/**
|
|
* ContentEncryptionCallback - A callback to encrypt/decrypt content called on each resource encrypted. This might be called several times depending on content size. If Input is not available(either null or size is 0), clients must return the result of authenticated tag generation/validation.
|
|
*
|
|
* @param[in] pCEKParams - The params of the encryption process. Client must set/check AuthenticationTag when closing the encryption/decryption process.
|
|
* @param[in] nInputBufferSize - Number of elements in buffer
|
|
* @param[in] pInputBuffer - uint8 buffer of Buffer to the original data. In encrypting, this will be the plain data. If decrypting, this will be the cipher data
|
|
* @param[in] nOutputBufferSize - Number of elements in buffer
|
|
* @param[out] pOutputNeededCount - will be filled with the count of the written elements, or needed buffer size.
|
|
* @param[out] pOutputBuffer - uint8 buffer of Buffer to hold the transformed data. When encrypting, this will be the cipher data. When decrypting, this shall be the plain data. If buffer is null, neededBytes return the necessary amount of bytes.
|
|
* @param[in] pUserData - Userdata that is passed to the callback function
|
|
* @param[out] pStatus - The needed/encrypted/decrypted/verified bytes when succeed or zero when error.
|
|
*/
|
|
typedef void(*ContentEncryptionCallback)(Lib3MF_ContentEncryptionParams, Lib3MF_uint64, const Lib3MF_uint8 *, const Lib3MF_uint64, Lib3MF_uint64*, Lib3MF_uint8 *, Lib3MF_pvoid, Lib3MF_uint64 *);
|
|
|
|
} // namespace Lib3MF;
|
|
|
|
// define legacy C-names for enums, structs and function types
|
|
typedef Lib3MF::ePropertyType eLib3MFPropertyType;
|
|
typedef Lib3MF::eSlicesMeshResolution eLib3MFSlicesMeshResolution;
|
|
typedef Lib3MF::eModelUnit eLib3MFModelUnit;
|
|
typedef Lib3MF::eObjectType eLib3MFObjectType;
|
|
typedef Lib3MF::eTextureType eLib3MFTextureType;
|
|
typedef Lib3MF::eTextureTileStyle eLib3MFTextureTileStyle;
|
|
typedef Lib3MF::eTextureFilter eLib3MFTextureFilter;
|
|
typedef Lib3MF::eBeamLatticeCapMode eLib3MFBeamLatticeCapMode;
|
|
typedef Lib3MF::eBeamLatticeClipMode eLib3MFBeamLatticeClipMode;
|
|
typedef Lib3MF::eBeamLatticeBallMode eLib3MFBeamLatticeBallMode;
|
|
typedef Lib3MF::eProgressIdentifier eLib3MFProgressIdentifier;
|
|
typedef Lib3MF::eBlendMethod eLib3MFBlendMethod;
|
|
typedef Lib3MF::eChannelName eLib3MFChannelName;
|
|
typedef Lib3MF::eCompositionMethod eLib3MFCompositionMethod;
|
|
typedef Lib3MF::eCompositionSpace eLib3MFCompositionSpace;
|
|
typedef Lib3MF::eImplicitNodeType eLib3MFImplicitNodeType;
|
|
typedef Lib3MF::eImplicitPortType eLib3MFImplicitPortType;
|
|
typedef Lib3MF::eImplicitNodeConfiguration eLib3MFImplicitNodeConfiguration;
|
|
typedef Lib3MF::eEncryptionAlgorithm eLib3MFEncryptionAlgorithm;
|
|
typedef Lib3MF::eWrappingAlgorithm eLib3MFWrappingAlgorithm;
|
|
typedef Lib3MF::eMgfAlgorithm eLib3MFMgfAlgorithm;
|
|
typedef Lib3MF::eDigestMethod eLib3MFDigestMethod;
|
|
typedef Lib3MF::eCompression eLib3MFCompression;
|
|
typedef Lib3MF::sTriangle sLib3MFTriangle;
|
|
typedef Lib3MF::sTriangleProperties sLib3MFTriangleProperties;
|
|
typedef Lib3MF::sPosition sLib3MFPosition;
|
|
typedef Lib3MF::sPosition2D sLib3MFPosition2D;
|
|
typedef Lib3MF::sCompositeConstituent sLib3MFCompositeConstituent;
|
|
typedef Lib3MF::sMultiPropertyLayer sLib3MFMultiPropertyLayer;
|
|
typedef Lib3MF::sTex2Coord sLib3MFTex2Coord;
|
|
typedef Lib3MF::sTransform sLib3MFTransform;
|
|
typedef Lib3MF::sBox sLib3MFBox;
|
|
typedef Lib3MF::sColor sLib3MFColor;
|
|
typedef Lib3MF::sBeam sLib3MFBeam;
|
|
typedef Lib3MF::sBall sLib3MFBall;
|
|
typedef Lib3MF::sVector sLib3MFVector;
|
|
typedef Lib3MF::sMatrix4x4 sLib3MFMatrix4x4;
|
|
typedef Lib3MF::ProgressCallback Lib3MFProgressCallback;
|
|
typedef Lib3MF::WriteCallback Lib3MFWriteCallback;
|
|
typedef Lib3MF::ReadCallback Lib3MFReadCallback;
|
|
typedef Lib3MF::SeekCallback Lib3MFSeekCallback;
|
|
typedef Lib3MF::RandomNumberCallback Lib3MFRandomNumberCallback;
|
|
typedef Lib3MF::KeyWrappingCallback Lib3MFKeyWrappingCallback;
|
|
typedef Lib3MF::ContentEncryptionCallback Lib3MFContentEncryptionCallback;
|
|
|
|
#endif // __LIB3MF_TYPES_HEADER_CPP
|