Initial revision
This commit is contained in:
486
src/osgPlugins/tga/ReaderWriterTGA.cpp
Normal file
486
src/osgPlugins/tga/ReaderWriterTGA.cpp
Normal file
@@ -0,0 +1,486 @@
|
||||
#include <osg/Image>
|
||||
#include <osg/Image>
|
||||
#include <osg/Input>
|
||||
#include <osg/Output>
|
||||
#include <osg/Notify>
|
||||
#include <osg/Registry>
|
||||
#include <osg/Geode>
|
||||
|
||||
#include <osg/GL>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/****************************************************************************
|
||||
*
|
||||
* Follows is code extracted from the simage library. Original Authors:
|
||||
*
|
||||
* Systems in Motion,
|
||||
* <URL:http://www.sim.no>
|
||||
*
|
||||
* Peder Blekken <pederb@sim.no>
|
||||
* Morten Eriksen <mortene@sim.no>
|
||||
* Marius Bugge Monsen <mariusbu@sim.no>
|
||||
*
|
||||
* The original COPYING notice
|
||||
*
|
||||
* All files in this library are public domain, except simage_rgb.cpp which is
|
||||
* Copyright (c) Mark J Kilgard <mjk@nvidia.com>. I will contact Mark
|
||||
* very soon to hear if this source also can become public domain.
|
||||
*
|
||||
* Please send patches for bugs and new features to: <pederb@sim.no>.
|
||||
*
|
||||
* Peder Blekken
|
||||
*
|
||||
*
|
||||
* Ported into the OSG as a plugin, Robert Osfield Decemeber 2000.
|
||||
* Note, reference above to license of simage_rgb is not relevent to the OSG
|
||||
* as the OSG does not use it. Also for patches, bugs and new features
|
||||
* please send them direct to the OSG dev team rather than address above.
|
||||
*
|
||||
**********************************************************************/
|
||||
|
||||
/* */
|
||||
/* Supported types: */
|
||||
/* */
|
||||
/* 1 (Uncompressed, color-mapped images) */
|
||||
/* 2 (RGB uncompressed) */
|
||||
/* 9 RLE color-mapped */
|
||||
/* 10 RLE RGB */
|
||||
/* */
|
||||
|
||||
|
||||
#define ERR_NO_ERROR 0
|
||||
#define ERR_OPEN 1
|
||||
#define ERR_READ 2
|
||||
#define ERR_MEM 3
|
||||
#define ERR_UNSUPPORTED 4
|
||||
|
||||
static int tgaerror = ERR_NO_ERROR;
|
||||
int
|
||||
simage_tga_error(char * buffer, int buflen)
|
||||
{
|
||||
switch (tgaerror) {
|
||||
case ERR_OPEN:
|
||||
strncpy(buffer, "TGA loader: Error opening file", buflen);
|
||||
break;
|
||||
case ERR_READ:
|
||||
strncpy(buffer, "TGA loader: Error reading file", buflen);
|
||||
break;
|
||||
case ERR_MEM:
|
||||
strncpy(buffer, "TGA loader: Out of memory error", buflen);
|
||||
break;
|
||||
}
|
||||
return tgaerror;
|
||||
}
|
||||
|
||||
/* TODO: */
|
||||
/* - bottom-up images */
|
||||
/* - huffman, delta encoding */
|
||||
static void
|
||||
convert_16_to_24(const unsigned char * const src, unsigned char * const dest)
|
||||
{
|
||||
/* RGB for opengl, lo-hi 16 bit for TGA */
|
||||
unsigned int t0 = src[0];
|
||||
unsigned int t1 = src[1];
|
||||
dest[0] = (unsigned char) (t0 & 0x1f) << 2; /* r */
|
||||
dest[1] = (unsigned char) (t1 & 0x7c) >> 2; /* g */
|
||||
dest[2] = (unsigned char) ((t1 & 0x3)<<3) | ((t0&0xe)>>5); /*b */
|
||||
}
|
||||
|
||||
static void
|
||||
convert_16_to_32(const unsigned char * const src, unsigned char * const dest)
|
||||
{
|
||||
/* RGBA for opengl, lo-hi 16 bit for TGA */
|
||||
unsigned int t0 = src[0];
|
||||
unsigned int t1 = src[1];
|
||||
dest[0] = (unsigned char) (t0 & 0x1f) << 2; /* r */
|
||||
dest[1] = (unsigned char) (t1 & 0x7c) >> 2; /* g */
|
||||
dest[2] = (unsigned char) ((t1 & 0x3)<<3) | ((t0&0xe)>>5); /*b */
|
||||
dest[3] = (t1&0x70)?255:0; /* a */
|
||||
}
|
||||
|
||||
static void
|
||||
convert_24_to_24(const unsigned char * const src, unsigned char * const dest)
|
||||
{
|
||||
/* RGB for opengl */
|
||||
/* BGR for TGA */
|
||||
dest[0] = src[2];
|
||||
dest[1] = src[1];
|
||||
dest[2] = src[0];
|
||||
}
|
||||
|
||||
static void
|
||||
convert_32_to_32(const unsigned char * const src, unsigned char * const dest)
|
||||
{
|
||||
/* opengl image format is RGBA, not ARGB */
|
||||
/* TGA image format is BGRA for 32 bit */
|
||||
dest[0] = src[2];
|
||||
dest[1] = src[1];
|
||||
dest[2] = src[0];
|
||||
dest[3] = src[3];
|
||||
}
|
||||
|
||||
static void
|
||||
convert_data(const unsigned char * const src, unsigned char * const dest,
|
||||
const int x, const int srcformat,
|
||||
const int destformat)
|
||||
{
|
||||
if (srcformat == 2) {
|
||||
if (destformat == 3)
|
||||
convert_16_to_24(src+x*srcformat,
|
||||
dest+x*destformat);
|
||||
else {
|
||||
assert(destformat == 4);
|
||||
convert_16_to_32(src+x*srcformat,
|
||||
dest+x*destformat);
|
||||
}
|
||||
}
|
||||
else if (srcformat == 3) {
|
||||
assert(destformat == 3);
|
||||
convert_24_to_24(src+x*srcformat,
|
||||
dest+x*destformat);
|
||||
}
|
||||
else {
|
||||
assert(srcformat == 4 && destformat == 4);
|
||||
convert_32_to_32(src+x*srcformat,
|
||||
dest+x*destformat);
|
||||
}
|
||||
}
|
||||
|
||||
/* Intel byte order workaround */
|
||||
static int getInt16(unsigned char *ptr)
|
||||
{
|
||||
int res = ptr[0];
|
||||
int tmp = ptr[1];
|
||||
return res | (tmp<<8);
|
||||
}
|
||||
|
||||
/* */
|
||||
/* decode a new rle packet */
|
||||
/* */
|
||||
static void
|
||||
rle_new_packet(unsigned char ** src,
|
||||
int * rleRemaining,
|
||||
int * rleIsCompressed,
|
||||
unsigned char *rleCurrent,
|
||||
const int rleEntrySize)
|
||||
{
|
||||
int i;
|
||||
unsigned char code = *(*src)++;
|
||||
*rleRemaining = (code & 127) + 1; /* number of bytes left in this packet */
|
||||
if (code & 128) { /* rle */
|
||||
*rleIsCompressed = 1;
|
||||
for (i = 0; i < rleEntrySize; i++)
|
||||
rleCurrent[i] = *(*src)++;
|
||||
}
|
||||
else { /* uncompressed */
|
||||
*rleIsCompressed = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* */
|
||||
/* decode the # of specified bytes */
|
||||
/* */
|
||||
static void
|
||||
rle_decode(unsigned char ** src,
|
||||
unsigned char *dest,
|
||||
const int numbytes,
|
||||
int * rleRemaining,
|
||||
int * rleIsCompressed,
|
||||
unsigned char *rleCurrent,
|
||||
const int rleEntrySize)
|
||||
{
|
||||
int i;
|
||||
int size = rleEntrySize;
|
||||
unsigned char *stop = dest + numbytes;
|
||||
while (dest < stop) {
|
||||
if (*rleRemaining == 0) /* start new packet */
|
||||
rle_new_packet(src, rleRemaining, rleIsCompressed,
|
||||
rleCurrent, rleEntrySize);
|
||||
|
||||
if (*rleIsCompressed) {
|
||||
for (i = 0; i < size; i++) {
|
||||
*dest++ = rleCurrent[i];
|
||||
}
|
||||
}
|
||||
else {
|
||||
for (i = 0; i < size; i++) {
|
||||
*dest++ = *(*src)++;
|
||||
}
|
||||
}
|
||||
*rleRemaining--;
|
||||
}
|
||||
}
|
||||
|
||||
unsigned char *
|
||||
simage_tga_load(const char *filename,
|
||||
int *width_ret,
|
||||
int *height_ret,
|
||||
int *numComponents_ret)
|
||||
{
|
||||
FILE * fp;
|
||||
unsigned char header[18];
|
||||
int type;
|
||||
int width;
|
||||
int height;
|
||||
int depth;
|
||||
int flags;
|
||||
int format;
|
||||
unsigned char *colormap;
|
||||
int indexsize;
|
||||
int rleIsCompressed;
|
||||
int rleRemaining;
|
||||
int rleEntrySize;
|
||||
unsigned char rleCurrent[4];
|
||||
unsigned char *buffer;
|
||||
unsigned char *dest;
|
||||
int bpr;
|
||||
unsigned char *linebuf;
|
||||
|
||||
tgaerror = ERR_NO_ERROR; /* clear error */
|
||||
|
||||
fp = fopen(filename, "rb");
|
||||
if (!fp) {
|
||||
tgaerror = ERR_OPEN;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (fread(header, 1, 18, fp) != 18) {
|
||||
tgaerror = ERR_READ;
|
||||
fclose(fp);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
type = header[2];
|
||||
width = getInt16(&header[12]);
|
||||
height = getInt16(&header[14]);
|
||||
depth = header[16] >> 3;
|
||||
flags = header[17];
|
||||
|
||||
/* check for reasonable values in case this is not a tga file */
|
||||
if ((type != 2 && type != 10) ||
|
||||
(width < 0 || width > 4096) ||
|
||||
(height < 0 || height > 4096) ||
|
||||
(depth < 2 || depth > 4)) {
|
||||
tgaerror = ERR_UNSUPPORTED;
|
||||
fclose(fp);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (header[0]) /* skip identification field */
|
||||
fseek(fp, header[0], SEEK_CUR);
|
||||
|
||||
colormap = NULL;
|
||||
if (header[1] == 1) { /* there is a colormap */
|
||||
int len = getInt16(&header[5]);
|
||||
indexsize = header[7]>>3;
|
||||
colormap = (unsigned char *)malloc(len*indexsize);
|
||||
fread(colormap, 1, len*indexsize, fp);
|
||||
}
|
||||
|
||||
if (depth == 2) { /* 16 bits */
|
||||
if (flags & 1) format = 4;
|
||||
else format = 3;
|
||||
}
|
||||
else format = depth;
|
||||
|
||||
/* SoDebugError::postInfo("simage_tga_load", "TARGA file: %d %d %d %d %d\n", */
|
||||
/* type, width, height, depth, format); */
|
||||
|
||||
|
||||
rleIsCompressed = 0;
|
||||
rleRemaining = 0;
|
||||
rleEntrySize = depth;
|
||||
buffer = (unsigned char*)malloc(width*height*format);
|
||||
dest = buffer;
|
||||
bpr = format * width;
|
||||
linebuf = (unsigned char *)malloc(width*depth);
|
||||
|
||||
switch(type) {
|
||||
case 1: /* colormap, uncompressed */
|
||||
{
|
||||
/* FIXME: write code */
|
||||
/* should never get here because simage_tga_identify returns 0 */
|
||||
/* for this filetype */
|
||||
/* I need example files in this format to write the code... */
|
||||
tgaerror = ERR_UNSUPPORTED;
|
||||
}
|
||||
break;
|
||||
case 2: /* RGB, uncompressed */
|
||||
{
|
||||
int x, y;
|
||||
for (y = 0; y < height; y++) {
|
||||
if (fread(linebuf, 1, width*depth, fp) != (unsigned int)width*depth) {
|
||||
tgaerror = ERR_READ;
|
||||
break;
|
||||
}
|
||||
for (x = 0; x < width; x++) {
|
||||
convert_data(linebuf, dest, x, depth, format);
|
||||
}
|
||||
dest += bpr;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 9: /* colormap, compressed */
|
||||
{
|
||||
/* FIXME: write code */
|
||||
/* should never get here because simage_tga_identify returns 0 */
|
||||
/* for this filetype */
|
||||
/* I need example files in this format to write the code... */
|
||||
tgaerror = ERR_UNSUPPORTED;
|
||||
}
|
||||
break;
|
||||
case 10: /* RGB, compressed */
|
||||
{
|
||||
int size, x, y;
|
||||
unsigned char *buf;
|
||||
unsigned char *src;
|
||||
int pos = ftell(fp);
|
||||
fseek(fp, 0, SEEK_END);
|
||||
size = ftell(fp) - pos;
|
||||
fseek(fp, pos, SEEK_SET);
|
||||
buf = (unsigned char *)malloc(size);
|
||||
if (buf == NULL) {
|
||||
tgaerror = ERR_MEM;
|
||||
break;
|
||||
}
|
||||
src = buf;
|
||||
if (fread(buf, 1, size, fp) != (unsigned int) size) {
|
||||
tgaerror = ERR_READ;
|
||||
break;
|
||||
}
|
||||
for (y = 0; y < height; y++) {
|
||||
rle_decode(&src, linebuf, width*depth, &rleRemaining,
|
||||
&rleIsCompressed, rleCurrent, rleEntrySize);
|
||||
assert(src <= buf + size);
|
||||
for (x = 0; x < width; x++) {
|
||||
convert_data(linebuf, dest, x, depth, format);
|
||||
}
|
||||
dest += bpr;
|
||||
}
|
||||
if (buf) free(buf);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
tgaerror = ERR_UNSUPPORTED;
|
||||
}
|
||||
|
||||
if (linebuf) free(linebuf);
|
||||
fclose(fp);
|
||||
|
||||
if (tgaerror) {
|
||||
if (buffer) free(buffer);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
*width_ret = width;
|
||||
*height_ret = height;
|
||||
*numComponents_ret = format;
|
||||
return buffer;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
simage_tga_identify(const char *filename,
|
||||
const unsigned char *buf,
|
||||
int headerlen)
|
||||
{
|
||||
char * ptr;
|
||||
if (headerlen < 18) return 0;
|
||||
ptr = strrchr(filename, '.');
|
||||
if (!ptr) return 0; /* TGA files must end with .tga|.TGA */
|
||||
|
||||
if (strcmp(ptr, ".tga") && strcmp(ptr, ".TGA")) return 0;
|
||||
|
||||
if (buf[1] == 1 && buf[2] == 1 && buf[17] < 64) {
|
||||
/* SoDebugError::postInfo("simage_tga_identify", */
|
||||
/* "TARGA colormap file: %s\n", filename); */
|
||||
return 0;
|
||||
}
|
||||
if ((buf[1] == 0 || buf[1] == 1) && buf[2] == 2 && buf[17] < 64) return 1;
|
||||
if (buf[1] == 1 && buf[2] == 9 && buf[17] < 64) {
|
||||
/* SoDebugError::postInfo("simage_tga_identity", */
|
||||
/* "TARGA RLE and colormap file: %s\n", filename); */
|
||||
|
||||
/* will soon be supported */
|
||||
return 0;
|
||||
}
|
||||
if ((buf[1] == 0 || buf[1] == 1) && buf[2] == 10 && buf[17] < 64) {
|
||||
/* RLE and RGB */
|
||||
return 1;
|
||||
}
|
||||
else { /* unsupported */
|
||||
/* SoDebugError::postInfo("simage_tga_identify", */
|
||||
/* "Unsupported TARGA type.\n"); */
|
||||
}
|
||||
/* not a TGA, or not supported type */
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
class ReaderWriterTGA : public osg::ReaderWriter
|
||||
{
|
||||
public:
|
||||
virtual const char* className() { return "TGA Image Reader"; }
|
||||
virtual bool acceptsExtension(const std::string& extension) { return extension=="tga"; }
|
||||
|
||||
virtual osg::Node* readNode(const std::string& fileName)
|
||||
{
|
||||
osg::Image* image = readImage(fileName);
|
||||
if (image)
|
||||
{
|
||||
osg::Geode* geode = osg::createGeodeForImage(image);
|
||||
if (geode==NULL) image->unref();
|
||||
return geode;
|
||||
}
|
||||
else
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
virtual osg::Image* readImage(const std::string& fileName)
|
||||
{
|
||||
|
||||
unsigned char *imageData = NULL;
|
||||
int width_ret;
|
||||
int height_ret;
|
||||
int numComponents_ret;
|
||||
|
||||
imageData = simage_tga_load(fileName.c_str(),&width_ret,&height_ret,&numComponents_ret);
|
||||
|
||||
if (imageData==NULL) return NULL;
|
||||
|
||||
int s = width_ret;
|
||||
int t = height_ret;
|
||||
int r = 1;
|
||||
|
||||
int internalFormat = numComponents_ret;
|
||||
|
||||
unsigned int pixelFormat =
|
||||
numComponents_ret == 1 ? GL_LUMINANCE :
|
||||
numComponents_ret == 2 ? GL_LUMINANCE_ALPHA :
|
||||
numComponents_ret == 3 ? GL_RGB :
|
||||
numComponents_ret == 4 ? GL_RGBA : (GLenum)-1;
|
||||
|
||||
unsigned int dataType = GL_UNSIGNED_BYTE;
|
||||
|
||||
osg::Image* pOsgImage = new osg::Image;
|
||||
pOsgImage->setFileName(fileName.c_str());
|
||||
pOsgImage->setImage(s,t,r,
|
||||
internalFormat,
|
||||
pixelFormat,
|
||||
dataType,
|
||||
imageData);
|
||||
|
||||
return pOsgImage;
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
// now register with Registry to instantiate the above
|
||||
// reader/writer.
|
||||
osg::RegisterReaderWriterProxy<ReaderWriterTGA> g_readerWriter_TGA_Proxy;
|
||||
Reference in New Issue
Block a user