HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SOP_Hole.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 <SOP/SOP_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  myGroup = ""_UTsh;
32  myBreak = false;
33  myDist = 0.001;
34  myAngle = 1;
35  mySnap = false;
36 
37  }
38 
39  explicit SOP_HoleParms(const SOP_HoleParms &) = default;
40  SOP_HoleParms &operator=(const SOP_HoleParms &) = default;
41  SOP_HoleParms(SOP_HoleParms &&) noexcept = default;
42  SOP_HoleParms &operator=(SOP_HoleParms &&) noexcept = default;
43 
44  ~SOP_HoleParms() override {}
45 
46  bool operator==(const SOP_HoleParms &src) const
47  {
48  if (myGroup != src.myGroup) return false;
49  if (myBreak != src.myBreak) return false;
50  if (myDist != src.myDist) return false;
51  if (myAngle != src.myAngle) return false;
52  if (mySnap != src.mySnap) return false;
53 
54  return true;
55  }
56  bool operator!=(const SOP_HoleParms &src) const
57  {
58  return !operator==(src);
59  }
60 
61 
62 
63  void buildFromOp(const OP_GraphProxy *graph, exint nodeidx, fpreal time, DEP_MicroNode *depnode)
64  {
65  myGroup = ""_UTsh;
66  if (true)
67  graph->evalOpParm(myGroup, nodeidx, "group", time, 0);
68  myBreak = false;
69  if (true)
70  graph->evalOpParm(myBreak, nodeidx, "break", time, 0);
71  myDist = 0.001;
72  if (true && ( (true&&!(((getBreak()==1)))) ) )
73  graph->evalOpParm(myDist, nodeidx, "dist", time, 0);
74  myAngle = 1;
75  if (true && ( (true&&!(((getBreak()==1)))) ) )
76  graph->evalOpParm(myAngle, nodeidx, "angle", time, 0);
77  mySnap = false;
78  if (true && ( (true&&!(((getBreak()==1)))) ) )
79  graph->evalOpParm(mySnap, nodeidx, "snap", time, 0);
80 
81  }
82 
83 
84  void loadFromOpSubclass(const LoadParms &loadparms) override
85  {
86  buildFromOp(loadparms.graph(), loadparms.nodeIdx(), loadparms.context().getTime(), loadparms.depnode());
87  }
88 
89 
90  void copyFrom(const OP_NodeParms *src) override
91  {
92  *this = *((const SOP_HoleParms *)src);
93  }
94 
95  template <typename T>
96  void
97  doGetParmValue(TempIndex idx, TempIndex instance, T &value) const
98  {
99  if (idx.size() < 1)
100  return;
101  UT_ASSERT(idx.size() == instance.size()+1);
102  if (idx.size() != instance.size()+1)
103  return;
104  switch (idx[0])
105  {
106  case 0:
107  coerceValue(value, myGroup);
108  break;
109  case 1:
110  coerceValue(value, myBreak);
111  break;
112  case 2:
113  coerceValue(value, myDist);
114  break;
115  case 3:
116  coerceValue(value, myAngle);
117  break;
118  case 4:
119  coerceValue(value, mySnap);
120  break;
121 
122  }
123  }
124 
125  bool isParmColorRamp(exint idx) const override
126  {
127  switch (idx)
128  {
129 
130  }
131  return false;
132  }
133 
134  void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
135  { doGetParmValue(idx, instance, value); }
136  void getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
137  { doGetParmValue(idx, instance, value); }
138  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
139  { doGetParmValue(idx, instance, value); }
140  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
141  { doGetParmValue(idx, instance, value); }
142  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
143  { doGetParmValue(idx, instance, value); }
144  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override
145  { doGetParmValue(idx, instance, value); }
146  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
147  { doGetParmValue(idx, instance, value); }
148  void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
149  { doGetParmValue(idx, instance, value); }
150  void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
151  { doGetParmValue(idx, instance, value); }
152  void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr<UT_Ramp> &value) const override
153  { doGetParmValue(idx, instance, value); }
154  void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
155  { doGetParmValue(idx, instance, value); }
156 
157  template <typename T>
158  void
159  doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
160  {
161  if (idx.size() < 1)
162  return;
163  UT_ASSERT(idx.size() == instance.size()+1);
164  if (idx.size() != instance.size()+1)
165  return;
166  switch (idx[0])
167  {
168  case 0:
169  coerceValue(myGroup, ( ( value ) ));
170  break;
171  case 1:
172  coerceValue(myBreak, ( ( value ) ));
173  break;
174  case 2:
175  coerceValue(myDist, clampMinValue(0, ( value ) ));
176  break;
177  case 3:
178  coerceValue(myAngle, clampMinValue(0, ( value ) ));
179  break;
180  case 4:
181  coerceValue(mySnap, ( ( value ) ));
182  break;
183 
184  }
185  }
186 
187  void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
188  { doSetParmValue(idx, instance, value); }
189  void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
190  { doSetParmValue(idx, instance, value); }
191  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
192  { doSetParmValue(idx, instance, value); }
193  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
194  { doSetParmValue(idx, instance, value); }
195  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
196  { doSetParmValue(idx, instance, value); }
197  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
198  { doSetParmValue(idx, instance, value); }
199  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
200  { doSetParmValue(idx, instance, value); }
201  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &value) override
202  { doSetParmValue(idx, instance, value); }
203  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
204  { doSetParmValue(idx, instance, value); }
205  void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr<UT_Ramp> &value) override
206  { doSetParmValue(idx, instance, value); }
207  void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
208  { doSetParmValue(idx, instance, value); }
209 
210  exint getNestNumParms(TempIndex idx) const override
211  {
212  if (idx.size() == 0)
213  return 5;
214  switch (idx[0])
215  {
216 
217  }
218  // Invalid
219  return 0;
220  }
221 
222  const char *getNestParmName(TempIndex fieldnum) const override
223  {
224  if (fieldnum.size() < 1)
225  return 0;
226  switch (fieldnum[0])
227  {
228  case 0:
229  return "group";
230  case 1:
231  return "break";
232  case 2:
233  return "dist";
234  case 3:
235  return "angle";
236  case 4:
237  return "snap";
238 
239  }
240  return 0;
241  }
242 
243  ParmType getNestParmType(TempIndex fieldnum) const override
244  {
245  if (fieldnum.size() < 1)
246  return PARM_UNSUPPORTED;
247  switch (fieldnum[0])
248  {
249  case 0:
250  return PARM_STRING;
251  case 1:
252  return PARM_INTEGER;
253  case 2:
254  return PARM_FLOAT;
255  case 3:
256  return PARM_FLOAT;
257  case 4:
258  return PARM_INTEGER;
259 
260  }
261  return PARM_UNSUPPORTED;
262  }
263 
264  // Boiler plate to load individual types.
265  static void loadData(UT_IStream &is, int64 &v)
266  { is.bread(&v, 1); }
267  static void loadData(UT_IStream &is, bool &v)
268  { int64 iv; is.bread(&iv, 1); v = iv; }
269  static void loadData(UT_IStream &is, fpreal64 &v)
270  { is.bread<fpreal64>(&v, 1); }
271  static void loadData(UT_IStream &is, UT_Vector2D &v)
272  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1); }
273  static void loadData(UT_IStream &is, UT_Vector3D &v)
274  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
275  is.bread<fpreal64>(&v.z(), 1); }
276  static void loadData(UT_IStream &is, UT_Vector4D &v)
277  { is.bread<fpreal64>(&v.x(), 1); is.bread<fpreal64>(&v.y(), 1);
278  is.bread<fpreal64>(&v.z(), 1); is.bread<fpreal64>(&v.w(), 1); }
279  static void loadData(UT_IStream &is, UT_Matrix2D &v)
280  { for (int r = 0; r < 2; r++) for (int c = 0; c < 2; c++) is.bread<fpreal64>(&v(r, c), 1); }
281  static void loadData(UT_IStream &is, UT_Matrix3D &v)
282  { for (int r = 0; r < 3; r++) for (int c = 0; c < 3; c++) is.bread<fpreal64>(&v(r, c), 1); }
283  static void loadData(UT_IStream &is, UT_Matrix4D &v)
284  { for (int r = 0; r < 4; r++) for (int c = 0; c < 4; c++) is.bread<fpreal64>(&v(r, c), 1); }
285  static void loadData(UT_IStream &is, UT_Vector2I &v)
286  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1); }
287  static void loadData(UT_IStream &is, UT_Vector3I &v)
288  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
289  is.bread<int64>(&v.z(), 1); }
290  static void loadData(UT_IStream &is, UT_Vector4I &v)
291  { is.bread<int64>(&v.x(), 1); is.bread<int64>(&v.y(), 1);
292  is.bread<int64>(&v.z(), 1); is.bread<int64>(&v.w(), 1); }
294  { is.bread(v); }
296  { UT_StringHolder rampdata;
297  loadData(is, rampdata);
298  if (rampdata.isstring())
299  {
300  v.reset(new UT_Ramp());
301  UT_IStream istr((const char *) rampdata, rampdata.length(), UT_ISTREAM_ASCII);
302  v->load(istr);
303  }
304  else v.reset();
305  }
308  loadData(is, data);
309  if (data.isstring())
310  {
311  // Find the data type.
312  const char *colon = UT_StringWrap(data).findChar(':');
313  if (colon)
314  {
315  int typelen = colon - data.buffer();
317  type.strncpy(data.buffer(), typelen);
318  UT_IStream istr(((const char *) data) + typelen + 1, data.length() - (typelen + 1), UT_ISTREAM_BINARY);
319 
320  v = PRM_DataFactory::parseBinary(type.buffer(), istr);
321  }
322  }
323  else v.reset();
324  }
325 
326  static void saveData(std::ostream &os, int64 v)
327  { UTwrite(os, &v); }
328  static void saveData(std::ostream &os, bool v)
329  { int64 iv = v; UTwrite(os, &iv); }
330  static void saveData(std::ostream &os, fpreal64 v)
331  { UTwrite<fpreal64>(os, &v); }
332  static void saveData(std::ostream &os, UT_Vector2D v)
333  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y()); }
334  static void saveData(std::ostream &os, UT_Vector3D v)
335  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
336  UTwrite<fpreal64>(os, &v.z()); }
337  static void saveData(std::ostream &os, UT_Vector4D v)
338  { UTwrite<fpreal64>(os, &v.x()); UTwrite<fpreal64>(os, &v.y());
339  UTwrite<fpreal64>(os, &v.z()); UTwrite<fpreal64>(os, &v.w()); }
340  static void saveData(std::ostream &os, UT_Matrix2D v)
342  static void saveData(std::ostream &os, UT_Matrix3D v)
344  static void saveData(std::ostream &os, UT_Matrix4D v)
346  static void saveData(std::ostream &os, UT_StringHolder s)
347  { UT_StringWrap(s).saveBinary(os); }
348  static void saveData(std::ostream &os, UT_SharedPtr<UT_Ramp> s)
350  UT_OStringStream ostr;
351  if (s) s->save(ostr);
352  result = ostr.str();
353  saveData(os, result);
354  }
355  static void saveData(std::ostream &os, PRM_DataItemHandle s)
357  UT_OStringStream ostr;
358  if (s)
359  {
360  ostr << s->getDataTypeToken();
361  ostr << ":";
362  s->saveBinary(ostr);
363  }
364  result = ostr.str();
365  saveData(os, result);
366  }
367 
368 
369  void save(std::ostream &os) const
370  {
371  int32 v = version();
372  UTwrite(os, &v);
373  saveData(os, myGroup);
374  saveData(os, myBreak);
375  saveData(os, myDist);
376  saveData(os, myAngle);
377  saveData(os, mySnap);
378 
379  }
380 
381  bool load(UT_IStream &is)
382  {
383  int32 v;
384  is.bread(&v, 1);
385  if (version() != v)
386  {
387  // Fail incompatible versions
388  return false;
389  }
390  loadData(is, myGroup);
391  loadData(is, myBreak);
392  loadData(is, myDist);
393  loadData(is, myAngle);
394  loadData(is, mySnap);
395 
396  return true;
397  }
398 
399  const UT_StringHolder & getGroup() const { return myGroup; }
400  void setGroup(const UT_StringHolder & val) { myGroup = val; }
402  {
403  SOP_Node *thissop = cookparms.getNode();
404  if (!thissop) return getGroup();
406  OP_Utils::evalOpParm(result, thissop, "group", cookparms.getCookTime(), 0);
407  return result;
408  }
409  bool getBreak() const { return myBreak; }
410  void setBreak(bool val) { myBreak = val; }
411  bool opBreak(const SOP_NodeVerb::CookParms &cookparms) const
412  {
413  SOP_Node *thissop = cookparms.getNode();
414  if (!thissop) return getBreak();
415  bool result;
416  OP_Utils::evalOpParm(result, thissop, "break", cookparms.getCookTime(), 0);
417  return result;
418  }
419  fpreal64 getDist() const { return myDist; }
420  void setDist(fpreal64 val) { myDist = val; }
421  fpreal64 opDist(const SOP_NodeVerb::CookParms &cookparms) const
422  {
423  SOP_Node *thissop = cookparms.getNode();
424  if (!thissop) return getDist();
426  OP_Utils::evalOpParm(result, thissop, "dist", cookparms.getCookTime(), 0);
427  return result;
428  }
429  fpreal64 getAngle() const { return myAngle; }
430  void setAngle(fpreal64 val) { myAngle = val; }
431  fpreal64 opAngle(const SOP_NodeVerb::CookParms &cookparms) const
432  {
433  SOP_Node *thissop = cookparms.getNode();
434  if (!thissop) return getAngle();
436  OP_Utils::evalOpParm(result, thissop, "angle", cookparms.getCookTime(), 0);
437  return result;
438  }
439  bool getSnap() const { return mySnap; }
440  void setSnap(bool val) { mySnap = val; }
441  bool opSnap(const SOP_NodeVerb::CookParms &cookparms) const
442  {
443  SOP_Node *thissop = cookparms.getNode();
444  if (!thissop) return getSnap();
445  bool result;
446  OP_Utils::evalOpParm(result, thissop, "snap", cookparms.getCookTime(), 0);
447  return result;
448  }
449 
450 private:
451  UT_StringHolder myGroup;
452  bool myBreak;
453  fpreal64 myDist;
454  fpreal64 myAngle;
455  bool mySnap;
456 
457 };
static void loadData(UT_IStream &is, UT_Vector4D &v)
static void saveData(std::ostream &os, UT_Matrix3D v)
void setDist(fpreal64 val)
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_StringHolder &value) override
static void saveData(std::ostream &os, UT_SharedPtr< UT_Ramp > s)
int int32
Definition: SYS_Types.h:39
SOP_Node * getNode() const
Definition: SOP_NodeVerb.h:347
void getNestParmValue(TempIndex idx, TempIndex instance, UT_StringHolder &value) const override
static void loadData(UT_IStream &is, int64 &v)
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix3D &value) override
bool isParmColorRamp(exint idx) const override
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector2D &value) const override
static void loadData(UT_IStream &is, PRM_DataItemHandle &v)
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:62
static void loadData(UT_IStream &is, UT_Matrix4D &v)
const OP_Context & context() const
Definition: OP_NodeParms.h:97
bool load(UT_IStream &is)
static void saveData(std::ostream &os, UT_Matrix2D v)
constexpr SYS_FORCE_INLINE T & z() noexcept
Definition: UT_Vector3.h:667
int64 exint
Definition: SYS_Types.h:125
fpreal64 getAngle() const
SYS_FORCE_INLINE const char * buffer() const
void getNestParmValue(TempIndex idx, TempIndex instance, fpreal &value) const override
GLdouble s
Definition: glad.h:3009
exint getNestNumParms(TempIndex idx) const override
An output stream object that owns its own string buffer storage.
static void saveData(std::ostream &os, UT_Vector2D v)
static void loadData(UT_IStream &is, bool &v)
static void saveData(std::ostream &os, bool v)
void doGetParmValue(TempIndex idx, TempIndex instance, T &value) const
**But if you need a result
Definition: thread.h:613
bool opBreak(const SOP_NodeVerb::CookParms &cookparms) const
void setNestParmValue(TempIndex idx, TempIndex instance, const fpreal &value) override
T clampMinValue(fpreal minvalue, const T &src) const
Definition: OP_NodeParms.h:308
bool operator!=(const SOP_HoleParms &src) const
void loadFromOpSubclass(const LoadParms &loadparms) override
exint nodeIdx() const
Definition: OP_NodeParms.h:95
static PRM_DataItemHandle parseBinary(const char *type, UT_IStream &is)
const UT_WorkBuffer & str()
Returns a read-only reference to the underlying UT_WorkBuffer.
void buildFromOp(const OP_GraphProxy *graph, exint nodeidx, fpreal time, DEP_MicroNode *depnode)
static void loadData(UT_IStream &is, UT_Vector4I &v)
static void loadData(UT_IStream &is, UT_SharedPtr< UT_Ramp > &v)
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector4D &value) override
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector4.h:491
bool getBreak() const
void setAngle(fpreal64 val)
static void saveData(std::ostream &os, fpreal64 v)
double fpreal64
Definition: SYS_Types.h:201
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector2.h:423
fpreal64 opAngle(const SOP_NodeVerb::CookParms &cookparms) const
static void loadData(UT_IStream &is, UT_Vector3I &v)
bool operator==(const BaseDimensions< T > &a, const BaseDimensions< Y > &b)
Definition: Dimensions.h:137
void setSnap(bool val)
const UT_StringHolder & getGroup() const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix4D &value) override
exint length() const
static void loadData(UT_IStream &is, UT_Vector3D &v)
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
static void loadData(UT_IStream &is, fpreal64 &v)
static void loadData(UT_IStream &is, UT_Matrix2D &v)
const OP_GraphProxy * graph() const
Definition: OP_NodeParms.h:94
fpreal64 opDist(const SOP_NodeVerb::CookParms &cookparms) const
void getNestParmValue(TempIndex idx, TempIndex instance, exint &value) const override
long long int64
Definition: SYS_Types.h:116
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix4D &value) const override
void setGroup(const UT_StringHolder &val)
static void saveData(std::ostream &os, UT_Vector3D v)
virtual void evalOpParm(int64 &v, NodeIdx node, const char *parmname, fpreal time, DEP_MicroNode *depnode) const =0
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix2D &value) const override
bool opSnap(const SOP_NodeVerb::CookParms &cookparms) const
UT_StringHolder opGroup(const SOP_NodeVerb::CookParms &cookparms) const
void saveBinary(std::ostream &os) const
Save string to binary stream.
Definition: UT_String.h:296
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Matrix3D &value) const override
void getNestParmValue(TempIndex idx, TempIndex instance, PRM_DataItemHandle &value) const override
void copyFrom(const OP_NodeParms *src) override
static void saveData(std::ostream &os, int64 v)
static void loadData(UT_IStream &is, UT_Matrix3D &v)
GT_API const UT_StringHolder version
ParmType getNestParmType(TempIndex fieldnum) const override
const char * getNestParmName(TempIndex fieldnum) const override
static void loadData(UT_IStream &is, UT_Vector2D &v)
void coerceValue(T &result, const S &src) const
Definition: OP_NodeParms.h:301
fpreal64 getDist() const
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_SharedPtr< UT_Ramp > &value) override
bool operator==(const SOP_HoleParms &src) const
static void loadData(UT_IStream &is, UT_Vector2I &v)
fpreal64 fpreal
Definition: SYS_Types.h:277
DEP_MicroNode * depnode() const
Definition: OP_NodeParms.h:99
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector4D &value) const override
void getNestParmValue(TempIndex idx, TempIndex instance, UT_Vector3D &value) const override
void setNestParmValue(TempIndex idx, TempIndex instance, const exint &value) override
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Matrix2D &value) override
Utility class for containing a color ramp.
Definition: UT_Ramp.h:88
constexpr SYS_FORCE_INLINE T & w() noexcept
Definition: UT_Vector4.h:497
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector2D &value) override
GLuint GLfloat * val
Definition: glcorearb.h:1608
void setNestParmValue(TempIndex idx, TempIndex instance, const PRM_DataItemHandle &value) override
#define SOP_API
Definition: SOP_API.h:10
static void saveData(std::ostream &os, PRM_DataItemHandle s)
fpreal getCookTime() const
Definition: SOP_NodeVerb.h:361
const char * findChar(int c) const
Definition: UT_String.h:1385
#define UT_ASSERT(ZZ)
Definition: UT_Assert.h:156
Definition: core.h:1131
static void saveData(std::ostream &os, UT_Matrix4D v)
GLboolean r
Definition: glcorearb.h:1222
bool getSnap() const
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector3.h:665
void setNestParmValue(TempIndex idx, TempIndex instance, const UT_Vector3D &value) override
type
Definition: core.h:1059
void getNestParmValue(TempIndex idx, TempIndex instance, UT_SharedPtr< UT_Ramp > &value) const override
void save(std::ostream &os) const
static void saveData(std::ostream &os, UT_StringHolder s)
static void saveData(std::ostream &os, UT_Vector4D v)
static void loadData(UT_IStream &is, UT_StringHolder &v)
void setBreak(bool val)
UT_SharedPtr< const PRM_DataItem > PRM_DataItemHandle
Definition: PRM_Parm.h:89
constexpr SYS_FORCE_INLINE T & y() noexcept
Definition: UT_Vector2.h:425
SYS_FORCE_INLINE bool isstring() const
static int version()
OP_NodeParms & operator=(const OP_NodeParms &)=default
SYS_FORCE_INLINE void strncpy(const char *src, exint maxlen)
void doSetParmValue(TempIndex idx, TempIndex instance, const T &value)
GLenum src
Definition: glcorearb.h:1793
constexpr SYS_FORCE_INLINE T & x() noexcept
Definition: UT_Vector3.h:663