12 // written by LordHavoc in a readable way, optimized by Vic, further optimized by LordHavoc (the non-special index case), readable version preserved below this
13 void Image_CopyMux(unsigned char *outpixels, const unsigned char *inpixels, int inputwidth, int inputheight, qboolean inputflipx, qboolean inputflipy, qboolean inputflipdiagonal, int numoutputcomponents, int numinputcomponents, int *outputinputcomponentindices)
16 const unsigned char *in, *line;
17 int row_inc = (inputflipy ? -inputwidth : inputwidth) * numinputcomponents, col_inc = (inputflipx ? -1 : 1) * numinputcomponents;
18 int row_ofs = (inputflipy ? (inputheight - 1) * inputwidth * numinputcomponents : 0), col_ofs = (inputflipx ? (inputwidth - 1) * numinputcomponents : 0);
20 for (c = 0; c < numoutputcomponents; c++)
21 if (outputinputcomponentindices[c] & 0x80000000)
23 if (c < numoutputcomponents)
25 // special indices used
26 if (inputflipdiagonal)
28 for (x = 0, line = inpixels + col_ofs; x < inputwidth; x++, line += col_inc)
29 for (y = 0, in = line + row_ofs; y < inputheight; y++, in += row_inc, outpixels += numinputcomponents)
30 for (c = 0; c < numoutputcomponents; c++)
31 outpixels[c] = ((index = outputinputcomponentindices[c]) & 0x80000000) ? index : in[index];
35 for (y = 0, line = inpixels + row_ofs; y < inputheight; y++, line += row_inc)
36 for (x = 0, in = line + col_ofs; x < inputwidth; x++, in += col_inc, outpixels += numinputcomponents)
37 for (c = 0; c < numoutputcomponents; c++)
38 outpixels[c] = ((index = outputinputcomponentindices[c]) & 0x80000000) ? index : in[index];
43 // special indices not used
44 if (inputflipdiagonal)
46 for (x = 0, line = inpixels + col_ofs; x < inputwidth; x++, line += col_inc)
47 for (y = 0, in = line + row_ofs; y < inputheight; y++, in += row_inc, outpixels += numinputcomponents)
48 for (c = 0; c < numoutputcomponents; c++)
49 outpixels[c] = in[outputinputcomponentindices[c]];
53 for (y = 0, line = inpixels + row_ofs; y < inputheight; y++, line += row_inc)
54 for (x = 0, in = line + col_ofs; x < inputwidth; x++, in += col_inc, outpixels += numinputcomponents)
55 for (c = 0; c < numoutputcomponents; c++)
56 outpixels[c] = in[outputinputcomponentindices[c]];
61 // intentionally readable version
62 void Image_CopyMux(unsigned char *outpixels, const unsigned char *inpixels, int inputwidth, int inputheight, qboolean inputflipx, qboolean inputflipy, qboolean inputflipdiagonal, int numoutputcomponents, int numinputcomponents, int *outputinputcomponentindices)
65 const unsigned char *in, *inrow, *incolumn;
66 if (inputflipdiagonal)
68 for (x = 0;x < inputwidth;x++)
70 for (y = 0;y < inputheight;y++)
72 in = inpixels + ((inputflipy ? inputheight - 1 - y : y) * inputwidth + (inputflipx ? inputwidth - 1 - x : x)) * numinputcomponents;
73 for (c = 0;c < numoutputcomponents;c++)
75 index = outputinputcomponentindices[c];
76 if (index & 0x80000000)
79 *outpixels++ = in[index];
86 for (y = 0;y < inputheight;y++)
88 for (x = 0;x < inputwidth;x++)
90 in = inpixels + ((inputflipy ? inputheight - 1 - y : y) * inputwidth + (inputflipx ? inputwidth - 1 - x : x)) * numinputcomponents;
91 for (c = 0;c < numoutputcomponents;c++)
93 index = outputinputcomponentindices[c];
94 if (index & 0x80000000)
97 *outpixels++ = in[index];
105 void Image_GammaRemapRGB(const unsigned char *in, unsigned char *out, int pixels, const unsigned char *gammar, const unsigned char *gammag, const unsigned char *gammab)
109 out[0] = gammar[in[0]];
110 out[1] = gammag[in[1]];
111 out[2] = gammab[in[2]];
117 // note: pal must be 32bit color
118 void Image_Copy8bitRGBA(const unsigned char *in, unsigned char *out, int pixels, const unsigned int *pal)
120 int *iout = (int *)out;
123 iout[0] = pal[in[0]];
124 iout[1] = pal[in[1]];
125 iout[2] = pal[in[2]];
126 iout[3] = pal[in[3]];
127 iout[4] = pal[in[4]];
128 iout[5] = pal[in[5]];
129 iout[6] = pal[in[6]];
130 iout[7] = pal[in[7]];
137 iout[0] = pal[in[0]];
138 iout[1] = pal[in[1]];
139 iout[2] = pal[in[2]];
140 iout[3] = pal[in[3]];
146 iout[0] = pal[in[0]];
147 iout[1] = pal[in[1]];
152 iout[0] = pal[in[0]];
156 =================================================================
160 =================================================================
169 unsigned short xmin,ymin,xmax,ymax;
170 unsigned short hres,vres;
171 unsigned char palette[48];
174 unsigned short bytes_per_line;
175 unsigned short palette_type;
184 unsigned char* LoadPCX (const unsigned char *f, int filesize, int matchwidth, int matchheight)
187 unsigned char *a, *b, *image_rgba, *pbuf;
188 const unsigned char *palette, *fin, *enddata;
189 int x, y, x2, dataByte;
191 if (filesize < (int)sizeof(pcx) + 768)
193 Con_Print("Bad pcx file\n");
199 memcpy(&pcx, fin, sizeof(pcx));
202 // LordHavoc: big-endian support ported from QF newtree
203 pcx.xmax = LittleShort (pcx.xmax);
204 pcx.xmin = LittleShort (pcx.xmin);
205 pcx.ymax = LittleShort (pcx.ymax);
206 pcx.ymin = LittleShort (pcx.ymin);
207 pcx.hres = LittleShort (pcx.hres);
208 pcx.vres = LittleShort (pcx.vres);
209 pcx.bytes_per_line = LittleShort (pcx.bytes_per_line);
210 pcx.palette_type = LittleShort (pcx.palette_type);
212 image_width = pcx.xmax + 1 - pcx.xmin;
213 image_height = pcx.ymax + 1 - pcx.ymin;
214 if (pcx.manufacturer != 0x0a || pcx.version != 5 || pcx.encoding != 1 || pcx.bits_per_pixel != 8 || image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
216 Con_Print("Bad pcx file\n");
219 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
222 palette = f + filesize - 768;
224 image_rgba = (unsigned char *)Mem_Alloc(tempmempool, image_width*image_height*4);
227 Con_Printf("LoadPCX: not enough memory for %i by %i image\n", image_width, image_height);
230 pbuf = image_rgba + image_width*image_height*3;
233 for (y = 0;y < image_height && fin < enddata;y++)
235 a = pbuf + y * image_width;
236 for (x = 0;x < image_width && fin < enddata;)
243 x2 = x + (dataByte & 0x3F);
245 if (x2 > image_width)
246 x2 = image_width; // technically an error
253 fin += pcx.bytes_per_line - image_width; // the number of bytes per line is always forced to an even number
254 while(x < image_width)
261 for(x = 0;x < image_width*image_height;x++)
274 =========================================================
278 =========================================================
281 typedef struct _TargaHeader
283 unsigned char id_length, colormap_type, image_type;
284 unsigned short colormap_index, colormap_length;
285 unsigned char colormap_size;
286 unsigned short x_origin, y_origin, width, height;
287 unsigned char pixel_size, attributes;
291 void PrintTargaHeader(TargaHeader *t)
293 Con_Printf("TargaHeader:\nuint8 id_length = %i;\nuint8 colormap_type = %i;\nuint8 image_type = %i;\nuint16 colormap_index = %i;\nuint16 colormap_length = %i;\nuint8 colormap_size = %i;\nuint16 x_origin = %i;\nuint16 y_origin = %i;\nuint16 width = %i;\nuint16 height = %i;\nuint8 pixel_size = %i;\nuint8 attributes = %i;\n", t->id_length, t->colormap_type, t->image_type, t->colormap_index, t->colormap_length, t->colormap_size, t->x_origin, t->y_origin, t->width, t->height, t->pixel_size, t->attributes);
301 unsigned char *LoadTGA (const unsigned char *f, int filesize, int matchwidth, int matchheight)
303 int x, y, row_inc, compressed, readpixelcount, red, green, blue, alpha, runlen, pindex, alphabits;
304 unsigned char *pixbuf, *image_rgba;
305 const unsigned char *fin, *enddata;
307 TargaHeader targa_header;
308 unsigned char palette[256*4];
313 enddata = f + filesize;
315 targa_header.id_length = f[0];
316 targa_header.colormap_type = f[1];
317 targa_header.image_type = f[2];
319 targa_header.colormap_index = f[3] + f[4] * 256;
320 targa_header.colormap_length = f[5] + f[6] * 256;
321 targa_header.colormap_size = f[7];
322 targa_header.x_origin = f[8] + f[9] * 256;
323 targa_header.y_origin = f[10] + f[11] * 256;
324 targa_header.width = image_width = f[12] + f[13] * 256;
325 targa_header.height = image_height = f[14] + f[15] * 256;
326 if (image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
328 Con_Print("LoadTGA: invalid size\n");
329 PrintTargaHeader(&targa_header);
332 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
334 targa_header.pixel_size = f[16];
335 targa_header.attributes = f[17];
337 // advance to end of header
340 // skip TARGA image comment (usually 0 bytes)
341 fin += targa_header.id_length;
343 // read/skip the colormap if present (note: according to the TARGA spec it
344 // can be present even on truecolor or greyscale images, just not used by
346 if (targa_header.colormap_type)
348 if (targa_header.colormap_length > 256)
350 Con_Print("LoadTGA: only up to 256 colormap_length supported\n");
351 PrintTargaHeader(&targa_header);
354 if (targa_header.colormap_index)
356 Con_Print("LoadTGA: colormap_index not supported\n");
357 PrintTargaHeader(&targa_header);
360 if (targa_header.colormap_size == 24)
362 for (x = 0;x < targa_header.colormap_length;x++)
364 palette[x*4+2] = *fin++;
365 palette[x*4+1] = *fin++;
366 palette[x*4+0] = *fin++;
367 palette[x*4+3] = 255;
370 else if (targa_header.colormap_size == 32)
372 for (x = 0;x < targa_header.colormap_length;x++)
374 palette[x*4+2] = *fin++;
375 palette[x*4+1] = *fin++;
376 palette[x*4+0] = *fin++;
377 palette[x*4+3] = *fin++;
382 Con_Print("LoadTGA: Only 32 and 24 bit colormap_size supported\n");
383 PrintTargaHeader(&targa_header);
388 // check our pixel_size restrictions according to image_type
389 if (targa_header.image_type == 2 || targa_header.image_type == 10)
391 if (targa_header.pixel_size != 24 && targa_header.pixel_size != 32)
393 Con_Print("LoadTGA: only 24bit and 32bit pixel sizes supported for type 2 and type 10 images\n");
394 PrintTargaHeader(&targa_header);
398 else if (targa_header.image_type == 1 || targa_header.image_type == 9)
400 if (targa_header.pixel_size != 8)
402 Con_Print("LoadTGA: only 8bit pixel size for type 1, 3, 9, and 11 images supported\n");
403 PrintTargaHeader(&targa_header);
407 else if (targa_header.image_type == 3 || targa_header.image_type == 11)
409 if (targa_header.pixel_size != 8)
411 Con_Print("LoadTGA: only 8bit pixel size for type 1, 3, 9, and 11 images supported\n");
412 PrintTargaHeader(&targa_header);
418 Con_Printf("LoadTGA: Only type 1, 2, 3, 9, 10, and 11 targa RGB images supported, image_type = %i\n", targa_header.image_type);
419 PrintTargaHeader(&targa_header);
423 if (targa_header.attributes & 0x10)
425 Con_Print("LoadTGA: origin must be in top left or bottom left, top right and bottom right are not supported\n");
429 // number of attribute bits per pixel, we only support 0 or 8
430 alphabits = targa_header.attributes & 0x0F;
431 if (alphabits != 8 && alphabits != 0)
433 Con_Print("LoadTGA: only 0 or 8 attribute (alpha) bits supported\n");
437 image_rgba = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
440 Con_Printf("LoadTGA: not enough memory for %i by %i image\n", image_width, image_height);
444 // If bit 5 of attributes isn't set, the image has been stored from bottom to top
445 if ((targa_header.attributes & 0x20) == 0)
447 pixbuf = image_rgba + (image_height - 1)*image_width*4;
448 row_inc = -image_width*4*2;
456 compressed = targa_header.image_type == 9 || targa_header.image_type == 10 || targa_header.image_type == 11;
459 red = green = blue = alpha = 255;
460 while (y < image_height)
462 // decoder is mostly the same whether it's compressed or not
463 readpixelcount = 1000000;
465 if (compressed && fin < enddata)
468 // high bit indicates this is an RLE compressed run
471 runlen = 1 + (runlen & 0x7f);
474 while((runlen--) && y < image_height)
476 if (readpixelcount > 0)
479 red = green = blue = alpha = 255;
482 switch(targa_header.image_type)
488 if (pindex >= targa_header.colormap_length)
490 p = palette + pindex * 4;
504 if (targa_header.pixel_size == 32 && fin < enddata)
510 red = green = blue = *fin++;
522 if (x == image_width)
524 // end of line, advance to next
540 unsigned char *LoadLMP (const unsigned char *f, int filesize, int matchwidth, int matchheight, qboolean loadAs8Bit)
542 unsigned char *image_buffer;
546 Con_Print("LoadLMP: invalid LMP file\n");
550 // parse the very complicated header *chuckle*
551 image_width = BuffLittleLong(f);
552 image_height = BuffLittleLong(f + 4);
553 if (image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
555 Con_Printf("LoadLMP: invalid size %ix%i\n", image_width, image_height);
558 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
561 if (filesize < (8 + image_width * image_height))
563 Con_Print("LoadLMP: invalid LMP file\n");
569 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height);
570 memcpy(image_buffer, f + 8, image_width * image_height);
574 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
575 Image_Copy8bitRGBA(f + 8, image_buffer, image_width * image_height, palette_transparent);
580 static unsigned char *LoadLMPRGBA (const unsigned char *f, int filesize, int matchwidth, int matchheight)
582 return LoadLMP(f, filesize, matchwidth, matchheight, false);
586 typedef struct q2wal_s
589 unsigned width, height;
590 unsigned offsets[MIPLEVELS]; // four mip maps stored
591 char animname[32]; // next frame in animation chain
597 unsigned char *LoadWAL (const unsigned char *f, int filesize, int matchwidth, int matchheight)
599 unsigned char *image_rgba;
600 const q2wal_t *inwal = (const q2wal_t *)f;
602 if (filesize < (int) sizeof(q2wal_t))
604 Con_Print("LoadWAL: invalid WAL file\n");
608 image_width = LittleLong(inwal->width);
609 image_height = LittleLong(inwal->height);
610 if (image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
612 Con_Printf("LoadWAL: invalid size %ix%i\n", image_width, image_height);
615 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
618 if (filesize < (int) sizeof(q2wal_t) + (int) LittleLong(inwal->offsets[0]) + image_width * image_height)
620 Con_Print("LoadWAL: invalid WAL file\n");
624 image_rgba = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
627 Con_Printf("LoadLMP: not enough memory for %i by %i image\n", image_width, image_height);
630 Image_Copy8bitRGBA(f + LittleLong(inwal->offsets[0]), image_rgba, image_width * image_height, palette_complete);
635 void Image_StripImageExtension (const char *in, char *out)
637 const char *end, *temp;
638 end = in + strlen(in);
642 if (strcmp(temp, ".tga") == 0
643 || strcmp(temp, ".pcx") == 0
644 || strcmp(temp, ".lmp") == 0
645 || strcmp(temp, ".png") == 0
646 || strcmp(temp, ".jpg") == 0)
658 const char *formatstring;
659 unsigned char *(*loadfunc)(const unsigned char *f, int filesize, int matchwidth, int matchheight);
663 {"override/%s.tga", LoadTGA},
664 {"override/%s.png", PNG_LoadImage},
665 {"override/%s.jpg", JPEG_LoadImage},
666 {"textures/%s.tga", LoadTGA},
667 {"textures/%s.png", PNG_LoadImage},
668 {"textures/%s.jpg", JPEG_LoadImage},
669 {"textures/%s.pcx", LoadPCX},
670 {"textures/%s.wal", LoadWAL},
672 {"%s.png", PNG_LoadImage},
673 {"%s.jpg", JPEG_LoadImage},
675 {"%s.lmp", LoadLMPRGBA},
679 unsigned char *loadimagepixels (const char *filename, qboolean complain, int matchwidth, int matchheight)
682 fs_offset_t filesize;
683 unsigned char *f, *data = NULL;
684 char basename[MAX_QPATH], name[MAX_QPATH], *c;
685 if (developer_memorydebug.integer)
686 Mem_CheckSentinelsGlobal();
687 if (developer_texturelogging.integer)
688 Log_Printf("textures.log", "%s\n", filename);
689 strlcpy(basename, filename, sizeof(basename));
690 Image_StripImageExtension(basename, basename); // strip filename extensions to allow replacement by other types
691 // replace *'s with #, so commandline utils don't get confused when dealing with the external files
692 for (c = basename;*c;c++)
695 for (i = 0;imageformats[i].formatstring;i++)
697 sprintf (name, imageformats[i].formatstring, basename);
698 f = FS_LoadFile(name, tempmempool, true, &filesize);
701 data = imageformats[i].loadfunc(f, filesize, matchwidth, matchheight);
705 Con_DPrintf("loaded image %s (%dx%d)\n", name, image_width, image_height);
706 if (developer_memorydebug.integer)
707 Mem_CheckSentinelsGlobal();
714 Con_Printf("Couldn't load %s using ", filename);
715 for (i = 0;imageformats[i].formatstring;i++)
717 sprintf (name, imageformats[i].formatstring, basename);
718 Con_Printf(i == 0 ? "\"%s\"" : (imageformats[i+1].formatstring ? ", \"%s\"" : " or \"%s\".\n"), imageformats[i].formatstring);
721 if (developer_memorydebug.integer)
722 Mem_CheckSentinelsGlobal();
726 int image_makemask (const unsigned char *in, unsigned char *out, int size)
730 for (i = 0;i < size;i++)
732 out[0] = out[1] = out[2] = 255;
742 unsigned char* loadimagepixelsmask (const char *filename, qboolean complain, int matchwidth, int matchheight)
744 unsigned char *in, *data;
745 in = data = loadimagepixels(filename, complain, matchwidth, matchheight);
748 if (image_makemask(data, data, image_width * image_height))
749 return data; // some transparency
753 return NULL; // all opaque
757 rtexture_t *loadtextureimage (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags)
761 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
763 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
768 rtexture_t *loadtextureimagemask (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags)
772 if (!(data = loadimagepixelsmask (filename, complain, matchwidth, matchheight)))
774 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
779 rtexture_t *image_masktex;
780 rtexture_t *image_nmaptex;
781 rtexture_t *loadtextureimagewithmask (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags)
785 image_masktex = NULL;
786 image_nmaptex = NULL;
787 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
790 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
792 if (flags & TEXF_ALPHA && image_makemask(data, data, image_width * image_height))
793 image_masktex = R_LoadTexture2D(pool, va("%s_mask", filename), image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
799 rtexture_t *loadtextureimagewithmaskandnmap (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags, float bumpscale)
801 unsigned char *data, *data2;
803 image_masktex = NULL;
804 image_nmaptex = NULL;
805 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
808 data2 = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
810 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
812 Image_HeightmapToNormalmap(data, data2, image_width, image_height, (flags & TEXF_CLAMP) != 0, bumpscale);
813 image_nmaptex = R_LoadTexture2D(pool, va("%s_nmap", filename), image_width, image_height, data2, TEXTYPE_RGBA, flags, NULL);
815 if (flags & TEXF_ALPHA && image_makemask(data, data2, image_width * image_height))
816 image_masktex = R_LoadTexture2D(pool, va("%s_mask", filename), image_width, image_height, data2, TEXTYPE_RGBA, flags, NULL);
824 rtexture_t *loadtextureimagebumpasnmap (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags, float bumpscale)
826 unsigned char *data, *data2;
828 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
830 data2 = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
832 Image_HeightmapToNormalmap(data, data2, image_width, image_height, (flags & TEXF_CLAMP) != 0, bumpscale);
833 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data2, TEXTYPE_RGBA, flags, NULL);
840 qboolean Image_WriteTGARGB_preflipped (const char *filename, int width, int height, const unsigned char *data, unsigned char *buffer)
844 const unsigned char *in, *end;
846 memset (buffer, 0, 18);
847 buffer[2] = 2; // uncompressed type
848 buffer[12] = (width >> 0) & 0xFF;
849 buffer[13] = (width >> 8) & 0xFF;
850 buffer[14] = (height >> 0) & 0xFF;
851 buffer[15] = (height >> 8) & 0xFF;
852 buffer[16] = 24; // pixel size
857 end = in + width*height*3;
858 for (;in < end;in += 3)
864 ret = FS_WriteFile (filename, buffer, width*height*3 + 18 );
869 void Image_WriteTGARGB (const char *filename, int width, int height, const unsigned char *data)
872 unsigned char *buffer, *out;
873 const unsigned char *in, *end;
875 buffer = (unsigned char *)Mem_Alloc(tempmempool, width*height*3 + 18);
877 memset (buffer, 0, 18);
878 buffer[2] = 2; // uncompressed type
879 buffer[12] = (width >> 0) & 0xFF;
880 buffer[13] = (width >> 8) & 0xFF;
881 buffer[14] = (height >> 0) & 0xFF;
882 buffer[15] = (height >> 8) & 0xFF;
883 buffer[16] = 24; // pixel size
885 // swap rgb to bgr and flip upside down
887 for (y = height - 1;y >= 0;y--)
889 in = data + y * width * 3;
890 end = in + width * 3;
891 for (;in < end;in += 3)
898 FS_WriteFile (filename, buffer, width*height*3 + 18 );
903 void Image_WriteTGARGBA (const char *filename, int width, int height, const unsigned char *data)
906 unsigned char *buffer, *out;
907 const unsigned char *in, *end;
909 buffer = (unsigned char *)Mem_Alloc(tempmempool, width*height*4 + 18);
911 memset (buffer, 0, 18);
912 buffer[2] = 2; // uncompressed type
913 buffer[12] = (width >> 0) & 0xFF;
914 buffer[13] = (width >> 8) & 0xFF;
915 buffer[14] = (height >> 0) & 0xFF;
916 buffer[15] = (height >> 8) & 0xFF;
917 buffer[16] = 32; // pixel size
918 buffer[17] = 8; // transparent flag? (seems to be needed by gimp)
920 // swap rgba to bgra and flip upside down
922 for (y = height - 1;y >= 0;y--)
924 in = data + y * width * 4;
925 end = in + width * 4;
926 for (;in < end;in += 4)
934 FS_WriteFile (filename, buffer, width*height*4 + 18 );
939 qboolean Image_CheckAlpha(const unsigned char *data, int size, qboolean rgba)
941 const unsigned char *end;
945 for (end = data + size * 4, data += 3;data < end;data += 4)
951 // color 255 is transparent
952 for (end = data + size;data < end;data++)
959 static void Image_Resample32LerpLine (const unsigned char *in, unsigned char *out, int inwidth, int outwidth)
961 int j, xi, oldx = 0, f, fstep, endx, lerp;
962 fstep = (int) (inwidth*65536.0f/outwidth);
964 for (j = 0,f = 0;j < outwidth;j++, f += fstep)
969 in += (xi - oldx) * 4;
975 *out++ = (unsigned char) ((((in[4] - in[0]) * lerp) >> 16) + in[0]);
976 *out++ = (unsigned char) ((((in[5] - in[1]) * lerp) >> 16) + in[1]);
977 *out++ = (unsigned char) ((((in[6] - in[2]) * lerp) >> 16) + in[2]);
978 *out++ = (unsigned char) ((((in[7] - in[3]) * lerp) >> 16) + in[3]);
980 else // last pixel of the line has no pixel to lerp to
990 static void Image_Resample24LerpLine (const unsigned char *in, unsigned char *out, int inwidth, int outwidth)
992 int j, xi, oldx = 0, f, fstep, endx, lerp;
993 fstep = (int) (inwidth*65536.0f/outwidth);
995 for (j = 0,f = 0;j < outwidth;j++, f += fstep)
1000 in += (xi - oldx) * 3;
1006 *out++ = (unsigned char) ((((in[3] - in[0]) * lerp) >> 16) + in[0]);
1007 *out++ = (unsigned char) ((((in[4] - in[1]) * lerp) >> 16) + in[1]);
1008 *out++ = (unsigned char) ((((in[5] - in[2]) * lerp) >> 16) + in[2]);
1010 else // last pixel of the line has no pixel to lerp to
1019 #define LERPBYTE(i) r = resamplerow1[i];out[i] = (unsigned char) ((((resamplerow2[i] - r) * lerp) >> 16) + r)
1020 void Image_Resample32Lerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1022 int i, j, r, yi, oldy, f, fstep, lerp, endy = (inheight-1), inwidth4 = inwidth*4, outwidth4 = outwidth*4;
1024 const unsigned char *inrow;
1025 unsigned char *resamplerow1;
1026 unsigned char *resamplerow2;
1027 out = (unsigned char *)outdata;
1028 fstep = (int) (inheight*65536.0f/outheight);
1030 resamplerow1 = (unsigned char *)Mem_Alloc(tempmempool, outwidth*4*2);
1031 resamplerow2 = resamplerow1 + outwidth*4;
1033 inrow = (const unsigned char *)indata;
1035 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1036 Image_Resample32LerpLine (inrow + inwidth4, resamplerow2, inwidth, outwidth);
1037 for (i = 0, f = 0;i < outheight;i++,f += fstep)
1045 inrow = (unsigned char *)indata + inwidth4*yi;
1047 memcpy(resamplerow1, resamplerow2, outwidth4);
1049 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1050 Image_Resample32LerpLine (inrow + inwidth4, resamplerow2, inwidth, outwidth);
1101 resamplerow1 -= outwidth4;
1102 resamplerow2 -= outwidth4;
1108 inrow = (unsigned char *)indata + inwidth4*yi;
1110 memcpy(resamplerow1, resamplerow2, outwidth4);
1112 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1115 memcpy(out, resamplerow1, outwidth4);
1119 Mem_Free(resamplerow1);
1120 resamplerow1 = NULL;
1121 resamplerow2 = NULL;
1124 void Image_Resample32Nolerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1127 unsigned frac, fracstep;
1128 // relies on int being 4 bytes
1130 out = (int *)outdata;
1132 fracstep = inwidth*0x10000/outwidth;
1133 for (i = 0;i < outheight;i++)
1135 inrow = (int *)indata + inwidth*(i*inheight/outheight);
1136 frac = fracstep >> 1;
1140 out[0] = inrow[frac >> 16];frac += fracstep;
1141 out[1] = inrow[frac >> 16];frac += fracstep;
1142 out[2] = inrow[frac >> 16];frac += fracstep;
1143 out[3] = inrow[frac >> 16];frac += fracstep;
1149 out[0] = inrow[frac >> 16];frac += fracstep;
1150 out[1] = inrow[frac >> 16];frac += fracstep;
1155 out[0] = inrow[frac >> 16];frac += fracstep;
1161 void Image_Resample24Lerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1163 int i, j, r, yi, oldy, f, fstep, lerp, endy = (inheight-1), inwidth3 = inwidth * 3, outwidth3 = outwidth * 3;
1165 const unsigned char *inrow;
1166 unsigned char *resamplerow1;
1167 unsigned char *resamplerow2;
1168 out = (unsigned char *)outdata;
1169 fstep = (int) (inheight*65536.0f/outheight);
1171 resamplerow1 = (unsigned char *)Mem_Alloc(tempmempool, outwidth*3*2);
1172 resamplerow2 = resamplerow1 + outwidth*3;
1174 inrow = (const unsigned char *)indata;
1176 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1177 Image_Resample24LerpLine (inrow + inwidth3, resamplerow2, inwidth, outwidth);
1178 for (i = 0, f = 0;i < outheight;i++,f += fstep)
1186 inrow = (unsigned char *)indata + inwidth3*yi;
1188 memcpy(resamplerow1, resamplerow2, outwidth3);
1190 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1191 Image_Resample24LerpLine (inrow + inwidth3, resamplerow2, inwidth, outwidth);
1235 resamplerow1 -= outwidth3;
1236 resamplerow2 -= outwidth3;
1242 inrow = (unsigned char *)indata + inwidth3*yi;
1244 memcpy(resamplerow1, resamplerow2, outwidth3);
1246 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1249 memcpy(out, resamplerow1, outwidth3);
1252 Mem_Free(resamplerow1);
1253 resamplerow1 = NULL;
1254 resamplerow2 = NULL;
1257 void Image_Resample24Nolerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1259 int i, j, f, inwidth3 = inwidth * 3;
1260 unsigned frac, fracstep;
1261 unsigned char *inrow, *out;
1262 out = (unsigned char *)outdata;
1264 fracstep = inwidth*0x10000/outwidth;
1265 for (i = 0;i < outheight;i++)
1267 inrow = (unsigned char *)indata + inwidth3*(i*inheight/outheight);
1268 frac = fracstep >> 1;
1272 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1273 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1274 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1275 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1280 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1281 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1286 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1297 void Image_Resample (const void *indata, int inwidth, int inheight, int indepth, void *outdata, int outwidth, int outheight, int outdepth, int bytesperpixel, int quality)
1299 if (indepth != 1 || outdepth != 1)
1301 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1304 if (bytesperpixel == 4)
1307 Image_Resample32Lerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1309 Image_Resample32Nolerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1311 else if (bytesperpixel == 3)
1314 Image_Resample24Lerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1316 Image_Resample24Nolerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1319 Con_Printf ("Image_Resample: unsupported bytesperpixel %i\n", bytesperpixel);
1322 // in can be the same as out
1323 void Image_MipReduce(const unsigned char *in, unsigned char *out, int *width, int *height, int *depth, int destwidth, int destheight, int destdepth, int bytesperpixel)
1326 if (*depth != 1 || destdepth != 1)
1328 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1331 nextrow = *width * bytesperpixel;
1332 if (*width > destwidth)
1335 if (*height > destheight)
1339 if (bytesperpixel == 4)
1341 for (y = 0;y < *height;y++)
1343 for (x = 0;x < *width;x++)
1345 out[0] = (unsigned char) ((in[0] + in[4] + in[nextrow ] + in[nextrow+4]) >> 2);
1346 out[1] = (unsigned char) ((in[1] + in[5] + in[nextrow+1] + in[nextrow+5]) >> 2);
1347 out[2] = (unsigned char) ((in[2] + in[6] + in[nextrow+2] + in[nextrow+6]) >> 2);
1348 out[3] = (unsigned char) ((in[3] + in[7] + in[nextrow+3] + in[nextrow+7]) >> 2);
1352 in += nextrow; // skip a line
1355 else if (bytesperpixel == 3)
1357 for (y = 0;y < *height;y++)
1359 for (x = 0;x < *width;x++)
1361 out[0] = (unsigned char) ((in[0] + in[3] + in[nextrow ] + in[nextrow+3]) >> 2);
1362 out[1] = (unsigned char) ((in[1] + in[4] + in[nextrow+1] + in[nextrow+4]) >> 2);
1363 out[2] = (unsigned char) ((in[2] + in[5] + in[nextrow+2] + in[nextrow+5]) >> 2);
1367 in += nextrow; // skip a line
1371 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1376 if (bytesperpixel == 4)
1378 for (y = 0;y < *height;y++)
1380 for (x = 0;x < *width;x++)
1382 out[0] = (unsigned char) ((in[0] + in[4]) >> 1);
1383 out[1] = (unsigned char) ((in[1] + in[5]) >> 1);
1384 out[2] = (unsigned char) ((in[2] + in[6]) >> 1);
1385 out[3] = (unsigned char) ((in[3] + in[7]) >> 1);
1391 else if (bytesperpixel == 3)
1393 for (y = 0;y < *height;y++)
1395 for (x = 0;x < *width;x++)
1397 out[0] = (unsigned char) ((in[0] + in[3]) >> 1);
1398 out[1] = (unsigned char) ((in[1] + in[4]) >> 1);
1399 out[2] = (unsigned char) ((in[2] + in[5]) >> 1);
1406 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1411 if (*height > destheight)
1415 if (bytesperpixel == 4)
1417 for (y = 0;y < *height;y++)
1419 for (x = 0;x < *width;x++)
1421 out[0] = (unsigned char) ((in[0] + in[nextrow ]) >> 1);
1422 out[1] = (unsigned char) ((in[1] + in[nextrow+1]) >> 1);
1423 out[2] = (unsigned char) ((in[2] + in[nextrow+2]) >> 1);
1424 out[3] = (unsigned char) ((in[3] + in[nextrow+3]) >> 1);
1428 in += nextrow; // skip a line
1431 else if (bytesperpixel == 3)
1433 for (y = 0;y < *height;y++)
1435 for (x = 0;x < *width;x++)
1437 out[0] = (unsigned char) ((in[0] + in[nextrow ]) >> 1);
1438 out[1] = (unsigned char) ((in[1] + in[nextrow+1]) >> 1);
1439 out[2] = (unsigned char) ((in[2] + in[nextrow+2]) >> 1);
1443 in += nextrow; // skip a line
1447 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1450 Con_Printf ("Image_MipReduce: desired size already achieved\n");
1454 void Image_HeightmapToNormalmap(const unsigned char *inpixels, unsigned char *outpixels, int width, int height, int clamp, float bumpscale)
1457 const unsigned char *p0, *p1, *p2;
1459 float iwidth, iheight, ibumpscale, n[3];
1460 iwidth = 1.0f / width;
1461 iheight = 1.0f / height;
1462 ibumpscale = (255.0f * 3.0f) / bumpscale;
1464 for (y = 0;y < height;y++)
1466 for (x = 0;x < width;x++)
1468 p0 = inpixels + (y * width + x) * 4;
1472 p1 = inpixels + (y * width + x) * 4;
1474 p1 = inpixels + (y * width) * 4;
1477 p1 = inpixels + (y * width + x + 1) * 4;
1478 if (y == height - 1)
1481 p2 = inpixels + (y * width + x) * 4;
1483 p2 = inpixels + x * 4;
1486 p2 = inpixels + ((y + 1) * width + x) * 4;
1490 dv[0][2] = ((p0[0] + p0[1] + p0[2]) * ibumpscale) - ((p1[0] + p1[1] + p1[2]) * ibumpscale);
1493 dv[1][2] = ((p2[0] + p2[1] + p2[2]) * ibumpscale) - ((p0[0] + p0[1] + p0[2]) * ibumpscale);
1494 n[0] = dv[0][1]*dv[1][2]-dv[0][2]*dv[1][1];
1495 n[1] = dv[0][2]*dv[1][0]-dv[0][0]*dv[1][2];
1496 n[2] = dv[0][0]*dv[1][1]-dv[0][1]*dv[1][0];
1498 n[0] = ((p0[0] + p0[1] + p0[2]) - (p1[0] + p1[1] + p1[2]));
1499 n[1] = ((p2[0] + p2[1] + p2[2]) - (p0[0] + p0[1] + p0[2]));
1503 // this should work for the bottom right triangle if anyone wants
1504 // code for that for some reason
1505 n[0] = ((p3[0] + p3[1] + p3[2]) - (p1[0] + p1[1] + p1[2]));
1506 n[1] = ((p2[0] + p2[1] + p2[2]) - (p3[0] + p3[1] + p3[2]));
1510 out[0] = 128.0f + n[0] * 127.0f;
1511 out[1] = 128.0f + n[1] * 127.0f;
1512 out[2] = 128.0f + n[2] * 127.0f;
1513 out[3] = (p0[0] + p0[1] + p0[2]) / 3;
1519 int image_loadskin(imageskin_t *s, const char *shadername)
1522 unsigned char *bumppixels;
1523 int bumppixels_width, bumppixels_height;
1524 char name[MAX_QPATH];
1525 strlcpy(name, shadername, sizeof(name));
1526 Image_StripImageExtension(name, name);
1527 memset(s, 0, sizeof(*s));
1528 s->basepixels = loadimagepixels(name, false, 0, 0);
1529 if (s->basepixels == NULL)
1531 s->basepixels_width = image_width;
1532 s->basepixels_height = image_height;
1534 bumppixels = NULL;bumppixels_width = 0;bumppixels_height = 0;
1535 if (Image_CheckAlpha(s->basepixels, s->basepixels_width * s->basepixels_height, true))
1537 s->maskpixels = (unsigned char *)Mem_Alloc(loadmodel->mempool, s->basepixels_width * s->basepixels_height * 4);
1538 s->maskpixels_width = s->basepixels_width;
1539 s->maskpixels_height = s->basepixels_height;
1540 memcpy(s->maskpixels, s->basepixels, s->maskpixels_width * s->maskpixels_height * 4);
1541 for (j = 0;j < s->basepixels_width * s->basepixels_height * 4;j += 4)
1543 s->maskpixels[j+0] = 255;
1544 s->maskpixels[j+1] = 255;
1545 s->maskpixels[j+2] = 255;
1549 // _luma is supported for tenebrae compatibility
1550 // (I think it's a very stupid name, but oh well)
1551 if ((s->glowpixels = loadimagepixels(va("%s_glow", name), false, 0, 0)) != NULL
1552 || (s->glowpixels = loadimagepixels(va("%s_luma", name), false, 0, 0)) != NULL)
1554 s->glowpixels_width = image_width;
1555 s->glowpixels_height = image_height;
1557 // _norm is the name used by tenebrae
1558 // (I don't like the name much)
1559 if ((s->nmappixels = loadimagepixels(va("%s_norm", name), false, 0, 0)) != NULL)
1561 s->nmappixels_width = image_width;
1562 s->nmappixels_height = image_height;
1564 else if ((bumppixels = loadimagepixels(va("%s_bump", name), false, 0, 0)) != NULL)
1566 bumppixels_width = image_width;
1567 bumppixels_height = image_height;
1569 if ((s->glosspixels = loadimagepixels(va("%s_gloss", name), false, 0, 0)) != NULL)
1571 s->glosspixels_width = image_width;
1572 s->glosspixels_height = image_height;
1574 if ((s->pantspixels = loadimagepixels(va("%s_pants", name), false, 0, 0)) != NULL)
1576 s->pantspixels_width = image_width;
1577 s->pantspixels_height = image_height;
1579 if ((s->shirtpixels = loadimagepixels(va("%s_shirt", name), false, 0, 0)) != NULL)
1581 s->shirtpixels_width = image_width;
1582 s->shirtpixels_height = image_height;
1585 if (s->nmappixels == NULL)
1587 if (bumppixels != NULL)
1589 if (r_shadow_bumpscale_bumpmap.value > 0)
1591 s->nmappixels = (unsigned char *)Mem_Alloc(loadmodel->mempool, bumppixels_width * bumppixels_height * 4);
1592 s->nmappixels_width = bumppixels_width;
1593 s->nmappixels_height = bumppixels_height;
1594 Image_HeightmapToNormalmap(bumppixels, s->nmappixels, s->nmappixels_width, s->nmappixels_height, false, r_shadow_bumpscale_bumpmap.value);
1599 if (r_shadow_bumpscale_basetexture.value > 0)
1601 s->nmappixels = (unsigned char *)Mem_Alloc(loadmodel->mempool, s->basepixels_width * s->basepixels_height * 4);
1602 s->nmappixels_width = s->basepixels_width;
1603 s->nmappixels_height = s->basepixels_height;
1604 Image_HeightmapToNormalmap(s->basepixels, s->nmappixels, s->nmappixels_width, s->nmappixels_height, false, r_shadow_bumpscale_basetexture.value);
1608 if (bumppixels != NULL)
1609 Mem_Free(bumppixels);
1613 void image_freeskin(imageskin_t *s)
1616 Mem_Free(s->basepixels);
1618 Mem_Free(s->maskpixels);
1620 Mem_Free(s->nmappixels);
1622 Mem_Free(s->glowpixels);
1624 Mem_Free(s->glosspixels);
1626 Mem_Free(s->pantspixels);
1628 Mem_Free(s->shirtpixels);
1629 memset(s, 0, sizeof(*s));