Open Inventor Reference
|
Abstract base class for objects that contain fields. More...
#include <Inventor/fields/SoFieldContainer.h>
Public Member Functions | |
void | setToDefaults () |
Sets all fields in this object to their default values. More... | |
bool | hasDefaultValues () const |
Returns TRUE if all of the object's fields have their default values. More... | |
bool | fieldsAreEqual (const SoFieldContainer *fc) const |
Returns TRUE if this object's fields are exactly equal to fc's fields. More... | |
void | copyFieldValues (const SoFieldContainer *fc, bool copyConnections=FALSE) |
Copies the contents of fc's fields into this object's fields. More... | |
bool | set (const char *fieldDataString) |
Sets one or more fields in this object to the values specified in the given string, which should be a string in the Inventor file format. More... | |
void | get (SbString &fieldDataString) |
Returns the values of the fields of this object in the Inventor ASCII file format in the given string. More... | |
virtual int | getFields (SoFieldList &list) const |
Appends pointers to all of this object's fields to resultList, and returns the number of fields appended. More... | |
virtual SoField * | getField (const SbName &fieldName) const |
Returns a pointer to the field with the given name. More... | |
bool | getFieldName (const SoField *field, SbName &fieldName) const |
Returns the name of the given field in the fieldName argument. More... | |
bool | enableNotify (bool flag) |
Notification at this Field Container is enabled (if flag == TRUE) or disabled (if flag == FALSE). More... | |
bool | isNotifyEnabled () const |
Notification is the process of telling interested objects that this object has changed. More... | |
bool | set (const char *fieldDataString, SoInput *dictIn) |
Sets one or more fields in this object to the values specified in the given string, which should be a string in the Inventor file format. More... | |
void | get (SbString &fieldDataString, SoOutput *dictOut) |
Returns the values of the fields of this object in the Inventor ASCII file format in the given string. More... | |
virtual void | notify (SoNotList *) |
Propagates modification notification through an instance. More... | |
virtual void | addWriteReference (SoOutput *out, bool isFromField=FALSE) |
Adds a reference to the instance when writing. More... | |
virtual void | writeInstance (SoOutput *out) |
Writes instance to SoOutput. (Used only for last stage of writing) More... | |
bool | getIsBuiltIn () const |
Returns whether or not instance is considered 'built-in' to the library. More... | |
virtual const SoFieldData * | getFieldData () const |
Returns an SoFieldData structure for the node. More... | |
virtual void | copyContents (const SoFieldContainer *fromFC, bool copyConnections) |
Copies the contents of the given node into this instance. More... | |
virtual SoFieldContainer * | copyThroughConnection () const |
During a copy operation, this copies an instance that is encountered through a field connection. More... | |
void | addManagedSensor (SoSensor *sensor) |
Adds a sensor which is managed by the field container. More... | |
![]() | |
void | ref () const |
Adds and removes a reference to an instance. More... | |
void | unref () const |
void | unrefNoDelete () const |
void | touch () |
Marks an instance as modified, simulating a change to it. More... | |
virtual SoType | getTypeId () const =0 |
Returns the type identifier for a specific instance. More... | |
bool | isOfType (SoType type) const |
Returns TRUE if this object is of the type specified in type or is derived from that type. More... | |
virtual SbName | getName () const |
Returns the name of an instance. More... | |
virtual void | setName (const SbName &name) |
Sets the name of an instance. More... | |
virtual void | startNotify () |
Initiates notification from an instance. More... | |
void | addAuditor (void *auditor, SoNotRec::Type type) |
Adds/removes an auditor to/from list. More... | |
void | removeAuditor (void *auditor, SoNotRec::Type type) |
const SoAuditorList & | getAuditors () |
Returns auditor list– used by SoField and SoEngineOutput to trace forward connections. More... | |
int | getRefCount () const |
Returns current reference count. More... | |
bool | shouldWrite () |
Returns TRUE if the instance should be written, based on the write-reference info already accumulated. More... | |
Static Public Member Functions | |
static SoType | getClassTypeId () |
Returns the type of this class. More... | |
static void | initClass () |
Setup type information. More... | |
static void | initCopyDict () |
During a copy operation, copies of nodes and engines are stored in a dictionary, keyed by the original node or engine pointer, so that copies can be re-used. More... | |
static void | addCopy (const SoFieldContainer *orig, const SoFieldContainer *copy) |
Adds an instance to the dictionary. More... | |
static SoFieldContainer * | checkCopy (const SoFieldContainer *orig) |
If a copy of the given instance is in the dictionary, this returns it. More... | |
static SoFieldContainer * | findCopy (const SoFieldContainer *orig, bool copyConnections) |
If a copy of the given instance is not in the dictionary, this returns NULL. More... | |
static void | copyDone () |
Cleans up the dictionary when done. More... | |
![]() | |
static SoType | getClassTypeId () |
Returns type identifier for this class. More... | |
static void | initClass () |
Setup type information. More... | |
static void | incrementCurrentWriteCounter () |
Increments the current write counter at the start of a write operation. More... | |
static void | decrementCurrentWriteCounter () |
Decrements the current write counter after a write operation, in some rare cases. More... | |
static void | addName (SoBase *, const char *) |
Internal methods used to maintain the global name dictionary. More... | |
static void | removeName (SoBase *, const char *) |
static SoBase * | getNamedBase (const SbName &, SoType) |
Helper routines used to get stuff out of nameDict. More... | |
static int | getNamedBases (const SbName &, SoBaseList &, SoType) |
static bool | read (SoInput *in, SoBase *&base, SoType expectedType) |
Reads one instance of some subclass of SoBase. More... | |
static void | setInstancePrefix (const SbString &c) |
This defaults to "+" and is used when naming nodes that are DEF's and USE'd. More... | |
Protected Member Functions | |
SoFieldContainer () | |
~SoFieldContainer () | |
virtual bool | readInstance (SoInput *in, unsigned short flags) |
Reads stuff into instance. Returns FALSE on error. More... | |
![]() | |
SoBase () | |
Constructor is protected - this is an abstract class. More... | |
virtual | ~SoBase () |
Virtual destructor so that subclasses are deleted properly. More... | |
virtual void | destroy () |
Actually deletes an instance. More... | |
bool | hasMultipleWriteRefs () const |
Returns TRUE if the instance has multiple write references. More... | |
bool | writeHeader (SoOutput *out, bool isGroup, bool isEngine) const |
Writes a header (name, open brace) or footer (close brace) to file defined by SoOutput. More... | |
void | writeFooter (SoOutput *out) const |
virtual const char * | getFileFormatName () const |
Unknown nodes and engines write a different name for themselves than their typeId; this virtual method lets them do that (by default the typeId name is returned) More... | |
Protected Attributes | |
bool | isBuiltIn |
Is the subclass a built-in Inventor subclass or an extender subclass? This is used to determine whether to read/write field type information. More... | |
Additional Inherited Members | |
![]() | |
static bool | traceRefs |
Turns on/off reference count tracing (for debugging) More... | |
![]() | |
enum | BaseFlags { IS_ENGINE = 1 , IS_GROUP = 2 } |
This set of enums is used when reading and writing the base. More... | |
![]() | |
static uint32_t | getCurrentWriteCounter () |
Returns current write counter. More... | |
SoFieldContainer is the abstract base class for engines and nodes. It contains methods for finding out what fields an object has, controlling notification, and for dealing with all of the fields of an object at once.
The fields of an engine are its inputs. Note that even though an engine's output corresponds to a specific type of field, an engine output is not a field.
Definition at line 92 of file SoFieldContainer.h.
|
protected |
|
protected |
|
static |
void SoFieldContainer::addManagedSensor | ( | SoSensor * | sensor | ) |
It will be deleted when the container is deleted.
|
static |
Otherwise, it returns NULL. The copy is not changed in any way.
|
virtual |
The default implementation copies just field values and the name.
Reimplemented in SoUnknownNode, SoUnknownEngine, SoWWWInline, SoNode, SoGroup, SoFile, SoCallback, SoNodeKitListPart, SoInteractionKit, SoBaseKit, SoTransformManip, SoSpotLightManip, SoPointLightManip, SoDirectionalLightManip, SoRotateSphericalDragger, and SoRotateCylindricalDragger.
|
static |
void SoFieldContainer::copyFieldValues | ( | const SoFieldContainer * | fc, |
bool | copyConnections = FALSE |
||
) |
fc
must be the same type as this object. If copyConnections
is TRUE, then if any of fc's
fields are connected then this object's fields will also be connected to the same source.
|
virtual |
The default implementation just returns the original pointer - no copy is done. Subclasses such as nodes and engines handle this differently.
Reimplemented in SoNode, SoSelectOne, SoGate, SoEngine, and SoConcatenate.
|
inline |
The returned boolean value indicates whether notification was enabled immediately prior to applying this method.
Definition at line 163 of file SoFieldContainer.h.
bool SoFieldContainer::fieldsAreEqual | ( | const SoFieldContainer * | fc | ) | const |
If fc
is not exactly same type as this object, FALSE is returned.
|
static |
Otherwise, this copies the contents of the original into the copy (if not already done) and returns a pointer to the copy.
|
inline |
Fields whose isDefault() bit is set will not be part of the string. You can use the field->get() method to get a field's value as a string even if has its default value.
Definition at line 140 of file SoFieldContainer.h.
Fields whose isDefault() bit is set will not be part of the string. You can use the field->get() method to get a field's value as a string even if has its default value.
|
inlinestatic |
Definition at line 97 of file SoFieldContainer.h.
If no such field exists, NULL is returned.
|
virtual |
Objects with no fields should return NULL, which is what the default method does.
Returns FALSE if field is not a member of this object.
|
virtual |
The types of the fields can be determined using field->isOfType() and field->getTypeId(), and their names can be determined by passing the field pointers to the getFieldName() method (see below).
|
inline |
Used during writing.
Definition at line 227 of file SoFieldContainer.h.
bool SoFieldContainer::hasDefaultValues | ( | ) | const |
This will return TRUE even if a field's isDefault() method returns FALSE em for example, if a field's default value is 0.0 and you setValue(0.0) that field, the default flag will be set to FALSE (because it would be too slow to compare the field against its default value every time setValue is called). However, hasDefaultValues() would return TRUE in this case.
|
static |
|
static |
These methods operate on that dictionary. Initializes a new copy dictionary
|
inline |
Notification is needed to make engines and sensors function, is used to keep SoPaths up to date when the scene graph's topology changes, and is also used to invalidate rendering or bounding box caches.
Notification is normally enabled, but can be disabled on a node by node (or engine by engine) basis. If you are making extensive changes to a large part of the scene graph then disabling notification can increase performance, at the expense of increased responsibility for making sure that any interested engines, sensors or paths are kept up to date.
For example, if you will be making a lot of changes to a small part of your scene graph and you know that there are no engines or sensors attached to nodes in that part of the scene graph, you might disable notification on the nodes you are changing, modify them, re-enable notification, and then touch() one of the nodes to cause a redraw.
However, you should profile your application and make sure that notification is taking a significant amount of time before going to the trouble of manually controlling notification.
Definition at line 190 of file SoFieldContainer.h.
|
virtual |
Reimplemented from SoBase.
Reimplemented in SoVertexShape, SoSeparator, SoNode, SoIndexedShape, SoEngine, and SoBlinker.
|
protectedvirtual |
Implements SoBase.
Reimplemented in SoUnknownNode, SoWWWInline, SoTextureCoordinateBinding, SoTexture2, SoSeparator, SoNormalBinding, SoMaterialBinding, SoGroup, SoFile, SoNodeKitListPart, SoInteractionKit, SoBaseKit, SoTimeCounter, SoOneShot, SoEngine, and SoElapsedTime.
|
inline |
TRUE is returned if the string was valid Inventor file format. For example, you could set the fields of an SoCube by doing:
Definition at line 131 of file SoFieldContainer.h.
bool SoFieldContainer::set | ( | const char * | fieldDataString, |
SoInput * | dictIn | ||
) |
void SoFieldContainer::setToDefaults | ( | ) |
|
virtual |
Reimplemented in SoNode, SoTimeCounter, SoOneShot, SoEngine, and SoElapsedTime.
|
protected |
Definition at line 285 of file SoFieldContainer.h.