logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SoMFBitMask — multiple-value field containing any number of masks of bit flags

Description

       A  multiple-value  field that contains any number of masks of bit flags, stored as ints. Nodes or engines
       that use this field class define mnemonic names for the bit  flags.  These  names  should  be  used  when
       setting  or  testing  the  values  of  the  field,  even though the values are treated as integers in the
       methods.

       The bit-wise "&" and "|" operators should be used when testing and setting flags in a mask.

       SoMFBitMasks are written to file as one or more mnemonic enumerated type names, in this format:

          ( flag1 | flag2 | ... )

     If only one flag is used in a mask, the parentheses are optional. These names differ  among  uses  of  this
     field  in  various  node  or  engine classes. See the reference pages for specific nodes or engines for the
     names.

     The field values may also be represented as integers, but this is not guaranteed to be portable.

     When more than one value is present, all of the values are enclosed in square  brackets  and  separated  by
     commas.

Inherits From

       SoField > SoMField > SoMFEnum > SoMFBitMask

Methods

staticSoTypegetClassTypeId()virtualvoidgetTypeId()const
          Returns the type for this class or a particular object of this class.

     intoperator[](inti)const
          Returns  the  i'th  value  of the field. Indexing past the end of the field (passing in i greater than
          getNum()) will return garbage.

     constint*getValues(intstart)const
          Returns a pointer into the array of values in the field, starting at index start. The values are read-
          only; see the startEditing()/finishEditing() methods for a way of modifying values in place.

     intfind(inttargetValue,SbBooladdIfNotFound=FALSE)
          Finds the given value in the array and returns the index of that value in the array. If the  value  is
          not  found, -1 is returned. If addIfNotFound is set, then targetValue is added to the end of the array
          (but -1 is still returned).

     voidsetValues(intstart,intnum,constint*newValues)
          Sets num values starting at index start to the values in newValues. The array will be automatically be
          made larger to accomodate the new values, if necessary.

     voidset1Value(intindex,intnewValue)
          Sets the index'th value in the array to  newValue.  The  array  will  be  automatically  expanded,  if
          necessary.

     intoperator=(intnewValue)voidsetValue(intnewValue)
          Sets the first value in the array to newValue, and deletes the second and subsequent values.

     intoperator==(constSoMFBitMask&f)constintoperator!=(constSoMFBitMask&f)const
          Returns  TRUE if all of the values of this field equal (do not equal) those of the given field. If the
          fields are different types FALSE will always be returned (even if one field is an SoMFFloat  with  one
          value of 1.0 and the other is an SoMFInt with a value of 1, for example).

     int*startEditing()voidfinishEditing()startEditing()  returns  a pointer to the internally-maintained array that can be modified. The values
          in the array may be changed, but values cannot be added or removed. It is illegal to  call  any  other
          editing methods between startEditing() and finishEditing() (e.g. set1Value(), setValue(), etc).

          Fields,  engines  or  sensors connected to this field and sensors are not notified that this field has
          changed until finishEditing() is called. Calling finishEditing() always sets the isDefault()  flag  to
          FALSE and informs engines and sensors that the field changed, even if none of the values actually were
          changed.

                                                                                              SoMFBitMask(3IV)()

Name

       SoMFBitMask — multiple-value field containing any number of masks of bit flags

Synopsis

#include<Inventor/fields/SoMFBitMask.h>

          Methods from class SoMFBitMask:

     staticSoTypegetClassTypeId()virtualvoidgetTypeId()constintoperator[](inti)constconstint*getValues(intstart)constintfind(inttargetValue,SbBooladdIfNotFound=FALSE)voidsetValues(intstart,intnum,constint*newValues)voidset1Value(intindex,intnewValue)intoperator=(intnewValue)voidsetValue(intnewValue)intoperator==(constSoMFBitMask&f)constintoperator!=(constSoMFBitMask&f)constint*startEditing()voidfinishEditing()

          Methods from class SoMField:

     intgetNum()constvoidsetNum(intnum)virtualvoiddeleteValues(intstart,intnum=-1)virtualvoidinsertSpace(intstart,intnum)SbBoolset1(intindex,constchar*valueString)voidget1(intindex,SbString&valueString)

          Methods from class SoField:

     voidsetIgnored(SbBoolignore)SbBoolisIgnored()constSbBoolisDefault()constvirtualSbBoolisOfType(SoTypetype)constSbBoolset(constchar*valueString)voidget(SbString&valueString)voidtouch()SbBoolconnectFrom(SoField*fromField)SbBoolconnectFrom(SoEngineOutput*fromEngine)voiddisconnect()SbBoolisConnected()constSbBoolisConnectedFromField()constSbBoolgetConnectedField(SoField*&writingField)constSbBoolisConnectedFromEngine()constSbBoolgetConnectedEngine(SoEngineOutput*&engineOutput)constvoidenableConnection(SbBoolflag)SbBoolisConnectionEnabled()constintgetForwardConnections(SoFieldList&list)constSoFieldContainer*getContainer()const

See Also