Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoMaterialElement.h
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2025 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Modified by : VSG (MMM YYYY)
22**=======================================================================*/
23
24
25#ifndef _SO_MATERIAL_ELEMENT
26#define _SO_MATERIAL_ELEMENT
27
28#include <Inventor/SbBasic.h>
29#include <Inventor/SbColor.h>
30#include <Inventor/elements/SoReplacedElement.h>
31#include <Inventor/elements/SoSubElement.h>
32#include <Inventor/devices/SoCpuBufferObject.h>
33#include <math.h>
34
35class SoMFFloat;
36class SoMFColor;
37class SbThreadMutex;
38
52
53SoEXTENDER_Documented class SoMaterialElement : public SoReplacedElement {
54 SO_ELEMENT_HEADER(SoMaterialElement);
55
56 public:
57
59 enum masks {
63 DIFFUSE_MASK = 1 << 2,
65 AMBIENT_MASK = 1 << 3,
67 EMISSIVE_MASK = 1 << 4,
69 SPECULAR_MASK = 1 << 5,
75 ALL_MASK = 0xFFFF,
76 };
77
81 enum Face
82 {
85
88 };
89
94 static void setDiffuse(SoState* state, Face face, SoNode* node, int32_t numColors, const SbColor* colors);
95
100 static void setTransparency(SoState* state, Face face, SoNode* node, int32_t numTransp, const float* transp);
101
105 static void setPacked(SoState* state, Face face, SoNode* node, int32_t numColors, const uint32_t* colors);
106
111 static void setColorIndices(SoState* state, Face face, SoNode* node, int32_t numIndices, const int32_t* indices);
112
113 static void setAmbient(SoState* state, Face face, SoNode* node, const SbColor& color);
114 static void setEmissive(SoState* state, Face face, SoNode* node, const SbColor& color);
115 static void setSpecular(SoState* state, Face face, SoNode* node, const SbColor& color);
116
117 static void setShininess(SoState* state, Face face, SoNode* node, float value);
118 static void setColorMaterial(SoState* state, Face face, SoNode* node, SbBool value);
119
120 // Physically based parameters
121 static void setSpecularFactor(SoState* state, Face face, SoNode* node, float value);
122 static void setRoughness(SoState* state, Face face, SoNode* node, float value);
123 static void setMetallic(SoState* state, Face face, SoNode* node, float value);
124
129 static SbColor getDiffuse(SoState* state, Face face, int index);
130
135 static float getTransparency(SoState* state, Face face, int index);
136
139
144 static const int32_t* getColorIndices(SoState* state, Face face);
145
146 static int32_t getColorIndex(SoState* state, Face face, int num);
147
148 static const SbColor& getAmbient(SoState* state, Face face);
149 static const SbColor& getEmissive(SoState* state, Face face);
150 static const SbColor& getSpecular(SoState* state, Face face);
151 static float getShininess(SoState* state, Face face);
152
153 static SbBool getColorMaterial(SoState* state, Face face);
154
155 // Physically based parameters
156 static float getSpecularFactor(SoState* state, Face face);
157 static float getRoughness(SoState* state, Face face);
158 static float getMetallic(SoState* state, Face face);
159
163 static size_t getNumDiffuse(SoState* state, Face face);
164
168 static size_t getNumColorIndices(SoState* state, Face face);
169
173 static int32_t getNumTransparencies(SoState* state, Face face);
174
178 static bool isTransparent( SoState* state );
179
184 return 0.2F;
185 }
186
191 return SbColor(0.8F, 0.8F, 0.8F);
192 }
193
197 return SbColor(0.2F, 0.2F, 0.2F);
198 }
199
203 return SbColor(0.0F, 0.0F, 0.0F);
204 }
205
209 return SbColor(0.0F, 0.0F, 0.0F);
210 }
211
214 static float getDefaultShininess() {
215 return 0.2F;
216 }
217
218 // Physically based parameters
219
221 {
222 return 0.0f;
223 }
224
225 static float getDefaultRoughness()
226 {
227 return 0.8f;
228 }
229
230 static float getDefaultMetallic()
231 {
232 return 0.0f;
233 }
234
238 static float getDefaultTransparency() {
239 return 0.0F;
240 }
241
244 static int32_t getDefaultColorIndex() {
245 return 1;
246 }
247
249 virtual void push(SoState *state);
251 virtual void pop( SoState* state, const SoElement* prevTopElement );
252
253#if 1 SoDEPRECATED
258 static void setDiffuse(SoState* state, SoNode* node, int32_t numColors, const SbColor* colors)
259 {
260 setDiffuse(state, FRONT, node, numColors, colors);
261 }
262SoDEPRECATED
268 static void setTransparency(SoState* state, SoNode* node, int32_t numTransp, const float* transp)
269 {
270 setTransparency(state, FRONT, node, numTransp, transp);
271 }
272SoDEPRECATED
277 static void setPacked(SoState* state, SoNode* node, int32_t numColors, const uint32_t* colors)
278 {
279 setPacked(state, FRONT, node, numColors, colors);
280 }
281SoDEPRECATED
286 static void setColorIndices(SoState* state, SoNode* node, int32_t numIndices, const int32_t* indices)
287 {
288 setColorIndices(state, FRONT, node, numIndices, indices);
289 }
290SoDEPRECATED
292 static void setAmbient(SoState* state, SoNode* node, const SbColor& color)
293 {
294 setAmbient(state, FRONT, node, color);
295 }
296SoDEPRECATED
298 static void setEmissive(SoState* state, SoNode* node, const SbColor& color)
299 {
300 setEmissive(state, FRONT, node, color);
301 }
302SoDEPRECATED
304 static void setSpecular(SoState* state, SoNode* node, const SbColor& color)
305 {
306 setSpecular(state, FRONT, node, color);
307 }
308SoDEPRECATED
310 static void setShininess(SoState* state, SoNode* node, float value)
311 {
312 setShininess(state, FRONT, node, value);
313 }
314SoDEPRECATED
316 static void setColorMaterial(SoState* state, SoNode* node, SbBool value)
317 {
318 setColorMaterial(state, FRONT, node, value);
319 }
320
321 // Physically-based parameters
322SoDEPRECATED
324 static void setSpecularFactor(SoState* state, SoNode* node, float value)
325 {
326 setSpecularFactor(state, FRONT, node, value);
327 }
328SoDEPRECATED
330 static void setRoughness(SoState* state, SoNode* node, float value)
331 {
332 setRoughness(state, FRONT, node, value);
333 }
334SoDEPRECATED
336 static void setMetallic(SoState* state, SoNode* node, float value)
337 {
338 setMetallic(state, FRONT, node, value);
339 }
340
341SoDEPRECATED
343 static SbColor getDiffuse(SoState* state, int index)
344 {
345 return getDiffuse(state, FRONT, index);
346 }
347SoDEPRECATED
349 static float getTransparency(SoState* state, int index)
350 {
351 return getTransparency(state, FRONT, index);
352 }
353SoDEPRECATED
356 {
357 return getPackedColors(state, FRONT);
358 }
359SoDEPRECATED
361 static const int32_t* getColorIndices(SoState* state)
362 {
363 return getColorIndices(state, FRONT);
364 }
365SoDEPRECATED
367 static int32_t getColorIndex(SoState* state, int num)
368 {
369 return getColorIndex(state, FRONT, num);
370 }
371SoDEPRECATED
373 static const SbColor& getAmbient(SoState* state)
374 {
375 return getAmbient(state, FRONT);
376 }
377SoDEPRECATED
379 static const SbColor& getEmissive(SoState* state)
380 {
381 return getEmissive(state, FRONT);
382 }
383SoDEPRECATED
385 static const SbColor& getSpecular(SoState* state)
386 {
387 return getSpecular(state, FRONT);
388 }
389SoDEPRECATED
391 static float getShininess(SoState* state)
392 {
393 return getShininess(state, FRONT);
394 }
395SoDEPRECATED
398 {
399 return getColorMaterial(state, FRONT);
400 }
401SoDEPRECATED
403 static float getSpecularFactor(SoState* state)
404 {
405 return getSpecularFactor(state, FRONT);
406 }
407SoDEPRECATED
409 static float getRoughness(SoState* state)
410 {
411 return getRoughness(state, FRONT);
412 }
413SoDEPRECATED
415 static float getMetallic(SoState* state)
416 {
417 return getMetallic(state, FRONT);
418 }
419SoDEPRECATED
421 static size_t getNumDiffuse(SoState* state)
422 {
423 return getNumDiffuse(state, FRONT);
424 }
425SoDEPRECATED
427 static size_t getNumColorIndices(SoState* state)
428 {
429 return getNumColorIndices(state, FRONT);
430 }
431SoDEPRECATED
433 static int32_t getNumTransparencies(SoState* state)
434 {
435 return getNumTransparencies(state, FRONT);
436 }
437#endif
438
439private:
440
442 virtual void commonInit();
443
445 virtual void init(SoState *state);
446
453 virtual SbBool matches(const SoElement *) const;
454
460 virtual SoElement* copyMatchInfo() const;
461
462 private:
463
464 // set method for use in SoMaterial nodes:
465 static void setMaterials(SoState* state,
466 Face face,
467 SoNode* node,
468 uint32_t bitmask,
469 const SoMFColor &diffuse,
470 const SoMFFloat &transp,
471 const SoMFColor &ambient,
472 const SoMFColor &emissive,
473 const SoMFColor &specular,
474 const SoMFFloat &shininess);
475
476 // Prints element (for debugging)
477 virtual void print(FILE *fp) const;
478
479 // Initializes the SoMaterialElement class
480 static void initClass();
481 static void exitClass();
482
483 static const SbColor* getDiffusePointer(SoState* state, Face face);
484 const SbColor* getDiffusePointer(Face face) const;
485
486 static const int32_t* getColorIndexPointer(SoState* state, Face face);
487 static const float* getTransparencyPointer(SoState* state, Face face);
488 const float* getTransparencyPointer(Face face) const;
489
490 static void setHasTransparency( SoState* state, SoNode* node, int hasTransparency );
491
492 static const SoMaterialElement* getInstance( SoState* state );
493
494 const SbColor& getAmbient(Face face) const;
495 const SbColor& getEmissive(Face face) const;
496 const SbColor& getSpecular(Face face) const;
497 float getShininess(Face face) const;
498
499 // Physically based parameters
500 float getSpecularFactor(Face face) const;
501 float getRoughness(Face face) const;
502 float getMetallic(Face face) const;
503
504 int32_t getNumDiffuse(Face face) const
505 {
506 return m_materialProperties[face].numDiffuseColors;
507 }
508
509 int32_t getNumColorIndices(Face face) const
510 {
511 return (m_materialProperties[face].colorIndices ? m_materialProperties[face].numDiffuseColors : 0);
512 }
513
514 int32_t getNumTransparencies(Face face) const;
515 bool isTransparent() const;
516 SoCpuBufferObject* getPackedColors(Face face) const;
517
518 bool isPacked(Face face) const
519 {
520 return m_materialProperties[face].packedColors.ptr() != nullptr;
521 }
522
523#if 1
524SoDEPRECATED
526 static void setMaterials(SoState* state, SoNode* node, uint32_t bitmask,
527 const SoMFColor& diffuse, const SoMFFloat& transp, const SoMFColor& ambient,
528 const SoMFColor& emissive, const SoMFColor& specular, const SoMFFloat& shininess)
529 {
530 setMaterials(state, FRONT, node, bitmask, diffuse, transp, ambient, emissive, specular, shininess);
531 }
532SoDEPRECATED
534 static const SbColor* getDiffusePointer(SoState* state)
535 {
536 return getDiffusePointer(state, FRONT);
537 }
538SoDEPRECATED
540 const SbColor* getDiffusePointer() const
541 {
542 return getDiffusePointer(FRONT);
543 }
544SoDEPRECATED
546 static const int32_t* getColorIndexPointer(SoState* state)
547 {
548 return getColorIndexPointer(state, FRONT);
549 }
550SoDEPRECATED
552 static const float* getTransparencyPointer(SoState* state)
553 {
554 return getTransparencyPointer(state, FRONT);
555 }
556SoDEPRECATED
558 const float* getTransparencyPointer() const
559 {
560 return getTransparencyPointer(FRONT);
561 }
562SoDEPRECATED
564 const SbColor& getAmbient() const
565 {
566 return getAmbient(FRONT);
567 }
568SoDEPRECATED
570 const SbColor& getEmissive() const
571 {
572 return getEmissive(FRONT);
573 }
574SoDEPRECATED
576 const SbColor& getSpecular() const
577 {
578 return getSpecular(FRONT);
579 }
580SoDEPRECATED
582 float getShininess() const
583 {
584 return getShininess(FRONT);
585 }
586
587 // Physically-based parameters
588SoDEPRECATED
590 float getSpecularFactor() const
591 {
592 return getSpecularFactor(FRONT);
593 }
594SoDEPRECATED
596 float getRoughness() const
597 {
598 return getRoughness(FRONT);
599 }
600SoDEPRECATED
602 float getMetallic() const
603 {
604 return getMetallic(FRONT);
605 }
606
607SoDEPRECATED
609 int32_t getNumDiffuse() const
610 {
611 return getNumDiffuse(FRONT);
612 }
613SoDEPRECATED
615 int32_t getNumColorIndices() const
616 {
618 }
619SoDEPRECATED
621 int32_t getNumTransparencies() const
622 {
624 }
625SoDEPRECATED
627 SoCpuBufferObject* getPackedColors() const
628 {
629 return getPackedColors(FRONT);
630 }
631SoDEPRECATED
633 bool isPacked() const
634 {
635 return isPacked(FRONT);
636 }
637
638#endif
639
640private:
641 //Struct to hold material parameters
642 struct Material
643 {
644 public:
645 Material()
646 {
647 //The memset ensure that we are also clearing the possible padding
648 //which is needed when doing memcmp in match method
649 memset(this, 0, sizeof(Material));
650 dirtyPackedColor = true;
651 packedColorExplicitelySet = false;
652 }
653 const SbColor *diffuseColors;
654 SoRef<SoCpuBufferObject> packedColors;
655 const float *transparencies;
656 const int32_t *colorIndices;
657
658 SbColor ambientColor;
659 SbColor emissiveColor;
660 SbColor specularColor;
661 float shininess;
662 int32_t colorMaterial;
663
664 // Physically based parameters
665 float specularFactor;
666 float roughness;
667 float metallic;
668
669 int32_t numDiffuseColors;
670 int32_t numTransparencies;
671
672 //True if we need to recreate the packed color buffer
673 bool dirtyPackedColor : 1;
674
675 bool packedColorExplicitelySet : 1;
676 };
677
678 // 2 for front & back materials
679 Material m_materialProperties[2];
680
681 virtual ~SoMaterialElement();
682
683 // store the default color, transp so that we can set
684 // point to them if no other color or transp has been set.
685 static SbColor s_defaultDiffuseColor;
686 static float s_defaultTransparency;
687 static int32_t s_defaultColorIndices;
688 static SoCpuBufferObject* s_defaultPackedColorBuffer;
689
690 // -1 = don't know yet, 0 = no transp, 1 = has transp
691 int m_hasTransparency;
692
693 private:
698 static SoMaterialElement* getWInstance( SoState* state, SoNode* node = nullptr );
699
701 SoCpuBufferObject* packDiffuseColors(Face face);
702
703 void setDiffuseElt(Face face, int32_t numColors, const SbColor *colors);
704 void setColorIndexElt(Face face, int32_t numIndices, const int32_t *indices);
705 void setTranspElt(Face face, int32_t numTrans, const float *trans);
706 void setAmbientElt(Face face, const SbColor *color);
707 void setEmissiveElt(Face face, const SbColor *color);
708 void setSpecularElt(Face face, const SbColor *color);
709 void setShininessElt(Face face, float value);
710 void setColorMaterialElt(Face face, SbBool value);
711 void setMaterialElt(Face face, uint32_t bitmask,
712 const SoMFColor &, const SoMFFloat &, const SoMFColor &,
713 const SoMFColor &, const SoMFColor &, const SoMFFloat &);
714
715 // Physically based parameters
716 void setSpecularFactorElt(Face face, float value);
717 void setRoughnessElt(Face face, float value);
718 void setMetallicElt(Face face, float value);
719
720 static const float S_SHINY_THRESHOLD;
721};
722
723#endif /* _SO_MATERIAL_ELEMENT */
724
Color vector class.
Definition SbColor.h:82
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Portable mutex c...
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> CPU buffer objec...
Abstract base class for all state elements.
Definition SoElement.h:102
friend class SoState
Definition SoElement.h:406
Multiple-value field containing any number of RGB colors stored as three floats.
Definition SoMFColor.h:98
Multiple-value field containing any number of floating point values.
Definition SoMFFloat.h:90
Store in the state the material properties set by some property nodes.
static float getShininess(SoState *state, Face face)
static SbColor getDefaultEmissive()
Specify Open Inventor defaults for colors, etc.
static SoDEPRECATED float getShininess(SoState *state)
static const SbColor & getSpecular(SoState *state, Face face)
static int32_t getNumTransparencies(SoState *state, Face face)
Method to inquire about current colors.
static void setEmissive(SoState *state, Face face, SoNode *node, const SbColor &color)
static void setDiffuse(SoState *state, Face face, SoNode *node, int32_t numColors, const SbColor *colors)
Static set method.
static const SbColor & getEmissive(SoState *state, Face face)
static void setShininess(SoState *state, Face face, SoNode *node, float value)
static float getDefaultSpecularFactor()
static SoDEPRECATED const SbColor & getEmissive(SoState *state)
static SoDEPRECATED void setColorMaterial(SoState *state, SoNode *node, SbBool value)
static float getDefaultRoughness()
static SoDEPRECATED size_t getNumDiffuse(SoState *state)
static SbColor getDefaultDiffuse()
Specify Open Inventor defaults for colors, etc.
static size_t getNumColorIndices(SoState *state, Face face)
Method to inquire about current colors.
virtual void pop(SoState *state, const SoElement *prevTopElement)
Unref buffer object of the popped element.
static bool isTransparent(SoState *state)
Method to inquire about current colors.
static SoDEPRECATED void setTransparency(SoState *state, SoNode *node, int32_t numTransp, const float *transp)
Static set method.
static void setRoughness(SoState *state, Face face, SoNode *node, float value)
static SoDEPRECATED void setSpecularFactor(SoState *state, SoNode *node, float value)
static void setMetallic(SoState *state, Face face, SoNode *node, float value)
static SbColor getDefaultSpecular()
Specify Open Inventor defaults for colors, etc.
static SoDEPRECATED void setAmbient(SoState *state, SoNode *node, const SbColor &color)
static SoDEPRECATED void setShininess(SoState *state, SoNode *node, float value)
static float getDefaultMetallic()
static void setColorIndices(SoState *state, Face face, SoNode *node, int32_t numIndices, const int32_t *indices)
Static set method.
static void setTransparency(SoState *state, Face face, SoNode *node, int32_t numTransp, const float *transp)
Static set method.
static float getMetallic(SoState *state, Face face)
static void setSpecularFactor(SoState *state, Face face, SoNode *node, float value)
static SoDEPRECATED SoCpuBufferObject * getPackedColors(SoState *state)
static void setSpecular(SoState *state, Face face, SoNode *node, const SbColor &color)
static float getDefaultShininess()
Specify Open Inventor defaults for colors, etc.
static SbColor getDefaultAmbient()
Specify Open Inventor defaults for colors, etc.
static SoCpuBufferObject * getPackedColors(SoState *state, Face face)
Return packed colors if any.
static SoDEPRECATED float getSpecularFactor(SoState *state)
static SoDEPRECATED const int32_t * getColorIndices(SoState *state)
static SoDEPRECATED void setMetallic(SoState *state, SoNode *node, float value)
static float getDefaultTransparency()
Specify Open Inventor defaults for colors, etc.
@ DIFFUSE_MASK
Diffuse mask.
@ AMBIENT_MASK
Ambient mask.
@ EMISSIVE_MASK
Emissive mask.
@ SPECULAR_MASK
Specular mask.
@ TRANSPARENCY_MASK
Transparency mask.
@ COLOR_MATERIAL_MASK
Color mask.
@ SHININESS_MASK
Shininess mask.
static SoDEPRECATED void setRoughness(SoState *state, SoNode *node, float value)
static SoDEPRECATED int32_t getNumTransparencies(SoState *state)
static SoDEPRECATED void setDiffuse(SoState *state, SoNode *node, int32_t numColors, const SbColor *colors)
static float getTransparency(SoState *state, Face face, int index)
get() methods get value from Inventor state.
static const SbColor & getAmbient(SoState *state, Face face)
static SoDEPRECATED size_t getNumColorIndices(SoState *state)
static float getRoughness(SoState *state, Face face)
virtual void push(SoState *state)
Copy current material into the pushed element.
static SoDEPRECATED void setEmissive(SoState *state, SoNode *node, const SbColor &color)
static SoDEPRECATED SbColor getDiffuse(SoState *state, int index)
static SbBool getColorMaterial(SoState *state, Face face)
static float getSpecularFactor(SoState *state, Face face)
static size_t getNumDiffuse(SoState *state, Face face)
Returns the number of diffuse colors.
static SbColor getDiffuse(SoState *state, Face face, int index)
get() methods get value from Inventor state.
static SoDEPRECATED void setPacked(SoState *state, SoNode *node, int32_t numColors, const uint32_t *colors)
static int32_t getColorIndex(SoState *state, Face face, int num)
static void setAmbient(SoState *state, Face face, SoNode *node, const SbColor &color)
static const int32_t * getColorIndices(SoState *state, Face face)
static int32_t getDefaultColorIndex()
Specify Open Inventor defaults for colors, etc.
static SoDEPRECATED float getRoughness(SoState *state)
static void setColorMaterial(SoState *state, Face face, SoNode *node, SbBool value)
static SoDEPRECATED void setSpecular(SoState *state, SoNode *node, const SbColor &color)
static SoDEPRECATED float getMetallic(SoState *state)
static float getDefaultAmbientIntensity()
Specify Open Inventor defaults for colors, etc.
static void setPacked(SoState *state, Face face, SoNode *node, int32_t numColors, const uint32_t *colors)
static SoDEPRECATED float getTransparency(SoState *state, int index)
static SoDEPRECATED void setColorIndices(SoState *state, SoNode *node, int32_t numIndices, const int32_t *indices)
static SoDEPRECATED const SbColor & getSpecular(SoState *state)
static SoDEPRECATED int32_t getColorIndex(SoState *state, int num)
static SoDEPRECATED const SbColor & getAmbient(SoState *state)
static SoDEPRECATED SbBool getColorMaterial(SoState *state)
Abstract base class for all database nodes.
Definition SoNode.h:145
Traversal state.
Definition SoState.h:74
int SbBool
Boolean type.
Definition SbBase.h:87