// // Copyright 2013 Pixar // // Licensed under the Apache License, Version 2.0 (the "Apache License") // with the following modification; you may not use this file except in // compliance with the Apache License and the following modification to it: // Section 6. Trademarks. is deleted and replaced with: // // 6. Trademarks. This License does not grant permission to use the trade // names, trademarks, service marks, or product names of the Licensor // and its affiliates, except as required to comply with Section 4(c) of // the License and to reproduce the content of the NOTICE file. // // You may obtain a copy of the Apache License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the Apache License with the above modification is // distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the Apache License for the specific // language governing permissions and limitations under the Apache License. // #ifndef OPENSUBDIV3_FAR_PATCH_TABLE_H #define OPENSUBDIV3_FAR_PATCH_TABLE_H #include "../version.h" #include "../far/patchDescriptor.h" #include "../far/patchParam.h" #include "../far/stencilTable.h" #include "../sdc/options.h" #include #include #include #include #include namespace OpenSubdiv { namespace OPENSUBDIV_VERSION { namespace Far { /// \brief Container for arrays of parametric patches /// /// PatchTable contain topology and parametric information about the patches /// generated by the Refinement process. Patches in the table are sorted into /// arrays based on their PatchDescriptor Type. /// /// Note : PatchTable can be accessed either using a PatchHandle or a /// combination of array and patch indices. /// /// XXXX manuelk we should add a PatchIterator that can dereference into /// a PatchHandle for fast linear traversal of the table /// class PatchTable { public: /// \brief Handle that can be used as unique patch identifier within PatchTable class PatchHandle { // XXXX manuelk members will eventually be made private public: friend class PatchTable; friend class PatchMap; Index arrayIndex, // Array index of the patch patchIndex, // Absolute Index of the patch vertIndex; // Relative offset to the first CV of the patch in array }; public: /// \brief Copy constructor PatchTable(PatchTable const & src); /// \brief Destructor ~PatchTable(); /// \brief True if the patches are of feature adaptive types bool IsFeatureAdaptive() const; /// \brief Returns the total number of control vertex indices in the table int GetNumControlVerticesTotal() const { return (int)_patchVerts.size(); } /// \brief Returns the total number of patches stored in the table int GetNumPatchesTotal() const; /// \brief Returns max vertex valence int GetMaxValence() const { return _maxValence; } /// \brief Returns the total number of ptex faces in the mesh int GetNumPtexFaces() const { return _numPtexFaces; } //@{ /// @name Individual patches /// /// \anchor individual_patches /// /// \brief Accessors for individual patches /// /// \brief Returns the PatchDescriptor for the patches in array 'array' PatchDescriptor GetPatchDescriptor(PatchHandle const & handle) const; /// \brief Returns the control vertex indices for the patch identified by 'handle' ConstIndexArray GetPatchVertices(PatchHandle const & handle) const; /// \brief Returns a PatchParam for the patch identified by 'handle' PatchParam GetPatchParam(PatchHandle const & handle) const; /// \brief Returns the control vertex indices for the patch 'patch' in array 'array' ConstIndexArray GetPatchVertices(int array, int patch) const; /// \brief Returns the PatchParam for the patch 'patch' in array 'array' PatchParam GetPatchParam(int array, int patch) const; //@} //@{ /// @name Arrays of patches /// /// \anchor arrays_of_patches /// /// \brief Accessors for arrays of patches of the same type /// /// \brief Returns the number of patch arrays in the table int GetNumPatchArrays() const; /// \brief Returns the number of patches in patch array 'array' int GetNumPatches(int array) const; /// \brief Returns the number of control vertices in patch array 'array' int GetNumControlVertices(int array) const; /// \brief Returns the PatchDescriptor for the patches in array 'array' PatchDescriptor GetPatchArrayDescriptor(int array) const; /// \brief Returns the control vertex indices for the patches in array 'array' ConstIndexArray GetPatchArrayVertices(int array) const; /// \brief Returns the PatchParams for the patches in array 'array' ConstPatchParamArray const GetPatchParams(int array) const; //@} //@{ /// @name End-Cap patches /// /// \anchor end_cap_patches /// /// \brief Accessors for end-cap patch additional data /// typedef Vtr::ConstArray ConstQuadOffsetsArray; /// \brief Returns the 'QuadOffsets' for the Gregory patch identified by 'handle' ConstQuadOffsetsArray GetPatchQuadOffsets(PatchHandle const & handle) const; typedef std::vector VertexValenceTable; /// \brief Returns the 'VertexValences' table (vertex neighborhoods table) VertexValenceTable const & GetVertexValenceTable() const { return _vertexValenceTable; } /// \brief Returns the basis conversion stencil table to get endcap patch points. /// This stencil is relative to the max level refined vertices. StencilTable const *GetEndCapVertexStencilTable() const { return _vertexStencilTable; } /// \brief Returns the varying stencil table for the endcap patches /// which has same ordering as the endcap vertex stencil table. StencilTable const *GetEndCapVaryingStencilTable() const { return _varyingStencilTable; } //@} //@{ /// @name Single-crease patches /// /// \anchor single_crease_patches /// /// \brief Accessors for single-crease patch edge sharpness /// /// \brief Returns the crease sharpness for the patch identified by 'handle' /// if it is a single-crease patch, or 0.0f float GetSingleCreasePatchSharpnessValue(PatchHandle const & handle) const; /// \brief Returns the crease sharpness for the patch 'patch' in array 'array' /// if it is a single-crease patch, or 0.0f float GetSingleCreasePatchSharpnessValue(int array, int patch) const; //@} //@{ /// @name Face-varying channels /// /// \anchor face_varying_channels /// /// \brief Accessors for face-varying channels /// /// \brief Returns the number of face-varying channels int GetNumFVarChannels() const; /// \brief Returns the interpolation mode for a given channel Sdc::Options::FVarLinearInterpolation GetFVarChannelLinearInterpolation(int channel) const; /// \brief Returns a descriptor for a given patch in a channel PatchDescriptor::Type GetFVarPatchType(int channel, PatchHandle const & handle) const; /// \brief Returns a descriptor for a given patch in a channel PatchDescriptor::Type GetFVarPatchType(int channel, int array, int patch) const; /// \brief Returns an array of descriptors for the patches in a channel Vtr::ConstArray GetFVarPatchTypes(int channel) const; /// \brief Returns the value indices for a given patch in a channel ConstIndexArray GetFVarPatchValues(int channel, PatchHandle const & handle) const; /// \brief Returns the value indices for a given patch in a channel ConstIndexArray GetFVarPatchValues(int channel, int array, int patch) const; /// \brief Returns an array of value indices for the patches in a channel ConstIndexArray GetFVarPatchesValues(int channel) const; //@} //@{ /// @name Direct accessors /// /// \warning These direct accessors are left for convenience, but they are /// likely going to be deprecated in future releases /// typedef std::vector PatchVertsTable; /// \brief Get the table of patch control vertices PatchVertsTable const & GetPatchControlVerticesTable() const { return _patchVerts; } /// \brief Returns the PatchParamTable (PatchParams order matches patch array sorting) PatchParamTable const & GetPatchParamTable() const { return _paramTable; } /// \brief Returns a sharpness index table for each patch (if exists) std::vector const &GetSharpnessIndexTable() const { return _sharpnessIndices; } /// \brief Returns sharpness values table std::vector const &GetSharpnessValues() const { return _sharpnessValues; } typedef std::vector QuadOffsetsTable; /// \brief Returns the quad-offsets table QuadOffsetsTable const & GetQuadOffsetsTable() const { return _quadOffsetsTable; } //@} /// debug helper void print() const; public: //@{ /// @name Evaluation methods /// /// \brief Evaluate basis functions for position and first derivatives at a /// given (s,t) parametric location of a patch. /// /// @param handle A patch handle indentifying the sub-patch containing the /// (s,t) location /// /// @param s Patch coordinate (in coarse face normalized space) /// /// @param t Patch coordinate (in coarse face normalized space) /// /// @param wP Weights (evaluated basis functions) for the position /// /// @param wDs Weights (evaluated basis functions) for derivative wrt s /// /// @param wDt Weights (evaluated basis functions) for derivative wrt t /// void EvaluateBasis(PatchHandle const & handle, float s, float t, float wP[], float wDs[], float wDt[]) const; //@} protected: friend class PatchTableFactory; // Factory constructor PatchTable(int maxvalence); Index getPatchIndex(int array, int patch) const; PatchParamArray getPatchParams(int arrayIndex); Index * getSharpnessIndices(Index arrayIndex); float * getSharpnessValues(Index arrayIndex); private: // // Patch arrays // struct PatchArray; typedef std::vector PatchArrayVector; PatchArray & getPatchArray(Index arrayIndex); PatchArray const & getPatchArray(Index arrayIndex) const; void reservePatchArrays(int numPatchArrays); void pushPatchArray(PatchDescriptor desc, int npatches, Index * vidx, Index * pidx, Index * qoidx=0); IndexArray getPatchArrayVertices(int arrayIndex); Index findPatchArray(PatchDescriptor desc); // // FVar patch channels // struct FVarPatchChannel; typedef std::vector FVarPatchChannelVector; FVarPatchChannel & getFVarPatchChannel(int channel); FVarPatchChannel const & getFVarPatchChannel(int channel) const; void allocateFVarPatchChannels(int numChannels); void allocateChannelValues(int channel, int numPatches, int numVerticesTotal); void setFVarPatchChannelLinearInterpolation(int channel, Sdc::Options::FVarLinearInterpolation interpolation); void setFVarPatchChannelPatchesType(int channel, PatchDescriptor::Type type); PatchDescriptor::Type getFVarPatchType(int channel, int patch) const; Vtr::Array getFVarPatchTypes(int channel); IndexArray getFVarPatchesValues(int channel); ConstIndexArray getFVarPatchValues(int channel, int patch) const; void setBicubicFVarPatchChannelValues(int channel, int patchSize, std::vector const & values); private: // // Topology // int _maxValence, // highest vertex valence found in the mesh _numPtexFaces; // total number of ptex faces PatchArrayVector _patchArrays; // Vector of descriptors for arrays of patches std::vector _patchVerts; // Indices of the control vertices of the patches PatchParamTable _paramTable; // PatchParam bitfields (one per patch) // // Extraordinary vertex closed-form evaluation / endcap basis conversion // // XXXtakahito: these data will probably be replaced with mask coefficient or something // SchemeWorker populates. // QuadOffsetsTable _quadOffsetsTable; // Quad offsets (for Gregory patches) VertexValenceTable _vertexValenceTable; // Vertex valence table (for Gregory patches) StencilTable const * _vertexStencilTable; // endcap basis conversion stencils StencilTable const * _varyingStencilTable; // endcap varying stencils (for convenience) // // Face-varying data // FVarPatchChannelVector _fvarChannels; // // 'single-crease' patch sharpness tables // std::vector _sharpnessIndices; // Indices of single-crease sharpness (one per patch) std::vector _sharpnessValues; // Sharpness values. }; } // end namespace Far } // end namespace OPENSUBDIV_VERSION using namespace OPENSUBDIV_VERSION; } // end namespace OpenSubdiv #endif /* OPENSUBDIV3_FAR_PATCH_TABLE */