/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) 1998-2007 by Systems in Motion. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.GPL at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using Coin with software that can not be combined with the GNU
* GPL, and for taking advantage of the additional benefits of our
* support services, please contact Systems in Motion about acquiring
* a Coin Professional Edition License.
*
* See http://www.coin3d.org/ for more information.
*
* Systems in Motion, Postboks 1283, Pirsenteret, 7462 Trondheim, NORWAY.
* http://www.sim.no/ sales@sim.no coin-support@coin3d.org
*
\**************************************************************************/
/*!
\class SoWWWInline SoWWWInline.h Inventor/nodes/SoWWWInline.h
\brief The SoWWWInline class is a node used to include data from an URL.
\ingroup nodes
If the URL is not a local file, the application is responsible for
supplying a callback to a function which will fetch the data of the
URL.
As long as no data has been imported, the scenegraph representation
of the node will be that of a bounding box enclosing the geometry we
expect to fetch from the URL. The application is naturally also
responsible for specifying the expected dimensions of the geometry.
If FetchURLCallBack isn't set, the alternateRep will be rendered
instead.
FILE FORMAT/DEFAULTS:
\code
WWWInline {
name ""
bboxCenter 0 0 0
bboxSize 0 0 0
alternateRep NULL
}
\endcode
\since SGI Inventor 2.1
\since Coin 1.0
*/
// *************************************************************************
// FIXME: as far as I can tell, SoWWWInline does not automatically
// trigger a (re-)load when the "SoWWWInline::name" field
// changes. Shouldn't it? Test what SGI/TGS Inventor does and mimic
// its behaviour. 20020522 mortene.
// FIXME: setting up the alternateRep field doesn't seem to work as
// expected (or at all, actually). This simple scene graph shown in an
// examiner viewer will not display the alternateRep for Coin, while
// SGI Inventor ivview will correctly show the Cone:
// ----8<-------------- [snip] -------8<-------------- [snip] -------------
// #Inventor V2.1 ascii
//
// WWWInline { alternateRep Group { BaseColor { rgb .2 .4 .6 } Cone { } } }
// ----8<-------------- [snip] -------8<-------------- [snip] -------------
// 20050315 mortene.
// *************************************************************************
#include
#include
#include
#include // COIN_OBSOLETED()
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#ifdef HAVE_CONFIG_H
#include
#endif /* HAVE_CONFIG_H */
#include
// *************************************************************************
/*!
\enum SoWWWInline::BboxVisibility
Used to enumerate bbox rendering strategies.
*/
/*!
\var SoWWWInline::BboxVisibility SoWWWInline::NEVER
Never render bounding box.
*/
/*!
\var SoWWWInline::BboxVisibility SoWWWInline::UNTIL_LOADED
Render bounding box until children are loaded.
*/
/*!
\var SoWWWInline::BboxVisibility SoWWWInline::ALWAYS
Always render bounding box, event when children are loaded.
*/
/*!
\var SoSFString SoWWWInline::name
Name of file/URL where children should be read.
*/
/*!
\var SoSFVec3f SoWWWInline::bboxCenter
Center of bounding box.
*/
/*!
\var SoSFVec3f SoWWWInline::bboxSize
Size of bounding box.
*/
/*!
\var SoSFNode SoWWWInline::alternateRep
Alternate representation. Used when children can't be read from name.
*/
// *************************************************************************
// static members
SoWWWInlineFetchURLCB * SoWWWInline::fetchurlcb = NULL;
void * SoWWWInline::fetchurlcbdata = NULL;
SbColor * SoWWWInline::bboxcolor = NULL;
static SoColorPacker * wwwinline_colorpacker = NULL;
SoWWWInline::BboxVisibility SoWWWInline::bboxvisibility = SoWWWInline::UNTIL_LOADED;
SbBool SoWWWInline::readassofile = FALSE;
void
SoWWWInline::cleanup(void)
{
delete SoWWWInline::bboxcolor;
SoWWWInline::bboxcolor = NULL;
delete wwwinline_colorpacker;
wwwinline_colorpacker = NULL;
SoWWWInline::fetchurlcb = NULL;
SoWWWInline::fetchurlcbdata = NULL;
SoWWWInline::bboxvisibility = SoWWWInline::UNTIL_LOADED;
SoWWWInline::readassofile = FALSE;
}
// *************************************************************************
class SoWWWInlineP {
public:
SoWWWInlineP(SoWWWInline * ownerptr) {
this->owner = ownerptr;
}
SoWWWInline * owner;
SoChildList * children;
SbBool readNamedFile();
SbBool readChildren();
SbString fullname;
SbBool didrequest;
static const char UNDEFINED_FILE[];
};
const char SoWWWInlineP::UNDEFINED_FILE[] = "";
#undef THIS
#define THIS this->pimpl
// *************************************************************************
SO_NODE_SOURCE(SoWWWInline);
// *************************************************************************
/*!
Constructor.
*/
SoWWWInline::SoWWWInline()
{
SO_NODE_INTERNAL_CONSTRUCTOR(SoWWWInline);
THIS = new SoWWWInlineP(this);
THIS->children = new SoChildList(this);
THIS->didrequest = FALSE;
SO_NODE_ADD_FIELD(name, (SoWWWInlineP::UNDEFINED_FILE));
SO_NODE_ADD_FIELD(bboxCenter, (0.0f, 0.0f, 0.0f));
SO_NODE_ADD_FIELD(bboxSize, (0.0f, 0.0f, 0.0f));
SO_NODE_ADD_FIELD(alternateRep, (NULL));
// Instantiated dynamically to avoid problems on platforms with
// systemloaders that hate static constructors in C++ libraries.
if (SoWWWInline::bboxcolor == NULL) {
SoWWWInline::bboxcolor = new SbColor(0.8f, 0.8f, 0.8f);
wwwinline_colorpacker = new SoColorPacker;
coin_atexit((coin_atexit_f *)SoWWWInline::cleanup, CC_ATEXIT_NORMAL);
}
}
/*!
Destructor.
*/
SoWWWInline::~SoWWWInline()
{
delete THIS->children;
delete THIS;
}
// doc in super
void
SoWWWInline::initClass(void)
{
SO_NODE_INTERNAL_INIT_CLASS(SoWWWInline, SO_FROM_INVENTOR_2_1|SoNode::VRML1);
}
/*!
If the SoWWWInline::name field specifies a relative URL, use this
method to name the complete URL.
*/
void
SoWWWInline::setFullURLName(const SbString & url)
{
THIS->fullname = url;
}
/*!
If a full URL has been set with the SoWWWInline::setFullURLName()
method, return it. If not, returns the value of the
SoWWWInline::name field.
*/
const SbString &
SoWWWInline::getFullURLName(void)
{
return THIS->fullname.getLength() ? THIS->fullname : this->name.getValue();
}
/*!
Returns a subgraph with a deep copy of the children of this node.
*/
SoGroup *
SoWWWInline::copyChildren(void) const
{
SoChildList * children = this->getChildren();
if (children->getLength() == 0) return NULL;
assert(children->getLength() == 1);
SoNode * rootcopy = (*children)[0]->copy();
assert(rootcopy->isOfType(SoGroup::getClassTypeId()));
return (SoGroup *) rootcopy;
}
/*!
Start requesting URL data. This might trigger a callback to
the callback set in SoWWWInline::setFetchURLCallBack().
*/
void
SoWWWInline::requestURLData(void)
{
if (!THIS->didrequest) {
THIS->didrequest = TRUE;
(void) THIS->readChildren();
}
}
/*!
Returns \c TRUE if SoWWWInline::requestURLData() has been called
without being canceled by SoWWWInline::cancelURLData().
*/
SbBool
SoWWWInline::isURLDataRequested(void) const
{
return THIS->didrequest;
}
/*!
Return \c TRUE if the current child data has been read from file/URL
and set using setChildData().
*/
SbBool
SoWWWInline::isURLDataHere(void) const
{
SoChildList * children = this->getChildren();
if (children->getLength() == 0 ||
(*children)[0] == this->alternateRep.getValue()) return FALSE;
return FALSE;
}
/*!
Can be used to signal that URL loading has been canceled. You
should use this method if you intend to request URL data more than
once.
*/
void
SoWWWInline::cancelURLDataRequest(void)
{
THIS->didrequest = FALSE;
}
/*!
Manually set up the subgraph for this node. This should be used
by the application to set the data that was read from the file/URL.
*/
void
SoWWWInline::setChildData(SoNode * urldata)
{
THIS->children->truncate(0);
THIS->children->append(urldata);
}
/*!
Returns the child data for this node. This can be data read from a
file, from an URL, from the contents of SoWWWInline::alternateRep or
that was manually set with SoWWWInline::setChildData().
*/
SoNode *
SoWWWInline::getChildData(void) const
{
if (THIS->children->getLength()) { return (*THIS->children)[0]; }
return NULL;
}
/*!
Sets the URL fetch callback. This will be used in
SoWWWInline::readInstance() or when the user calls
SoWWWInline::requestURLData().
// FIXME: Shouldn't called on readInstance(), only when we need to
// render the node (or calculate the bbox if we don't have one). kintel 20060203.
*/
void
SoWWWInline::setFetchURLCallBack(SoWWWInlineFetchURLCB * f,
void * userdata)
{
SoWWWInline::fetchurlcb = f;
SoWWWInline::fetchurlcbdata = userdata;
}
/*!
Sets the bounding box visibility strategy.
The default is UNTIL_LOADED.
*/
void
SoWWWInline::setBoundingBoxVisibility(BboxVisibility b)
{
SoWWWInline::bboxvisibility = b;
}
/*!
Returns the bounding box visibility.
*/
SoWWWInline::BboxVisibility
SoWWWInline::getBoundingBoxVisibility(void)
{
return SoWWWInline::bboxvisibility;
}
/*!
Sets the bounding box color.
*/
void
SoWWWInline::setBoundingBoxColor(SbColor & c)
{
*SoWWWInline::bboxcolor = c;
}
/*!
Returns the bounding box color.
*/
const SbColor &
SoWWWInline::getBoundingBoxColor(void)
{
return *SoWWWInline::bboxcolor;
}
/*!
Sets whether children should be read from a local file, in the same
manner as SoFile children are read.
If this is set to \c TRUE, the URL must point to a file on the local
file system, as can be accessed by the standard C library fopen()
call.
*/
void
SoWWWInline::setReadAsSoFile(SbBool onoff)
{
SoWWWInline::readassofile = onoff;
}
/*!
Returns if children should be read from local files.
\sa setReadAsSoFile()
*/
SbBool
SoWWWInline::getReadAsSoFile(void)
{
return SoWWWInline::readassofile;
}
// Documented in superclass. Overridden to render children and/or
// bounding box.
void
SoWWWInline::GLRender(SoGLRenderAction * action)
{
if (this->getChildData()) {
SoWWWInline::doAction(action);
if (SoWWWInline::bboxvisibility == UNTIL_LOADED) return;
}
if (SoWWWInline::bboxvisibility == NEVER) return;
SoState * state = action->getState();
state->push();
SoLazyElement::setDiffuse(state, this, 1, SoWWWInline::bboxcolor, wwwinline_colorpacker);
// disable lighting
SoLazyElement::setLightModel(state, SoLazyElement::BASE_COLOR);
// disable texture mapping
SoGLTextureEnabledElement::set(state, this, FALSE);
SoGLTexture3EnabledElement::set(state, this, FALSE);
SoMaterialBundle mb(action);
mb.sendFirst(); // set current color
float cx, cy, cz;
this->bboxCenter.getValue().getValue(cx, cy, cz);
float x0, y0, z0;
this->bboxSize.getValue().getValue(x0, y0, z0);
x0 = -x0/2.0f + cx;
y0 = -y0/2.0f + cy;
z0 = -z0/2.0f + cz;
float x1, y1, z1;
this->bboxSize.getValue().getValue(x1, y1, z1);
x1 = x1/2.0f + cx;
y1 = y1/2.0f + cy;
z1 = z1/2.0f + cz;
glBegin(GL_LINE_LOOP);
glVertex3f(x0, y0, z0);
glVertex3f(x1, y0, z0);
glVertex3f(x1, y1, z0);
glVertex3f(x0, y1, z0);
glEnd();
glBegin(GL_LINE_LOOP);
glVertex3f(x0, y0, z1);
glVertex3f(x1, y0, z1);
glVertex3f(x1, y1, z1);
glVertex3f(x0, y1, z1);
glEnd();
glBegin(GL_LINES);
glVertex3f(x0, y0, z0);
glVertex3f(x0, y0, z1);
glVertex3f(x0, y1, z0);
glVertex3f(x0, y1, z1);
glVertex3f(x1, y0, z0);
glVertex3f(x1, y0, z1);
glVertex3f(x1, y1, z0);
glVertex3f(x1, y1, z1);
glEnd();
state->pop(); // restore state
}
// doc in super
void
SoWWWInline::getBoundingBox(SoGetBoundingBoxAction * action)
{
if (this->getChildren()->getLength()) {
int numindices;
const int * indices;
int lastchildindex;
if (action->getPathCode(numindices, indices) == SoAction::IN_PATH)
lastchildindex = indices[numindices-1];
else
lastchildindex = this->getChildren()->getLength() - 1;
assert(lastchildindex < this->getChildren()->getLength());
// Initialize accumulation variables.
SbVec3f acccenter(0.0f, 0.0f, 0.0f);
int numcenters = 0;
for (int i = 0; i <= lastchildindex; i++) {
this->getChildren()->traverse(action, i);
// If center point is set, accumulate.
if (action->isCenterSet()) {
acccenter += action->getCenter();
numcenters++;
action->resetCenter();
}
}
if (numcenters != 0)
action->setCenter(acccenter / float(numcenters), FALSE);
}
else {
SbVec3f halfsize = bboxSize.getValue()/2.0f;
SbVec3f center = bboxCenter.getValue();
action->extendBy(SbBox3f(-halfsize[0] + center[0],
-halfsize[1] + center[1],
-halfsize[2] + center[2],
halfsize[0] + center[0],
halfsize[1] + center[1],
halfsize[2] + center[2]));
assert(! action->isCenterSet());
action->setCenter(center, TRUE);
}
}
/*!
Returns the child list with the child data for this node.
*/
SoChildList *
SoWWWInline::getChildren(void) const
{
return THIS->children;
}
// doc in super
void
SoWWWInline::doAction(SoAction * action)
{
if (this->getChildren()->getLength()) {
int numindices;
const int * indices;
if (action->getPathCode(numindices, indices) == SoAction::IN_PATH) {
this->getChildren()->traverseInPath(action, numindices, indices);
}
else {
this->getChildren()->traverse((SoAction *)action);
}
}
}
/*!
This method should probably have been private in OIV. It is
obsoleted in Coin. Let us know if you need it.
*/
void
SoWWWInline::doActionOnKidsOrBox(SoAction * action)
{
COIN_OBSOLETED();
}
// doc in super
void
SoWWWInline::callback(SoCallbackAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::getMatrix(SoGetMatrixAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::handleEvent(SoHandleEventAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::search(SoSearchAction * action)
{
SoNode::search(action);
if (!action->isFound()) {
SoWWWInline::doAction(action);
}
}
// doc in super
void
SoWWWInline::pick(SoPickAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::getPrimitiveCount(SoGetPrimitiveCountAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
// doc in super
void
SoWWWInline::audioRender(SoAudioRenderAction * action)
{
SoWWWInline::doAction((SoAction *)action);
}
/*!
Convenience method that extends the current bounding box to
include the box specified by \a center and \a size.
*/
void
SoWWWInline::addBoundingBoxChild(SbVec3f center, SbVec3f size)
{
SbVec3f orgsize = this->bboxSize.getValue();
SbVec3f orgcenter = this->bboxCenter.getValue();
orgsize *= 0.5f;
SbBox3f bbox(orgcenter-orgsize, orgcenter+orgsize);
size *= 0.5f;
SbBox3f newbox(center-size, center+size);
bbox.extendBy(newbox);
this->bboxCenter = bbox.getCenter();
bbox.getSize(size[0], size[1], size[2]);
this->bboxSize = size;
}
// Documented in superclass. Overridden to fetch/read child data.
SbBool
SoWWWInline::readInstance(SoInput * in, unsigned short flags)
{
SbBool ret = inherited::readInstance(in, flags);
if (ret) {
ret = THIS->readChildren();
}
return ret;
}
// Documented in superclass. Overridden to copy children.
void
SoWWWInline::copyContents(const SoFieldContainer * fromfc,
SbBool copyconnections)
{
this->getChildren()->truncate(0);
inherited::copyContents(fromfc, copyconnections);
SoWWWInline * inlinenode = (SoWWWInline *) fromfc;
if (inlinenode->getChildren()->getLength() == 0) return;
assert(inlinenode->getChildren()->getLength() == 1);
SoNode * cp = (SoNode *)
SoFieldContainer::findCopy((*(inlinenode->getChildren()))[0], copyconnections);
this->getChildren()->append(cp);
}
#undef THIS
// *************************************************************************
// Read the file named in the name field.
SbBool
SoWWWInlineP::readNamedFile()
{
// If we can't find file, ignore it. Note that this does not match
// the way Inventor works, which will make the whole read process
// exit with a failure code.
SoInput in;
SbString name = this->owner->getFullURLName();
if (!in.openFile(name.getString())) return TRUE;
SoSeparator * node = SoDB::readAll(&in);
// Popping the file off the stack again is done implicit in SoInput
// upon hitting EOF (unless the read fails, see below).
if (node) {
this->children->truncate(0);
this->children->append((SoNode *)node);
}
else {
// Note that we handle this differently than Inventor, which lets
// the whole import fail.
SoReadError::post(&in, "Unable to read subfile: ``%s''",
name.getString());
}
return TRUE;
}
/*!
Read children, either using the URL callback or by reading from
local file directly.
fetchURLCB is NULL: Use alternaterep. NB! Always uses alternate rep
in this case.
else name not set: Do nothing
else readassofile is TRUE: Assume name points to a local file and load
automatically without using fetchURLCB.
*/
SbBool
SoWWWInlineP::readChildren()
{
if (!SoWWWInline::fetchurlcb) {
if (this->owner->alternateRep.getValue()) {
this->owner->setChildData(this->owner->alternateRep.getValue());
}
}
else if (this->owner->name.getValue() != SoWWWInlineP::UNDEFINED_FILE) {
if (SoWWWInline::readassofile) {
return this->readNamedFile();
}
else {
SoWWWInline::fetchurlcb(this->owner->getFullURLName(),
SoWWWInline::fetchurlcbdata,
this->owner);
}
}
return TRUE;
}