Shadowrun: Awakened 29 September 2011 - Build 871
imageio.cpp
Go to the documentation of this file.
00001 /*
00002     Copyright 2005-2010 Intel Corporation.  All Rights Reserved.
00003 
00004     This file is part of Threading Building Blocks.
00005 
00006     Threading Building Blocks is free software; you can redistribute it
00007     and/or modify it under the terms of the GNU General Public License
00008     version 2 as published by the Free Software Foundation.
00009 
00010     Threading Building Blocks is distributed in the hope that it will be
00011     useful, but WITHOUT ANY WARRANTY; without even the implied warranty
00012     of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013     GNU General Public License for more details.
00014 
00015     You should have received a copy of the GNU General Public License
00016     along with Threading Building Blocks; if not, write to the Free Software
00017     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00018 
00019     As a special exception, you may use this file as part of a free software
00020     library without restriction.  Specifically, if other files instantiate
00021     templates or use macros or inline functions from this file, or you compile
00022     this file and link it with other files to produce an executable, this
00023     file does not by itself cause the resulting executable to be covered by
00024     the GNU General Public License.  This exception does not however
00025     invalidate any other reasons why the executable file might be covered by
00026     the GNU General Public License.
00027 */
00028 
00029 /*
00030     The original source for this example is
00031     Copyright (c) 1994-2008 John E. Stone
00032     All rights reserved.
00033 
00034     Redistribution and use in source and binary forms, with or without
00035     modification, are permitted provided that the following conditions
00036     are met:
00037     1. Redistributions of source code must retain the above copyright
00038        notice, this list of conditions and the following disclaimer.
00039     2. Redistributions in binary form must reproduce the above copyright
00040        notice, this list of conditions and the following disclaimer in the
00041        documentation and/or other materials provided with the distribution.
00042     3. The name of the author may not be used to endorse or promote products
00043        derived from this software without specific prior written permission.
00044 
00045     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
00046     OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
00047     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00048     ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
00049     DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00050     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
00051     OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00052     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00053     LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
00054     OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
00055     SUCH DAMAGE.
00056 */
00057 
00058 /*
00059  *  imageio.c - This file deals with reading/writing image files
00060  *
00061  *  $Id: imageio.cpp,v 1.2 2007-02-22 17:54:15 dpoulsen Exp $
00062  */ 
00063 
00064 /* For our puposes, we're interested only in the 3 byte per pixel 24 bit
00065  * truecolor sort of file..
00066  */
00067 
00068 #include <stdio.h>
00069 #include "machine.h"
00070 #include "types.h"
00071 #include "util.h"
00072 #include "imageio.h"
00073 #include "ppm.h"     /* PPM files */
00074 #include "tgafile.h" /* Truevision Targa files */
00075 #include "jpeg.h"    /* JPEG files */
00076 
00077 static 
00078 int fakeimage(char * name, int * xres, int * yres, unsigned char ** imgdata) {
00079   int i, imgsize;
00080 
00081   fprintf(stderr, "Error loading image %s.  Faking it.\n", name);
00082    
00083   *xres = 2;
00084   *yres = 2;
00085   imgsize = 3 * (*xres) * (*yres);
00086   *imgdata = (unsigned char *)rt_getmem(imgsize);
00087   for (i=0; i<imgsize; i++) {
00088     (*imgdata)[i] = 255;
00089   }
00090 
00091   return IMAGENOERR;
00092 }
00093 
00094 
00095 int readimage(rawimage * img) {
00096   int rc;
00097   int xres, yres;
00098   unsigned char * imgdata;
00099   char * name = img->name;
00100 
00101   if (strstr(name, ".ppm")) { 
00102     rc = readppm(name, &xres, &yres, &imgdata);
00103   }
00104   else if (strstr(name, ".tga")) {
00105     rc = readtga(name, &xres, &yres, &imgdata);
00106   }
00107   else if (strstr(name, ".jpg")) {
00108     rc = readjpeg(name, &xres, &yres, &imgdata);
00109   }
00110   else if (strstr(name, ".gif")) {
00111     rc = IMAGEUNSUP; 
00112   }
00113   else if (strstr(name, ".png")) {
00114     rc = IMAGEUNSUP; 
00115   }
00116   else if (strstr(name, ".tiff")) {
00117     rc = IMAGEUNSUP; 
00118   }
00119   else if (strstr(name, ".rgb")) {
00120     rc = IMAGEUNSUP; 
00121   }
00122   else if (strstr(name, ".xpm")) {
00123     rc = IMAGEUNSUP; 
00124   }
00125   else {
00126     rc = readppm(name, &xres, &yres, &imgdata);
00127   } 
00128 
00129   switch (rc) {
00130     case IMAGEREADERR:
00131       fprintf(stderr, "Short read encountered while loading image %s\n", name);
00132       rc = IMAGENOERR; /* remap to non-fatal error */
00133       break;
00134 
00135     case IMAGEUNSUP:
00136       fprintf(stderr, "Cannot read unsupported image format for image %s\n", name);
00137       break;
00138   }    
00139 
00140   /* If the image load failed, create a tiny white colored image to fake it */ 
00141   /* this allows a scene to render even when a file can't be loaded */
00142   if (rc != IMAGENOERR) {
00143     rc = fakeimage(name, &xres, &yres, &imgdata);
00144   }
00145 
00146   /* If we succeeded in loading the image, return it. */
00147   if (rc == IMAGENOERR) { 
00148     img->xres = xres;
00149     img->yres = yres;
00150     img->bpp = 3;  
00151     img->data = imgdata;
00152   }
00153 
00154   return rc;
00155 }
00156  
00157 

Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.

GNU Lesser General Public License 3 Sourceforge.net