Coverage Report

Created: 2025-08-25 06:16

/src/alembic/lib/Alembic/AbcGeom/OXform.h
Line
Count
Source (jump to first uncovered line)
1
//-*****************************************************************************
2
//
3
// Copyright (c) 2009-2012,
4
//  Sony Pictures Imageworks, Inc. and
5
//  Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
6
//
7
// All rights reserved.
8
//
9
// Redistribution and use in source and binary forms, with or without
10
// modification, are permitted provided that the following conditions are
11
// met:
12
// *       Redistributions of source code must retain the above copyright
13
// notice, this list of conditions and the following disclaimer.
14
// *       Redistributions in binary form must reproduce the above
15
// copyright notice, this list of conditions and the following disclaimer
16
// in the documentation and/or other materials provided with the
17
// distribution.
18
// *       Neither the name of Sony Pictures Imageworks, nor
19
// Industrial Light & Magic nor the names of their contributors may be used
20
// to endorse or promote products derived from this software without specific
21
// prior written permission.
22
//
23
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
//
35
//-*****************************************************************************
36
37
#ifndef Alembic_AbcGeom_OXform_h
38
#define Alembic_AbcGeom_OXform_h
39
40
#include <Alembic/Util/Export.h>
41
#include <Alembic/AbcGeom/Foundation.h>
42
#include <Alembic/AbcGeom/SchemaInfoDeclarations.h>
43
44
#include <Alembic/AbcGeom/XformSample.h>
45
46
namespace Alembic {
47
namespace AbcGeom {
48
namespace ALEMBIC_VERSION_NS {
49
50
//! The default value for determining whether a property is actually
51
//! different from the default.
52
static const double kXFORM_DELTA_TOLERANCE = 1.0e-12;
53
54
//-*****************************************************************************
55
class ALEMBIC_EXPORT OXformSchema : public Abc::OSchema<XformSchemaInfo>
56
{
57
    //-*************************************************************************
58
    // XFORM SCHEMA
59
    //-*************************************************************************
60
public:
61
62
    //! By convention we always define this_type in AbcGeom classes.
63
    //! Used by unspecified-bool-type conversion below
64
    typedef Abc::OSchema<XformSchemaInfo> super_type;
65
    typedef OXformSchema this_type;
66
    typedef XformSample sample_type;
67
68
    //-*************************************************************************
69
    // CONSTRUCTION, DESTRUCTION, ASSIGNMENT
70
    //-*************************************************************************
71
72
    //! The default constructor creates an empty OPolyMeshSchema
73
    //! ...
74
    OXformSchema()
75
0
    {
76
0
        m_numChannels = 0;
77
0
        m_numOps = 0;
78
0
        m_useArrayProp = false;
79
0
        m_isIdentity = true;
80
0
    }
81
82
    //! This constructor creates a new xform writer.
83
    //! The first argument is an CompoundPropertyWriterPtr to use as a parent.
84
    //! The next is the name to give the schema which is usually the default
85
    //! name given by OFaceSet (.xform)  The remaining optional arguments
86
    //! can be used to override the ErrorHandlerPolicy, to specify
87
    //! MetaData, specify sparse sampling and to set TimeSampling.
88
    OXformSchema( AbcA::CompoundPropertyWriterPtr iParent,
89
                  const std::string &iName,
90
                  const Abc::Argument &iArg0 = Abc::Argument(),
91
                  const Abc::Argument &iArg1 = Abc::Argument(),
92
                  const Abc::Argument &iArg2 = Abc::Argument(),
93
                  const Abc::Argument &iArg3 = Abc::Argument() );
94
95
    //! This constructor creates a new xform writer.
96
    //! The first argument is an OCompundProperty to use as a parent, and from
97
    //! which the ErrorHandlerPolicy is derived.  The next is the name to give
98
    //! the schema which is usually the default name given by OXform (.xform)
99
    //! The remaining optional arguments can be used to specify MetaData,
100
    //! specify sparse sampling and to set TimeSampling.
101
    OXformSchema( Abc::OCompoundProperty iParent,
102
                  const std::string &iName,
103
                  const Abc::Argument &iArg0 = Abc::Argument(),
104
                  const Abc::Argument &iArg1 = Abc::Argument(),
105
                  const Abc::Argument &iArg2 = Abc::Argument() );
106
107
    //! Default assignment and copy operator used.
108
109
    //-*************************************************************************
110
    // SCHEMA STUFF
111
    //-*************************************************************************
112
113
    AbcA::TimeSamplingPtr getTimeSampling() const;
114
115
    //-*************************************************************************
116
    // SAMPLE STUFF
117
    //-*************************************************************************
118
119
    //! Get number of samples written so far.
120
    //! ...
121
    size_t getNumSamples() const;
122
123
    //! Set an animated sample.  On first call to set, the sample is modified,
124
    //! so it can't be const.
125
    void set( XformSample &ioSamp );
126
127
    //! Set from previous sample. Will hold the animated channels.
128
    void setFromPrevious();
129
130
    void setTimeSampling( uint32_t iIndex );
131
    void setTimeSampling( AbcA::TimeSamplingPtr iTime );
132
133
    Abc::OCompoundProperty getArbGeomParams();
134
    Abc::OCompoundProperty getUserProperties();
135
    Abc::OBox3dProperty getChildBoundsProperty();
136
137
    //-*************************************************************************
138
    // ABC BASE MECHANISMS
139
    // These functions are used by Abc to deal with errors, validity,
140
    // and so on.
141
    //-*************************************************************************
142
143
    //! Reset returns this function set to an empty, default
144
    //! state.
145
    void reset()
146
0
    {
147
0
        m_childBoundsProperty.reset();
148
0
        m_inheritsProperty.reset();
149
0
        m_opsPWPtr.reset();
150
0
        m_valsPWPtr.reset();
151
0
        m_protoSample.reset();
152
0
        m_data.reset();
153
0
154
0
        m_arbGeomParams.reset();
155
0
        m_userProperties.reset();
156
0
157
0
        m_useArrayProp = false;
158
0
        m_isIdentity = true;
159
0
160
0
        super_type::reset();
161
0
    }
162
163
    //! Valid returns whether this function set is valid.
164
    bool valid() const
165
0
    {
166
0
        return ( super_type::valid() );
167
0
    }
168
169
    //! unspecified-bool-type operator overload.
170
    //! ...
171
    ALEMBIC_OVERRIDE_OPERATOR_BOOL( this_type::valid() );
172
173
174
private:
175
    void init( const AbcA::index_t iTSIndex );
176
177
    // not technically needed as the m_protoSample can return this info
178
    std::size_t m_numChannels;
179
    std::size_t m_numOps;
180
181
    // should we store are channel values in an ArrayProperty,
182
    // or in a ScalarProperty with some Dimension > 0 and < MAX_SCALAR_CHANS
183
    bool m_useArrayProp{false};
184
185
    AbcA::DataType m_arrayValuesDataType;
186
    Alembic::Util::Dimensions m_arraySampleDimensions;
187
188
    void setChannelValues( const std::vector<double> &iVals );
189
190
protected:
191
192
    Abc::OBox3dProperty m_childBoundsProperty;
193
194
    AbcA::ScalarPropertyWriterPtr m_opsPWPtr;
195
196
    AbcA::BasePropertyWriterPtr m_valsPWPtr;
197
198
    Abc::OBoolProperty m_inheritsProperty;
199
200
    Abc::OBoolProperty m_isNotConstantIdentityProperty;
201
202
    // ensure that our sample's topology is unchanging between
203
    // calls to set; see usage in OXformSchema::set()
204
    XformSample m_protoSample;
205
206
    bool m_isIdentity{true};
207
208
    Abc::OCompoundProperty m_arbGeomParams;
209
210
    Abc::OCompoundProperty m_userProperties;
211
212
    class Data;
213
214
    // shared and not scoped because we want this to be shared across copies
215
    Util::shared_ptr< Data > m_data;
216
};
217
218
//-*****************************************************************************
219
// SCHEMA OBJECT
220
//-*****************************************************************************
221
typedef Abc::OSchemaObject<OXformSchema> OXform;
222
223
typedef Util::shared_ptr< OXform > OXformPtr;
224
225
} // End namespace ALEMBIC_VERSION_NS
226
227
using namespace ALEMBIC_VERSION_NS;
228
229
} // End namespace AbcGeom
230
} // End namespace Alembic
231
232
#endif