| #pragma once |
| |
| #ifndef PLASTIDEFORMERSTORAGE_H |
| #define PLASTIDEFORMERSTORAGE_H |
| |
| #include <memory> |
| |
| |
| #include "ext/plasticdeformer.h" |
| |
| #undef DVAPI |
| #undef DVVAR |
| #ifdef TNZEXT_EXPORTS |
| #define DVAPI DV_EXPORT_API |
| #define DVVAR DV_EXPORT_VAR |
| #else |
| #define DVAPI DV_IMPORT_API |
| #define DVVAR DV_IMPORT_VAR |
| #endif |
| |
| |
| |
| |
| |
| struct PlasticVisualSettings; |
| struct DrawableMeshImage; |
| |
| class PlasticSkeletonDeformation; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| struct DVAPI PlasticDeformerData { |
| PlasticDeformer m_deformer; |
| |
| std::unique_ptr<double[]> m_so; |
| std::unique_ptr<double[]> m_output; |
| |
| std::vector<int> m_faceHints; |
| |
| public: |
| PlasticDeformerData(); |
| ~PlasticDeformerData(); |
| |
| private: |
| |
| |
| PlasticDeformerData(const PlasticDeformerData &); |
| PlasticDeformerData &operator=(const PlasticDeformerData &); |
| }; |
| |
| |
| |
| |
| |
| struct DVAPI PlasticDeformerDataGroup { |
| std::unique_ptr<PlasticDeformerData[]> |
| m_datas; |
| std::vector<PlasticHandle> |
| m_handles; |
| std::vector<TPointD> |
| m_dstHandles; |
| |
| int m_compiled; |
| |
| int m_upToDate; |
| |
| |
| double m_outputFrame; |
| |
| |
| TAffine m_skeletonAffine; |
| |
| |
| double m_soMin, |
| m_soMax; |
| |
| std::vector<std::pair<int, int>> |
| m_sortedFaces; |
| |
| public: |
| PlasticDeformerDataGroup(); |
| ~PlasticDeformerDataGroup(); |
| |
| private: |
| |
| |
| PlasticDeformerDataGroup(const PlasticDeformerDataGroup &); |
| PlasticDeformerDataGroup &operator=(const PlasticDeformerDataGroup &); |
| }; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| class DVAPI PlasticDeformerStorage { |
| class Imp; |
| std::unique_ptr<Imp> m_imp; |
| |
| public: |
| enum DataType { |
| NONE = 0x0, |
| HANDLES = 0x1, |
| SO = 0x4, |
| MESH = 0x8, |
| |
| ALL = HANDLES | SO | MESH |
| }; |
| |
| public: |
| PlasticDeformerStorage(); |
| ~PlasticDeformerStorage(); |
| |
| static PlasticDeformerStorage *instance(); |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| const PlasticDeformerDataGroup *process( |
| double frame, const TMeshImage *meshImage, |
| const PlasticSkeletonDeformation *deformation, int skeletonId, |
| const TAffine &deformationToMeshAffine, DataType dataType = ALL); |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| static const PlasticDeformerDataGroup *processOnce( |
| double frame, const TMeshImage *meshImage, |
| const PlasticSkeletonDeformation *deformation, int skeletonId, |
| const TAffine &deformationToMeshAffine, DataType dataType = ALL); |
| |
| |
| |
| void invalidateMeshImage(const TMeshImage *meshImage, |
| int recompiledDataType = NONE); |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| void invalidateSkeleton(const PlasticSkeletonDeformation *deformation, |
| int skeletonId, int recompiledDataType = NONE); |
| |
| |
| |
| void invalidateDeformation(const PlasticSkeletonDeformation *deformation, |
| int recompiledDataType = NONE); |
| |
| |
| void releaseMeshData(const TMeshImage *meshImage); |
| |
| |
| void releaseSkeletonData(const PlasticSkeletonDeformation *deformation, |
| int skeletonId); |
| |
| |
| void releaseDeformationData(const PlasticSkeletonDeformation *deformation); |
| |
| |
| |
| void clear(); |
| |
| private: |
| |
| |
| |
| PlasticDeformerDataGroup *deformerData( |
| const TMeshImage *meshImage, |
| const PlasticSkeletonDeformation *deformation, int skeletonId); |
| }; |
| |
| #endif |