2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// Copyright 2013 Pixar
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// 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:
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// 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.
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// You may obtain a copy of the Apache License at
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2013-07-18 21:19:50 +00:00
|
|
|
//
|
2013-09-26 19:04:57 +00:00
|
|
|
// 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.
|
2012-12-11 01:15:13 +00:00
|
|
|
//
|
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
#ifndef OPENSUBDIV3_FAR_PATCH_TABLE_FACTORY_H
|
|
|
|
#define OPENSUBDIV3_FAR_PATCH_TABLE_FACTORY_H
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
#include "../version.h"
|
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
#include "../far/patchTable.h"
|
2012-12-11 01:15:13 +00:00
|
|
|
|
|
|
|
namespace OpenSubdiv {
|
|
|
|
namespace OPENSUBDIV_VERSION {
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
namespace Far {
|
2014-03-20 21:52:42 +00:00
|
|
|
|
2015-05-26 03:34:50 +00:00
|
|
|
// Forward declarations (for internal implementation purposes):
|
2015-04-20 06:25:43 +00:00
|
|
|
class PtexIndices;
|
2014-09-05 22:07:46 +00:00
|
|
|
class TopologyRefiner;
|
2014-11-11 19:27:25 +00:00
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
class PatchTableFactory {
|
2014-09-05 22:07:46 +00:00
|
|
|
public:
|
2013-05-16 00:53:40 +00:00
|
|
|
|
2016-09-03 03:53:24 +00:00
|
|
|
/// \brief Public options for the PatchTable factory
|
|
|
|
///
|
2014-09-05 22:07:46 +00:00
|
|
|
struct Options {
|
2013-10-05 00:06:23 +00:00
|
|
|
|
2015-04-23 23:58:45 +00:00
|
|
|
enum EndCapType {
|
|
|
|
ENDCAP_NONE = 0, ///< no endcap
|
|
|
|
ENDCAP_BILINEAR_BASIS, ///< use bilinear quads (4 cp) as end-caps
|
|
|
|
ENDCAP_BSPLINE_BASIS, ///< use BSpline basis patches (16 cp) as end-caps
|
|
|
|
ENDCAP_GREGORY_BASIS, ///< use Gregory basis patches (20 cp) as end-caps
|
|
|
|
ENDCAP_LEGACY_GREGORY ///< use legacy (2.x) Gregory patches (4 cp + valence table) as end-caps
|
|
|
|
};
|
|
|
|
|
2015-01-06 18:56:29 +00:00
|
|
|
Options(unsigned int maxIsolation=10) :
|
2014-11-11 19:27:25 +00:00
|
|
|
generateAllLevels(false),
|
|
|
|
triangulateQuads(false),
|
|
|
|
useSingleCreasePatch(false),
|
2015-01-06 18:56:29 +00:00
|
|
|
maxIsolationLevel(maxIsolation),
|
2015-04-23 23:58:45 +00:00
|
|
|
endCapType(ENDCAP_GREGORY_BASIS),
|
|
|
|
shareEndCapPatchPoints(true),
|
2015-02-26 21:57:47 +00:00
|
|
|
generateFVarTables(false),
|
2016-08-19 00:21:59 +00:00
|
|
|
generateFVarLegacyLinearPatches(true),
|
2015-02-26 21:57:47 +00:00
|
|
|
numFVarChannels(-1),
|
2015-04-18 00:36:55 +00:00
|
|
|
fvarChannelIndices(0)
|
2015-04-08 01:34:05 +00:00
|
|
|
{ }
|
2014-10-13 15:52:09 +00:00
|
|
|
|
2015-04-23 23:58:45 +00:00
|
|
|
/// \brief Get endcap patch type
|
|
|
|
EndCapType GetEndCapType() const { return (EndCapType)endCapType; }
|
|
|
|
|
|
|
|
/// \brief Set endcap patch type
|
|
|
|
void SetEndCapType(EndCapType e) { endCapType = e; }
|
|
|
|
|
2015-02-26 21:57:47 +00:00
|
|
|
unsigned int generateAllLevels : 1, ///< Include levels from 'firstLevel' to 'maxLevel' (Uniform mode only)
|
|
|
|
triangulateQuads : 1, ///< Triangulate 'QUADS' primitives (Uniform mode only)
|
2014-10-13 15:52:09 +00:00
|
|
|
useSingleCreasePatch : 1, ///< Use single crease patch
|
2015-02-26 21:57:47 +00:00
|
|
|
maxIsolationLevel : 4, ///< Cap adaptive feature isolation to the given level (max. 10)
|
|
|
|
|
2015-04-23 23:58:45 +00:00
|
|
|
// end-capping
|
|
|
|
endCapType : 3, ///< EndCapType
|
|
|
|
shareEndCapPatchPoints : 1, ///< Share endcap patch points among adjacent endcap patches.
|
|
|
|
///< currently only work with GregoryBasis.
|
|
|
|
|
2015-02-26 21:57:47 +00:00
|
|
|
// face-varying
|
2016-08-19 00:21:59 +00:00
|
|
|
generateFVarTables : 1, ///< Generate face-varying patch tables
|
|
|
|
generateFVarLegacyLinearPatches : 1; ///< Generate all linear face-varying patches (legacy)
|
2015-02-26 21:57:47 +00:00
|
|
|
int numFVarChannels; ///< Number of channel indices and interpolation modes passed
|
|
|
|
int const * fvarChannelIndices; ///< List containing the indices of the channels selected for the factory
|
2014-09-05 22:07:46 +00:00
|
|
|
};
|
2014-06-30 20:25:33 +00:00
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
/// \brief Factory constructor for PatchTable
|
2014-06-30 20:25:33 +00:00
|
|
|
///
|
2015-04-18 00:36:55 +00:00
|
|
|
/// @param refiner TopologyRefiner from which to generate patches
|
2014-06-30 20:25:33 +00:00
|
|
|
///
|
2015-05-22 18:50:01 +00:00
|
|
|
/// @param options Options controlling the creation of the table
|
2014-06-30 20:25:33 +00:00
|
|
|
///
|
2015-05-22 18:50:01 +00:00
|
|
|
/// @return A new instance of PatchTable
|
2014-06-30 20:25:33 +00:00
|
|
|
///
|
2015-05-22 18:50:01 +00:00
|
|
|
static PatchTable * Create(TopologyRefiner const & refiner,
|
|
|
|
Options options=Options());
|
2015-04-23 23:58:45 +00:00
|
|
|
|
|
|
|
private:
|
2015-02-26 21:57:47 +00:00
|
|
|
//
|
|
|
|
// Private helper structures
|
|
|
|
//
|
2016-07-22 01:47:44 +00:00
|
|
|
struct BuilderContext;
|
2013-10-05 00:06:23 +00:00
|
|
|
|
2015-02-26 21:57:47 +00:00
|
|
|
//
|
2014-09-05 22:07:46 +00:00
|
|
|
// Methods for allocating and managing the patch table data arrays:
|
2015-02-26 21:57:47 +00:00
|
|
|
//
|
2015-05-22 18:50:01 +00:00
|
|
|
static PatchTable * createUniform(TopologyRefiner const & refiner,
|
|
|
|
Options options);
|
2015-04-23 23:58:45 +00:00
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
static PatchTable * createAdaptive(TopologyRefiner const & refiner,
|
|
|
|
Options options);
|
2015-04-23 23:58:45 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// High-level methods for identifying and populating patches associated with faces:
|
|
|
|
//
|
|
|
|
|
2016-07-22 01:47:44 +00:00
|
|
|
static void identifyAdaptivePatches(BuilderContext & context);
|
2013-10-05 00:06:23 +00:00
|
|
|
|
2016-07-22 01:47:44 +00:00
|
|
|
static void populateAdaptivePatches(BuilderContext & context,
|
|
|
|
PatchTable * table);
|
2013-10-05 00:06:23 +00:00
|
|
|
|
2016-08-24 21:02:57 +00:00
|
|
|
static void allocateVertexTables(BuilderContext const & context,
|
|
|
|
PatchTable * table);
|
2013-05-09 00:06:59 +00:00
|
|
|
|
2016-07-22 01:47:44 +00:00
|
|
|
static void allocateFVarChannels(BuilderContext const & context,
|
|
|
|
PatchTable * table);
|
2015-04-18 00:36:55 +00:00
|
|
|
|
2016-07-22 01:47:44 +00:00
|
|
|
static PatchParam computePatchParam(BuilderContext const & context,
|
|
|
|
int level, int face,
|
|
|
|
int boundaryMask, int transitionMask);
|
2016-09-03 03:53:24 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
// PatchFaceTag
|
|
|
|
// This simple struct was previously used within the factory to take inventory of
|
|
|
|
// various kinds of patches to fully allocate buffers prior to populating them. It
|
|
|
|
// was not intended to be exposed as part of the public interface.
|
|
|
|
//
|
|
|
|
// It is no longer used internally and is being kept here to respect preservation
|
|
|
|
// of the public interface, but it will be deprecated at the earliest opportunity.
|
|
|
|
//
|
|
|
|
struct PatchFaceTag {
|
|
|
|
public:
|
|
|
|
unsigned int _hasPatch : 1;
|
|
|
|
unsigned int _isRegular : 1;
|
|
|
|
unsigned int _transitionMask : 4;
|
|
|
|
unsigned int _boundaryMask : 4;
|
|
|
|
unsigned int _boundaryIndex : 2;
|
|
|
|
unsigned int _boundaryCount : 3;
|
|
|
|
unsigned int _hasBoundaryEdge : 3;
|
|
|
|
unsigned int _isSingleCrease : 1;
|
|
|
|
|
|
|
|
void clear();
|
|
|
|
void assignBoundaryPropertiesFromEdgeMask(int boundaryEdgeMask);
|
|
|
|
void assignBoundaryPropertiesFromVertexMask(int boundaryVertexMask);
|
|
|
|
void assignTransitionPropertiesFromEdgeMask(int boundaryVertexMask);
|
|
|
|
};
|
|
|
|
typedef std::vector<PatchFaceTag> PatchTagVector;
|
2015-04-18 00:36:55 +00:00
|
|
|
};
|
|
|
|
|
2014-09-05 22:07:46 +00:00
|
|
|
} // end namespace Far
|
2013-11-16 01:42:57 +00:00
|
|
|
|
2012-12-11 01:15:13 +00:00
|
|
|
} // end namespace OPENSUBDIV_VERSION
|
|
|
|
using namespace OPENSUBDIV_VERSION;
|
|
|
|
|
|
|
|
} // end namespace OpenSubdiv
|
|
|
|
|
2015-04-18 00:36:55 +00:00
|
|
|
|
2015-05-22 18:50:01 +00:00
|
|
|
#endif /* OPENSUBDIV3_FAR_PATCH_TABLE_FACTORY_H */
|