HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_Flatten.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2024
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  * Flatten SOP
27  */
28 
29 
30 #ifndef __SOP_Flatten_h__
31 #define __SOP_Flatten_h__
32 
33 #include <SOP/SOP_Node.h>
34 
35 namespace HDK_Sample {
36 class SOP_Flatten : public SOP_Node
37 {
38 public:
39  SOP_Flatten(OP_Network *net, const char *name, OP_Operator *op);
40  ~SOP_Flatten() override;
41 
42  /// This method is created so that it can be called by handles. It only
43  /// cooks the input group of this SOP. The geometry in this group is
44  /// the only geometry manipulated by this SOP.
46  int alone = 0) override;
47 
49  static OP_Node *myConstructor(OP_Network*, const char *,
50  OP_Operator *);
51 
52 protected:
53  /// Update disable and hidden states of parameters based on the value
54  /// of other parameters.
55  bool updateParmsFlags() override;
56 
57  const char *inputLabel(unsigned idx) const override;
58 
59  /// Method to cook geometry for the SOP
60  OP_ERROR cookMySop(OP_Context &context) override;
61 
62  /// This method is used to generate geometry for a "guide". It does
63  /// not have to be defined.
64  OP_ERROR cookMyGuide1(OP_Context &context) override;
65 
66 private:
67  void getGroups(UT_String &str){ evalString(str, "group", 0, 0); }
68  fpreal DIST(fpreal t) { return evalFloat("dist", 0, t); }
69  int DIRPOP() { return evalInt("usedir", 0, 0); }
70  int ORIENT() { return evalInt("orient", 0, 0); }
71  fpreal NX(fpreal t) { return evalFloat("dir", 0, t); }
72  fpreal NY(fpreal t) { return evalFloat("dir", 1, t); }
73  fpreal NZ(fpreal t) { return evalFloat("dir", 2, t); }
74 
75  /// This is the group of geometry to be manipulated by this SOP and cooked
76  /// by the method "cookInputGroups".
77  const GA_PointGroup *myGroup;
78 };
79 } // End HDK_Sample namespace
80 
81 #endif
SOP_Flatten(OP_Network *net, const char *name, OP_Operator *op)
Definition: SOP_Flatten.C:86
fpreal evalFloat(int pi, int vi, fpreal t) const
UT_ErrorSeverity
Definition: UT_Error.h:25
bool updateParmsFlags() override
Definition: SOP_Flatten.C:108
OP_ERROR cookInputGroups(OP_Context &context, int alone=0) override
Definition: SOP_Flatten.C:120
OP_ERROR cookMyGuide1(OP_Context &context) override
Definition: SOP_Flatten.C:325
static PRM_Template myTemplateList[]
Definition: SOP_Flatten.h:48
void evalString(UT_String &val, int pi, int vi, fpreal t) const
OP_ERROR cookMySop(OP_Context &context) override
Method to cook geometry for the SOP.
Definition: SOP_Flatten.C:143
GLuint const GLchar * name
Definition: glcorearb.h:786
GLdouble t
Definition: glad.h:2397
fpreal64 fpreal
Definition: SYS_Types.h:277
static OP_Node * myConstructor(OP_Network *, const char *, OP_Operator *)
Definition: SOP_Flatten.C:81
exint evalInt(int pi, int vi, fpreal t) const
const char * inputLabel(unsigned idx) const override
Definition: SOP_Flatten.C:395