12 static unsigned char *Image_GetEmbeddedPicBGRA(const char *name);
14 static void Image_CopyAlphaFromBlueBGRA(unsigned char *outpixels, const unsigned char *inpixels, int w, int h)
18 for(i = 0; i < n; ++i)
19 outpixels[4*i+3] = inpixels[4*i]; // blue channel
23 // written by LadyHavoc in a readable way, optimized by Vic, further optimized by LadyHavoc (the non-special index case), readable version preserved below this
24 void Image_CopyMux(unsigned char *outpixels, const unsigned char *inpixels, int inputwidth, int inputheight, qbool inputflipx, qbool inputflipy, qbool inputflipdiagonal, int numoutputcomponents, int numinputcomponents, int *outputinputcomponentindices)
27 const unsigned char *in, *line;
28 int row_inc = (inputflipy ? -inputwidth : inputwidth) * numinputcomponents, col_inc = (inputflipx ? -1 : 1) * numinputcomponents;
29 int row_ofs = (inputflipy ? (inputheight - 1) * inputwidth * numinputcomponents : 0), col_ofs = (inputflipx ? (inputwidth - 1) * numinputcomponents : 0);
31 for (c = 0; c < numoutputcomponents; c++)
32 if (outputinputcomponentindices[c] & 0x80000000)
34 if (c < numoutputcomponents)
36 // special indices used
37 if (inputflipdiagonal)
39 for (x = 0, line = inpixels + col_ofs; x < inputwidth; x++, line += col_inc)
40 for (y = 0, in = line + row_ofs; y < inputheight; y++, in += row_inc, outpixels += numoutputcomponents)
41 for (c = 0; c < numoutputcomponents; c++)
42 outpixels[c] = ((index = outputinputcomponentindices[c]) & 0x80000000) ? index : in[index];
46 for (y = 0, line = inpixels + row_ofs; y < inputheight; y++, line += row_inc)
47 for (x = 0, in = line + col_ofs; x < inputwidth; x++, in += col_inc, outpixels += numoutputcomponents)
48 for (c = 0; c < numoutputcomponents; c++)
49 outpixels[c] = ((index = outputinputcomponentindices[c]) & 0x80000000) ? index : in[index];
54 // special indices not used
55 if (inputflipdiagonal)
57 for (x = 0, line = inpixels + col_ofs; x < inputwidth; x++, line += col_inc)
58 for (y = 0, in = line + row_ofs; y < inputheight; y++, in += row_inc, outpixels += numoutputcomponents)
59 for (c = 0; c < numoutputcomponents; c++)
60 outpixels[c] = in[outputinputcomponentindices[c]];
64 for (y = 0, line = inpixels + row_ofs; y < inputheight; y++, line += row_inc)
65 for (x = 0, in = line + col_ofs; x < inputwidth; x++, in += col_inc, outpixels += numoutputcomponents)
66 for (c = 0; c < numoutputcomponents; c++)
67 outpixels[c] = in[outputinputcomponentindices[c]];
72 // intentionally readable version
73 void Image_CopyMux(unsigned char *outpixels, const unsigned char *inpixels, int inputwidth, int inputheight, qbool inputflipx, qbool inputflipy, qbool inputflipdiagonal, int numoutputcomponents, int numinputcomponents, int *outputinputcomponentindices)
76 const unsigned char *in, *inrow, *incolumn;
77 if (inputflipdiagonal)
79 for (x = 0;x < inputwidth;x++)
81 for (y = 0;y < inputheight;y++)
83 in = inpixels + ((inputflipy ? inputheight - 1 - y : y) * inputwidth + (inputflipx ? inputwidth - 1 - x : x)) * numinputcomponents;
84 for (c = 0;c < numoutputcomponents;c++)
86 index = outputinputcomponentindices[c];
87 if (index & 0x80000000)
90 *outpixels++ = in[index];
97 for (y = 0;y < inputheight;y++)
99 for (x = 0;x < inputwidth;x++)
101 in = inpixels + ((inputflipy ? inputheight - 1 - y : y) * inputwidth + (inputflipx ? inputwidth - 1 - x : x)) * numinputcomponents;
102 for (c = 0;c < numoutputcomponents;c++)
104 index = outputinputcomponentindices[c];
105 if (index & 0x80000000)
106 *outpixels++ = index;
108 *outpixels++ = in[index];
116 void Image_GammaRemapRGB(const unsigned char *in, unsigned char *out, int pixels, const unsigned char *gammar, const unsigned char *gammag, const unsigned char *gammab)
120 out[0] = gammar[in[0]];
121 out[1] = gammag[in[1]];
122 out[2] = gammab[in[2]];
128 // note: pal must be 32bit color
129 void Image_Copy8bitBGRA(const unsigned char *in, unsigned char *out, int pixels, const unsigned int *pal)
131 int *iout = (int *)out;
134 iout[0] = pal[in[0]];
135 iout[1] = pal[in[1]];
136 iout[2] = pal[in[2]];
137 iout[3] = pal[in[3]];
138 iout[4] = pal[in[4]];
139 iout[5] = pal[in[5]];
140 iout[6] = pal[in[6]];
141 iout[7] = pal[in[7]];
148 iout[0] = pal[in[0]];
149 iout[1] = pal[in[1]];
150 iout[2] = pal[in[2]];
151 iout[3] = pal[in[3]];
157 iout[0] = pal[in[0]];
158 iout[1] = pal[in[1]];
163 iout[0] = pal[in[0]];
167 =================================================================
171 =================================================================
180 unsigned short xmin,ymin,xmax,ymax;
181 unsigned short hres,vres;
182 unsigned char palette[48];
185 unsigned short bytes_per_line;
186 unsigned short palette_type;
195 static unsigned char* LoadPCX_BGRA (const unsigned char *f, int filesize, int *miplevel)
198 unsigned char *a, *b, *image_buffer, *pbuf;
199 const unsigned char *palette, *fin, *enddata;
200 int x, y, x2, dataByte;
202 if (filesize < (int)sizeof(pcx) + 768)
204 Con_Print("Bad pcx file\n");
210 memcpy(&pcx, fin, sizeof(pcx));
213 // LadyHavoc: big-endian support ported from QF newtree
214 pcx.xmax = LittleShort (pcx.xmax);
215 pcx.xmin = LittleShort (pcx.xmin);
216 pcx.ymax = LittleShort (pcx.ymax);
217 pcx.ymin = LittleShort (pcx.ymin);
218 pcx.hres = LittleShort (pcx.hres);
219 pcx.vres = LittleShort (pcx.vres);
220 pcx.bytes_per_line = LittleShort (pcx.bytes_per_line);
221 pcx.palette_type = LittleShort (pcx.palette_type);
223 image_width = pcx.xmax + 1 - pcx.xmin;
224 image_height = pcx.ymax + 1 - pcx.ymin;
225 if (pcx.manufacturer != 0x0a || pcx.version != 5 || pcx.encoding != 1 || pcx.bits_per_pixel != 8 || image_width > 32768 || image_height > 32768 || image_width <= 0 || image_height <= 0)
227 Con_Print("Bad pcx file\n");
231 palette = f + filesize - 768;
233 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width*image_height*4);
236 Con_Printf("LoadPCX: not enough memory for %i by %i image\n", image_width, image_height);
239 pbuf = image_buffer + image_width*image_height*3;
242 for (y = 0;y < image_height && fin < enddata;y++)
244 a = pbuf + y * image_width;
245 for (x = 0;x < image_width && fin < enddata;)
252 x2 = x + (dataByte & 0x3F);
254 if (x2 > image_width)
255 x2 = image_width; // technically an error
262 while(x < image_width)
269 for(x = 0;x < image_width*image_height;x++)
286 qbool LoadPCX_QWSkin(const unsigned char *f, int filesize, unsigned char *pixels, int outwidth, int outheight)
290 const unsigned char *fin, *enddata;
291 int x, y, x2, dataByte, pcxwidth, pcxheight;
293 if (filesize < (int)sizeof(pcx) + 768)
296 image_width = outwidth;
297 image_height = outheight;
300 memcpy(&pcx, fin, sizeof(pcx));
303 // LadyHavoc: big-endian support ported from QF newtree
304 pcx.xmax = LittleShort (pcx.xmax);
305 pcx.xmin = LittleShort (pcx.xmin);
306 pcx.ymax = LittleShort (pcx.ymax);
307 pcx.ymin = LittleShort (pcx.ymin);
308 pcx.hres = LittleShort (pcx.hres);
309 pcx.vres = LittleShort (pcx.vres);
310 pcx.bytes_per_line = LittleShort (pcx.bytes_per_line);
311 pcx.palette_type = LittleShort (pcx.palette_type);
313 pcxwidth = pcx.xmax + 1 - pcx.xmin;
314 pcxheight = pcx.ymax + 1 - pcx.ymin;
315 if (pcx.manufacturer != 0x0a || pcx.version != 5 || pcx.encoding != 1 || pcx.bits_per_pixel != 8 || pcxwidth > 4096 || pcxheight > 4096 || pcxwidth <= 0 || pcxheight <= 0)
318 enddata = f + filesize - 768;
320 for (y = 0;y < outheight && fin < enddata;y++)
322 a = pixels + y * outwidth;
323 // pad the output with blank lines if needed
326 memset(a, 0, outwidth);
329 for (x = 0;x < pcxwidth;)
336 x2 = x + (dataByte & 0x3F);
348 if (x < outwidth) // truncate to destination width
365 qbool LoadPCX_PaletteOnly(const unsigned char *f, int filesize, unsigned char *palette768b)
369 memcpy(palette768b, f + filesize - 768, 768);
374 =========================================================
378 =========================================================
381 typedef struct _TargaHeader
383 unsigned char id_length, colormap_type, image_type;
384 unsigned short colormap_index, colormap_length;
385 unsigned char colormap_size;
386 unsigned short x_origin, y_origin, width, height;
387 unsigned char pixel_size, attributes;
391 static void PrintTargaHeader(TargaHeader *t)
393 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);
401 unsigned char *LoadTGA_BGRA (const unsigned char *f, int filesize, int *miplevel)
403 int x, y, pix_inc, row_inci, runlen, alphabits;
404 unsigned char *image_buffer;
405 unsigned int *pixbufi;
406 const unsigned char *fin, *enddata;
407 TargaHeader targa_header;
408 unsigned int palettei[256];
419 enddata = f + filesize;
421 targa_header.id_length = f[0];
422 targa_header.colormap_type = f[1];
423 targa_header.image_type = f[2];
425 targa_header.colormap_index = f[3] + f[4] * 256;
426 targa_header.colormap_length = f[5] + f[6] * 256;
427 targa_header.colormap_size = f[7];
428 targa_header.x_origin = f[8] + f[9] * 256;
429 targa_header.y_origin = f[10] + f[11] * 256;
430 targa_header.width = image_width = f[12] + f[13] * 256;
431 targa_header.height = image_height = f[14] + f[15] * 256;
432 targa_header.pixel_size = f[16];
433 targa_header.attributes = f[17];
435 if (image_width > 32768 || image_height > 32768 || image_width <= 0 || image_height <= 0)
437 Con_Print("LoadTGA: invalid size\n");
438 PrintTargaHeader(&targa_header);
442 memset(palettei, 0, sizeof(palettei));
444 // advance to end of header
447 // skip TARGA image comment (usually 0 bytes)
448 fin += targa_header.id_length;
450 // read/skip the colormap if present (note: according to the TARGA spec it
451 // can be present even on truecolor or greyscale images, just not used by
453 if (targa_header.colormap_type)
455 if (targa_header.colormap_length > 256)
457 Con_Print("LoadTGA: only up to 256 colormap_length supported\n");
458 PrintTargaHeader(&targa_header);
461 if (targa_header.colormap_index)
463 Con_Print("LoadTGA: colormap_index not supported\n");
464 PrintTargaHeader(&targa_header);
467 if (targa_header.colormap_size == 24)
469 for (x = 0;x < targa_header.colormap_length;x++)
475 palettei[x] = bgra.i;
478 else if (targa_header.colormap_size == 32)
480 memcpy(palettei, fin, targa_header.colormap_length*4);
481 fin += targa_header.colormap_length * 4;
485 Con_Print("LoadTGA: Only 32 and 24 bit colormap_size supported\n");
486 PrintTargaHeader(&targa_header);
491 // check our pixel_size restrictions according to image_type
492 switch (targa_header.image_type & ~8)
495 if (targa_header.pixel_size != 24 && targa_header.pixel_size != 32)
497 Con_Print("LoadTGA: only 24bit and 32bit pixel sizes supported for type 2 and type 10 images\n");
498 PrintTargaHeader(&targa_header);
503 // set up a palette to make the loader easier
504 for (x = 0;x < 256;x++)
506 bgra.b[0] = bgra.b[1] = bgra.b[2] = x;
508 palettei[x] = bgra.i;
510 // fall through to colormap case
512 if (targa_header.pixel_size != 8)
514 Con_Print("LoadTGA: only 8bit pixel size for type 1, 3, 9, and 11 images supported\n");
515 PrintTargaHeader(&targa_header);
520 Con_Printf("LoadTGA: Only type 1, 2, 3, 9, 10, and 11 targa RGB images supported, image_type = %i\n", targa_header.image_type);
521 PrintTargaHeader(&targa_header);
525 if (targa_header.attributes & 0x10)
527 Con_Print("LoadTGA: origin must be in top left or bottom left, top right and bottom right are not supported\n");
531 // number of attribute bits per pixel, we only support 0 or 8
532 alphabits = targa_header.attributes & 0x0F;
533 if (alphabits != 8 && alphabits != 0)
535 Con_Print("LoadTGA: only 0 or 8 attribute (alpha) bits supported\n");
539 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
542 Con_Printf("LoadTGA: not enough memory for %i by %i image\n", image_width, image_height);
546 // If bit 5 of attributes isn't set, the image has been stored from bottom to top
547 if ((targa_header.attributes & 0x20) == 0)
549 pixbufi = (unsigned int*)image_buffer + (image_height - 1)*image_width;
550 row_inci = -image_width*2;
554 pixbufi = (unsigned int*)image_buffer;
559 if ((targa_header.image_type & ~8) == 2)
560 pix_inc = (targa_header.pixel_size + 7) / 8;
561 switch (targa_header.image_type)
563 case 1: // colormapped, uncompressed
564 case 3: // greyscale, uncompressed
565 if (fin + image_width * image_height * pix_inc > enddata)
567 for (y = 0;y < image_height;y++, pixbufi += row_inci)
568 for (x = 0;x < image_width;x++)
569 *pixbufi++ = palettei[*fin++];
572 // BGR or BGRA, uncompressed
573 if (fin + image_width * image_height * pix_inc > enddata)
575 if (targa_header.pixel_size == 32 && alphabits)
577 for (y = 0;y < image_height;y++)
578 memcpy(pixbufi + y * (image_width + row_inci), fin + y * image_width * pix_inc, image_width*4);
582 for (y = 0;y < image_height;y++, pixbufi += row_inci)
584 for (x = 0;x < image_width;x++, fin += pix_inc)
595 case 9: // colormapped, RLE
596 case 11: // greyscale, RLE
597 for (y = 0;y < image_height;y++, pixbufi += row_inci)
599 for (x = 0;x < image_width;)
602 break; // error - truncated file
606 // RLE - all pixels the same color
608 if (fin + pix_inc > enddata)
609 break; // error - truncated file
610 if (x + runlen > image_width)
611 break; // error - line exceeds width
612 bgra.i = palettei[*fin++];
618 // uncompressed - all pixels different color
620 if (fin + pix_inc * runlen > enddata)
621 break; // error - truncated file
622 if (x + runlen > image_width)
623 break; // error - line exceeds width
625 *pixbufi++ = palettei[*fin++];
629 if (x != image_width)
631 // pixbufi is useless now
632 Con_Printf("LoadTGA: corrupt file\n");
639 if (targa_header.pixel_size == 32 && alphabits)
641 for (y = 0;y < image_height;y++, pixbufi += row_inci)
643 for (x = 0;x < image_width;)
646 break; // error - truncated file
650 // RLE - all pixels the same color
652 if (fin + pix_inc > enddata)
653 break; // error - truncated file
654 if (x + runlen > image_width)
655 break; // error - line exceeds width
666 // uncompressed - all pixels different color
668 if (fin + pix_inc * runlen > enddata)
669 break; // error - truncated file
670 if (x + runlen > image_width)
671 break; // error - line exceeds width
684 if (x != image_width)
686 // pixbufi is useless now
687 Con_Printf("LoadTGA: corrupt file\n");
694 for (y = 0;y < image_height;y++, pixbufi += row_inci)
696 for (x = 0;x < image_width;)
699 break; // error - truncated file
703 // RLE - all pixels the same color
705 if (fin + pix_inc > enddata)
706 break; // error - truncated file
707 if (x + runlen > image_width)
708 break; // error - line exceeds width
719 // uncompressed - all pixels different color
721 if (fin + pix_inc * runlen > enddata)
722 break; // error - truncated file
723 if (x + runlen > image_width)
724 break; // error - line exceeds width
737 if (x != image_width)
739 // pixbufi is useless now
740 Con_Printf("LoadTGA: corrupt file\n");
747 // unknown image_type
754 typedef struct q2wal_s
757 unsigned width, height;
758 unsigned offsets[MIPLEVELS]; // four mip maps stored
759 char animname[32]; // next frame in animation chain
765 static unsigned char *LoadWAL_BGRA (const unsigned char *f, int filesize, int *miplevel)
767 unsigned char *image_buffer;
768 const q2wal_t *inwal = (const q2wal_t *)f;
770 if (filesize < (int) sizeof(q2wal_t))
772 Con_Print("LoadWAL: invalid WAL file\n");
776 image_width = LittleLong(inwal->width);
777 image_height = LittleLong(inwal->height);
778 if (image_width > 32768 || image_height > 32768 || image_width <= 0 || image_height <= 0)
780 Con_Printf("LoadWAL: invalid size %ix%i\n", image_width, image_height);
784 if (filesize < (int) LittleLong(inwal->offsets[0]) + image_width * image_height)
786 Con_Print("LoadWAL: invalid WAL file\n");
790 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
793 Con_Printf("LoadWAL: not enough memory for %i by %i image\n", image_width, image_height);
796 Image_Copy8bitBGRA(f + LittleLong(inwal->offsets[0]), image_buffer, image_width * image_height, q2palette_bgra_complete);
800 qbool LoadWAL_GetMetadata(const unsigned char *f, int filesize, int *retwidth, int *retheight, int *retflags, int *retvalue, int *retcontents, char *retanimname32c)
802 const q2wal_t *inwal = (const q2wal_t *)f;
804 if (filesize < (int) sizeof(q2wal_t))
806 Con_Print("LoadWAL: invalid WAL file\n");
818 memset(retanimname32c, 0, 32);
823 *retwidth = LittleLong(inwal->width);
825 *retheight = LittleLong(inwal->height);
827 *retflags = LittleLong(inwal->flags);
829 *retvalue = LittleLong(inwal->value);
831 *retcontents = LittleLong(inwal->contents);
834 memcpy(retanimname32c, inwal->animname, 32);
835 retanimname32c[31] = 0;
840 // gfx/* wad lumps and gfx/*.lmp files are simply width and height and paletted pixels, with color 255 as transparent
841 static unsigned char* LoadLMP_BGRA(const unsigned char *f, int filesize, int *miplevel)
843 unsigned char *image_buffer;
848 Con_Print("Bad lmp file\n");
852 image_width = f[0] + f[1] * 0x100 + f[2] * 0x10000 + f[3] * 0x1000000;
853 image_height = f[4] + f[5] * 0x100 + f[6] * 0x10000 + f[7] * 0x1000000;
855 if (image_width > 32768 || image_height > 32768 || image_width <= 0 || image_height <= 0 || image_width * image_height > filesize - 8)
857 Con_Print("Bad lmp file\n");
861 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width*image_height * 4);
864 Con_Printf("LoadLMP: not enough memory for %i by %i image\n", image_width, image_height);
868 for (i = 0; i < image_width * image_height; i++)
870 const unsigned char *p = (const unsigned char *)palette_bgra_transparent + 4 * f[8 + i];
871 image_buffer[i * 4 + 0] = p[0];
872 image_buffer[i * 4 + 1] = p[1];
873 image_buffer[i * 4 + 2] = p[2];
874 image_buffer[i * 4 + 3] = p[3];
880 // gfx/conchars is a raw 128x128 image with 0 as transparent color rather than 255
881 static unsigned char *LoadConChars_BGRA(const unsigned char *f, int filesize, int *miplevel)
883 unsigned char *image_buffer;
888 if (image_width * image_height > filesize)
890 Con_Print("Bad lmp file\n");
894 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width*image_height * 4);
897 Con_Printf("LoadConChars: not enough memory for %i by %i image\n", image_width, image_height);
901 for (i = 0; i < image_width * image_height; i++)
903 const unsigned char *p = (const unsigned char *)palette_bgra_font + 4 * f[i];
904 image_buffer[i * 4 + 0] = p[0];
905 image_buffer[i * 4 + 1] = p[1];
906 image_buffer[i * 4 + 2] = p[2];
907 image_buffer[i * 4 + 3] = p[3];
913 void Image_StripImageExtension (const char *in, char *out, size_t size_out)
920 ext = FS_FileExtension(in);
921 if (ext && (!strcmp(ext, "tga") || !strcmp(ext, "pcx") || !strcmp(ext, "lmp") || !strcmp(ext, "png") || !strcmp(ext, "jpg") || !strcmp(ext, "wal")))
922 FS_StripExtension(in, out, size_out);
924 strlcpy(out, in, size_out);
927 static unsigned char image_linearfromsrgb[256];
928 static unsigned char image_srgbfromlinear_lightmap[256];
930 void Image_MakeLinearColorsFromsRGB(unsigned char *pout, const unsigned char *pin, int numpixels)
933 // this math from http://www.opengl.org/registry/specs/EXT/texture_sRGB.txt
934 if (!image_linearfromsrgb[255])
935 for (i = 0;i < 256;i++)
936 image_linearfromsrgb[i] = (unsigned char)floor(Image_LinearFloatFromsRGB(i) * 255.0f + 0.5f);
937 for (i = 0;i < numpixels;i++)
939 pout[i*4+0] = image_linearfromsrgb[pin[i*4+0]];
940 pout[i*4+1] = image_linearfromsrgb[pin[i*4+1]];
941 pout[i*4+2] = image_linearfromsrgb[pin[i*4+2]];
942 pout[i*4+3] = pin[i*4+3];
946 void Image_MakesRGBColorsFromLinear_Lightmap(unsigned char *pout, const unsigned char *pin, int numpixels)
949 // this math from http://www.opengl.org/registry/specs/EXT/texture_sRGB.txt
950 if (!image_srgbfromlinear_lightmap[255])
951 for (i = 0;i < 256;i++)
952 image_srgbfromlinear_lightmap[i] = (unsigned char)floor(bound(0.0f, Image_sRGBFloatFromLinear_Lightmap(i), 1.0f) * 255.0f + 0.5f);
953 for (i = 0;i < numpixels;i++)
955 pout[i*4+0] = image_srgbfromlinear_lightmap[pin[i*4+0]];
956 pout[i*4+1] = image_srgbfromlinear_lightmap[pin[i*4+1]];
957 pout[i*4+2] = image_srgbfromlinear_lightmap[pin[i*4+2]];
958 pout[i*4+3] = pin[i*4+3];
962 typedef struct imageformat_s
964 const char *formatstring;
965 unsigned char *(*loadfunc)(const unsigned char *f, int filesize, int *miplevel);
969 // GAME_TENEBRAE only
970 imageformat_t imageformats_tenebrae[] =
972 {"override/%s.tga", LoadTGA_BGRA},
973 {"override/%s.TGA", LoadTGA_BGRA},
974 {"override/%s.png", PNG_LoadImage_BGRA},
975 {"override/%s.PNG", PNG_LoadImage_BGRA},
976 {"override/%s.jpg", JPEG_LoadImage_BGRA},
977 {"override/%s.JPG", JPEG_LoadImage_BGRA},
978 {"override/%s.pcx", LoadPCX_BGRA},
979 {"override/%s.PCX", LoadPCX_BGRA},
980 {"%s.tga", LoadTGA_BGRA},
981 {"%s.TGA", LoadTGA_BGRA},
982 {"%s.png", PNG_LoadImage_BGRA},
983 {"%s.PNG", PNG_LoadImage_BGRA},
984 {"%s.jpg", JPEG_LoadImage_BGRA},
985 {"%s.JPG", JPEG_LoadImage_BGRA},
986 {"%s.pcx", LoadPCX_BGRA},
987 {"%s.PCX", LoadPCX_BGRA},
991 imageformat_t imageformats_nopath[] =
993 {"override/%s.tga", LoadTGA_BGRA},
994 {"override/%s.TGA", LoadTGA_BGRA},
995 {"override/%s.png", PNG_LoadImage_BGRA},
996 {"override/%s.PNG", PNG_LoadImage_BGRA},
997 {"override/%s.jpg", JPEG_LoadImage_BGRA},
998 {"override/%s.JPG", JPEG_LoadImage_BGRA},
999 {"textures/%s.tga", LoadTGA_BGRA},
1000 {"textures/%s.TGA", LoadTGA_BGRA},
1001 {"textures/%s.png", PNG_LoadImage_BGRA},
1002 {"textures/%s.PNG", PNG_LoadImage_BGRA},
1003 {"textures/%s.jpg", JPEG_LoadImage_BGRA},
1004 {"textures/%s.JPG", JPEG_LoadImage_BGRA},
1005 {"%s.tga", LoadTGA_BGRA},
1006 {"%s.TGA", LoadTGA_BGRA},
1007 {"%s.png", PNG_LoadImage_BGRA},
1008 {"%s.PNG", PNG_LoadImage_BGRA},
1009 {"%s.jpg", JPEG_LoadImage_BGRA},
1010 {"%s.JPG", JPEG_LoadImage_BGRA},
1011 {"%s.pcx", LoadPCX_BGRA},
1012 {"%s.PCX", LoadPCX_BGRA},
1016 // GAME_DELUXEQUAKE only
1017 // VorteX: the point why i use such messy texture paths is
1018 // that GtkRadiant can't detect normal/gloss textures
1019 // and exclude them from texture browser
1020 // so i just use additional folder to store this textures
1021 imageformat_t imageformats_dq[] =
1023 {"%s.tga", LoadTGA_BGRA},
1024 {"%s.TGA", LoadTGA_BGRA},
1025 {"%s.jpg", JPEG_LoadImage_BGRA},
1026 {"%s.JPG", JPEG_LoadImage_BGRA},
1027 {"texturemaps/%s.tga", LoadTGA_BGRA},
1028 {"texturemaps/%s.TGA", LoadTGA_BGRA},
1029 {"texturemaps/%s.jpg", JPEG_LoadImage_BGRA},
1030 {"texturemaps/%s.JPG", JPEG_LoadImage_BGRA},
1034 imageformat_t imageformats_textures[] =
1036 {"%s.tga", LoadTGA_BGRA},
1037 {"%s.TGA", LoadTGA_BGRA},
1038 {"%s.png", PNG_LoadImage_BGRA},
1039 {"%s.PNG", PNG_LoadImage_BGRA},
1040 {"%s.jpg", JPEG_LoadImage_BGRA},
1041 {"%s.JPG", JPEG_LoadImage_BGRA},
1042 {"%s.pcx", LoadPCX_BGRA},
1043 {"%s.PCX", LoadPCX_BGRA},
1044 {"%s.wal", LoadWAL_BGRA},
1045 {"%s.WAL", LoadWAL_BGRA},
1049 imageformat_t imageformats_gfx[] =
1051 {"%s.tga", LoadTGA_BGRA},
1052 {"%s.TGA", LoadTGA_BGRA},
1053 {"%s.png", PNG_LoadImage_BGRA},
1054 {"%s.PNG", PNG_LoadImage_BGRA},
1055 {"%s.jpg", JPEG_LoadImage_BGRA},
1056 {"%s.JPG", JPEG_LoadImage_BGRA},
1057 {"%s.pcx", LoadPCX_BGRA},
1058 {"%s.PCX", LoadPCX_BGRA},
1059 {"%s.lmp", LoadLMP_BGRA},
1060 {"%s.LMP", LoadLMP_BGRA},
1064 imageformat_t imageformats_other[] =
1066 {"%s.tga", LoadTGA_BGRA},
1067 {"%s.TGA", LoadTGA_BGRA},
1068 {"%s.png", PNG_LoadImage_BGRA},
1069 {"%s.PNG", PNG_LoadImage_BGRA},
1070 {"%s.jpg", JPEG_LoadImage_BGRA},
1071 {"%s.JPG", JPEG_LoadImage_BGRA},
1072 {"%s.pcx", LoadPCX_BGRA},
1073 {"%s.PCX", LoadPCX_BGRA},
1074 {"%s.lmp", LoadLMP_BGRA},
1075 {"%s.LMP", LoadLMP_BGRA},
1079 int fixtransparentpixels(unsigned char *data, int w, int h);
1080 unsigned char *loadimagepixelsbgra (const char *filename, qbool complain, qbool allowFixtrans, qbool convertsRGB, int *miplevel)
1082 fs_offset_t filesize;
1083 imageformat_t *firstformat, *format;
1085 unsigned char *f, *data = NULL, *data2 = NULL;
1086 char basename[MAX_QPATH], name[MAX_QPATH], name2[MAX_QPATH], path[MAX_QPATH], afterpath[MAX_QPATH], *c;
1088 //if (developer_memorydebug.integer)
1089 // Mem_CheckSentinelsGlobal();
1090 if (developer_texturelogging.integer)
1091 Log_Printf("textures.log", "%s\n", filename);
1092 Image_StripImageExtension(filename, basename, sizeof(basename)); // strip filename extensions to allow replacement by other types
1093 // replace *'s with #, so commandline utils don't get confused when dealing with the external files
1094 for (c = basename;*c;c++)
1099 strlcpy(afterpath, basename, sizeof(afterpath));
1100 if (strchr(basename, '/'))
1103 for (i = 0;i < (int)sizeof(path)-1 && basename[i] != '/' && basename[i];i++)
1104 path[i] = basename[i];
1106 strlcpy(afterpath, basename + i + 1, sizeof(afterpath));
1108 if (gamemode == GAME_TENEBRAE)
1109 firstformat = imageformats_tenebrae;
1110 else if (gamemode == GAME_DELUXEQUAKE)
1111 firstformat = imageformats_dq;
1112 else if (!strcasecmp(path, "textures"))
1113 firstformat = imageformats_textures;
1114 else if (!strcasecmp(path, "gfx") || !strcasecmp(path, "locale")) // locale/ is used in GAME_BLOODOMNICIDE
1115 firstformat = imageformats_gfx;
1117 firstformat = imageformats_nopath;
1119 firstformat = imageformats_other;
1120 // now try all the formats in the selected list
1121 for (format = firstformat;format->formatstring;format++)
1123 dpsnprintf (name, sizeof(name), format->formatstring, basename);
1124 f = FS_LoadFile(name, tempmempool, true, &filesize);
1127 mymiplevel = miplevel ? *miplevel : 0;
1130 data = format->loadfunc(f, (int)filesize, &mymiplevel);
1134 if(format->loadfunc == JPEG_LoadImage_BGRA) // jpeg can't do alpha, so let's simulate it by loading another jpeg
1136 dpsnprintf (name2, sizeof(name2), format->formatstring, va(vabuf, sizeof(vabuf), "%s_alpha", basename));
1137 f = FS_LoadFile(name2, tempmempool, true, &filesize);
1140 int mymiplevel2 = miplevel ? *miplevel : 0;
1141 int image_width_save = image_width;
1142 int image_height_save = image_height;
1143 data2 = format->loadfunc(f, (int)filesize, &mymiplevel2);
1144 if(data2 && mymiplevel == mymiplevel2 && image_width == image_width_save && image_height == image_height_save)
1145 Image_CopyAlphaFromBlueBGRA(data, data2, image_width, image_height);
1147 Con_Printf("loadimagepixelsrgba: corrupt or invalid alpha image %s_alpha\n", basename);
1148 image_width = image_width_save;
1149 image_height = image_height_save;
1155 if (developer_loading.integer)
1156 Con_DPrintf("loaded image %s (%dx%d)\n", name, image_width, image_height);
1158 *miplevel = mymiplevel;
1159 //if (developer_memorydebug.integer)
1160 // Mem_CheckSentinelsGlobal();
1161 if(allowFixtrans && r_fixtrans_auto.integer)
1163 int n = fixtransparentpixels(data, image_width, image_height);
1166 Con_Printf("- had to fix %s (%d pixels changed)\n", name, n);
1167 if(r_fixtrans_auto.integer >= 2)
1169 char outfilename[MAX_QPATH], buf[MAX_QPATH];
1170 Image_StripImageExtension(name, buf, sizeof(buf));
1171 dpsnprintf(outfilename, sizeof(outfilename), "fixtrans/%s.tga", buf);
1172 Image_WriteTGABGRA(outfilename, image_width, image_height, data);
1173 Con_Printf("- %s written.\n", outfilename);
1178 Image_MakeLinearColorsFromsRGB(data, data, image_width * image_height);
1182 Con_DPrintf("Error loading image %s (file loaded but decode failed)\n", name);
1185 if (!strcasecmp(path, "gfx"))
1187 unsigned char *lmpdata;
1188 if ((lmpdata = W_GetLumpName(afterpath, &filesize)))
1190 if (developer_loading.integer)
1191 Con_Printf("loading gfx.wad lump \"%s\"\n", afterpath);
1193 mymiplevel = miplevel ? *miplevel : 0;
1194 if (!strcmp(afterpath, "conchars"))
1196 // conchars is a raw image and with color 0 as transparent instead of 255
1197 data = LoadConChars_BGRA(lmpdata, filesize, &mymiplevel);
1200 data = LoadLMP_BGRA(lmpdata, filesize, &mymiplevel);
1201 // no cleanup after looking up a wad lump - the whole gfx.wad is loaded at once
1204 Con_DPrintf("Error loading image %s (file loaded but decode failed)\n", name);
1208 // check if the image name exists as an embedded pic
1209 if ((data = Image_GetEmbeddedPicBGRA(basename)))
1214 Con_Printf("Couldn't load %s using ", filename);
1215 for (format = firstformat;format->formatstring;format++)
1217 dpsnprintf (name, sizeof(name), format->formatstring, basename);
1218 Con_Printf(format == firstformat ? "\"%s\"" : (format[1].formatstring ? ", \"%s\"" : " or \"%s\".\n"), format->formatstring);
1222 // texture loading can take a while, so make sure we're sending keepalives
1223 CL_KeepaliveMessage(false);
1225 //if (developer_memorydebug.integer)
1226 // Mem_CheckSentinelsGlobal();
1231 qbool Image_GetStockPicSize(const char *filename, int *returnwidth, int *returnheight)
1233 unsigned char *data;
1234 fs_offset_t filesize;
1235 char lmppath[MAX_QPATH];
1236 if (!strcasecmp(filename, "gfx/conchars"))
1239 *returnheight = 128;
1243 dpsnprintf(lmppath, sizeof(lmppath), "%s.lmp", filename);
1244 data = FS_LoadFile(lmppath, tempmempool, true, &filesize);
1249 int w = data[0] + data[1] * 0x100 + data[2] * 0x10000 + data[3] * 0x1000000;
1250 int h = data[4] + data[5] * 0x100 + data[6] * 0x10000 + data[7] * 0x1000000;
1251 if (w >= 1 && w <= 32768 && h >= 1 && h <= 32768)
1261 if (!strncasecmp(filename, "gfx/", 4))
1263 data = W_GetLumpName(filename + 4, &filesize);
1264 if (data && filesize > 8)
1266 int w = data[0] + data[1] * 0x100 + data[2] * 0x10000 + data[3] * 0x1000000;
1267 int h = data[4] + data[5] * 0x100 + data[6] * 0x10000 + data[7] * 0x1000000;
1268 if (w >= 1 && w <= 32768 && h >= 1 && h <= 32768)
1279 extern cvar_t gl_picmip;
1280 rtexture_t *loadtextureimage (rtexturepool_t *pool, const char *filename, qbool complain, int flags, qbool allowFixtrans, qbool sRGB)
1282 unsigned char *data;
1284 int miplevel = R_PicmipForFlags(flags);
1285 if (!(data = loadimagepixelsbgra (filename, complain, allowFixtrans, false, &miplevel)))
1287 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, sRGB ? TEXTYPE_SRGB_BGRA : TEXTYPE_BGRA, flags, miplevel, NULL);
1292 int fixtransparentpixels(unsigned char *data, int w, int h)
1294 int const FIXTRANS_NEEDED = 1;
1295 int const FIXTRANS_HAS_L = 2;
1296 int const FIXTRANS_HAS_R = 4;
1297 int const FIXTRANS_HAS_U = 8;
1298 int const FIXTRANS_HAS_D = 16;
1299 int const FIXTRANS_FIXED = 32;
1300 unsigned char *fixMask = (unsigned char *) Mem_Alloc(tempmempool, w * h);
1302 int changedPixels = 0;
1305 #define FIXTRANS_PIXEL (y*w+x)
1306 #define FIXTRANS_PIXEL_U (((y+h-1)%h)*w+x)
1307 #define FIXTRANS_PIXEL_D (((y+1)%h)*w+x)
1308 #define FIXTRANS_PIXEL_L (y*w+((x+w-1)%w))
1309 #define FIXTRANS_PIXEL_R (y*w+((x+1)%w))
1311 memset(fixMask, 0, w * h);
1312 for(y = 0; y < h; ++y)
1313 for(x = 0; x < w; ++x)
1315 if(data[FIXTRANS_PIXEL * 4 + 3] == 0)
1317 fixMask[FIXTRANS_PIXEL] |= FIXTRANS_NEEDED;
1322 fixMask[FIXTRANS_PIXEL_D] |= FIXTRANS_HAS_U;
1323 fixMask[FIXTRANS_PIXEL_U] |= FIXTRANS_HAS_D;
1324 fixMask[FIXTRANS_PIXEL_R] |= FIXTRANS_HAS_L;
1325 fixMask[FIXTRANS_PIXEL_L] |= FIXTRANS_HAS_R;
1328 if(fixPixels == w * h)
1329 return 0; // sorry, can't do anything about this
1332 for(y = 0; y < h; ++y)
1333 for(x = 0; x < w; ++x)
1334 if(fixMask[FIXTRANS_PIXEL] & FIXTRANS_NEEDED)
1336 unsigned int sumR = 0, sumG = 0, sumB = 0, sumA = 0, sumRA = 0, sumGA = 0, sumBA = 0, cnt = 0;
1337 unsigned char r, g, b, a, r0, g0, b0;
1338 if(fixMask[FIXTRANS_PIXEL] & FIXTRANS_HAS_U)
1340 r = data[FIXTRANS_PIXEL_U * 4 + 2];
1341 g = data[FIXTRANS_PIXEL_U * 4 + 1];
1342 b = data[FIXTRANS_PIXEL_U * 4 + 0];
1343 a = data[FIXTRANS_PIXEL_U * 4 + 3];
1344 sumR += r; sumG += g; sumB += b; sumA += a; sumRA += r*a; sumGA += g*a; sumBA += b*a; ++cnt;
1346 if(fixMask[FIXTRANS_PIXEL] & FIXTRANS_HAS_D)
1348 r = data[FIXTRANS_PIXEL_D * 4 + 2];
1349 g = data[FIXTRANS_PIXEL_D * 4 + 1];
1350 b = data[FIXTRANS_PIXEL_D * 4 + 0];
1351 a = data[FIXTRANS_PIXEL_D * 4 + 3];
1352 sumR += r; sumG += g; sumB += b; sumA += a; sumRA += r*a; sumGA += g*a; sumBA += b*a; ++cnt;
1354 if(fixMask[FIXTRANS_PIXEL] & FIXTRANS_HAS_L)
1356 r = data[FIXTRANS_PIXEL_L * 4 + 2];
1357 g = data[FIXTRANS_PIXEL_L * 4 + 1];
1358 b = data[FIXTRANS_PIXEL_L * 4 + 0];
1359 a = data[FIXTRANS_PIXEL_L * 4 + 3];
1360 sumR += r; sumG += g; sumB += b; sumA += a; sumRA += r*a; sumGA += g*a; sumBA += b*a; ++cnt;
1362 if(fixMask[FIXTRANS_PIXEL] & FIXTRANS_HAS_R)
1364 r = data[FIXTRANS_PIXEL_R * 4 + 2];
1365 g = data[FIXTRANS_PIXEL_R * 4 + 1];
1366 b = data[FIXTRANS_PIXEL_R * 4 + 0];
1367 a = data[FIXTRANS_PIXEL_R * 4 + 3];
1368 sumR += r; sumG += g; sumB += b; sumA += a; sumRA += r*a; sumGA += g*a; sumBA += b*a; ++cnt;
1372 r0 = data[FIXTRANS_PIXEL * 4 + 2];
1373 g0 = data[FIXTRANS_PIXEL * 4 + 1];
1374 b0 = data[FIXTRANS_PIXEL * 4 + 0];
1377 // there is a surrounding non-alpha pixel
1378 r = (sumRA + sumA / 2) / sumA;
1379 g = (sumGA + sumA / 2) / sumA;
1380 b = (sumBA + sumA / 2) / sumA;
1384 // need to use a "regular" average
1385 r = (sumR + cnt / 2) / cnt;
1386 g = (sumG + cnt / 2) / cnt;
1387 b = (sumB + cnt / 2) / cnt;
1389 if(r != r0 || g != g0 || b != b0)
1391 data[FIXTRANS_PIXEL * 4 + 2] = r;
1392 data[FIXTRANS_PIXEL * 4 + 1] = g;
1393 data[FIXTRANS_PIXEL * 4 + 0] = b;
1394 fixMask[FIXTRANS_PIXEL] |= FIXTRANS_FIXED;
1396 for(y = 0; y < h; ++y)
1397 for(x = 0; x < w; ++x)
1398 if(fixMask[FIXTRANS_PIXEL] & FIXTRANS_FIXED)
1400 fixMask[FIXTRANS_PIXEL] &= ~(FIXTRANS_NEEDED | FIXTRANS_FIXED);
1401 fixMask[FIXTRANS_PIXEL_D] |= FIXTRANS_HAS_U;
1402 fixMask[FIXTRANS_PIXEL_U] |= FIXTRANS_HAS_D;
1403 fixMask[FIXTRANS_PIXEL_R] |= FIXTRANS_HAS_L;
1404 fixMask[FIXTRANS_PIXEL_L] |= FIXTRANS_HAS_R;
1408 return changedPixels;
1411 void Image_FixTransparentPixels_f(cmd_state_t *cmd)
1413 const char *filename, *filename_pattern;
1416 char outfilename[MAX_QPATH], buf[MAX_QPATH];
1417 unsigned char *data;
1418 if(Cmd_Argc(cmd) != 2)
1420 Con_Printf("Usage: %s imagefile\n", Cmd_Argv(cmd, 0));
1423 filename_pattern = Cmd_Argv(cmd, 1);
1424 search = FS_Search(filename_pattern, true, true, NULL);
1427 for(i = 0; i < search->numfilenames; ++i)
1429 filename = search->filenames[i];
1430 Con_Printf("Processing %s... ", filename);
1431 Image_StripImageExtension(filename, buf, sizeof(buf));
1432 dpsnprintf(outfilename, sizeof(outfilename), "fixtrans/%s.tga", buf);
1433 if(!(data = loadimagepixelsbgra(filename, true, false, false, NULL)))
1435 if((n = fixtransparentpixels(data, image_width, image_height)))
1437 Image_WriteTGABGRA(outfilename, image_width, image_height, data);
1438 Con_Printf("%s written (%d pixels changed).\n", outfilename, n);
1441 Con_Printf("unchanged.\n");
1444 FS_FreeSearch(search);
1447 qbool Image_WriteTGABGR_preflipped (const char *filename, int width, int height, const unsigned char *data)
1450 unsigned char buffer[18];
1451 const void *buffers[2];
1452 fs_offset_t sizes[2];
1454 memset (buffer, 0, 18);
1455 buffer[2] = 2; // uncompressed type
1456 buffer[12] = (width >> 0) & 0xFF;
1457 buffer[13] = (width >> 8) & 0xFF;
1458 buffer[14] = (height >> 0) & 0xFF;
1459 buffer[15] = (height >> 8) & 0xFF;
1460 buffer[16] = 24; // pixel size
1462 buffers[0] = buffer;
1465 sizes[1] = width*height*3;
1466 ret = FS_WriteFileInBlocks(filename, buffers, sizes, 2);
1471 qbool Image_WriteTGABGRA (const char *filename, int width, int height, const unsigned char *data)
1474 unsigned char *buffer, *out;
1475 const unsigned char *in, *end;
1478 buffer = (unsigned char *)Mem_Alloc(tempmempool, width*height*4 + 18);
1480 memset (buffer, 0, 18);
1481 buffer[2] = 2; // uncompressed type
1482 buffer[12] = (width >> 0) & 0xFF;
1483 buffer[13] = (width >> 8) & 0xFF;
1484 buffer[14] = (height >> 0) & 0xFF;
1485 buffer[15] = (height >> 8) & 0xFF;
1487 for (y = 3;y < width*height*4;y += 4)
1491 if (y < width*height*4)
1493 // save the alpha channel
1494 buffer[16] = 32; // pixel size
1495 buffer[17] = 8; // 8 bits of alpha
1499 for (y = height - 1;y >= 0;y--)
1501 memcpy(out, data + y * width * 4, width * 4);
1507 // save only the color channels
1508 buffer[16] = 24; // pixel size
1509 buffer[17] = 0; // 8 bits of alpha
1511 // truncate bgra to bgr and flip upside down
1513 for (y = height - 1;y >= 0;y--)
1515 in = data + y * width * 4;
1516 end = in + width * 4;
1517 for (;in < end;in += 4)
1525 ret = FS_WriteFile (filename, buffer, out - buffer);
1532 static void Image_Resample32LerpLine (const unsigned char *in, unsigned char *out, int inwidth, int outwidth)
1534 int j, xi, oldx = 0, f, fstep, endx, lerp;
1535 fstep = (int) (inwidth*65536.0f/outwidth);
1537 for (j = 0,f = 0;j < outwidth;j++, f += fstep)
1542 in += (xi - oldx) * 4;
1548 *out++ = (unsigned char) ((((in[4] - in[0]) * lerp) >> 16) + in[0]);
1549 *out++ = (unsigned char) ((((in[5] - in[1]) * lerp) >> 16) + in[1]);
1550 *out++ = (unsigned char) ((((in[6] - in[2]) * lerp) >> 16) + in[2]);
1551 *out++ = (unsigned char) ((((in[7] - in[3]) * lerp) >> 16) + in[3]);
1553 else // last pixel of the line has no pixel to lerp to
1563 #define LERPBYTE(i) r = resamplerow1[i];out[i] = (unsigned char) ((((resamplerow2[i] - r) * lerp) >> 16) + r)
1564 static void Image_Resample32Lerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1566 int i, j, r, yi, oldy, f, fstep, lerp, endy = (inheight-1), inwidth4 = inwidth*4, outwidth4 = outwidth*4;
1568 const unsigned char *inrow;
1569 unsigned char *resamplerow1;
1570 unsigned char *resamplerow2;
1571 out = (unsigned char *)outdata;
1572 fstep = (int) (inheight*65536.0f/outheight);
1574 resamplerow1 = (unsigned char *)Mem_Alloc(tempmempool, outwidth*4*2);
1575 resamplerow2 = resamplerow1 + outwidth*4;
1577 inrow = (const unsigned char *)indata;
1579 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1580 Image_Resample32LerpLine (inrow + inwidth4, resamplerow2, inwidth, outwidth);
1581 for (i = 0, f = 0;i < outheight;i++,f += fstep)
1589 inrow = (unsigned char *)indata + inwidth4*yi;
1591 memcpy(resamplerow1, resamplerow2, outwidth4);
1593 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1594 Image_Resample32LerpLine (inrow + inwidth4, resamplerow2, inwidth, outwidth);
1645 resamplerow1 -= outwidth4;
1646 resamplerow2 -= outwidth4;
1652 inrow = (unsigned char *)indata + inwidth4*yi;
1654 memcpy(resamplerow1, resamplerow2, outwidth4);
1656 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1659 memcpy(out, resamplerow1, outwidth4);
1663 Mem_Free(resamplerow1);
1664 resamplerow1 = NULL;
1665 resamplerow2 = NULL;
1668 static void Image_Resample32Nolerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1671 unsigned frac, fracstep;
1672 // relies on int being 4 bytes
1674 out = (int *)outdata;
1676 fracstep = inwidth*0x10000/outwidth;
1677 for (i = 0;i < outheight;i++)
1679 inrow = (int *)indata + inwidth*(i*inheight/outheight);
1680 frac = fracstep >> 1;
1684 out[0] = inrow[frac >> 16];frac += fracstep;
1685 out[1] = inrow[frac >> 16];frac += fracstep;
1686 out[2] = inrow[frac >> 16];frac += fracstep;
1687 out[3] = inrow[frac >> 16];frac += fracstep;
1693 out[0] = inrow[frac >> 16];frac += fracstep;
1694 out[1] = inrow[frac >> 16];frac += fracstep;
1699 out[0] = inrow[frac >> 16];frac += fracstep;
1710 void Image_Resample32(const void *indata, int inwidth, int inheight, int indepth, void *outdata, int outwidth, int outheight, int outdepth, int quality)
1712 if (indepth != 1 || outdepth != 1)
1714 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1718 Image_Resample32Lerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1720 Image_Resample32Nolerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1723 // in can be the same as out
1724 void Image_MipReduce32(const unsigned char *in, unsigned char *out, int *width, int *height, int *depth, int destwidth, int destheight, int destdepth)
1726 const unsigned char *inrow;
1728 if (*depth != 1 || destdepth != 1)
1730 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1731 if (*width > destwidth)
1733 if (*height > destheight)
1735 if (*depth > destdepth)
1739 // note: if given odd width/height this discards the last row/column of
1740 // pixels, rather than doing a proper box-filter scale down
1742 nextrow = *width * 4;
1743 if (*width > destwidth)
1746 if (*height > destheight)
1750 for (y = 0;y < *height;y++, inrow += nextrow * 2)
1752 for (in = inrow, x = 0;x < *width;x++)
1754 out[0] = (unsigned char) ((in[0] + in[4] + in[nextrow ] + in[nextrow+4]) >> 2);
1755 out[1] = (unsigned char) ((in[1] + in[5] + in[nextrow+1] + in[nextrow+5]) >> 2);
1756 out[2] = (unsigned char) ((in[2] + in[6] + in[nextrow+2] + in[nextrow+6]) >> 2);
1757 out[3] = (unsigned char) ((in[3] + in[7] + in[nextrow+3] + in[nextrow+7]) >> 2);
1766 for (y = 0;y < *height;y++, inrow += nextrow)
1768 for (in = inrow, x = 0;x < *width;x++)
1770 out[0] = (unsigned char) ((in[0] + in[4]) >> 1);
1771 out[1] = (unsigned char) ((in[1] + in[5]) >> 1);
1772 out[2] = (unsigned char) ((in[2] + in[6]) >> 1);
1773 out[3] = (unsigned char) ((in[3] + in[7]) >> 1);
1782 if (*height > destheight)
1786 for (y = 0;y < *height;y++, inrow += nextrow * 2)
1788 for (in = inrow, x = 0;x < *width;x++)
1790 out[0] = (unsigned char) ((in[0] + in[nextrow ]) >> 1);
1791 out[1] = (unsigned char) ((in[1] + in[nextrow+1]) >> 1);
1792 out[2] = (unsigned char) ((in[2] + in[nextrow+2]) >> 1);
1793 out[3] = (unsigned char) ((in[3] + in[nextrow+3]) >> 1);
1800 Con_Printf ("Image_MipReduce: desired size already achieved\n");
1804 void Image_HeightmapToNormalmap_BGRA(const unsigned char *inpixels, unsigned char *outpixels, int width, int height, int clamp, float bumpscale)
1806 int x, y, x1, x2, y1, y2;
1807 const unsigned char *b, *row[3];
1810 float ibumpscale, n[3];
1811 ibumpscale = (255.0f * 6.0f) / bumpscale;
1813 for (y = 0, y1 = height-1;y < height;y1 = y, y++)
1815 y2 = y + 1;if (y2 >= height) y2 = 0;
1816 row[0] = inpixels + (y1 * width) * 4;
1817 row[1] = inpixels + (y * width) * 4;
1818 row[2] = inpixels + (y2 * width) * 4;
1819 for (x = 0, x1 = width-1;x < width;x1 = x, x++)
1821 x2 = x + 1;if (x2 >= width) x2 = 0;
1823 b = row[1] + x1 * 4;p[0] = (b[0] + b[1] + b[2]);
1824 b = row[1] + x2 * 4;p[1] = (b[0] + b[1] + b[2]);
1826 b = row[0] + x * 4;p[2] = (b[0] + b[1] + b[2]);
1827 b = row[2] + x * 4;p[3] = (b[0] + b[1] + b[2]);
1829 b = row[1] + x * 4;p[4] = (b[0] + b[1] + b[2]);
1830 // calculate a normal from the slopes
1835 // turn it into a dot3 rgb vector texture
1836 out[2] = (int)(128.0f + n[0] * 127.0f);
1837 out[1] = (int)(128.0f + n[1] * 127.0f);
1838 out[0] = (int)(128.0f + n[2] * 127.0f);
1839 out[3] = (p[4]) / 3;
1845 static const unsigned char concharimage[] =
1850 static unsigned char *Image_GenerateConChars(void)
1853 unsigned char *data;
1859 data = LoadTGA_BGRA(concharimage, sizeof(concharimage), NULL);
1861 for (i = 0; i < 8192; i++)
1863 random = lhrandom(0.0, 1.0);
1864 data[i * 4 + 3] = data[i * 4 + 0];
1865 data[i * 4 + 2] = 83 + (unsigned char)(random * 64);
1866 data[i * 4 + 1] = 71 + (unsigned char)(random * 32);
1867 data[i * 4 + 0] = 23 + (unsigned char)(random * 16);
1870 for (i = 8192; i < 32768; i++)
1872 random = lhrandom(0.0, 1.0);
1873 data[i * 4 + 3] = data[i * 4 + 0];
1874 data[i * 4 + 2] = 95 + (unsigned char)(random * 64);
1875 data[i * 4 + 1] = 95 + (unsigned char)(random * 64);
1876 data[i * 4 + 0] = 95 + (unsigned char)(random * 64);
1879 for (i = 32768; i < 40960; i++)
1881 random = lhrandom(0.0, 1.0);
1882 data[i * 4 + 3] = data[i * 4 + 0];
1883 data[i * 4 + 2] = 83 + (unsigned char)(random * 64);
1884 data[i * 4 + 1] = 71 + (unsigned char)(random * 32);
1885 data[i * 4 + 0] = 23 + (unsigned char)(random * 16);
1888 for (i = 40960; i < 65536; i++)
1890 random = lhrandom(0.0, 1.0);
1891 data[i * 4 + 3] = data[i * 4 + 0];
1892 data[i * 4 + 2] = 96 + (unsigned char)(random * 64);
1893 data[i * 4 + 1] = 43 + (unsigned char)(random * 32);
1894 data[i * 4 + 0] = 27 + (unsigned char)(random * 32);
1898 Image_WriteTGABGRA("gfx/generated_conchars.tga", 256, 256, data);
1904 static unsigned char *Image_GenerateDitherPattern(void)
1907 unsigned char *data = (unsigned char *)Mem_Alloc(tempmempool, 8 * 8 * 4);
1910 for (y = 0; y < 8; y++)
1912 for (x = 0; x < 8; x++)
1914 data[(y * 8 + x) * 4 + 0] = ((x^y) & 4) ? 255 : 0;
1915 data[(y * 8 + x) * 4 + 1] = ((x^y) & 4) ? 255 : 0;
1916 data[(y * 8 + x) * 4 + 2] = ((x^y) & 4) ? 255 : 0;
1917 data[(y * 8 + x) * 4 + 3] = 255;
1923 // also used in R_SkinFrame code
1924 unsigned char *Image_GenerateNoTexture(void)
1927 unsigned char *data = (unsigned char *)Mem_Alloc(tempmempool, 16 * 16 * 4);
1930 // this makes a light grey/dark grey checkerboard texture
1931 for (y = 0; y < 16; y++)
1933 for (x = 0; x < 16; x++)
1935 data[(y * 16 + x) * 4 + 0] =
1936 data[(y * 16 + x) * 4 + 1] =
1937 data[(y * 16 + x) * 4 + 2] = (y < 8) ^ (x < 8) ? 128 : 64;
1938 data[(y * 16 + x) * 4 + 3] = 255;
1944 static unsigned char *Image_GenerateWhite(void)
1946 unsigned char *data = (unsigned char *)Mem_Alloc(tempmempool, 1 * 1 * 4);
1949 data[0] = data[1] = data[2] = data[3] = 255;
1953 typedef struct embeddedpic_s
1962 static const embeddedpic_t embeddedpics[] =
1965 "gfx/prydoncursor001", 16, 16,
1984 "ui/mousepointer", 16, 16,
2003 "gfx/crosshair1", 16, 16,
2022 "gfx/crosshair2", 16, 16,
2041 "gfx/crosshair3", 16, 16,
2060 "gfx/crosshair4", 16, 16,
2079 "gfx/crosshair5", 8, 8,
2090 "gfx/crosshair6", 2, 2,
2095 "gfx/crosshair7", 16, 16,
2113 { NULL, 0, 0, NULL }
2116 unsigned char *Image_GetEmbeddedPicBGRA(const char *name)
2118 const embeddedpic_t *p;
2119 for (p = embeddedpics; p->name; p++)
2121 if (!strcmp(name, p->name))
2124 unsigned char *data = (unsigned char *)Mem_Alloc(tempmempool, p->width * p->height * 4);
2125 image_width = p->width;
2126 image_height = p->height;
2127 for (i = 0; i < p->width * p->height; i++)
2129 const unsigned char *c = (const unsigned char *)palette_bgra_embeddedpic + 4 * p->pixels[i];
2130 Vector4Copy(c, data + 4 * i);
2135 if (!strcmp(name, "white") || !strcmp(name, "#white") || !strcmp(name, "*white") || !strcmp(name, "$whiteimage"))
2136 return Image_GenerateWhite();
2137 if (!strcmp(name, "gfx/conchars"))
2138 return Image_GenerateConChars();
2139 if (!strcmp(name, "gfx/colorcontrol/ditherpattern"))
2140 return Image_GenerateDitherPattern();