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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
/**************************************************************************\
*
* 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 SoMFEnum SoMFEnum.h Inventor/fields/SoMFEnum.h
\brief The SoMFEnum class is a container for a set of enumerated values.
\ingroup fields
This field is used where nodes, engines or other field containers
needs to store values constrained to be from an enumerated set.
A field of this type stores its values to file as the symbolic
names, rather than the actual integer values.
\sa SoSFEnum, SoMFBitMask
*/
// *************************************************************************
#include <Inventor/fields/SoMFEnum.h>
#include <cassert>
#include <Inventor/fields/SoFieldContainer.h>
#include <Inventor/errors/SoReadError.h>
#include <Inventor/errors/SoDebugError.h>
#include <Inventor/SoInput.h>
#include <Inventor/SoOutput.h>
#include "fields/SoSubFieldP.h"
// *************************************************************************
/*!
\var int SoMFEnum::numEnums
Number of enumeration mappings.
*/
/*!
\var SbName * SoMFEnum::enumNames
Array of enumeration names. Maps 1-to-1 with the enumValues.
*/
/*!
\var int * SoMFEnum::enumValues
Array of enumeration values. Maps 1-to-1 with the enumNames.
*/
/*!
\var SbBool SoMFEnum::legalValuesSet
Is \c TRUE if a set of enum name-to-value mappings has been set.
*/
// *************************************************************************
SO_MFIELD_REQUIRED_SOURCE(SoMFEnum);
SO_MFIELD_MALLOC_SOURCE(SoMFEnum, int);
SO_MFIELD_VALUE_SOURCE(SoMFEnum, int, int);
// *************************************************************************
// (Declarations hidden in SO_[S|M]FIELD_HEADER macro in header file,
// so don't use Doxygen commenting.)
#ifndef DOXYGEN_SKIP_THIS
/* Constructor. */
SoMFEnum::SoMFEnum(void)
{
this->values = NULL;
this->legalValuesSet = FALSE;
this->numEnums = 0;
this->enumValues = NULL;
this->enumNames = NULL;
}
/* Destructor. */
SoMFEnum::~SoMFEnum()
{
this->enableNotify(FALSE); /* Avoid notifying destructed containers. */
this->deleteAllValues();
delete[] this->enumValues;
delete[] this->enumNames;
}
#endif // DOXYGEN_SKIP_THIS
// Override from parent class.
void
SoMFEnum::initClass(void)
{
SO_MFIELD_INTERNAL_INIT_CLASS(SoMFEnum);
}
// No need to document readValue() and writeValue() here, as the
// necessary information is provided by the documentation of the
// parent classes.
#ifndef DOXYGEN_SKIP_THIS
SbBool
SoMFEnum::read1Value(SoInput * in, int idx)
{
SbName n;
int val;
// Read mnemonic value as a character string identifier
if (!in->read(n, TRUE)) {
// If we don't have any legal values for this field,
// give some slack and accept integer values.
if (this->legalValuesSet || !in->read(val)) {
SoReadError::post(in, "Couldn't read enumeration name");
return FALSE;
}
}
else {
if (!this->findEnumValue(n, val)) {
// If we read an enum field written by an extension node,
// we won't have any defined enum values. This is indicated by
// this->legalValuesSet == FALSE. If this is the case, define
// any encountered enum values on the fly but keep legalValuesSet
// to FALSE in order not to fool built-in enum field to accept
// illegal values.
if (!this->legalValuesSet) {
int *newvalues = new int[this->numEnums+1];
SbName *newnames = new SbName[this->numEnums+1];
int i;
for (i = 0; i < this->numEnums; i++) {
newvalues[i] = this->enumValues[i];
newnames[i] = this->enumNames[i];
}
newvalues[i] = i;
newnames[i] = n;
delete[] this->enumValues;
delete[] this->enumNames;
this->enumValues = newvalues;
this->enumNames = newnames;
this->numEnums += 1;
val = i;
}
else {
SoReadError::post(in, "Unknown enumeration value \"%s\"", n.getString());
return FALSE;
}
}
}
assert(idx < this->maxNum);
this->values[idx] = val;
return TRUE;
}
// FIXME: this should share code with SoSFEnum::writeValue(). 20031205 mortene.
void
SoMFEnum::write1Value(SoOutput * out, int idx) const
{
int val = (*this)[idx];
const SbName *enumname;
if (findEnumName(val, enumname)) {
out->write(const_cast<char *>(enumname->getString()));
return;
}
// If we don't have any legal values for this field,
// pass through read integer values.
if (!this->legalValuesSet) {
out->write(val);
return;
}
#if COIN_DEBUG
SoDebugError::post("SoMFEnum::writeValue", "Illegal value (%d) in field", val);
#endif // COIN_DEBUG
}
#endif // DOXYGEN_SKIP_THIS
/*!
Set this field to contain a single value by specifying an
enumeration string.
*/
void
SoMFEnum::setValue(const SbName name)
{
int val;
if (this->findEnumValue(name, val)) {
this->setValue(val);
}
#if COIN_DEBUG
else {
SoDebugError::post("SoMFEnum::setValue",
"Unknown enum '%s'", name.getString());
}
#endif // COIN_DEBUG
}
/*!
Set the value at \a idx to the enumeration value represented
by \a name.
*/
void
SoMFEnum::set1Value(const int idx, const SbName name)
{
int val;
if(this->findEnumValue(name, val)) {
this->set1Value(idx, val);
}
#if COIN_DEBUG
else {
SoDebugError::post("SoMFEnum::setValue",
"Unknown enum '%s'", name.getString());
}
#endif // COIN_DEBUG
}
/*!
Makes a set of \a num enumeration \a names map to \a vals.
*/
void
SoMFEnum::setEnums(const int numarg, const int * const vals,
const SbName * const names)
{
delete[] this->enumValues;
delete[] this->enumNames;
this->enumValues = new int[numarg];
this->enumNames = new SbName[numarg];
this->numEnums = numarg;
this->legalValuesSet = TRUE;
for (int i = 0; i < this->numEnums; i++) {
this->enumValues[i] = vals[i];
this->enumNames[i] = names[i];
}
}
/*!
Return in \a val the enumeration value which matches the given
enumeration \a name.
Returns \c TRUE if \a name is a valid enumeration string, otherwise
\c FALSE.
*/
SbBool
SoMFEnum::findEnumValue(const SbName & name, int & val)
{
// Look through names table for one that matches
for (int i = 0; i < this->numEnums; i++) {
if (name == this->enumNames[i]) {
val = this->enumValues[i];
return TRUE;
}
}
return FALSE;
}
/*!
Set the enumeration \a name which matches the given enumeration
value.
Returns \c TRUE if \a value is a valid enumeration value, otherwise
\c FALSE.
*/
SbBool
SoMFEnum::findEnumName(int value, const SbName * & name) const
{
// Look through values table for one that matches
for (int i = 0; i < this->numEnums; i++) {
if (value == this->enumValues[i]) {
name = &(this->enumNames[i]);
return TRUE;
}
}
return FALSE;
}
/*!
Returns the number of enum names the SoSFEnum object understands.
\COIN_FUNCTION_EXTENSION
\since Coin 2.0
*/
int
SoMFEnum::getNumEnums(void) const
{
return this->numEnums;
}
/*!
Returns the value of the Nth enum this SoSFEnum object understands,
and mutates \a name to contain the Nth enum's name.
\COIN_FUNCTION_EXTENSION
\since Coin 2.0
*/
int
SoMFEnum::getEnum(const int idx, SbName & name) const
{
if ( COIN_DEBUG && (idx < 0 || idx >= this->numEnums) ) {
SoDebugError::post("SoSFEnum::getEnum", "idx (%d) out of range", idx);
return -1;
}
name = this->enumNames[idx];
return this->enumValues[idx];
}
#ifdef COIN_TEST_SUITE
BOOST_AUTO_TEST_CASE(initialized)
{
SoMFEnum field;
BOOST_CHECK_MESSAGE(field.getTypeId() != SoType::badType(),
"missing class initialization");
BOOST_CHECK_EQUAL(field.getNum(), 0);
}
#endif // COIN_TEST_SUITE
|