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 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
/**************************************************************************\
*
* 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 SoSFImage3 SoSFImage3.h Inventor/fields/SoSFImage3.h
\brief The SoSFImage3 class is used to store 3D (volume) images.
\ingroup fields
The SoSFImage3 class provides storage for inline 3D image maps. 3D
images in Coin are mainly used for 3D texture mapping support.
SoSFImage3 instances can be exported and imported as any other field
class in Coin.
The components of an SoSFImage3 is: its image dimensions (width,
height and depth), the number of bytes used for describing each
pixel (number of components) and an associated pixel buffer. The
size of the pixel buffer will be width*height*depth*components.
For texture maps, the components / bytes-per-pixel setting
translates as follows: use 1 for a grayscale imagemap, 2 for
grayscale + opacity (i.e. alpha value), 3 for RGB (1 byte each for
red, green and blue) and 4 components means 3 bytes for RGB + 1 byte
opacity value (aka RGBA).
This field is serializable into the Inventor / Coin file format in
the following manner:
\code
FIELDNAME X Y Z C 0xRRGGBBAA 0xRRGGBBAA ...
\endcode
"X", "Y" and "Z" are the image dimensions along the given axes, "C"
is the number of components in the image. The number of 0xRRGGBBAA
pixel color specifications needs to equal the exact number of
pixels, which is X*Y*Z. Each part of the pixel color value is in the
range 0x00 to 0xff (hexadecimal, 0 to 255 decimal).
For 3-component images, the pixel-format is 0xXXRRGGBB, where the
byte in the pixel color value marked as "XX" is ignored and can be
left out.
For 2-component images, the pixel-format is 0xXXXXGGAA, where the
bytes in the pixel color values marked as "XX" are ignored and can
be left out. "GG" is the part which gives a grayscale value and "AA"
is for opacity.
For 1-component images, the pixel-format is 0xXXXXXXGG, where the
bytes in the pixel color values marked as "XX" are ignored and can
be left out.
The pixels are read as being ordered in rows along X (width),
columns along Y (height, bottom to top) and Z "planes" (depth, front
to back).
Here's a simple example of the file format serialization, for a
2x2x2 RGB-image inside an SoTexture3 node:
\code
Texture3 {
images 2 2 2 3
0x000000 0x00ff00
0xff0000 0xffff00
0x000000 0x0000ff
0x00ff00 0x00ffff
}
\endcode
The image above is colored black+green on the first line and
red+yellow on the second line in the first Z plane. The second Z
plane is colored black+blue on the first line and green+cyan on the
second line.
\COIN_CLASS_EXTENSION
\sa SoTexture3, SoSFImage
\since Coin 2.0
\since TGS Inventor 2.6
*/
// *************************************************************************
#include <Inventor/fields/SoSFImage3.h>
#include <Inventor/SoInput.h>
#include <Inventor/SoOutput.h>
#include <Inventor/errors/SoReadError.h>
#include <Inventor/SbImage.h>
#include "fields/SoSubFieldP.h"
// *************************************************************************
PRIVATE_TYPEID_SOURCE(SoSFImage3);
PRIVATE_EQUALITY_SOURCE(SoSFImage3);
// *************************************************************************
// (Declarations hidden in macro in SoSFImage3.h, so don't use Doxygen
// commenting.)
#ifndef DOXYGEN_SKIP_THIS
/* Constructor, initializes fields to represent an empty image. */
SoSFImage3::SoSFImage3(void)
: image(new SbImage)
{
}
/* Free all resources associated with the image. */
SoSFImage3::~SoSFImage3()
{
delete this->image;
}
/* Copy the image of \a field into this field. */
const SoSFImage3 &
SoSFImage3::operator=(const SoSFImage3 & field)
{
int nc = 0;
SbVec3s size(0,0,0);
unsigned char * bytes = field.image->getValue(size, nc);
this->setValue(size, nc, bytes);
return *this;
}
#endif // DOXYGEN_SKIP_THIS
// Override from parent class.
void
SoSFImage3::initClass(void)
{
SO_SFIELD_INTERNAL_INIT_CLASS(SoSFImage3);
}
SbBool
SoSFImage3::readValue(SoInput * in)
{
SbVec3s size;
int nc;
if (!in->read(size[0]) || !in->read(size[1]) || !in->read(size[2]) ||
!in->read(nc)) {
SoReadError::post(in, "Premature end of file reading images dimensions");
return FALSE;
}
// Note: empty images (dimensions 0x0x0) are allowed.
if (size[0] < 0 || size[1] < 0 || size[2] < 0 || nc < 0 || nc > 4) {
SoReadError::post(in, "Invalid image specification %dx%dx%dx%d",
size[0], size[1], size[2], nc);
return FALSE;
}
int buffersize = int(size[0]) * int(size[1]) * int(size[2]) * nc;
if (buffersize == 0 &&
(size[0] != 0 || size[1] != 0 || size[2] != 0 || nc != 0)) {
SoReadError::post(in, "Invalid image specification %dx%dx%dx%d",
size[0], size[1], size[2], nc);
return FALSE;
}
#if COIN_DEBUG && 0 // debug
SoDebugError::postInfo("SoSFImage3::readValue",
"image dimensions: %dx%dx%dx%d",
size[0], size[1], size[2], nc);
#endif // debug
if (!buffersize) {
this->image->setValue(SbVec3s(0,0,0), 0, NULL);
return TRUE;
}
// allocate image data and get new pointer back
this->image->setValue(size, nc, NULL);
unsigned char * pixblock = this->image->getValue(size, nc);
// The binary image format of 2.1 and later tries to be less
// wasteful when storing images.
if (in->isBinary() && in->getIVVersion() >= 2.1f) {
if (!in->readBinaryArray(pixblock, buffersize)) {
SoReadError::post(in, "Premature end of file reading images data");
return FALSE;
}
}
else {
int byte = 0;
int numpixels = int(size[0]) * int(size[1]) * int(size[2]);
for (int i = 0; i < numpixels; i++) {
unsigned int l;
if (!in->read(l)) {
SoReadError::post(in, "Premature end of file reading images data");
return FALSE;
}
for (int j = 0; j < nc; j++) {
pixblock[byte++] =
static_cast<unsigned char>((l >> (8 * (nc-j-1))) & 0xFF);
}
}
}
return TRUE;
}
void
SoSFImage3::writeValue(SoOutput * out) const
{
int nc;
SbVec3s size;
unsigned char * pixblock = this->image->getValue(size, nc);
out->write(size[0]);
if (!out->isBinary()) out->write(' ');
out->write(size[1]);
if (!out->isBinary()) out->write(' ');
out->write(size[2]);
if (!out->isBinary()) out->write(' ');
out->write(nc);
if (out->isBinary()) {
int buffersize = int(size[0]) * int(size[1]) * int(size[2]) * nc;
if (buffersize) { // in case of an empty image
out->writeBinaryArray(pixblock, buffersize);
int padsize = ((buffersize + 3) / 4) * 4 - buffersize;
if (padsize) {
unsigned char pads[3] = {'\0','\0','\0'};
out->writeBinaryArray(pads, padsize);
}
}
}
else {
out->write('\n');
out->indent();
int numpixels = int(size[0]) * int(size[1]) * int(size[2]);
for (int i = 0; i < numpixels; i++) {
unsigned int data = 0;
for (int j = 0; j < nc; j++) {
if (j) data <<= 8;
data |= static_cast<unsigned int>(pixblock[i * nc + j]);
}
out->write(data);
if (((i+1)%8 == 0) && (i+1 != numpixels)) {
out->write('\n');
out->indent();
}
else {
out->write(' ');
}
}
}
}
/*!
\fn int SoSFImage3::operator!=(const SoSFImage3 & field) const
Compare image of \a field with the image in this field and
return \c FALSE if they are equal.
*/
/*!
Compare image of \a field with the image in this field and
return \c TRUE if they are equal.
*/
int
SoSFImage3::operator==(const SoSFImage3 & field) const
{
return (*this->image) == (*field.image);
}
/*!
Return pixel buffer, set \a size to contain the image dimensions and
\a nc to the number of components in the image.
*/
const unsigned char *
SoSFImage3::getValue(SbVec3s & size, int & nc) const
{
return this->image->getValue(size, nc);
}
/*!
Initialize this field to \a size and \a nc.
If \a bytes is not \c NULL, the image data is copied from \a bytes
into this field. If \a bytes is \c NULL, the image data is cleared
by setting all bytes to 0 (note that the behavior on passing a \c
NULL pointer is specific for Coin, Open Inventor will crash if you
try it).
*/
void
SoSFImage3::setValue(const SbVec3s & size, const int nc,
const unsigned char * bytes)
{
this->image->setValue(size, nc, bytes);
this->valueChanged();
}
/*!
Return pixel buffer, set \a size to contain the image dimensions and
\a nc to the number of components in the image.
The field's container will not be notified about the changes
until you call finishEditing().
*/
unsigned char *
SoSFImage3::startEditing(SbVec3s & size, int & nc)
{
return this->image->getValue(size, nc);
}
/*!
Notify the field's auditors that the image data has been
modified.
*/
void
SoSFImage3::finishEditing(void)
{
this->valueChanged();
}
#ifdef COIN_TEST_SUITE
BOOST_AUTO_TEST_CASE(initialized)
{
SoSFImage3 field;
BOOST_CHECK_MESSAGE(SoSFImage3::getClassTypeId() != SoType::badType(),
"SoSFImage3 class not initialized");
BOOST_CHECK_MESSAGE(field.getTypeId() != SoType::badType(),
"missing class initialization");
}
#endif // COIN_TEST_SUITE
|