25#ifndef _SO_MATERIAL_ELEMENT
26#define _SO_MATERIAL_ELEMENT
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>
53SoEXTENDER_Documented
class SoMaterialElement :
public SoReplacedElement {
54 SO_ELEMENT_HEADER(SoMaterialElement);
191 return SbColor(0.8F, 0.8F, 0.8F);
197 return SbColor(0.2F, 0.2F, 0.2F);
203 return SbColor(0.0F, 0.0F, 0.0F);
209 return SbColor(0.0F, 0.0F, 0.0F);
251 virtual void pop(
SoState* state,
const SoElement* prevTopElement );
442 virtual void commonInit();
445 virtual void init(
SoState *state);
460 virtual SoElement* copyMatchInfo()
const;
465 static void setMaterials(
SoState* state,
477 virtual void print(FILE *fp)
const;
480 static void initClass();
481 static void exitClass();
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;
490 static void setHasTransparency(
SoState* state,
SoNode* node,
int hasTransparency );
497 float getShininess(
Face face)
const;
500 float getSpecularFactor(
Face face)
const;
501 float getRoughness(
Face face)
const;
502 float getMetallic(
Face face)
const;
504 int32_t getNumDiffuse(
Face face)
const
506 return m_materialProperties[face].numDiffuseColors;
511 return (m_materialProperties[face].colorIndices ? m_materialProperties[face].numDiffuseColors : 0);
518 bool isPacked(
Face face)
const
520 return m_materialProperties[face].packedColors.ptr() !=
nullptr;
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)
530 setMaterials(state,
FRONT, node, bitmask, diffuse, transp, ambient, emissive, specular, shininess);
534 static const SbColor* getDiffusePointer(
SoState* state)
536 return getDiffusePointer(state,
FRONT);
540 const SbColor* getDiffusePointer()
const
542 return getDiffusePointer(
FRONT);
546 static const int32_t* getColorIndexPointer(
SoState* state)
548 return getColorIndexPointer(state,
FRONT);
552 static const float* getTransparencyPointer(
SoState* state)
554 return getTransparencyPointer(state,
FRONT);
558 const float* getTransparencyPointer()
const
560 return getTransparencyPointer(
FRONT);
633 bool isPacked()
const
635 return isPacked(
FRONT);
649 memset(
this, 0,
sizeof(Material));
650 dirtyPackedColor =
true;
651 packedColorExplicitelySet =
false;
653 const SbColor *diffuseColors;
654 SoRef<SoCpuBufferObject> packedColors;
655 const float *transparencies;
656 const int32_t *colorIndices;
658 SbColor ambientColor;
659 SbColor emissiveColor;
660 SbColor specularColor;
662 int32_t colorMaterial;
665 float specularFactor;
669 int32_t numDiffuseColors;
670 int32_t numTransparencies;
673 bool dirtyPackedColor : 1;
675 bool packedColorExplicitelySet : 1;
679 Material m_materialProperties[2];
681 virtual ~SoMaterialElement();
685 static SbColor s_defaultDiffuseColor;
686 static float s_defaultTransparency;
687 static int32_t s_defaultColorIndices;
688 static SoCpuBufferObject* s_defaultPackedColorBuffer;
691 int m_hasTransparency;
698 static SoMaterialElement* getWInstance(
SoState* state, SoNode* node =
nullptr );
701 SoCpuBufferObject* packDiffuseColors(
Face face);
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 &);
716 void setSpecularFactorElt(
Face face,
float value);
717 void setRoughnessElt(
Face face,
float value);
718 void setMetallicElt(
Face face,
float value);
720 static const float S_SHINY_THRESHOLD;
<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.
Multiple-value field containing any number of RGB colors stored as three floats.
Multiple-value field containing any number of floating point values.
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.