1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) by Kongsberg Oil & Gas Technologies.
*
* 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 Kongsberg Oil & Gas Technologies
* about acquiring a Coin Professional Edition License.
*
* See http://www.coin3d.org/ for more information.
*
* Kongsberg Oil & Gas Technologies, Bygdoy Alle 5, 0257 Oslo, NORWAY.
* http://www.sim.no/ sales@sim.no coin-support@coin3d.org
*
\**************************************************************************/
/*!
\class SoShuttle SoShuttle.h Inventor/nodes/SoShuttle.h
\brief The SoShuttle class is used to oscillate between two translations.
\ingroup nodes
A smooth transition between translation0 and translation1 is created
using a cosine function. In the beginning of the cycle, translation0
is used. Halfway through the cycle, the resulting translation equals
translation1, and at the end of the cycle, we're at translation0
again.
<b>FILE FORMAT/DEFAULTS:</b>
\code
Shuttle {
translation 0 0 0
translation0 0 0 0
translation1 0 0 0
speed 1
on TRUE
}
\endcode
*/
// *************************************************************************
#include <Inventor/nodes/SoShuttle.h>
#include <Inventor/SoOutput.h>
#include <Inventor/actions/SoWriteAction.h>
#include <Inventor/engines/SoCalculator.h>
#include <Inventor/engines/SoElapsedTime.h>
#include <Inventor/engines/SoInterpolateVec3f.h>
#include "nodes/SoSubNodeP.h"
// *************************************************************************
/*!
\var SoSFVec3f SoShuttle::translation0
Translation at the start and end of the cycle. Default value is (0,
0, 0).
*/
/*!
\var SoSFVec3f SoShuttle::translation1
Translation at the middle of the cycle. Default value is (0, 0, 0).
*/
/*!
\var SoSFFloat SoShuttle::speed
Number of cycles per second. Default value is 1.
*/
/*!
\var SoSFBool SoShuttle::on
Toggles animation on or off. Defauls to \c TRUE.
*/
// *************************************************************************
SO_NODE_SOURCE(SoShuttle);
// *************************************************************************
/*!
Constructor.
*/
SoShuttle::SoShuttle(void)
{
SO_NODE_INTERNAL_CONSTRUCTOR(SoShuttle);
SO_NODE_ADD_FIELD(translation0, (SbVec3f(0.0f, 0.0f, 0.0f)));
SO_NODE_ADD_FIELD(translation1, (SbVec3f(0.0f, 0.0f, 0.0f)));
SO_NODE_ADD_FIELD(speed, (1.0f));
SO_NODE_ADD_FIELD(on, (TRUE));
this->interpolator = new SoInterpolateVec3f;
this->interpolator->ref();
this->calculator = new SoCalculator;
this->calculator->ref();
this->timer = new SoElapsedTime;
this->timer->ref();
this->calculator->expression = "oa = (1.0 - cos(a*b*2*M_PI)) * 0.5";
this->calculator->a.connectFrom(&this->timer->timeOut);
this->timer->on.connectFrom(&this->on);
this->calculator->b.connectFrom(&this->speed);
this->interpolator->input0.connectFrom(&this->translation0);
this->interpolator->input1.connectFrom(&this->translation1);
this->interpolator->alpha.connectFrom(&this->calculator->oa);
this->translation.connectFrom(&this->interpolator->output, TRUE);
}
/*!
Destructor.
*/
SoShuttle::~SoShuttle()
{
this->interpolator->unref();
this->calculator->unref();
this->timer->unref();
}
// doc in parent
void
SoShuttle::initClass(void)
{
SO_NODE_INTERNAL_INIT_CLASS(SoShuttle, SO_FROM_INVENTOR_1);
}
// Documented in superclass.
void
SoShuttle::write(SoWriteAction * action)
{
// Overridden to not write out internal engine connections.
SoOutput * out = action->getOutput();
// Decouple connections to/from internal engines to avoid them being
// written. (Only done at first pass.)
if (out->getStage() == SoOutput::COUNT_REFS)
this->deconnectInternalEngines();
inherited::write(action);
// Reenable all connections to/from internal engine. (Only done at
// last pass.)
if (out->getStage() == SoOutput::WRITE)
this->reconnectInternalEngines();
}
// FIXME: I _think_ we made a mistake when overriding SoNode::copy()
// and making it virtual. See FIXME-comment above
// SoBlinker::copy(). 20011220 mortene.
// Overridden to decouple and reconnect engine around copy operation.
SoNode *
SoShuttle::copy(SbBool copyconnections) const
{
// Decouple connections to/from internal engines to avoid them being
// copied.
((SoShuttle *)this)->deconnectInternalEngines();
SoShuttle * cp = (SoShuttle *)inherited::copy(copyconnections);
// Reenable all connections to/from internal engines.
((SoShuttle *)this)->reconnectInternalEngines();
return cp;
}
// Remove connections to and from internal engines.
void
SoShuttle::deconnectInternalEngines(void)
{
// Do this first, to avoid field being set due to subsequent engine
// input value change.
this->translation.disconnect(&this->interpolator->output);
this->timer->on.disconnect(&this->on);
this->timer->on = FALSE;
this->calculator->b.disconnect(&this->speed);
this->interpolator->input0.disconnect(&this->translation0);
this->interpolator->input1.disconnect(&this->translation1);
}
// Reenable all connections to/from internal engines.
void
SoShuttle::reconnectInternalEngines(void)
{
this->timer->on.connectFrom(&this->on);
this->calculator->b.connectFrom(&this->speed);
this->interpolator->input0.connectFrom(&this->translation0);
this->interpolator->input1.connectFrom(&this->translation1);
this->translation.connectFrom(&this->interpolator->output, TRUE);
}
|