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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
/**************************************************************************\
*
* 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 SoGate SoGate.h Inventor/engines/SoGate.h
\brief The SoGate class is used to selectively copy values from input to output.
\ingroup engines
This engine will forward values from the SoGate::input field to the
SoGate::output field when the SoGate::enable field is \c TRUE.
Note that this engine's output field deviates a little from the
"standard" output mechanism of the majority of engine classes: the
SoGate::output is not a permanent SoEngineOutput instance, but a \e
pointer to a SoEngineOutput instance. The reason for this is that
it is necessary to allocate the output field dynamically to make it
match what the SoGate::input is connected to since the type of the
SoGate::output always should be the same as the type of the
SoGate::input.
\ENGINE_TYPELESS_FILEFORMAT
\verbatim
Gate {
type <multivaluefieldtype>
[...fields...]
}
\endverbatim
*/
#include <Inventor/engines/SoGate.h>
#include "SbBasicP.h"
#include <cassert>
#include <Inventor/SbString.h>
#include <Inventor/SoInput.h>
#include <Inventor/SoOutput.h>
#include <Inventor/actions/SoWriteAction.h>
#include <Inventor/engines/SoEngineOutput.h>
#include <Inventor/errors/SoReadError.h>
#include <Inventor/lists/SoEngineOutputList.h>
#if COIN_DEBUG
#include <Inventor/errors/SoDebugError.h>
#endif // COIN_DEBUG
#include "engines/SoSubEngineP.h"
/*!
\var SoMField * SoGate::input
The multivalue input field which we will forward to the output when
SoGate::enable is \c TRUE.
*/
/*!
\var SoSFBool SoGate::enable
Set whether or not to forward from input to output field.
*/
/*!
\var SoSFTrigger SoGate::trigger
Copy the current values of the input field once to the output field.
*/
/*!
\var SoEngineOutput * SoGate::output
(SoMField) This is the field output containing the values of
SoGate::input.
The type of the field will of course match the type of the input
field.
*/
// Can't use the standard SO_ENGINE_SOURCE macro, as this engine
// doesn't keep a class-global set of inputs and outputs: we need to
// make an instance of SoFieldData and SoEngineOutputData for every
// instance of the class, since the input and output fields are
// dynamically allocated.
SO_INTERNAL_ENGINE_SOURCE_DYNAMIC_IO(SoGate);
/**************************************************************************/
// Default constructor. Leaves engine in invalid state. Should only be
// used from import code or copy code.
SoGate::SoGate(void)
{
this->dynamicinput = NULL;
this->dynamicoutput = NULL;
this->input = NULL;
this->output = NULL;
}
static SbBool
SoGate_valid_type(SoType t)
{
return (t.isDerivedFrom(SoMField::getClassTypeId()) &&
t.canCreateInstance());
}
/*!
Constructor. The type of the input/output is specified in \a type.
*/
SoGate::SoGate(SoType type)
{
this->dynamicinput = NULL;
this->dynamicoutput = NULL;
this->input = NULL;
this->output = NULL;
#if COIN_DEBUG
if (!SoGate_valid_type(type)) {
SoDebugError::post("SoGate::SoGate",
"invalid type '%s' for input field, "
"field must be non-abstract and a multi-value type.",
type == SoType::badType() ? "badType" :
type.getName().getString());
}
#endif // COIN_DEBUG
this->initialize(type);
}
// doc from parent
void
SoGate::initClass(void)
{
SO_ENGINE_INTERNAL_INIT_CLASS(SoGate);
}
// Set up the input and output fields of the engine. This is done from
// either the non-default constructor or the readInstance() import
// code.
void
SoGate::initialize(const SoType inputfieldtype)
{
assert(this->input == NULL);
assert(SoGate_valid_type(inputfieldtype));
SO_ENGINE_INTERNAL_CONSTRUCTOR(SoGate);
SO_ENGINE_ADD_INPUT(trigger, ());
SO_ENGINE_ADD_INPUT(enable, (FALSE));
// Instead of SO_ENGINE_ADD_INPUT().
this->input = static_cast<SoMField *>(inputfieldtype.createInstance());
this->input->setNum(0);
this->input->setContainer(this);
this->dynamicinput = new SoFieldData(SoGate::inputdata);
this->dynamicinput->addField(this, "input", this->input);
// Instead of SO_ENGINE_ADD_OUTPUT().
this->output = new SoEngineOutput;
this->dynamicoutput = new SoEngineOutputData(SoGate::outputdata);
this->dynamicoutput->addOutput(this, "output", this->output, inputfieldtype);
this->output->setContainer(this);
}
/*!
Destructor.
*/
SoGate::~SoGate()
{
delete this->dynamicinput;
delete this->dynamicoutput;
delete this->input;
delete this->output;
}
// doc from parent
void
SoGate::evaluate(void)
{
// Force update of slave fields.
this->output->enable(TRUE);
SO_ENGINE_OUTPUT((*output), SoField, copyFrom(*this->input));
// No more updates until either the SoGate::enable field or the
// SoGate::trigger field is touched.
if (!this->enable.getValue()) this->output->enable(FALSE);
}
// doc from parent
void
SoGate::inputChanged(SoField * which)
{
if (which == &this->enable) {
SbBool enableval = this->enable.getValue();
if (this->output->isEnabled() != enableval)
this->output->enable(enableval);
}
else if (which == &this->trigger) {
this->output->enable(TRUE);
}
// Changes to the input field are handled automatically according to
// the value of the SoGate::enable field.
}
// Documented in superclass. Overridden to initialize type of gate
// before reading.
SbBool
SoGate::readInstance(SoInput * in, unsigned short flagsarg)
{
// This code is identical to readInstance() of SoSelectOne and
// SoConcatenate, so migrate changes.
SbName tmp;
if (!in->read(tmp) || tmp != "type") {
SoReadError::post(in,
"\"type\" keyword is missing, erroneous format for "
"engine class '%s'.",
this->getTypeId().getName().getString());
return FALSE;
}
// need to use an SbString here, because SoInput::read( SbName & )
// reads in '"MyName"' as is instead of as 'MyName'.
SbString fieldname;
if (!in->read(fieldname)) {
SoReadError::post(in, "Couldn't read input type for engine.");
return FALSE;
}
SoType inputtype = SoType::fromName(fieldname);
if (!SoGate_valid_type(inputtype)) {
SoReadError::post(in, "Type \"%s\" for input field is not valid "
"(field must be non-abstract and a multi-value type).",
fieldname.getString());
return FALSE;
}
this->initialize(inputtype);
return SoEngine::readInstance(in, flagsarg);
}
// Documented in superclass. Overridden to write type of gate.
void
SoGate::writeInstance(SoOutput * out)
{
// This code is identical to writeInstance() of SoSelectOne and
// SoConcatenate, so migrate changes.
if (this->writeHeader(out, FALSE, TRUE)) return;
SbBool binarywrite = out->isBinary();
if (!binarywrite) out->indent();
out->write("type");
if (!binarywrite) out->write(' ');
out->write(this->input->getTypeId().getName());
if (binarywrite) out->write(static_cast<unsigned int>(0));
else out->write('\n');
this->getFieldData()->write(out, this);
this->writeFooter(out);
}
// Documented in superclass.
void
SoGate::copyContents(const SoFieldContainer * from, SbBool copyconnections)
{
const SoGate * gatesrc = coin_assert_cast<const SoGate *>(from);
if (gatesrc->input) { this->initialize(gatesrc->input->getTypeId()); }
inherited::copyContents(from, copyconnections);
}
|