HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GABC_OProperty.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_OProperty__
29 #define __GABC_OProperty__
30 
31 #include "GABC_API.h"
32 #include "GABC_OError.h"
33 #include "GABC_LayerOptions.h"
34 #include <Alembic/AbcGeom/All.h>
35 #include <GT/GT_Handles.h>
36 #include <GT/GT_Types.h>
37 
38 namespace GABC_NAMESPACE
39 {
40 
41 class GABC_OOptions;
42 
43 /// Base class for exporting attribute and user property data from a
44 /// GT_DataArray to Alembic.
45 ///
46 /// The Alembic equivalent of attributes are Alembic arbitrary geometry
47 /// parameters (arbGeomParams). In addition, Alembic geometry can have user
48 /// properties which have no direct equivalent in Houdini. We store user
49 /// properties as a JSON dictionary exposed to users through a special
50 /// attribute (see: GABC_Util::theUserPropsValsAttrib).
51 ///
52 /// User properties are stored using OScalarProperty and OArrayProperty
53 /// objects, while arbGeomParams are stored using OGeomParam objects which
54 /// contain an underlying OArrayProperty.
55 ///
56 /// The children derived from this base class write data representing
57 /// attributes and user properties from GT_DataArray objects to the appropriate
58 /// type of OProperty.
59 ///
61 {
62 public:
65 
67  : myLayerType(ltype) {}
68  virtual ~GABC_OProperty() {}
69 
70  /// Creates the appropriate child object, based on the array's storage
71  /// type, tuple size, and interpretation, and the Alembic POD (if provided)
72  virtual bool start(OCompoundProperty &parent,
73  const char *name,
74  const GT_DataArrayHandle &array,
75  GABC_OError &err,
76  const GABC_OOptions &options,
77  const PlainOldDataType pod
79 
80  /// Write GT_DataArray conents as samples to the property.
81  virtual bool update(const GT_DataArrayHandle &array,
82  GABC_OError &err,
83  const GABC_OOptions &options,
84  const PlainOldDataType pod
86 
87  /// Reuse the previous sample .
88  virtual bool updateFromPrevious() = 0;
89 
90  /// Get number of samples written to property so far.
91  virtual exint getNumSamples() const = 0;
92 
93  /// Returns true if storage only differs by precision.
95  {
96  if(myStorage == storage)
97  return true;
98  if(GTisFloat(myStorage))
99  return GTisFloat(storage);
100  if(GTisInteger(myStorage))
101  return GTisInteger(storage);
102  return false;
103  }
104 
105 protected:
111  void *myBuffer;
113 };
114 
115 } // GABC_NAMESPACE
116 
117 #endif
GT_Storage
Definition: GT_Types.h:19
GABC_OProperty(GABC_LayerOptions::LayerType ltype)
bool compatibleStorage(GT_Storage storage)
Returns true if storage only differs by precision.
getFileOption("OpenEXR:storage") storage
Definition: HDK_Image.dox:276
GLuint start
Definition: glcorearb.h:475
int64 exint
Definition: SYS_Types.h:125
GT_Type
Definition: GT_Types.h:36
Alembic::Abc::OCompoundProperty OCompoundProperty
#define GABC_NAMESPACE
Definition: GABC_API.h:42
GLuint const GLchar * name
Definition: glcorearb.h:786
int64 GT_Size
Definition: GT_Types.h:128
#define GABC_API
Definition: GABC_API.h:37
Alembic::Util::PlainOldDataType PlainOldDataType
GABC_LayerOptions::LayerType myLayerType