HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GABC_OArrayProperty.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) COPYRIGHTYEAR
3  * Side Effects Software Inc. All rights reserved.
4  *
5  * Redistribution and use of Houdini Development Kit samples in source and
6  * binary forms, with or without modification, are permitted provided that the
7  * following conditions are met:
8  * 1. Redistributions of source code must retain the above copyright notice,
9  * this list of conditions and the following disclaimer.
10  * 2. The name of Side Effects Software may not be used to endorse or
11  * promote products derived from this software without specific prior
12  * written permission.
13  *
14  * THIS SOFTWARE IS PROVIDED BY SIDE EFFECTS SOFTWARE `AS IS' AND ANY EXPRESS
15  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
17  * NO EVENT SHALL SIDE EFFECTS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
19  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
20  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
21  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
22  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
23  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  *----------------------------------------------------------------------------
26  */
27 
28 #ifndef __GABC_OArrayProperty__
29 #define __GABC_OArrayProperty__
30 
31 #include "GABC_API.h"
32 #include "GABC_OProperty.h"
33 #include <Alembic/AbcGeom/All.h>
34 #include <GT/GT_Handles.h>
35 #include <GT/GT_Types.h>
36 
37 namespace GABC_NAMESPACE
38 {
39 
40 class GABC_OError;
41 class GABC_OOptions;
42 
43 /// Class for exporting attribute and user property data from a
44 /// GT_DataArray to an OArrayProperty.
45 ///
46 /// See GABC_OProperty for more details.
47 ///
49 {
50 public:
53 
55 
57 
58  /// This constructor is used if we're creating a user property.
60  : GABC_OProperty(ltype)
61  , myScope(Alembic::AbcGeom::kUnknownScope)
62  , myIsGeomParam(false)
63  {}
64  /// This constructor is used if we're creating an attribute.
66  GeometryScope scope)
67  : GABC_OProperty(ltype)
68  , myScope(scope)
69  , myIsGeomParam(true)
70  {}
71 
72  ~GABC_OArrayProperty() override {}
73 
74  /// See GABC_OProperty for information about methods.
75  bool start(OCompoundProperty &parent,
76  const char *name,
77  const GT_DataArrayHandle &array,
78  GABC_OError &err,
79  const GABC_OOptions &options,
80  const PlainOldDataType pod =
82  bool update(const GT_DataArrayHandle &array,
83  GABC_OError &err,
84  const GABC_OOptions &options,
85  const PlainOldDataType pod
86  = Alembic::Abc::kUnknownPOD) override;
87  bool updateFromPrevious() override;
88  exint getNumSamples() const override
89  {
90  return myProperty.getNumSamples();
91  }
92 
93 private:
94  GeometryScope myScope;
95  OArrayProperty myProperty;
96  OUInt32ArrayProperty myIndexProperty;
97  bool myIsGeomParam;
98 };
99 
100 } // GABC_NAMESPACE
101 
102 #endif
GLuint start
Definition: glcorearb.h:475
int64 exint
Definition: SYS_Types.h:125
#define GABC_NAMESPACE
Definition: GABC_API.h:42
GABC_OArrayProperty(GABC_LayerOptions::LayerType ltype, GeometryScope scope)
This constructor is used if we're creating an attribute.
GLuint const GLchar * name
Definition: glcorearb.h:786
GABC_OArrayProperty(GABC_LayerOptions::LayerType ltype)
This constructor is used if we're creating a user property.
exint getNumSamples() const override
Get number of samples written to property so far.
#define GABC_API
Definition: GABC_API.h:37
OTypedArrayProperty< Uint32TPTraits > OUInt32ArrayProperty