HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_VolumeVectorJoin.proto.h
Go to the documentation of this file.
1 /* Automagically Generated by generate_proto.py
2  * Do not Edit
3  */
4 #pragma once
5 
6 #include <SOP/SOP_API.h>
7 #include <SOP/SOP_NodeVerb.h>
8 #include <OP/OP_GraphProxy.h>
9 
10 #include <OP/OP_Utils.h>
11 #include <PRM/PRM_Parm.h>
12 #include <UT/UT_IStream.h>
13 #include <UT/UT_NTStreamUtil.h>
14 #include <UT/UT_Ramp.h>
15 #include <UT/UT_SharedPtr.h>
16 #include <UT/UT_StringHolder.h>
17 #include <UT/UT_StringStream.h>
18 #include <UT/UT_VectorTypes.h>
19 #include <UT/UT_EnvControl.h>
20 #include <SYS/SYS_Types.h>
21 
22 class DEP_MicroNode;
23 
25 {
26 public:
27  static int version() { return 1; }
28 
30  {
31  mySetcomponents = false;
32  myComponents = 4;
33  myXgroup = "@name=*.x"_UTsh;
34  myYgroup = "@name=*.y"_UTsh;
35  myZgroup = "@name=*.z"_UTsh;
36  myWgroup = "@name=*.w"_UTsh;
37  myKeep = false;
38 
39  }
40 
41  explicit SOP_VolumeVectorJoinParms(const SOP_VolumeVectorJoinParms &) = default;
44  SOP_VolumeVectorJoinParms &operator=(SOP_VolumeVectorJoinParms &&) noexcept = default;
45 
47 
49  {
50  if (mySetcomponents != src.mySetcomponents) return false;
51  if (myComponents != src.myComponents) return false;
52  if (myXgroup != src.myXgroup) return false;
53  if (myYgroup != src.myYgroup) return false;
54  if (myZgroup != src.myZgroup) return false;
55  if (myWgroup != src.myWgroup) return false;
56  if (myKeep != src.myKeep) return false;
57 
58 
59  if (baseGetSignature() != src.baseGetSignature()) return false;
60 
61  return true;
62  }
64  {
65  return !operator==(src);
66  }
67 
68 
69 
70  void buildFromOp(const OP_GraphProxy *graph, exint nodeidx, fpreal time, DEP_MicroNode *depnode)
71  {
72  mySetcomponents = false;
73  if (true)
74  graph->evalOpParm(mySetcomponents, nodeidx, "setcomponents", time, graph->isDirect()?nullptr:depnode);
75  myComponents = 4;
76  if (true && ( (true&&!(((getSetcomponents()==0)))) ) )
77  graph->evalOpParm(myComponents, nodeidx, "components", time, graph->isDirect()?nullptr:depnode);
78  myXgroup = "@name=*.x"_UTsh;
79  if (true)
80  graph->evalOpParm(myXgroup, nodeidx, "xgroup", time, graph->isDirect()?nullptr:depnode);
81  myYgroup = "@name=*.y"_UTsh;
82  if (true && ( (true&&!(((getSetcomponents()==1)&&(int64(getComponents())<2)))) ) )
83  graph->evalOpParm(myYgroup, nodeidx, "ygroup", time, graph->isDirect()?nullptr:depnode);
84  myZgroup = "@name=*.z"_UTsh;
85  if (true && ( (true&&!(((getSetcomponents()==1)&&(int64(getComponents())<3)))) ) )
86  graph->evalOpParm(myZgroup, nodeidx, "zgroup", time, graph->isDirect()?nullptr:depnode);
87  myWgroup = "@name=*.w"_UTsh;
88  if (true && ( (true&&!(((getSetcomponents()==1)&&(int64(getComponents())<4)))) ) )
89  graph->evalOpParm(myWgroup, nodeidx, "wgroup", time, graph->isDirect()?nullptr:depnode);
90  myKeep = false;
91  if (true)
92  graph->evalOpParm(myKeep, nodeidx, "keep", time, graph->isDirect()?nullptr:depnode);
93 
94  }
95 
96 
97  void loadFromOpSubclass(const LoadParms &loadparms) override
98  {
99  buildFromOp(loadparms.graph(), loadparms.nodeIdx(), loadparms.context().getTime(), loadparms.depnode());
100  }
101 
102 
103  void copyFrom(const OP_NodeParms *src) override
104  {
105  *this = *((const SOP_VolumeVectorJoinParms *)src);
106  }
107 
108  template <typename T>
109  void
110  doGetParmValue(TempIndex idx, TempIndex instance, T &value) const
111  {
112  if (idx.size() < 1)
113  return;
114  UT_ASSERT(idx.size() == instance.size()+1);
115  if (idx.size() != instance.size()+1)
116  return;
117  switch (idx[0])
118  {
119  case 0:
120  coerceValue(value, mySetcomponents);
121  break;
122  case 1:
123  coerceValue(value, myComponents);
124  break;
125  case 2:
126  coerceValue(value, myXgroup);
127  break;
128  case 3:
129  coerceValue(value, myYgroup);
130  break;
131  case 4:
132  coerceValue(value, myZgroup);
133  break;
134  case 5:
135  coerceValue(value, myWgroup);
136  break;
137  case 6:
138  coerceValue(value, myKeep);
139  break;
140 
141  }
142  }
143 
144  bool isParmColorRamp(exint idx) const override
145  {
146  switch (idx)
147  {
148 
149  }
150  return false;
151  }
152 
153  void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
154  { doGetParmValue(idx, instance, value); }
155  void getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
156  { doGetParmValue(idx, instance, value); }
157  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
158  { doGetParmValue(idx, instance, value); }
159  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
160  { doGetParmValue(idx, instance, value); }
161  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
162  { doGetParmValue(idx, instance, value); }
163  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override
164  { doGetParmValue(idx, instance, value); }
165  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
166  { doGetParmValue(idx, instance, value); }
167  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
168  { doGetParmValue(idx, instance, value); }
169  void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
170  { doGetParmValue(idx, instance, value); }
171  void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr<UT_Ramp> &value) const override
172  { doGetParmValue(idx, instance, value); }
173  void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
174  { doGetParmValue(idx, instance, value); }
175 
176  template <typename T>
177  void
178  doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
179  {
180  if (idx.size() < 1)
181  return;
182  UT_ASSERT(idx.size() == instance.size()+1);
183  if (idx.size() != instance.size()+1)
184  return;
185  switch (idx[0])
186  {
187  case 0:
188  coerceValue(mySetcomponents, ( ( value ) ));
189  break;
190  case 1:
191  coerceValue(myComponents, clampMinValue(1, clampMaxValue(4, value ) ));
192  break;
193  case 2:
194  coerceValue(myXgroup, ( ( value ) ));
195  break;
196  case 3:
197  coerceValue(myYgroup, ( ( value ) ));
198  break;
199  case 4:
200  coerceValue(myZgroup, ( ( value ) ));
201  break;
202  case 5:
203  coerceValue(myWgroup, ( ( value ) ));
204  break;
205  case 6:
206  coerceValue(myKeep, ( ( value ) ));
207  break;
208 
209  }
210  }
211 
212  void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
213  { doSetParmValue(idx, instance, value); }
214  void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
215  { doSetParmValue(idx, instance, value); }
216  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
217  { doSetParmValue(idx, instance, value); }
218  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
219  { doSetParmValue(idx, instance, value); }
220  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
221  { doSetParmValue(idx, instance, value); }
222  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
223  { doSetParmValue(idx, instance, value); }
224  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
225  { doSetParmValue(idx, instance, value); }
226  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &value) override
227  { doSetParmValue(idx, instance, value); }
228  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
229  { doSetParmValue(idx, instance, value); }
230  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr<UT_Ramp> &value) override
231  { doSetParmValue(idx, instance, value); }
232  void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
233  { doSetParmValue(idx, instance, value); }
234 
235  exint getNestNumParms(TempIndex idx) const override
236  {
237  if (idx.size() == 0)
238  return 7;
239  switch (idx[0])
240  {
241 
242  }
243  // Invalid
244  return 0;
245  }
246 
247  const char *getNestParmName(TempIndex fieldnum) const override
248  {
249  if (fieldnum.size() < 1)
250  return 0;
251  switch (fieldnum[0])
252  {
253  case 0:
254  return "setcomponents";
255  case 1:
256  return "components";
257  case 2:
258  return "xgroup";
259  case 3:
260  return "ygroup";
261  case 4:
262  return "zgroup";
263  case 5:
264  return "wgroup";
265  case 6:
266  return "keep";
267 
268  }
269  return 0;
270  }
271 
272  ParmType getNestParmType(TempIndex fieldnum) const override
273  {
274  if (fieldnum.size() < 1)
275  return PARM_UNSUPPORTED;
276  switch (fieldnum[0])
277  {
278  case 0:
279  return PARM_INTEGER;
280  case 1:
281  return PARM_INTEGER;
282  case 2:
283  return PARM_STRING;
284  case 3:
285  return PARM_STRING;
286  case 4:
287  return PARM_STRING;
288  case 5:
289  return PARM_STRING;
290  case 6:
291  return PARM_INTEGER;
292 
293  }
294  return PARM_UNSUPPORTED;
295  }
296 
297  // Boiler plate to load individual types.
298  static void loadData(UT_IStream &is, int64 &v)
299  { is.bread(&v, 1); }
300  static void loadData(UT_IStream &is, bool &v)
301  { int64 iv; is.bread(&iv, 1); v = iv; }
302  static void loadData(UT_IStream &is, fpreal64 &v)
303  { is.bread<fpreal64>(&v, 1); }
304  static void loadData(UT_IStream &is, UT_Vector2D &v)
305  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1); }
306  static void loadData(UT_IStream &is, UT_Vector3D &v)
307  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
308  is.bread<fpreal64>(&v.z(), 1); }
309  static void loadData(UT_IStream &is, UT_Vector4D &v)
310  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
311  is.bread<fpreal64>(&v.z(), 1); is.bread<fpreal64>(&v.w(), 1); }
312  static void loadData(UT_IStream &is, UT_Matrix2D &v)
313  { for (int r = 0; r < 2; r++) for (int c = 0; c < 2; c++) is.bread<fpreal64>(&v(r, c), 1); }
314  static void loadData(UT_IStream &is, UT_Matrix3D &v)
315  { for (int r = 0; r < 3; r++) for (int c = 0; c < 3; c++) is.bread<fpreal64>(&v(r, c), 1); }
316  static void loadData(UT_IStream &is, UT_Matrix4D &v)
317  { for (int r = 0; r < 4; r++) for (int c = 0; c < 4; c++) is.bread<fpreal64>(&v(r, c), 1); }
318  static void loadData(UT_IStream &is, UT_Vector2I &v)
319  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1); }
320  static void loadData(UT_IStream &is, UT_Vector3I &v)
321  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
322  is.bread<int64>(&v.z(), 1); }
323  static void loadData(UT_IStream &is, UT_Vector4I &v)
324  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
325  is.bread<int64>(&v.z(), 1); is.bread<int64>(&v.w(), 1); }
327  { is.bread(v); }
329  { UT_StringHolder rampdata;
330  loadData(is, rampdata);
331  if (rampdata.isstring())
332  {
333  v.reset(new UT_Ramp());
334  UT_IStream istr((const char *) rampdata, rampdata.length(), UT_ISTREAM_ASCII);
335  v->load(istr);
336  }
337  else v.reset();
338  }
341  loadData(is, data);
342  if (data.isstring())
343  {
344  // Find the data type.
345  const char *colon = UT_StringWrap(data).findChar(':');
346  if (colon)
347  {
348  int typelen = colon - data.buffer();
350  type.strncpy(data.buffer(), typelen);
351  UT_IStream istr(((const char *) data) + typelen + 1, data.length() - (typelen + 1), UT_ISTREAM_BINARY);
352 
353  v = PRM_DataFactory::parseBinary(type.buffer(), istr);
354  }
355  }
356  else v.reset();
357  }
358 
359  static void saveData(std::ostream &os, int64 v)
360  { UTwrite(os, &v); }
361  static void saveData(std::ostream &os, bool v)
362  { int64 iv = v; UTwrite(os, &iv); }
363  static void saveData(std::ostream &os, fpreal64 v)
364  { UTwrite<fpreal64>(os, &v); }
365  static void saveData(std::ostream &os, UT_Vector2D v)
366  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y()); }
367  static void saveData(std::ostream &os, UT_Vector3D v)
368  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
369  UTwrite<fpreal64>(os, &v.z()); }
370  static void saveData(std::ostream &os, UT_Vector4D v)
371  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
372  UTwrite<fpreal64>(os, &v.z()); UTwrite<fpreal64>(os, &v.w()); }
373  static void saveData(std::ostream &os, UT_Matrix2D v)
375  static void saveData(std::ostream &os, UT_Matrix3D v)
377  static void saveData(std::ostream &os, UT_Matrix4D v)
379  static void saveData(std::ostream &os, UT_StringHolder s)
380  { UT_StringWrap(s).saveBinary(os); }
381  static void saveData(std::ostream &os, UT_SharedPtr<UT_Ramp> s)
383  UT_OStringStream ostr;
384  if (s) s->save(ostr);
385  result = ostr.str();
386  saveData(os, result);
387  }
388  static void saveData(std::ostream &os, PRM_DataItemHandle s)
390  UT_OStringStream ostr;
391  if (s)
392  {
393  ostr << s->getDataTypeToken();
394  ostr << ":";
395  s->saveBinary(ostr);
396  }
397  result = ostr.str();
398  saveData(os, result);
399  }
400 
401 
402  void save(std::ostream &os) const
403  {
404  int32 v = version();
405  UTwrite(os, &v);
406  saveData(os, mySetcomponents);
407  saveData(os, myComponents);
408  saveData(os, myXgroup);
409  saveData(os, myYgroup);
410  saveData(os, myZgroup);
411  saveData(os, myWgroup);
412  saveData(os, myKeep);
413 
414  }
415 
416  bool load(UT_IStream &is)
417  {
418  int32 v;
419  is.bread(&v, 1);
420  if (version() != v)
421  {
422  // Fail incompatible versions
423  return false;
424  }
425  loadData(is, mySetcomponents);
426  loadData(is, myComponents);
427  loadData(is, myXgroup);
428  loadData(is, myYgroup);
429  loadData(is, myZgroup);
430  loadData(is, myWgroup);
431  loadData(is, myKeep);
432 
433  return true;
434  }
435 
436  bool getSetcomponents() const { return mySetcomponents; }
437  void setSetcomponents(bool val) { mySetcomponents = val; }
438  bool opSetcomponents(const SOP_NodeVerb::CookParms &cookparms) const
439  {
440  SOP_Node *thissop = cookparms.getNode();
441  if (!thissop) return getSetcomponents();
442  bool result;
443  OP_Utils::evalOpParm(result, thissop, "setcomponents", cookparms.getCookTime(), 0);
444  return result;
445  }
446  int64 getComponents() const { return myComponents; }
447  void setComponents(int64 val) { myComponents = val; }
449  {
450  SOP_Node *thissop = cookparms.getNode();
451  if (!thissop) return getComponents();
452  int64 result;
453  OP_Utils::evalOpParm(result, thissop, "components", cookparms.getCookTime(), 0);
454  return result;
455  }
456  const UT_StringHolder & getXgroup() const { return myXgroup; }
457  void setXgroup(const UT_StringHolder & val) { myXgroup = val; }
459  {
460  SOP_Node *thissop = cookparms.getNode();
461  if (!thissop) return getXgroup();
463  OP_Utils::evalOpParm(result, thissop, "xgroup", cookparms.getCookTime(), 0);
464  return result;
465  }
466  const UT_StringHolder & getYgroup() const { return myYgroup; }
467  void setYgroup(const UT_StringHolder & val) { myYgroup = val; }
469  {
470  SOP_Node *thissop = cookparms.getNode();
471  if (!thissop) return getYgroup();
473  OP_Utils::evalOpParm(result, thissop, "ygroup", cookparms.getCookTime(), 0);
474  return result;
475  }
476  const UT_StringHolder & getZgroup() const { return myZgroup; }
477  void setZgroup(const UT_StringHolder & val) { myZgroup = val; }
479  {
480  SOP_Node *thissop = cookparms.getNode();
481  if (!thissop) return getZgroup();
483  OP_Utils::evalOpParm(result, thissop, "zgroup", cookparms.getCookTime(), 0);
484  return result;
485  }
486  const UT_StringHolder & getWgroup() const { return myWgroup; }
487  void setWgroup(const UT_StringHolder & val) { myWgroup = val; }
489  {
490  SOP_Node *thissop = cookparms.getNode();
491  if (!thissop) return getWgroup();
493  OP_Utils::evalOpParm(result, thissop, "wgroup", cookparms.getCookTime(), 0);
494  return result;
495  }
496  bool getKeep() const { return myKeep; }
497  void setKeep(bool val) { myKeep = val; }
498  bool opKeep(const SOP_NodeVerb::CookParms &cookparms) const
499  {
500  SOP_Node *thissop = cookparms.getNode();
501  if (!thissop) return getKeep();
502  bool result;
503  OP_Utils::evalOpParm(result, thissop, "keep", cookparms.getCookTime(), 0);
504  return result;
505  }
506 
507 private:
508  bool mySetcomponents;
509  int64 myComponents;
510  UT_StringHolder myXgroup;
511  UT_StringHolder myYgroup;
512  UT_StringHolder myZgroup;
513  UT_StringHolder myWgroup;
514  bool myKeep;
515 
516 };
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
bool opSetcomponents(const SOP_NodeVerb::CookParms &cookparms) const
type
Definition: core.h:556
void doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
const char * getNestParmName(TempIndex fieldnum) const override
static void saveData(std::ostream &os, int64 v)
static void loadData(UT_IStream &is, UT_SharedPtr< UT_Ramp > &v)
int int32
Definition: SYS_Types.h:39
SOP_Node * getNode() const
Definition: SOP_NodeVerb.h:347
void doGetParmValue(TempIndex idx, TempIndex instance, T &value) const
static void loadData(UT_IStream &is, UT_Vector4D &v)
static void loadData(UT_IStream &is, fpreal64 &v)
T clampMaxValue(fpreal maxvalue, const T &src) const
Definition: OP_NodeParms.h:324
UT_StringHolder opYgroup(const SOP_NodeVerb::CookParms &cookparms) const
static void saveData(std::ostream &os, UT_Vector4D v)
static void saveData(std::ostream &os, bool v)
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
exint bread(int32 *buffer, exint asize=1)
GLboolean * data
Definition: glcorearb.h:131
GT_API const UT_StringHolder time
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector4.h:493
const GLdouble * v
Definition: glcorearb.h:837
fpreal getTime() const
Definition: OP_Context.h:63
GLsizei const GLfloat * value
Definition: glcorearb.h:824
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &value) override
static void loadData(UT_IStream &is, UT_StringHolder &v)
void setZgroup(const UT_StringHolder &val)
static void saveData(std::ostream &os, UT_Vector2D v)
const OP_Context & context() const
Definition: OP_NodeParms.h:97
exint getNestNumParms(TempIndex idx) const override
constexpr SYS_FORCE_INLINE T & z() noexcept
Definition: UT_Vector3.h:667
int64 exint
Definition: SYS_Types.h:125
static void saveData(std::ostream &os, UT_Matrix2D v)
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
static void loadData(UT_IStream &is, UT_Vector3I &v)
SYS_FORCE_INLINE const char * buffer() const
static void saveData(std::ostream &os, UT_SharedPtr< UT_Ramp > s)
GLdouble s
Definition: glad.h:3009
An output stream object that owns its own string buffer storage.
const UT_StringHolder & getXgroup() const
**But if you need a result
Definition: thread.h:622
static void saveData(std::ostream &os, PRM_DataItemHandle s)
T clampMinValue(fpreal minvalue, const T &src) const
Definition: OP_NodeParms.h:317
UT_StringHolder opXgroup(const SOP_NodeVerb::CookParms &cookparms) const
exint nodeIdx() const
Definition: OP_NodeParms.h:95
static PRM_DataItemHandle parseBinary(const char *type, UT_IStream &is)
void save(std::ostream &os) const
const UT_WorkBuffer & str()
Returns a read-only reference to the underlying UT_WorkBuffer.
static void loadData(UT_IStream &is, UT_Vector2D &v)
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector4.h:491
void copyFrom(const OP_NodeParms *src) override
static void loadData(UT_IStream &is, UT_Vector3D &v)
double fpreal64
Definition: SYS_Types.h:201
UT_SharedPtr< const PRM_DataItem > PRM_DataItemHandle
Definition: APEX_Include.h:55
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector2.h:423
bool operator==(const BaseDimensions< T > &a, const BaseDimensions< Y > &b)
Definition: Dimensions.h:137
void loadFromOpSubclass(const LoadParms &loadparms) override
static void loadData(UT_IStream &is, PRM_DataItemHandle &v)
UT_StringHolder opWgroup(const SOP_NodeVerb::CookParms &cookparms) const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
exint length() const
ParmType getNestParmType(TempIndex fieldnum) const override
const UT_StringHolder & getWgroup() const
SYS_FORCE_INLINE const char * buffer() const
std::shared_ptr< T > UT_SharedPtr
Wrapper around std::shared_ptr.
Definition: UT_SharedPtr.h:36
constexpr SYS_FORCE_INLINE T & z() noexcept
Definition: UT_Vector4.h:495
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
const OP_GraphProxy * graph() const
Definition: OP_NodeParms.h:94
static void loadData(UT_IStream &is, UT_Vector4I &v)
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
UT_StringHolder opZgroup(const SOP_NodeVerb::CookParms &cookparms) const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr< UT_Ramp > &value) override
long long int64
Definition: SYS_Types.h:116
static void saveData(std::ostream &os, UT_Matrix4D v)
const UT_StringHolder & getYgroup() const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
virtual void evalOpParm(int64 &v, NodeIdx node, const char *parmname, fpreal time, DEP_MicroNode *depnode) const =0
void setYgroup(const UT_StringHolder &val)
void saveBinary(std::ostream &os) const
Save string to binary stream.
Definition: UT_String.h:303
GT_API const UT_StringHolder version
bool operator==(const SOP_VolumeVectorJoinParms &src) const
void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
const UT_StringHolder & getZgroup() const
static void loadData(UT_IStream &is, bool &v)
static void loadData(UT_IStream &is, int64 &v)
void coerceValue(T &result, const S &src) const
Definition: OP_NodeParms.h:310
static void loadData(UT_IStream &is, UT_Vector2I &v)
static void loadData(UT_IStream &is, UT_Matrix2D &v)
void getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
fpreal64 fpreal
Definition: SYS_Types.h:278
DEP_MicroNode * depnode() const
Definition: OP_NodeParms.h:99
void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
int64 opComponents(const SOP_NodeVerb::CookParms &cookparms) const
void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
Utility class for containing a color ramp.
Definition: UT_Ramp.h:96
static void saveData(std::ostream &os, UT_StringHolder s)
constexpr SYS_FORCE_INLINE T & w() noexcept
Definition: UT_Vector4.h:497
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
GLuint GLfloat * val
Definition: glcorearb.h:1608
virtual UT_StringHolder baseGetSignature() const
Definition: OP_NodeParms.h:294
void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr< UT_Ramp > &value) const override
static void loadData(UT_IStream &is, UT_Matrix4D &v)
#define SOP_API
Definition: SOP_API.h:10
static void loadData(UT_IStream &is, UT_Matrix3D &v)
bool operator!=(const SOP_VolumeVectorJoinParms &src) const
fpreal getCookTime() const
Definition: SOP_NodeVerb.h:372
const char * findChar(int c) const
Definition: UT_String.h:1401
#define UT_ASSERT(ZZ)
Definition: UT_Assert.h:156
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override
GLboolean r
Definition: glcorearb.h:1222
void setXgroup(const UT_StringHolder &val)
void buildFromOp(const OP_GraphProxy *graph, exint nodeidx, fpreal time, DEP_MicroNode *depnode)
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector3.h:665
static void saveData(std::ostream &os, UT_Matrix3D v)
static void saveData(std::ostream &os, UT_Vector3D v)
bool isParmColorRamp(exint idx) const override
void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
virtual bool isDirect() const =0
Direct proxies mirror actual nodes:
void setWgroup(const UT_StringHolder &val)
static void saveData(std::ostream &os, fpreal64 v)
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector2.h:425
SYS_FORCE_INLINE bool isstring() const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
OP_NodeParms & operator=(const OP_NodeParms &)=default
void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
SYS_FORCE_INLINE void strncpy(const char *src, exint maxlen)
GLenum src
Definition: glcorearb.h:1793
bool opKeep(const SOP_NodeVerb::CookParms &cookparms) const
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector3.h:663