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 356 357 358 359
|
/********************************************************************************
* *
* I F F I n p u t / O u t p u t *
* *
*********************************************************************************
* Copyright (C) 2004,2022 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#include "xincs.h"
#include "fxver.h"
#include "fxdefs.h"
#include "fxmath.h"
#include "FXArray.h"
#include "FXHash.h"
#include "FXElement.h"
#include "FXStream.h"
/*
Notes:
- EA IFF 85 Electronic Arts' standard for interchange format files.
- Based on "EA IFF 85" Standard for Interchange Format Files, Jerry Morrison,
January 14, 1985.
- And on "ILBM" IFF Interleaved Bitmap specification, Jerry Morrison,
January 17, 1986.
- Some day, when I have some sample files, I may support Maya IFF also.
*/
using namespace FX;
/*******************************************************************************/
namespace FX {
#ifndef FXLOADIFF
extern FXAPI FXbool fxcheckIFF(FXStream& store);
extern FXAPI FXbool fxloadIFF(FXStream& store,FXColor*& data,FXint& width,FXint& height);
#endif
// Tags
enum{
FORM = 0x464F524D,
FOR1 = 0x464F5231,
FOR2 = 0x464F5232,
FOR3 = 0x464F5233,
FOR4 = 0x464F5234,
ILBM = 0x494C424D,
BMHD = 0x424D4844,
CMAP = 0x434D4150,
CAMG = 0x43414D47,
BODY = 0x424F4459,
FLDS = 0x464C4453,
FMT1 = 0x464D5401,
TBMP = 0x54424D50,
CIMG = 0x43494D47,
TBHD = 0x54424844,
RGBA = 0x52474241,
CLPZ = 0x434C505A,
ESXY = 0x45535859,
ZBUF = 0x5A425546,
BLUR = 0x424C5552,
BLRT = 0x424C5254,
HIST = 0x48495354,
CAT = 0x43415420,
GRAB = 0x47524142,
PBM = 0x50424D20
};
// Format
enum {
ILBM_NORMAL,
ILBM_EHB,
ILBM_HAM,
ILBM_HAM8,
ILBM_24BIT
};
// Check if stream contains a IFF
FXbool fxcheckIFF(FXStream& store){
FXuchar signature[4];
store.load(signature,4);
store.position(-4,FXFromCurrent);
return signature[0]=='F' && signature[1]=='O' && signature[2]=='R' && (signature[3]=='M' || signature[3]=='1' || signature[3]=='2' || signature[3]=='3' || signature[3]=='4');
}
// Load IFF image from stream
FXbool fxloadIFF(FXStream& store,FXColor*& data,FXint& width,FXint& height){
FXuint pixels,bit,view,tag,size,type,colors,i,bytesperline,value,plane,remainingbytes,fmt;
FXuchar *buffer,*ptr,planes,masking,compress,padding,XAspect,YAspect,c1,c2,c3,color,count;
FXColor colormap[256],*dest,pixelcolor;
FXshort X,Y,Width,Height,PageWidth,PageHeight,TransparentColor;
FXlong pos,end;
FXint x,y;
FXbool swap;
FXbool ok=false;
// Init
data=nullptr;
buffer=nullptr;
width=0;
height=0;
pixels=0;
view=0;
colors=0;
planes=0;
bytesperline=0;
pixelcolor=0;
fmt=ILBM_NORMAL;
// Bitmaps are little-endian
swap=store.swapBytes();
store.setBigEndian(true);
// Read tag
store >> tag;
FXTRACE((100,"fxloadIFF tag=%c%c%c%c\n",(tag>>24)&255,(tag>>16)&255,(tag>>8)&255,tag&255));
// Check for FORM tag
if(tag==FORM || tag==FOR1 || tag==FOR2 || tag==FOR3 || tag==FOR4){
// Read size
store >> size;
// Calculate end of data
pos=store.position();
end=pos+size;
// Read type
store >> type;
if(type==ILBM){
// Read stuff
while(1){
// Bail if at the end
if(store.position()+8>end) goto x;
// Read next chunk header
store >> tag;
store >> size;
pos=store.position();
// Empty block is a problem too
if(size==0) goto x;
FXTRACE((100,"CHUNK %c%c%c%c POS=%ld SIZE=%d\n",(tag>>24)&255,(tag>>16)&255,(tag>>8)&255,tag&255,pos,size));
// Bitmap header
if(tag==BMHD){
store >> Width;
store >> Height;
store >> X;
store >> Y;
store >> planes;
store >> masking;
store >> compress;
store >> padding;
store >> TransparentColor;
store >> XAspect;
store >> YAspect;
store >> PageWidth;
store >> PageHeight;
pixels=Width*Height; // Total image size
bytesperline=((Width+15)>>4)<<1; // Bytes per line
}
// Colormap
else if(tag==CMAP){
colors=size/3;
if(colors<1) goto x;
if(colors>256) goto x;
memset(colormap,0,sizeof(colormap));
for(i=0; i<colors; i++){ // Load colors
store >> c1 >> c2 >> c3;
colormap[i]=FXRGB(c1,c2,c3);
}
}
// Commodore AMiGa
else if(tag==CAMG){
store >> view;
FXTRACE((100,"view=%04x\n",view));
}
// Body
else if(tag==BODY){
break;
}
// Next chunk
store.position(pos+size+(size&1));
}
// Wat voor vlees in de kuip?
FXTRACE((100,"fxloadIFF: Width=%d Height=%d planes=%d masking=%d compress=%d padding=%d\n",Width,Height,planes,masking,compress,padding));
// Determine format
if(planes==24){
fmt=ILBM_24BIT;
}
else if(planes==8){
if(view&0x800){
fmt=ILBM_HAM8;
}
}
else if(planes>5){
if(view&0x80){
fmt=ILBM_EHB;
}
else if(view&0x800){
fmt=ILBM_HAM;
}
}
// Tweak colormap
if((fmt==ILBM_NORMAL) || (fmt==ILBM_EHB) || (fmt==ILBM_HAM)){
// Colors based on HAM mode
switch(fmt) {
case ILBM_NORMAL: colors=1<<planes; break;
case ILBM_EHB: colors=32*2; break;
case ILBM_HAM: colors=16; break;
}
// Divide colors
for(i=0; i<colors; i++){
((FXuchar*)&colormap[i])[0]=(((FXuchar*)&colormap[i])[0]>>4)*17;
((FXuchar*)&colormap[i])[1]=(((FXuchar*)&colormap[i])[1]>>4)*17;
((FXuchar*)&colormap[i])[2]=(((FXuchar*)&colormap[i])[2]>>4)*17;
}
// Extended half-bright mode
if(fmt==ILBM_EHB){
for(i=0; i<32; i++) {
((FXuchar*)&colormap[colors+i])[0]=((FXuchar*)&colormap[i])[0]>>1;
((FXuchar*)&colormap[colors+i])[1]=((FXuchar*)&colormap[i])[1]>>1;
((FXuchar*)&colormap[colors+i])[2]=((FXuchar*)&colormap[i])[2]>>1;
}
}
}
// Temp buffer
if(allocElms(buffer,bytesperline*planes)){
// Try allocate image
if(allocElms(data,pixels)){
// Returned image size
width=Width;
height=Height;
dest=data;
// Loop over y
for(y=0; y<height; y++){
// Uncompress data of each planes
for(plane=0; plane<planes; plane++){
ptr=buffer+bytesperline*plane;
remainingbytes=bytesperline;
if(compress==1){ // Compressed
do{
store >> count;
if(count&0x80){
count^=0xFF;
count+=2;
store >> color;
if(count>remainingbytes) count=remainingbytes;
memset(ptr,color,count);
}
else{
count+=1;
if(count>remainingbytes) count=remainingbytes;
store.load(ptr,count);
}
ptr+=count;
remainingbytes-=count;
}
while(remainingbytes>0);
}
else{ // Not compressed
store.load(ptr,bytesperline);
}
}
// Loop over x
for(x=0; x<width; x++){
// Build value from the planes
for(plane=value=0; plane<planes; plane++){
bit=(buffer[bytesperline*plane+(x>>3)]>>(7-(x&7)))&1;
value|=bit<<plane;
}
// Determine what to do based on mode
switch(fmt){
case ILBM_NORMAL:
case ILBM_EHB:
pixelcolor=colormap[value&255];
break;
case ILBM_24BIT:
pixelcolor=(value<<8);
break;
case ILBM_HAM:
switch(value&0x30) {
case 0x00: pixelcolor=colormap[value&15]; break;
case 0x10: pixelcolor=(pixelcolor&FXRGB(255,255,0))|FXRGB(0,0,(value&15)*17); break;
case 0x20: pixelcolor=(pixelcolor&FXRGB(0,255,255))|FXRGB((value&15)*17,0,0); break;
case 0x30: pixelcolor=(pixelcolor&FXRGB(255,0,255))|FXRGB(0,(value&15)*17,0); break;
}
break;
case ILBM_HAM8:
switch(value&0xc0) {
case 0x00: pixelcolor=colormap[value&0x3f]; break;
case 0x40: pixelcolor=(pixelcolor&FXRGB(255,255,0))|FXRGB(0,0,(value&0x3f)<<2); break;
case 0x80: pixelcolor=(pixelcolor&FXRGB(0,255,255))|FXRGB((value&0x3f)<<2,0,0); break;
case 0xc0: pixelcolor=(pixelcolor&FXRGB(255,0,255))|FXRGB(0,(value&0x3f)<<2,0); break;
}
break;
}
*dest++=pixelcolor;
}
}
// OK
ok=true;
}
// Release buffer
freeElms(buffer);
}
}
}
x:store.swapBytes(swap);
return ok;
}
}
|