public class SoDB extends Inventor
SoDB
class holds all scene graphs, each representing a 3D scene used by an application. A scene graph is a collection of SoNode
objects which come in several varieties (see SoNode
).
All methods in this class are static.
Data Files:
SoDB
also provides convenient methods for reading data files, for example:
Open Inventor has built-in support for reading the following file formats:String filename = "$OIVHOME/data/models/bird.iv"; SoSeparator rootSep = null; SoInput input = new SoInput(); if (input.openFile(filename)) { rootSep = SoDB.readAll(input); input.closeFile(); }
SoSTLFileFormat
and SoSTLInputReader
)
Open Inventor also supports many standard CAD file formats. See SoCADInputReader
for the current list. Also see SoCADFileFormat
.
See also:
SoBase
, SoNode
, SoEngine
, SoField
, SoInput
, SoFile
, SoPath
, SoOneShotSensor
, SoDataSensor
, SoWin
Modifier and Type | Class and Description |
---|---|
static class |
SoDB.RenderCacheModes
Deprecated.
|
Inventor.ConstructorCommand
VERBOSE_LEVEL, ZeroHandle
Modifier and Type | Method and Description |
---|---|
static void |
addConverter(java.lang.Class<? extends Inventor> fromField,
java.lang.Class<? extends Inventor> toField,
java.lang.Class<? extends Inventor> converterEngine)
Registers a field conversion engine that can be used to convert from one type of field to another.
|
static boolean |
addPlugin(java.lang.String fileName)
Loads a plugin library.
|
static boolean |
addPluginsDirectory(java.lang.String dirName)
Adds a directory to search for libraries defining new Open Inventor plugins.
|
static SoField |
createGlobalField(java.lang.String name,
java.lang.Class<? extends Inventor> type)
The database maintains a namespace for global fields, making sure that there is at most one instance of a global field with any given name in the database.
|
static java.lang.Class<? extends Inventor> |
getConverter(java.lang.Class<? extends Inventor> fromField,
java.lang.Class<? extends Inventor> toField)
Returns the field conversion engine registered for the two given field types.
|
static SbTime |
getCurrentTime()
Returns the current time.
|
static SbTime |
getDelaySensorTimeout()
Returns the current delay queue timeout value.
|
static SoField |
getGlobalField(java.lang.String name)
Returns the global field with the given name, or NULL if there is none.
|
static java.lang.String |
getHeaderString(int i)
Returns the i'th header.
|
static boolean |
getIvTuneAllowed()
Returns true if IvTune can be launched interactively using the keyboard shortcut.
|
static int |
getNumHeaders()
Returns the number of valid headers, including standard Open Inventor headers, and user-registered headers.
|
static int |
getNumRenderCaches()
Deprecated.
As of Open Inventor 10300 NumRenderCaches has no meaning anymore, this method will always return 1.
|
static SbTime |
getRealTimeInterval()
Returns how often the database is updating the realTime global field.
|
static SoDB.RenderCacheModes |
getRenderCacheMode()
Deprecated.
As of Open Inventor 10300 Render caches are no longer used, this method always return AUTO_RENDER_CACHE.
|
static boolean |
isMultiThread()
Deprecated.
As of Open Inventor 10000 Not used anymore. You can safely assume the value is true.
|
static boolean |
isValidHeader(java.lang.String testString)
This returns true if the given character string is one of the valid Open Inventor file headers, (e.g., "#Inventor V2.0 binary"), or if the string has been registered as a valid header through the registerHeader() method.
|
static void |
processEvents()
Process Open Inventor sensor queues (TimerQueue and DelayQueue).
|
static SoNode |
read(SoInput in)
Reads a graph from the file specified by the given
SoInput , returning the resulting root node. |
static SoSeparator |
readAll(SoInput in)
Reads all graphs and paths from the file specified by the given
SoInput . |
static void |
readlock()
Acquire a non-exclusive global scene graph read-lock.
|
static SoNode |
readNode(SoInput in) |
static SoPath |
readPath(SoInput in)
Reads a graph from the file specified by the given
SoInput , returning the resulting path. |
static void |
readunlock()
Release a non-exclusive global scene graph read-lock.
|
static void |
removeConverter(java.lang.Class<? extends Inventor> fromField,
java.lang.Class<? extends Inventor> toField)
Remove a previously added converter.
|
static boolean |
removePlugin(java.lang.String fileName)
Unloads the specified plugin library.
|
static boolean |
removePluginsDirectory(java.lang.String dirName)
Remove directory from the list of search directories for plugin loading.
|
static void |
renameGlobalField(java.lang.String oldName,
java.lang.String newName)
Renames the global field named oldName.
|
static void |
setDelaySensorTimeout(SbTime t)
This sets the timeout value for sensors that are delay queue sensors (one-shot sensors, data sensors).
|
static void |
setIvTuneAllowed(boolean ivTuneAllowed)
Specifies if launching IvTune interactively using the keyboard shortcut is allowed.
|
static void |
setNumRenderCaches(int name_11205)
Deprecated.
As of Open Inventor 10300 NumRenderCaches has no meaning anymore.
|
static void |
setRealTimeInterval(SbTime deltaT)
The database automatically creates one global field when SoDB.init() is called.
|
static void |
setRenderCacheMode(SoDB.RenderCacheModes mode)
Deprecated.
As of Open Inventor 10300 Display lists are no longer used, this method has no effect.
|
static void |
setSystemTimer(SoSystemTimer timer)
The system dependent timer allows Inventor to manage its sensor queue (for timers, animation) when creating custom viewers.
|
static void |
writelock()
Acquire the global scene graph write-lock.
|
static void |
writeunlock()
Release the global scene graph write-lock.
|
dispose, getNativeResourceHandle
public static SoField createGlobalField(java.lang.String name, java.lang.Class<? extends Inventor> type)
All global fields must be derived from SoField
; typically the result of this routine is cast into the appropriate type. For example:
SoSFInt32 intField = (SoSFInt32)SoDB.createGlobalField("Frame", SoSFInt32.class);
public static boolean isValidHeader(java.lang.String testString)
public static void readlock()
SoDB.writelock
). See readunlock()
.public static SbTime getCurrentTime()
@Deprecated public static SoDB.RenderCacheModes getRenderCacheMode()
setRenderCacheMode()
.Deprecated since Open Inventor 10300. public static SoField getGlobalField(java.lang.String name)
createGlobalField()
. The type of the field may be checked using the SoField.isOfType(), SoField.getClassTypeId(), and SoField.getTypeId() methods.public static void readunlock()
readunlock()
.public static java.lang.String getHeaderString(int i)
public static SoNode read(SoInput in)
SoInput
, returning the resulting root node.
There is an alternate read routine that returns the resulting path. The programmer is responsible for determining which routine to use, based on the contents of the input. These routines return null if any error occurred during reading.
If the passed SoInput
was used to open a file and the name of the file contains a directory, SoDB
automatically adds the directory to the end of the current directory search path in the SoInput
. This means that nested files named in SoFile
nodes may be found relative to that directory. The directory is removed from the search path when reading is complete.
public static SoPath readPath(SoInput in)
SoInput
, returning the resulting path.
There is an alternate read routine that returns the resulting root node. The programmer is responsible for determining which routine to use, based on the contents of the input. These routines return null if any error occurred during reading.
If the passed SoInput
was used to open a file and the name of the file contains a directory, SoDB
automatically adds the directory to the end of the current directory search path in the SoInput
. This means that nested files named in SoFile
nodes may be found relative to that directory. The directory is removed from the search path when reading is complete.
public static void setSystemTimer(SoSystemTimer timer)
SoRenderAreaCore
.@Deprecated public static void setNumRenderCaches(int name_11205)
@Deprecated public static void setRenderCacheMode(SoDB.RenderCacheModes mode)
public static int getNumHeaders()
@Deprecated public static int getNumRenderCaches()
setNumRenderCaches()
.Deprecated since Open Inventor 10300. public static SoSeparator readAll(SoInput in)
SoInput
.
If there is only one graph in the file and its root is an SoSeparator
, the root is returned. In all other cases, this creates an SoSeparator
, adds the root nodes of all graphs read as children of it, and returns it. This returns NULL on error. This processes directory paths in the same way as the other reading routines.
Reading a DXF file into Open Inventor is just like reading in an Open Inventor format file. Open Inventor will open the file and automatically detect that it is a DXF file. Optionally, you can tell Open Inventor explicitly that the file type is DXF. See SoInput
for details about support of the DXF format.
public static void setDelaySensorTimeout(SbTime t)
The default timeout for delay queue sensors is 0.083 seconds. So if delay queue sensors are only triggered by the timeout, then by default the viewer animation can only run at about 12 frames per second. To trigger the delay queue sensors at, for example, 30 frames per second, make this call:
SoDB.setDelaySensorTimeout
( 0.03f );
public static void removeConverter(java.lang.Class<? extends Inventor> fromField, java.lang.Class<? extends Inventor> toField)
addConverter()
.public static SbTime getDelaySensorTimeout()
setDelaySensorTimeout()
.public static java.lang.Class<? extends Inventor> getConverter(java.lang.Class<? extends Inventor> fromField, java.lang.Class<? extends Inventor> toField)
addConverter()
.public static SbTime getRealTimeInterval()
setRealTimeInterval()
. The realTime global field can be accessed like this: SoSFTime* realTimeField = (SoSFTime*)SoDB.getGlobalField( "realTime" );
public static boolean getIvTuneAllowed()
setIvTuneAllowed()
.public static void setRealTimeInterval(SbTime deltaT)
SoSFTime
, can be connected to engines and nodes for real-time animation. The database will automatically update the realTime global field 12 times per second, using a timer sensor. Typically, there will be a node sensor on the root of the scene graph which schedules a redraw whenever the scene graph changes; by updating the realTime global field periodically, scene graphs that are connected to realTime (and are therefore animating) will be redrawn. The rate at which the database updates realTime can be controlled with this routine. Passing in a zero time will disable automatic update of realTime . If there are no enabled connections from the realTime field to any other field, the sensor is automatically disabled. Note that the SoSceneManager
class automatically updates realTime immediately after redrawing, which will result in as high a frame rate as possible if the scene is continuously animating. This method ensures that engines that do not continuously animate (such as SoTimeCounter
) will eventually be scheduled. See also getRealTimeInterval()
. The realTime global field can be accessed like this: SoSFTime realTimeField = (SoSFTime)SoDB.getGlobalField( "realTime" );
public static void setIvTuneAllowed(boolean ivTuneAllowed)
SoIvTune
to set the keyboard shortcut.public static void renameGlobalField(java.lang.String oldName, java.lang.String newName)
getGlobalField()
method can be used to guard against this). See createGlobalField()
.public static void writelock()
The calling thread will block until the write-lock is available (no threads hold a global read-lock). The global write-lock is exclusive. Only a single thread can hold this lock and while it is held, no thread can acquire a global read-lock. While holding the global write-lock it is safe to modify the scene graph including adding/removing nodes, modifying field values, etc. Do not hold the global write-lock longer than necessary. See writeunlock()
.
Note: Be sure the global write-lock is always released or there is a good chance the application will "dead lock" because all standard actions automatically attempt to acquire a global read-lock.
public static boolean removePlugin(java.lang.String fileName)
addPlugin()
. Returns true if plugin was successfully unloaded.public static void writeunlock()
writelock()
.public static boolean addPlugin(java.lang.String fileName)
SoInputReader
.
A plugin library must implement the initPlugin() and exitPlugin() C-formatted entry-points. The initPlugin() function is responsible for registering the new class (or classes) in the Open Inventor database through the standard SoType type creation mechanism. The exitPlugin() function is used to disable the use of the custom class(s) by removing the corresponding type(s) from the Open Inventor database.
By default, Open Inventor attempts to load all files that may be plugins (files with the extension .dll or .so depending on the platform) from the following locations:
SoDB.addPluginsDirectory()
method.
Specific plugin libraries can be loaded and unloaded by direct calls to the SoDB.addPlugin()
and SoDB.removePlugin()
methods.
Different plugins can be designed depending on their usage. Please refer to the Open Inventor plugin section in the documentation
@Deprecated public static boolean isMultiThread()
public static void processEvents()
public static void addConverter(java.lang.Class<? extends Inventor> fromField, java.lang.Class<? extends Inventor> toField, java.lang.Class<? extends Inventor> converterEngine)
public static boolean addPluginsDirectory(java.lang.String dirName)
addPlugin()
. Returns true if directory has been successfully added.public static boolean removePluginsDirectory(java.lang.String dirName)
addPlugin()
. Returns true if directory has been successfully removed.Generated on July 31, 2019, Copyright © Thermo Fisher Scientific. All rights reserved. http://www.openinventor.com