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, pix_inc, row_inc, red, green, blue, alpha, runlen, 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 switch (targa_header.image_type & ~8)
392 if (targa_header.pixel_size != 24 && targa_header.pixel_size != 32)
394 Con_Print("LoadTGA: only 24bit and 32bit pixel sizes supported for type 2 and type 10 images\n");
395 PrintTargaHeader(&targa_header);
400 // set up a palette to make the loader easier
401 for (x = 0;x < 256;x++)
406 palette[x*4+3] = 255;
408 // fall through to colormap case
410 if (targa_header.pixel_size != 8)
412 Con_Print("LoadTGA: only 8bit pixel size for type 1, 3, 9, and 11 images supported\n");
413 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;
458 red = green = blue = alpha = 255;
460 if ((targa_header.image_type & ~8) == 2)
461 pix_inc = targa_header.pixel_size / 8;
462 switch (targa_header.image_type)
464 case 1: // colormapped, uncompressed
465 case 3: // greyscale, uncompressed
466 if (fin + image_width * image_height * pix_inc > enddata)
468 for (y = 0;y < image_height;y++, pixbuf += row_inc)
470 for (x = 0;x < image_width;x++)
472 p = palette + *fin++ * 4;
481 // BGR or BGRA, uncompressed
482 if (fin + image_width * image_height * pix_inc > enddata)
484 if (targa_header.pixel_size == 32 && alphabits)
486 for (y = 0;y < image_height;y++, pixbuf += row_inc)
488 for (x = 0;x < image_width;x++, fin += pix_inc)
499 for (y = 0;y < image_height;y++, pixbuf += row_inc)
501 for (x = 0;x < image_width;x++, fin += pix_inc)
511 case 9: // colormapped, RLE
512 case 11: // greyscale, RLE
513 for (y = 0;y < image_height;y++, pixbuf += row_inc)
515 for (x = 0;x < image_width;)
518 break; // error - truncated file
522 // RLE - all pixels the same color
524 if (fin + pix_inc > enddata)
525 break; // error - truncated file
526 if (x + runlen > image_width)
527 break; // error - line exceeds width
528 p = palette + *fin++ * 4;
543 // uncompressed - all pixels different color
545 if (fin + pix_inc * runlen > enddata)
546 break; // error - truncated file
547 if (x + runlen > image_width)
548 break; // error - line exceeds width
551 p = palette + *fin++ * 4;
563 if (targa_header.pixel_size == 32 && alphabits)
565 for (y = 0;y < image_height;y++, pixbuf += row_inc)
567 for (x = 0;x < image_width;)
570 break; // error - truncated file
574 // RLE - all pixels the same color
576 if (fin + pix_inc > enddata)
577 break; // error - truncated file
578 if (x + runlen > image_width)
579 break; // error - line exceeds width
595 // uncompressed - all pixels different color
597 if (fin + pix_inc * runlen > enddata)
598 break; // error - truncated file
599 if (x + runlen > image_width)
600 break; // error - line exceeds width
601 for (;runlen--;x++, fin += pix_inc)
614 for (y = 0;y < image_height;y++, pixbuf += row_inc)
616 for (x = 0;x < image_width;)
619 break; // error - truncated file
623 // RLE - all pixels the same color
625 if (fin + pix_inc > enddata)
626 break; // error - truncated file
627 if (x + runlen > image_width)
628 break; // error - line exceeds width
644 // uncompressed - all pixels different color
646 if (fin + pix_inc * runlen > enddata)
647 break; // error - truncated file
648 if (x + runlen > image_width)
649 break; // error - line exceeds width
650 for (;runlen--;x++, fin += pix_inc)
663 // unknown image_type
675 unsigned char *LoadLMP (const unsigned char *f, int filesize, int matchwidth, int matchheight, qboolean loadAs8Bit)
677 unsigned char *image_buffer;
681 Con_Print("LoadLMP: invalid LMP file\n");
685 // parse the very complicated header *chuckle*
686 image_width = BuffLittleLong(f);
687 image_height = BuffLittleLong(f + 4);
688 if (image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
690 Con_Printf("LoadLMP: invalid size %ix%i\n", image_width, image_height);
693 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
696 if (filesize < (8 + image_width * image_height))
698 Con_Print("LoadLMP: invalid LMP file\n");
704 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height);
705 memcpy(image_buffer, f + 8, image_width * image_height);
709 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
710 Image_Copy8bitRGBA(f + 8, image_buffer, image_width * image_height, palette_transparent);
716 typedef struct q2wal_s
719 unsigned width, height;
720 unsigned offsets[MIPLEVELS]; // four mip maps stored
721 char animname[32]; // next frame in animation chain
727 unsigned char *LoadWAL (const unsigned char *f, int filesize, int matchwidth, int matchheight)
729 unsigned char *image_rgba;
730 const q2wal_t *inwal = (const q2wal_t *)f;
732 if (filesize < (int) sizeof(q2wal_t))
734 Con_Print("LoadWAL: invalid WAL file\n");
738 image_width = LittleLong(inwal->width);
739 image_height = LittleLong(inwal->height);
740 if (image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
742 Con_Printf("LoadWAL: invalid size %ix%i\n", image_width, image_height);
745 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
748 if (filesize < (int) sizeof(q2wal_t) + (int) LittleLong(inwal->offsets[0]) + image_width * image_height)
750 Con_Print("LoadWAL: invalid WAL file\n");
754 image_rgba = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
757 Con_Printf("LoadLMP: not enough memory for %i by %i image\n", image_width, image_height);
760 Image_Copy8bitRGBA(f + LittleLong(inwal->offsets[0]), image_rgba, image_width * image_height, palette_complete);
765 static void Image_StripImageExtension (const char *in, char *out, size_t size_out)
767 const char *end, *temp;
772 end = in + strlen(in);
776 if (strcmp(temp, ".tga") == 0
777 || strcmp(temp, ".pcx") == 0
778 || strcmp(temp, ".lmp") == 0
779 || strcmp(temp, ".png") == 0
780 || strcmp(temp, ".jpg") == 0)
782 while (in < end && size_out > 1)
790 strlcpy(out, in, size_out);
793 typedef struct imageformat_s
795 const char *formatstring;
796 unsigned char *(*loadfunc)(const unsigned char *f, int filesize, int matchwidth, int matchheight);
800 // GAME_TENEBRAE only
801 imageformat_t imageformats_tenebrae[] =
803 {"override/%s.tga", LoadTGA},
804 {"override/%s.png", PNG_LoadImage},
805 {"override/%s.jpg", JPEG_LoadImage},
806 {"override/%s.pcx", LoadPCX},
810 imageformat_t imageformats_nopath[] =
812 {"override/%s.tga", LoadTGA},
813 {"override/%s.png", PNG_LoadImage},
814 {"override/%s.jpg", JPEG_LoadImage},
815 {"textures/%s.tga", LoadTGA},
816 {"textures/%s.png", PNG_LoadImage},
817 {"textures/%s.jpg", JPEG_LoadImage},
819 {"%s.png", PNG_LoadImage},
820 {"%s.jpg", JPEG_LoadImage},
825 imageformat_t imageformats_textures[] =
828 {"%s.png", PNG_LoadImage},
829 {"%s.jpg", JPEG_LoadImage},
835 imageformat_t imageformats_gfx[] =
838 {"%s.png", PNG_LoadImage},
839 {"%s.jpg", JPEG_LoadImage},
844 imageformat_t imageformats_other[] =
847 {"%s.png", PNG_LoadImage},
848 {"%s.jpg", JPEG_LoadImage},
853 unsigned char *loadimagepixels (const char *filename, qboolean complain, int matchwidth, int matchheight)
855 fs_offset_t filesize;
856 imageformat_t *firstformat, *format;
857 unsigned char *f, *data = NULL;
858 char basename[MAX_QPATH], name[MAX_QPATH], *c;
859 if (developer_memorydebug.integer)
860 Mem_CheckSentinelsGlobal();
861 if (developer_texturelogging.integer)
862 Log_Printf("textures.log", "%s\n", filename);
863 Image_StripImageExtension(filename, basename, sizeof(basename)); // strip filename extensions to allow replacement by other types
864 // replace *'s with #, so commandline utils don't get confused when dealing with the external files
865 for (c = basename;*c;c++)
869 if (strchr(basename, '/'))
872 for (i = 0;i < (int)sizeof(name)-1 && basename[i] != '/';i++)
873 name[i] = basename[i];
876 if (gamemode == GAME_TENEBRAE)
877 firstformat = imageformats_tenebrae;
878 else if (!strcasecmp(name, "textures"))
879 firstformat = imageformats_textures;
880 else if (!strcasecmp(name, "gfx"))
881 firstformat = imageformats_gfx;
882 else if (!strchr(name, '/'))
883 firstformat = imageformats_nopath;
885 firstformat = imageformats_other;
886 // now try all the formats in the selected list
887 for (format = firstformat;format->formatstring;format++)
889 sprintf (name, format->formatstring, basename);
890 f = FS_LoadFile(name, tempmempool, true, &filesize);
893 data = format->loadfunc(f, filesize, matchwidth, matchheight);
897 if (developer.integer >= 10)
898 Con_Printf("loaded image %s (%dx%d)\n", name, image_width, image_height);
899 if (developer_memorydebug.integer)
900 Mem_CheckSentinelsGlobal();
905 if (developer.integer >= 1)
906 Con_DPrintf("Error loading image %s (file loaded but decode failed)\n", name);
912 Con_Printf("Couldn't load %s using ", filename);
913 for (format = firstformat;format->formatstring;format++)
915 sprintf (name, format->formatstring, basename);
916 Con_Printf(format == firstformat ? "\"%s\"" : (format[1].formatstring ? ", \"%s\"" : " or \"%s\".\n"), format->formatstring);
919 if (developer_memorydebug.integer)
920 Mem_CheckSentinelsGlobal();
924 rtexture_t *loadtextureimage (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags)
928 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
930 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
935 qboolean Image_WriteTGARGB_preflipped (const char *filename, int width, int height, const unsigned char *data, unsigned char *buffer)
939 const unsigned char *in, *end;
941 memset (buffer, 0, 18);
942 buffer[2] = 2; // uncompressed type
943 buffer[12] = (width >> 0) & 0xFF;
944 buffer[13] = (width >> 8) & 0xFF;
945 buffer[14] = (height >> 0) & 0xFF;
946 buffer[15] = (height >> 8) & 0xFF;
947 buffer[16] = 24; // pixel size
952 end = in + width*height*3;
953 for (;in < end;in += 3)
959 ret = FS_WriteFile (filename, buffer, width*height*3 + 18 );
964 void Image_WriteTGARGBA (const char *filename, int width, int height, const unsigned char *data)
967 unsigned char *buffer, *out;
968 const unsigned char *in, *end;
970 buffer = (unsigned char *)Mem_Alloc(tempmempool, width*height*4 + 18);
972 memset (buffer, 0, 18);
973 buffer[2] = 2; // uncompressed type
974 buffer[12] = (width >> 0) & 0xFF;
975 buffer[13] = (width >> 8) & 0xFF;
976 buffer[14] = (height >> 0) & 0xFF;
977 buffer[15] = (height >> 8) & 0xFF;
978 buffer[16] = 32; // pixel size
979 buffer[17] = 8; // 8 bits of alpha
981 // swap rgba to bgra and flip upside down
983 for (y = height - 1;y >= 0;y--)
985 in = data + y * width * 4;
986 end = in + width * 4;
987 for (;in < end;in += 4)
995 FS_WriteFile (filename, buffer, width*height*4 + 18 );
1000 static void Image_Resample32LerpLine (const unsigned char *in, unsigned char *out, int inwidth, int outwidth)
1002 int j, xi, oldx = 0, f, fstep, endx, lerp;
1003 fstep = (int) (inwidth*65536.0f/outwidth);
1005 for (j = 0,f = 0;j < outwidth;j++, f += fstep)
1010 in += (xi - oldx) * 4;
1016 *out++ = (unsigned char) ((((in[4] - in[0]) * lerp) >> 16) + in[0]);
1017 *out++ = (unsigned char) ((((in[5] - in[1]) * lerp) >> 16) + in[1]);
1018 *out++ = (unsigned char) ((((in[6] - in[2]) * lerp) >> 16) + in[2]);
1019 *out++ = (unsigned char) ((((in[7] - in[3]) * lerp) >> 16) + in[3]);
1021 else // last pixel of the line has no pixel to lerp to
1031 static void Image_Resample24LerpLine (const unsigned char *in, unsigned char *out, int inwidth, int outwidth)
1033 int j, xi, oldx = 0, f, fstep, endx, lerp;
1034 fstep = (int) (inwidth*65536.0f/outwidth);
1036 for (j = 0,f = 0;j < outwidth;j++, f += fstep)
1041 in += (xi - oldx) * 3;
1047 *out++ = (unsigned char) ((((in[3] - in[0]) * lerp) >> 16) + in[0]);
1048 *out++ = (unsigned char) ((((in[4] - in[1]) * lerp) >> 16) + in[1]);
1049 *out++ = (unsigned char) ((((in[5] - in[2]) * lerp) >> 16) + in[2]);
1051 else // last pixel of the line has no pixel to lerp to
1060 #define LERPBYTE(i) r = resamplerow1[i];out[i] = (unsigned char) ((((resamplerow2[i] - r) * lerp) >> 16) + r)
1061 void Image_Resample32Lerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1063 int i, j, r, yi, oldy, f, fstep, lerp, endy = (inheight-1), inwidth4 = inwidth*4, outwidth4 = outwidth*4;
1065 const unsigned char *inrow;
1066 unsigned char *resamplerow1;
1067 unsigned char *resamplerow2;
1068 out = (unsigned char *)outdata;
1069 fstep = (int) (inheight*65536.0f/outheight);
1071 resamplerow1 = (unsigned char *)Mem_Alloc(tempmempool, outwidth*4*2);
1072 resamplerow2 = resamplerow1 + outwidth*4;
1074 inrow = (const unsigned char *)indata;
1076 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1077 Image_Resample32LerpLine (inrow + inwidth4, resamplerow2, inwidth, outwidth);
1078 for (i = 0, f = 0;i < outheight;i++,f += fstep)
1086 inrow = (unsigned char *)indata + inwidth4*yi;
1088 memcpy(resamplerow1, resamplerow2, outwidth4);
1090 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1091 Image_Resample32LerpLine (inrow + inwidth4, resamplerow2, inwidth, outwidth);
1142 resamplerow1 -= outwidth4;
1143 resamplerow2 -= outwidth4;
1149 inrow = (unsigned char *)indata + inwidth4*yi;
1151 memcpy(resamplerow1, resamplerow2, outwidth4);
1153 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1156 memcpy(out, resamplerow1, outwidth4);
1160 Mem_Free(resamplerow1);
1161 resamplerow1 = NULL;
1162 resamplerow2 = NULL;
1165 void Image_Resample32Nolerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1168 unsigned frac, fracstep;
1169 // relies on int being 4 bytes
1171 out = (int *)outdata;
1173 fracstep = inwidth*0x10000/outwidth;
1174 for (i = 0;i < outheight;i++)
1176 inrow = (int *)indata + inwidth*(i*inheight/outheight);
1177 frac = fracstep >> 1;
1181 out[0] = inrow[frac >> 16];frac += fracstep;
1182 out[1] = inrow[frac >> 16];frac += fracstep;
1183 out[2] = inrow[frac >> 16];frac += fracstep;
1184 out[3] = inrow[frac >> 16];frac += fracstep;
1190 out[0] = inrow[frac >> 16];frac += fracstep;
1191 out[1] = inrow[frac >> 16];frac += fracstep;
1196 out[0] = inrow[frac >> 16];frac += fracstep;
1202 void Image_Resample24Lerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1204 int i, j, r, yi, oldy, f, fstep, lerp, endy = (inheight-1), inwidth3 = inwidth * 3, outwidth3 = outwidth * 3;
1206 const unsigned char *inrow;
1207 unsigned char *resamplerow1;
1208 unsigned char *resamplerow2;
1209 out = (unsigned char *)outdata;
1210 fstep = (int) (inheight*65536.0f/outheight);
1212 resamplerow1 = (unsigned char *)Mem_Alloc(tempmempool, outwidth*3*2);
1213 resamplerow2 = resamplerow1 + outwidth*3;
1215 inrow = (const unsigned char *)indata;
1217 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1218 Image_Resample24LerpLine (inrow + inwidth3, resamplerow2, inwidth, outwidth);
1219 for (i = 0, f = 0;i < outheight;i++,f += fstep)
1227 inrow = (unsigned char *)indata + inwidth3*yi;
1229 memcpy(resamplerow1, resamplerow2, outwidth3);
1231 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1232 Image_Resample24LerpLine (inrow + inwidth3, resamplerow2, inwidth, outwidth);
1276 resamplerow1 -= outwidth3;
1277 resamplerow2 -= outwidth3;
1283 inrow = (unsigned char *)indata + inwidth3*yi;
1285 memcpy(resamplerow1, resamplerow2, outwidth3);
1287 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1290 memcpy(out, resamplerow1, outwidth3);
1293 Mem_Free(resamplerow1);
1294 resamplerow1 = NULL;
1295 resamplerow2 = NULL;
1298 void Image_Resample24Nolerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1300 int i, j, f, inwidth3 = inwidth * 3;
1301 unsigned frac, fracstep;
1302 unsigned char *inrow, *out;
1303 out = (unsigned char *)outdata;
1305 fracstep = inwidth*0x10000/outwidth;
1306 for (i = 0;i < outheight;i++)
1308 inrow = (unsigned char *)indata + inwidth3*(i*inheight/outheight);
1309 frac = fracstep >> 1;
1313 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1314 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1315 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1316 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1321 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1322 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1327 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1338 void Image_Resample (const void *indata, int inwidth, int inheight, int indepth, void *outdata, int outwidth, int outheight, int outdepth, int bytesperpixel, int quality)
1340 if (indepth != 1 || outdepth != 1)
1342 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1345 if (bytesperpixel == 4)
1348 Image_Resample32Lerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1350 Image_Resample32Nolerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1352 else if (bytesperpixel == 3)
1355 Image_Resample24Lerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1357 Image_Resample24Nolerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1360 Con_Printf ("Image_Resample: unsupported bytesperpixel %i\n", bytesperpixel);
1363 // in can be the same as out
1364 void Image_MipReduce(const unsigned char *in, unsigned char *out, int *width, int *height, int *depth, int destwidth, int destheight, int destdepth, int bytesperpixel)
1366 const unsigned char *inrow;
1368 if (*depth != 1 || destdepth != 1)
1370 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1371 if (*width > destwidth)
1373 if (*height > destheight)
1375 if (*depth > destdepth)
1379 // note: if given odd width/height this discards the last row/column of
1380 // pixels, rather than doing a proper box-filter scale down
1382 nextrow = *width * bytesperpixel;
1383 if (*width > destwidth)
1386 if (*height > destheight)
1390 if (bytesperpixel == 4)
1392 for (y = 0;y < *height;y++, inrow += nextrow * 2)
1394 for (in = inrow, x = 0;x < *width;x++)
1396 out[0] = (unsigned char) ((in[0] + in[4] + in[nextrow ] + in[nextrow+4]) >> 2);
1397 out[1] = (unsigned char) ((in[1] + in[5] + in[nextrow+1] + in[nextrow+5]) >> 2);
1398 out[2] = (unsigned char) ((in[2] + in[6] + in[nextrow+2] + in[nextrow+6]) >> 2);
1399 out[3] = (unsigned char) ((in[3] + in[7] + in[nextrow+3] + in[nextrow+7]) >> 2);
1405 else if (bytesperpixel == 3)
1407 for (y = 0;y < *height;y++, inrow += nextrow * 2)
1409 for (in = inrow, x = 0;x < *width;x++)
1411 out[0] = (unsigned char) ((in[0] + in[3] + in[nextrow ] + in[nextrow+3]) >> 2);
1412 out[1] = (unsigned char) ((in[1] + in[4] + in[nextrow+1] + in[nextrow+4]) >> 2);
1413 out[2] = (unsigned char) ((in[2] + in[5] + in[nextrow+2] + in[nextrow+5]) >> 2);
1420 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1425 if (bytesperpixel == 4)
1427 for (y = 0;y < *height;y++, inrow += nextrow)
1429 for (in = inrow, x = 0;x < *width;x++)
1431 out[0] = (unsigned char) ((in[0] + in[4]) >> 1);
1432 out[1] = (unsigned char) ((in[1] + in[5]) >> 1);
1433 out[2] = (unsigned char) ((in[2] + in[6]) >> 1);
1434 out[3] = (unsigned char) ((in[3] + in[7]) >> 1);
1440 else if (bytesperpixel == 3)
1442 for (y = 0;y < *height;y++, inrow += nextrow)
1444 for (in = inrow, x = 0;x < *width;x++)
1446 out[0] = (unsigned char) ((in[0] + in[3]) >> 1);
1447 out[1] = (unsigned char) ((in[1] + in[4]) >> 1);
1448 out[2] = (unsigned char) ((in[2] + in[5]) >> 1);
1455 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1460 if (*height > destheight)
1464 if (bytesperpixel == 4)
1466 for (y = 0;y < *height;y++, inrow += nextrow * 2)
1468 for (in = inrow, x = 0;x < *width;x++)
1470 out[0] = (unsigned char) ((in[0] + in[nextrow ]) >> 1);
1471 out[1] = (unsigned char) ((in[1] + in[nextrow+1]) >> 1);
1472 out[2] = (unsigned char) ((in[2] + in[nextrow+2]) >> 1);
1473 out[3] = (unsigned char) ((in[3] + in[nextrow+3]) >> 1);
1479 else if (bytesperpixel == 3)
1481 for (y = 0;y < *height;y++, inrow += nextrow * 2)
1483 for (in = inrow, x = 0;x < *width;x++)
1485 out[0] = (unsigned char) ((in[0] + in[nextrow ]) >> 1);
1486 out[1] = (unsigned char) ((in[1] + in[nextrow+1]) >> 1);
1487 out[2] = (unsigned char) ((in[2] + in[nextrow+2]) >> 1);
1494 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1497 Con_Printf ("Image_MipReduce: desired size already achieved\n");
1501 void Image_HeightmapToNormalmap(const unsigned char *inpixels, unsigned char *outpixels, int width, int height, int clamp, float bumpscale)
1503 int x, y, x1, x2, y1, y2;
1504 const unsigned char *b, *row[3];
1507 float iwidth, iheight, ibumpscale, n[3];
1508 iwidth = 1.0f / width;
1509 iheight = 1.0f / height;
1510 ibumpscale = (255.0f * 6.0f) / bumpscale;
1512 for (y = 0, y1 = height-1;y < height;y1 = y, y++)
1514 y2 = y + 1;if (y2 >= height) y2 = 0;
1515 row[0] = inpixels + (y1 * width) * 4;
1516 row[1] = inpixels + (y * width) * 4;
1517 row[2] = inpixels + (y2 * width) * 4;
1518 for (x = 0, x1 = width-1;x < width;x1 = x, x++)
1520 x2 = x + 1;if (x2 >= width) x2 = 0;
1522 b = row[1] + x1 * 4;p[0] = (b[0] + b[1] + b[2]);
1523 b = row[1] + x2 * 4;p[1] = (b[0] + b[1] + b[2]);
1525 b = row[0] + x * 4;p[2] = (b[0] + b[1] + b[2]);
1526 b = row[2] + x * 4;p[3] = (b[0] + b[1] + b[2]);
1528 b = row[1] + x * 4;p[4] = (b[0] + b[1] + b[2]);
1529 // calculate a normal from the slopes
1534 // turn it into a dot3 rgb vector texture
1535 out[0] = (int)(128.0f + n[0] * 127.0f);
1536 out[1] = (int)(128.0f + n[1] * 127.0f);
1537 out[2] = (int)(128.0f + n[2] * 127.0f);
1538 out[3] = (p[4]) / 3;
1544 int image_loadskin(imageskin_t *s, const char *shadername)
1547 unsigned char *bumppixels;
1548 int bumppixels_width, bumppixels_height;
1549 char name[MAX_QPATH];
1550 Image_StripImageExtension(shadername, name, sizeof(name));
1551 memset(s, 0, sizeof(*s));
1552 s->basepixels = loadimagepixels(name, false, 0, 0);
1553 if (s->basepixels == NULL)
1555 s->basepixels_width = image_width;
1556 s->basepixels_height = image_height;
1558 bumppixels = NULL;bumppixels_width = 0;bumppixels_height = 0;
1559 for (j = 3;j < s->basepixels_width * s->basepixels_height * 4;j += 4)
1560 if (s->basepixels[j] < 255)
1562 if (j < s->basepixels_width * s->basepixels_height * 4)
1564 // has transparent pixels
1565 s->maskpixels = (unsigned char *)Mem_Alloc(loadmodel->mempool, s->basepixels_width * s->basepixels_height * 4);
1566 s->maskpixels_width = s->basepixels_width;
1567 s->maskpixels_height = s->basepixels_height;
1568 memcpy(s->maskpixels, s->basepixels, s->maskpixels_width * s->maskpixels_height * 4);
1569 for (j = 0;j < s->basepixels_width * s->basepixels_height * 4;j += 4)
1571 s->maskpixels[j+0] = 255;
1572 s->maskpixels[j+1] = 255;
1573 s->maskpixels[j+2] = 255;
1577 // _luma is supported for tenebrae compatibility
1578 // (I think it's a very stupid name, but oh well)
1579 if ((s->glowpixels = loadimagepixels(va("%s_glow", name), false, 0, 0)) != NULL
1580 || (s->glowpixels = loadimagepixels(va("%s_luma", name), false, 0, 0)) != NULL)
1582 s->glowpixels_width = image_width;
1583 s->glowpixels_height = image_height;
1585 // _norm is the name used by tenebrae
1586 // (I don't like the name much)
1587 if ((s->nmappixels = loadimagepixels(va("%s_norm", name), false, 0, 0)) != NULL)
1589 s->nmappixels_width = image_width;
1590 s->nmappixels_height = image_height;
1592 else if ((bumppixels = loadimagepixels(va("%s_bump", name), false, 0, 0)) != NULL)
1594 bumppixels_width = image_width;
1595 bumppixels_height = image_height;
1597 if ((s->glosspixels = loadimagepixels(va("%s_gloss", name), false, 0, 0)) != NULL)
1599 s->glosspixels_width = image_width;
1600 s->glosspixels_height = image_height;
1602 if ((s->pantspixels = loadimagepixels(va("%s_pants", name), false, 0, 0)) != NULL)
1604 s->pantspixels_width = image_width;
1605 s->pantspixels_height = image_height;
1607 if ((s->shirtpixels = loadimagepixels(va("%s_shirt", name), false, 0, 0)) != NULL)
1609 s->shirtpixels_width = image_width;
1610 s->shirtpixels_height = image_height;
1613 if (s->nmappixels == NULL)
1615 if (bumppixels != NULL)
1617 if (r_shadow_bumpscale_bumpmap.value > 0)
1619 s->nmappixels = (unsigned char *)Mem_Alloc(loadmodel->mempool, bumppixels_width * bumppixels_height * 4);
1620 s->nmappixels_width = bumppixels_width;
1621 s->nmappixels_height = bumppixels_height;
1622 Image_HeightmapToNormalmap(bumppixels, s->nmappixels, s->nmappixels_width, s->nmappixels_height, false, r_shadow_bumpscale_bumpmap.value);
1627 if (r_shadow_bumpscale_basetexture.value > 0)
1629 s->nmappixels = (unsigned char *)Mem_Alloc(loadmodel->mempool, s->basepixels_width * s->basepixels_height * 4);
1630 s->nmappixels_width = s->basepixels_width;
1631 s->nmappixels_height = s->basepixels_height;
1632 Image_HeightmapToNormalmap(s->basepixels, s->nmappixels, s->nmappixels_width, s->nmappixels_height, false, r_shadow_bumpscale_basetexture.value);
1636 if (bumppixels != NULL)
1637 Mem_Free(bumppixels);
1641 void image_freeskin(imageskin_t *s)
1644 Mem_Free(s->basepixels);
1646 Mem_Free(s->maskpixels);
1648 Mem_Free(s->nmappixels);
1650 Mem_Free(s->glowpixels);
1652 Mem_Free(s->glosspixels);
1654 Mem_Free(s->pantspixels);
1656 Mem_Free(s->shirtpixels);
1657 memset(s, 0, sizeof(*s));