11 // written by LordHavoc in a readable way, optimized by Vic, further optimized by LordHavoc (the non-special index case), readable version preserved below this
12 void Image_CopyMux(qbyte *outpixels, const qbyte *inpixels, int inputwidth, int inputheight, qboolean inputflipx, qboolean inputflipy, qboolean inputflipdiagonal, int numoutputcomponents, int numinputcomponents, int *outputinputcomponentindices)
15 const qbyte *in, *line;
16 int row_inc = (inputflipy ? -inputwidth : inputwidth) * numinputcomponents, col_inc = (inputflipx ? -1 : 1) * numinputcomponents;
17 int row_ofs = (inputflipy ? (inputheight - 1) * inputwidth * numinputcomponents : 0), col_ofs = (inputflipx ? (inputwidth - 1) * numinputcomponents : 0);
19 for (c = 0; c < numoutputcomponents; c++)
20 if (outputinputcomponentindices[c] & 0x80000000)
22 if (c < numoutputcomponents)
24 // special indices used
25 if (inputflipdiagonal)
27 for (x = 0, line = inpixels + col_ofs; x < inputwidth; x++, line += col_inc)
28 for (y = 0, in = line + row_ofs; y < inputheight; y++, in += row_inc, outpixels += numinputcomponents)
29 for (c = 0; c < numoutputcomponents; c++)
30 outpixels[c] = ((index = outputinputcomponentindices[c]) & 0x80000000) ? index : in[index];
34 for (y = 0, line = inpixels + row_ofs; y < inputheight; y++, line += row_inc)
35 for (x = 0, in = line + col_ofs; x < inputwidth; x++, in += col_inc, outpixels += numinputcomponents)
36 for (c = 0; c < numoutputcomponents; c++)
37 outpixels[c] = ((index = outputinputcomponentindices[c]) & 0x80000000) ? index : in[index];
42 // special indices not used
43 if (inputflipdiagonal)
45 for (x = 0, line = inpixels + col_ofs; x < inputwidth; x++, line += col_inc)
46 for (y = 0, in = line + row_ofs; y < inputheight; y++, in += row_inc, outpixels += numinputcomponents)
47 for (c = 0; c < numoutputcomponents; c++)
48 outpixels[c] = in[outputinputcomponentindices[c]];
52 for (y = 0, line = inpixels + row_ofs; y < inputheight; y++, line += row_inc)
53 for (x = 0, in = line + col_ofs; x < inputwidth; x++, in += col_inc, outpixels += numinputcomponents)
54 for (c = 0; c < numoutputcomponents; c++)
55 outpixels[c] = in[outputinputcomponentindices[c]];
60 // intentionally readable version
61 void Image_CopyMux(qbyte *outpixels, const qbyte *inpixels, int inputwidth, int inputheight, qboolean inputflipx, qboolean inputflipy, qboolean inputflipdiagonal, int numoutputcomponents, int numinputcomponents, int *outputinputcomponentindices)
64 const qbyte *in, *inrow, *incolumn;
65 if (inputflipdiagonal)
67 for (x = 0;x < inputwidth;x++)
69 for (y = 0;y < inputheight;y++)
71 in = inpixels + ((inputflipy ? inputheight - 1 - y : y) * inputwidth + (inputflipx ? inputwidth - 1 - x : x)) * numinputcomponents;
72 for (c = 0;c < numoutputcomponents;c++)
74 index = outputinputcomponentindices[c];
75 if (index & 0x80000000)
78 *outpixels++ = in[index];
85 for (y = 0;y < inputheight;y++)
87 for (x = 0;x < inputwidth;x++)
89 in = inpixels + ((inputflipy ? inputheight - 1 - y : y) * inputwidth + (inputflipx ? inputwidth - 1 - x : x)) * numinputcomponents;
90 for (c = 0;c < numoutputcomponents;c++)
92 index = outputinputcomponentindices[c];
93 if (index & 0x80000000)
96 *outpixels++ = in[index];
104 void Image_GammaRemapRGB(const qbyte *in, qbyte *out, int pixels, const qbyte *gammar, const qbyte *gammag, const qbyte *gammab)
108 out[0] = gammar[in[0]];
109 out[1] = gammag[in[1]];
110 out[2] = gammab[in[2]];
116 // note: pal must be 32bit color
117 void Image_Copy8bitRGBA(const qbyte *in, qbyte *out, int pixels, const unsigned int *pal)
119 int *iout = (void *)out;
122 iout[0] = pal[in[0]];
123 iout[1] = pal[in[1]];
124 iout[2] = pal[in[2]];
125 iout[3] = pal[in[3]];
126 iout[4] = pal[in[4]];
127 iout[5] = pal[in[5]];
128 iout[6] = pal[in[6]];
129 iout[7] = pal[in[7]];
136 iout[0] = pal[in[0]];
137 iout[1] = pal[in[1]];
138 iout[2] = pal[in[2]];
139 iout[3] = pal[in[3]];
145 iout[0] = pal[in[0]];
146 iout[1] = pal[in[1]];
151 iout[0] = pal[in[0]];
155 =================================================================
159 =================================================================
168 unsigned short xmin,ymin,xmax,ymax;
169 unsigned short hres,vres;
170 unsigned char palette[48];
173 unsigned short bytes_per_line;
174 unsigned short palette_type;
183 qbyte* LoadPCX (const qbyte *f, int matchwidth, int matchheight)
186 qbyte *a, *b, *image_rgba, *pbuf;
187 const qbyte *palette, *fin, *enddata;
188 int x, y, x2, dataByte;
190 if (fs_filesize < (int)sizeof(pcx) + 768)
192 Con_Print("Bad pcx file\n");
198 memcpy(&pcx, fin, sizeof(pcx));
201 // LordHavoc: big-endian support ported from QF newtree
202 pcx.xmax = LittleShort (pcx.xmax);
203 pcx.xmin = LittleShort (pcx.xmin);
204 pcx.ymax = LittleShort (pcx.ymax);
205 pcx.ymin = LittleShort (pcx.ymin);
206 pcx.hres = LittleShort (pcx.hres);
207 pcx.vres = LittleShort (pcx.vres);
208 pcx.bytes_per_line = LittleShort (pcx.bytes_per_line);
209 pcx.palette_type = LittleShort (pcx.palette_type);
211 image_width = pcx.xmax + 1 - pcx.xmin;
212 image_height = pcx.ymax + 1 - pcx.ymin;
213 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)
215 Con_Print("Bad pcx file\n");
218 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
221 palette = f + fs_filesize - 768;
223 image_rgba = Mem_Alloc(tempmempool, image_width*image_height*4);
226 Con_Printf("LoadPCX: not enough memory for %i by %i image\n", image_width, image_height);
229 pbuf = image_rgba + image_width*image_height*3;
232 for (y = 0;y < image_height && fin < enddata;y++)
234 a = pbuf + y * image_width;
235 for (x = 0;x < image_width && fin < enddata;)
242 x2 = x + (dataByte & 0x3F);
244 if (x2 > image_width)
245 x2 = image_width; // technically an error
252 fin += pcx.bytes_per_line - image_width; // the number of bytes per line is always forced to an even number
253 while(x < image_width)
260 for(x = 0;x < image_width*image_height;x++)
273 =========================================================
277 =========================================================
280 typedef struct _TargaHeader
282 unsigned char id_length, colormap_type, image_type;
283 unsigned short colormap_index, colormap_length;
284 unsigned char colormap_size;
285 unsigned short x_origin, y_origin, width, height;
286 unsigned char pixel_size, attributes;
290 void PrintTargaHeader(TargaHeader *t)
292 Con_Print("TargaHeader:\n");
293 Con_Printf("uint8 id_length = %i;\n", t->id_length);
294 Con_Printf("uint8 colormap_type = %i;\n", t->colormap_type);
295 Con_Printf("uint8 image_type = %i;\n", t->image_type);
296 Con_Printf("uint16 colormap_index = %i;\n", t->colormap_index);
297 Con_Printf("uint16 colormap_length = %i;\n", t->colormap_length);
298 Con_Printf("uint8 colormap_size = %i;\n", t->colormap_size);
299 Con_Printf("uint16 x_origin = %i;\n", t->x_origin);
300 Con_Printf("uint16 y_origin = %i;\n", t->y_origin);
301 Con_Printf("uint16 width = %i;\n", t->width);
302 Con_Printf("uint16 height = %i;\n", t->height);
303 Con_Printf("uint8 pixel_size = %i;\n", t->pixel_size);
304 Con_Printf("uint8 attributes = %i;\n", t->attributes);
312 qbyte *LoadTGA (const qbyte *f, int matchwidth, int matchheight)
314 int x, y, row_inc, compressed, readpixelcount, red, green, blue, alpha, runlen, pindex, alphabits;
315 qbyte *pixbuf, *image_rgba;
316 const qbyte *fin, *enddata;
317 TargaHeader targa_header;
318 unsigned char palette[256*4], *p;
320 if (fs_filesize < 19)
323 enddata = f + fs_filesize;
325 targa_header.id_length = f[0];
326 targa_header.colormap_type = f[1];
327 targa_header.image_type = f[2];
329 targa_header.colormap_index = f[3] + f[4] * 256;
330 targa_header.colormap_length = f[5] + f[6] * 256;
331 targa_header.colormap_size = f[7];
332 targa_header.x_origin = f[8] + f[9] * 256;
333 targa_header.y_origin = f[10] + f[11] * 256;
334 targa_header.width = image_width = f[12] + f[13] * 256;
335 targa_header.height = image_height = f[14] + f[15] * 256;
336 if (image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
338 Con_Print("LoadTGA: invalid size\n");
339 PrintTargaHeader(&targa_header);
342 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
344 targa_header.pixel_size = f[16];
345 targa_header.attributes = f[17];
347 // advance to end of header
350 // skip TARGA image comment (usually 0 bytes)
351 fin += targa_header.id_length;
353 // read/skip the colormap if present (note: according to the TARGA spec it
354 // can be present even on truecolor or greyscale images, just not used by
356 if (targa_header.colormap_type)
358 if (targa_header.colormap_length > 256)
360 Con_Print("LoadTGA: only up to 256 colormap_length supported\n");
361 PrintTargaHeader(&targa_header);
364 if (targa_header.colormap_index)
366 Con_Print("LoadTGA: colormap_index not supported\n");
367 PrintTargaHeader(&targa_header);
370 if (targa_header.colormap_size == 24)
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] = 255;
380 else if (targa_header.colormap_size == 32)
382 for (x = 0;x < targa_header.colormap_length;x++)
384 palette[x*4+2] = *fin++;
385 palette[x*4+1] = *fin++;
386 palette[x*4+0] = *fin++;
387 palette[x*4+3] = *fin++;
392 Con_Print("LoadTGA: Only 32 and 24 bit colormap_size supported\n");
393 PrintTargaHeader(&targa_header);
398 // check our pixel_size restrictions according to image_type
399 if (targa_header.image_type == 2 || targa_header.image_type == 10)
401 if (targa_header.pixel_size != 24 && targa_header.pixel_size != 32)
403 Con_Print("LoadTGA: only 24bit and 32bit pixel sizes supported for type 2 and type 10 images\n");
404 PrintTargaHeader(&targa_header);
408 else if (targa_header.image_type == 1 || targa_header.image_type == 9)
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);
417 else if (targa_header.image_type == 3 || targa_header.image_type == 11)
419 if (targa_header.pixel_size != 8)
421 Con_Print("LoadTGA: only 8bit pixel size for type 1, 3, 9, and 11 images supported\n");
422 PrintTargaHeader(&targa_header);
428 Con_Printf("LoadTGA: Only type 1, 2, 3, 9, 10, and 11 targa RGB images supported, image_type = %i\n", targa_header.image_type);
429 PrintTargaHeader(&targa_header);
433 if (targa_header.attributes & 0x10)
435 Con_Print("LoadTGA: origin must be in top left or bottom left, top right and bottom right are not supported\n");
439 image_rgba = Mem_Alloc(tempmempool, image_width * image_height * 4);
442 Con_Printf("LoadTGA: not enough memory for %i by %i image\n", image_width, image_height);
446 // If bit 5 of attributes isn't set, the image has been stored from bottom to top
447 if ((targa_header.attributes & 0x20) == 0)
449 pixbuf = image_rgba + (image_height - 1)*image_width*4;
450 row_inc = -image_width*4*2;
458 // number of attribute bits per pixel, we only support 0 or 8
459 alphabits = targa_header.attributes & 0x0F;
460 if (alphabits != 8 && alphabits != 0)
462 Con_Print("LoadTGA: only 0 or 8 attribute (alpha) bits supported\n");
466 compressed = targa_header.image_type == 9 || targa_header.image_type == 10 || targa_header.image_type == 11;
469 red = green = blue = alpha = 255;
470 while (y < image_height)
472 // decoder is mostly the same whether it's compressed or not
473 readpixelcount = 1000000;
475 if (compressed && fin < enddata)
478 // high bit indicates this is an RLE compressed run
481 runlen = 1 + (runlen & 0x7f);
484 while((runlen--) && y < image_height)
486 if (readpixelcount > 0)
489 red = green = blue = alpha = 255;
492 switch(targa_header.image_type)
498 if (pindex >= targa_header.colormap_length)
500 p = palette + pindex * 4;
514 if (targa_header.pixel_size == 32 && fin < enddata)
520 red = green = blue = *fin++;
532 if (x == image_width)
534 // end of line, advance to next
550 qbyte *LoadLMP (const qbyte *f, int matchwidth, int matchheight, qboolean loadAs8Bit)
556 Con_Print("LoadLMP: invalid LMP file\n");
560 // parse the very complicated header *chuckle*
561 image_width = BuffLittleLong(f);
562 image_height = BuffLittleLong(f + 4);
563 if (image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
565 Con_Printf("LoadLMP: invalid size %ix%i\n", image_width, image_height);
568 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
571 if (fs_filesize < 8 + image_width * image_height)
573 Con_Print("LoadLMP: invalid LMP file\n");
579 image_buffer = Mem_Alloc(tempmempool, image_width * image_height);
580 memcpy(image_buffer, f + 8, image_width * image_height);
584 image_buffer = Mem_Alloc(tempmempool, image_width * image_height * 4);
585 Image_Copy8bitRGBA(f + 8, image_buffer, image_width * image_height, palette_complete);
590 static qbyte *LoadLMPRGBA (const qbyte *f, int matchwidth, int matchheight)
592 return LoadLMP(f, matchwidth, matchheight, false);
599 unsigned width, height;
600 unsigned offsets[MIPLEVELS]; // four mip maps stored
601 char animname[32]; // next frame in animation chain
607 qbyte *LoadWAL (const qbyte *f, int matchwidth, int matchheight)
610 const q2wal_t *inwal = (const void *)f;
612 if (fs_filesize < (int) sizeof(q2wal_t))
614 Con_Print("LoadWAL: invalid WAL file\n");
618 image_width = LittleLong(inwal->width);
619 image_height = LittleLong(inwal->height);
620 if (image_width > 4096 || image_height > 4096 || image_width <= 0 || image_height <= 0)
622 Con_Printf("LoadWAL: invalid size %ix%i\n", image_width, image_height);
625 if ((matchwidth && image_width != matchwidth) || (matchheight && image_height != matchheight))
628 if ((int) fs_filesize < (int) sizeof(q2wal_t) + (int) LittleLong(inwal->offsets[0]) + image_width * image_height)
630 Con_Print("LoadWAL: invalid WAL file\n");
634 image_rgba = Mem_Alloc(tempmempool, image_width * image_height * 4);
637 Con_Printf("LoadLMP: not enough memory for %i by %i image\n", image_width, image_height);
640 Image_Copy8bitRGBA(f + LittleLong(inwal->offsets[0]), image_rgba, image_width * image_height, palette_complete);
645 void Image_StripImageExtension (const char *in, char *out)
647 const char *end, *temp;
648 end = in + strlen(in);
652 if (strcmp(temp, ".tga") == 0
653 || strcmp(temp, ".pcx") == 0
654 || strcmp(temp, ".lmp") == 0
655 || strcmp(temp, ".png") == 0
656 || strcmp(temp, ".jpg") == 0)
668 const char *formatstring;
669 qbyte *(*loadfunc)(const qbyte *f, int matchwidth, int matchheight);
673 {"override/%s.tga", LoadTGA},
674 {"override/%s.jpg", JPEG_LoadImage},
675 {"textures/%s.tga", LoadTGA},
676 {"textures/%s.jpg", JPEG_LoadImage},
677 {"textures/%s.pcx", LoadPCX},
678 {"textures/%s.wal", LoadWAL},
680 {"%s.jpg", JPEG_LoadImage},
682 {"%s.lmp", LoadLMPRGBA},
686 qbyte *loadimagepixels (const char *filename, qboolean complain, int matchwidth, int matchheight)
689 qbyte *f, *data = NULL;
690 char basename[MAX_QPATH], name[MAX_QPATH], *c;
691 if (developer_memorydebug.integer)
692 Mem_CheckSentinelsGlobal();
693 if (developer_texturelogging.integer)
694 Log_Printf("textures.log", "%s\n", filename);
695 strlcpy(basename, filename, sizeof(basename));
696 Image_StripImageExtension(basename, basename); // strip filename extensions to allow replacement by other types
697 // replace *'s with #, so commandline utils don't get confused when dealing with the external files
698 for (c = basename;*c;c++)
701 for (i = 0;imageformats[i].formatstring;i++)
703 sprintf (name, imageformats[i].formatstring, basename);
704 f = FS_LoadFile(name, tempmempool, true);
707 data = imageformats[i].loadfunc(f, matchwidth, matchheight);
711 Con_DPrintf("loaded image %s (%dx%d)\n", name, image_width, image_height);
712 if (developer_memorydebug.integer)
713 Mem_CheckSentinelsGlobal();
720 Con_Printf("Couldn't load %s using ", filename);
721 for (i = 0;imageformats[i].formatstring;i++)
723 sprintf (name, imageformats[i].formatstring, basename);
724 Con_Printf(i == 0 ? "\"%s\"" : (imageformats[i+1].formatstring ? ", \"%s\"" : " or \"%s\".\n"), imageformats[i].formatstring);
727 if (developer_memorydebug.integer)
728 Mem_CheckSentinelsGlobal();
732 int image_makemask (const qbyte *in, qbyte *out, int size)
736 for (i = 0;i < size;i++)
738 out[0] = out[1] = out[2] = 255;
748 qbyte* loadimagepixelsmask (const char *filename, qboolean complain, int matchwidth, int matchheight)
751 in = data = loadimagepixels(filename, complain, matchwidth, matchheight);
754 if (image_makemask(data, data, image_width * image_height))
755 return data; // some transparency
759 return NULL; // all opaque
763 rtexture_t *loadtextureimage (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags)
767 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
769 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
774 rtexture_t *loadtextureimagemask (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags)
778 if (!(data = loadimagepixelsmask (filename, complain, matchwidth, matchheight)))
780 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
785 rtexture_t *image_masktex;
786 rtexture_t *image_nmaptex;
787 rtexture_t *loadtextureimagewithmask (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags)
791 image_masktex = NULL;
792 image_nmaptex = NULL;
793 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
796 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
798 if (flags & TEXF_ALPHA && image_makemask(data, data, image_width * image_height))
799 image_masktex = R_LoadTexture2D(pool, va("%s_mask", filename), image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
805 rtexture_t *loadtextureimagewithmaskandnmap (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags, float bumpscale)
809 image_masktex = NULL;
810 image_nmaptex = NULL;
811 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
814 data2 = Mem_Alloc(tempmempool, image_width * image_height * 4);
816 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, TEXTYPE_RGBA, flags, NULL);
818 Image_HeightmapToNormalmap(data, data2, image_width, image_height, (flags & TEXF_CLAMP) != 0, bumpscale);
819 image_nmaptex = R_LoadTexture2D(pool, va("%s_nmap", filename), image_width, image_height, data2, TEXTYPE_RGBA, flags, NULL);
821 if (flags & TEXF_ALPHA && image_makemask(data, data2, image_width * image_height))
822 image_masktex = R_LoadTexture2D(pool, va("%s_mask", filename), image_width, image_height, data2, TEXTYPE_RGBA, flags, NULL);
830 rtexture_t *loadtextureimagebumpasnmap (rtexturepool_t *pool, const char *filename, int matchwidth, int matchheight, qboolean complain, int flags, float bumpscale)
834 if (!(data = loadimagepixels (filename, complain, matchwidth, matchheight)))
836 data2 = Mem_Alloc(tempmempool, image_width * image_height * 4);
838 Image_HeightmapToNormalmap(data, data2, image_width, image_height, (flags & TEXF_CLAMP) != 0, bumpscale);
839 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data2, TEXTYPE_RGBA, flags, NULL);
846 qboolean Image_WriteTGARGB_preflipped (const char *filename, int width, int height, const qbyte *data, qbyte *buffer)
850 const qbyte *in, *end;
852 memset (buffer, 0, 18);
853 buffer[2] = 2; // uncompressed type
854 buffer[12] = (width >> 0) & 0xFF;
855 buffer[13] = (width >> 8) & 0xFF;
856 buffer[14] = (height >> 0) & 0xFF;
857 buffer[15] = (height >> 8) & 0xFF;
858 buffer[16] = 24; // pixel size
863 end = in + width*height*3;
864 for (;in < end;in += 3)
870 ret = FS_WriteFile (filename, buffer, width*height*3 + 18 );
875 void Image_WriteTGARGB (const char *filename, int width, int height, const qbyte *data)
879 const qbyte *in, *end;
881 buffer = Mem_Alloc(tempmempool, width*height*3 + 18);
883 memset (buffer, 0, 18);
884 buffer[2] = 2; // uncompressed type
885 buffer[12] = (width >> 0) & 0xFF;
886 buffer[13] = (width >> 8) & 0xFF;
887 buffer[14] = (height >> 0) & 0xFF;
888 buffer[15] = (height >> 8) & 0xFF;
889 buffer[16] = 24; // pixel size
891 // swap rgb to bgr and flip upside down
893 for (y = height - 1;y >= 0;y--)
895 in = data + y * width * 3;
896 end = in + width * 3;
897 for (;in < end;in += 3)
904 FS_WriteFile (filename, buffer, width*height*3 + 18 );
909 void Image_WriteTGARGBA (const char *filename, int width, int height, const qbyte *data)
913 const qbyte *in, *end;
915 buffer = Mem_Alloc(tempmempool, width*height*4 + 18);
917 memset (buffer, 0, 18);
918 buffer[2] = 2; // uncompressed type
919 buffer[12] = (width >> 0) & 0xFF;
920 buffer[13] = (width >> 8) & 0xFF;
921 buffer[14] = (height >> 0) & 0xFF;
922 buffer[15] = (height >> 8) & 0xFF;
923 buffer[16] = 32; // pixel size
924 buffer[17] = 8; // transparent flag? (seems to be needed by gimp)
926 // swap rgba to bgra and flip upside down
928 for (y = height - 1;y >= 0;y--)
930 in = data + y * width * 4;
931 end = in + width * 4;
932 for (;in < end;in += 4)
940 FS_WriteFile (filename, buffer, width*height*4 + 18 );
945 qboolean Image_CheckAlpha(const qbyte *data, int size, qboolean rgba)
951 for (end = data + size * 4, data += 3;data < end;data += 4)
957 // color 255 is transparent
958 for (end = data + size;data < end;data++)
965 static void Image_Resample32LerpLine (const qbyte *in, qbyte *out, int inwidth, int outwidth)
967 int j, xi, oldx = 0, f, fstep, endx, lerp;
968 fstep = (int) (inwidth*65536.0f/outwidth);
970 for (j = 0,f = 0;j < outwidth;j++, f += fstep)
975 in += (xi - oldx) * 4;
981 *out++ = (qbyte) ((((in[4] - in[0]) * lerp) >> 16) + in[0]);
982 *out++ = (qbyte) ((((in[5] - in[1]) * lerp) >> 16) + in[1]);
983 *out++ = (qbyte) ((((in[6] - in[2]) * lerp) >> 16) + in[2]);
984 *out++ = (qbyte) ((((in[7] - in[3]) * lerp) >> 16) + in[3]);
986 else // last pixel of the line has no pixel to lerp to
996 static void Image_Resample24LerpLine (const qbyte *in, qbyte *out, int inwidth, int outwidth)
998 int j, xi, oldx = 0, f, fstep, endx, lerp;
999 fstep = (int) (inwidth*65536.0f/outwidth);
1001 for (j = 0,f = 0;j < outwidth;j++, f += fstep)
1006 in += (xi - oldx) * 3;
1012 *out++ = (qbyte) ((((in[3] - in[0]) * lerp) >> 16) + in[0]);
1013 *out++ = (qbyte) ((((in[4] - in[1]) * lerp) >> 16) + in[1]);
1014 *out++ = (qbyte) ((((in[5] - in[2]) * lerp) >> 16) + in[2]);
1016 else // last pixel of the line has no pixel to lerp to
1025 #define LERPBYTE(i) r = resamplerow1[i];out[i] = (qbyte) ((((resamplerow2[i] - r) * lerp) >> 16) + r)
1026 void Image_Resample32Lerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1028 int i, j, r, yi, oldy, f, fstep, lerp, endy = (inheight-1), inwidth4 = inwidth*4, outwidth4 = outwidth*4;
1031 qbyte *resamplerow1;
1032 qbyte *resamplerow2;
1034 fstep = (int) (inheight*65536.0f/outheight);
1036 resamplerow1 = Mem_Alloc(tempmempool, outwidth*4*2);
1037 resamplerow2 = resamplerow1 + outwidth*4;
1041 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1042 Image_Resample32LerpLine (inrow + inwidth4, resamplerow2, inwidth, outwidth);
1043 for (i = 0, f = 0;i < outheight;i++,f += fstep)
1051 inrow = (qbyte *)indata + inwidth4*yi;
1053 memcpy(resamplerow1, resamplerow2, outwidth4);
1055 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1056 Image_Resample32LerpLine (inrow + inwidth4, resamplerow2, inwidth, outwidth);
1107 resamplerow1 -= outwidth4;
1108 resamplerow2 -= outwidth4;
1114 inrow = (qbyte *)indata + inwidth4*yi;
1116 memcpy(resamplerow1, resamplerow2, outwidth4);
1118 Image_Resample32LerpLine (inrow, resamplerow1, inwidth, outwidth);
1121 memcpy(out, resamplerow1, outwidth4);
1125 Mem_Free(resamplerow1);
1126 resamplerow1 = NULL;
1127 resamplerow2 = NULL;
1130 void Image_Resample32Nolerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1133 unsigned frac, fracstep;
1134 // relies on int being 4 bytes
1138 fracstep = inwidth*0x10000/outwidth;
1139 for (i = 0;i < outheight;i++)
1141 inrow = (int *)indata + inwidth*(i*inheight/outheight);
1142 frac = fracstep >> 1;
1146 out[0] = inrow[frac >> 16];frac += fracstep;
1147 out[1] = inrow[frac >> 16];frac += fracstep;
1148 out[2] = inrow[frac >> 16];frac += fracstep;
1149 out[3] = inrow[frac >> 16];frac += fracstep;
1155 out[0] = inrow[frac >> 16];frac += fracstep;
1156 out[1] = inrow[frac >> 16];frac += fracstep;
1161 out[0] = inrow[frac >> 16];frac += fracstep;
1167 void Image_Resample24Lerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1169 int i, j, r, yi, oldy, f, fstep, lerp, endy = (inheight-1), inwidth3 = inwidth * 3, outwidth3 = outwidth * 3;
1172 qbyte *resamplerow1;
1173 qbyte *resamplerow2;
1175 fstep = (int) (inheight*65536.0f/outheight);
1177 resamplerow1 = Mem_Alloc(tempmempool, outwidth*3*2);
1178 resamplerow2 = resamplerow1 + outwidth*3;
1182 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1183 Image_Resample24LerpLine (inrow + inwidth3, resamplerow2, inwidth, outwidth);
1184 for (i = 0, f = 0;i < outheight;i++,f += fstep)
1192 inrow = (qbyte *)indata + inwidth3*yi;
1194 memcpy(resamplerow1, resamplerow2, outwidth3);
1196 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1197 Image_Resample24LerpLine (inrow + inwidth3, resamplerow2, inwidth, outwidth);
1241 resamplerow1 -= outwidth3;
1242 resamplerow2 -= outwidth3;
1248 inrow = (qbyte *)indata + inwidth3*yi;
1250 memcpy(resamplerow1, resamplerow2, outwidth3);
1252 Image_Resample24LerpLine (inrow, resamplerow1, inwidth, outwidth);
1255 memcpy(out, resamplerow1, outwidth3);
1258 Mem_Free(resamplerow1);
1259 resamplerow1 = NULL;
1260 resamplerow2 = NULL;
1263 void Image_Resample24Nolerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
1265 int i, j, f, inwidth3 = inwidth * 3;
1266 unsigned frac, fracstep;
1270 fracstep = inwidth*0x10000/outwidth;
1271 for (i = 0;i < outheight;i++)
1273 inrow = (qbyte *)indata + inwidth3*(i*inheight/outheight);
1274 frac = fracstep >> 1;
1278 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1279 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;
1287 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1292 f = (frac >> 16)*3;*out++ = inrow[f+0];*out++ = inrow[f+1];*out++ = inrow[f+2];frac += fracstep;
1303 void Image_Resample (const void *indata, int inwidth, int inheight, int indepth, void *outdata, int outwidth, int outheight, int outdepth, int bytesperpixel, int quality)
1305 if (indepth != 1 || outdepth != 1)
1307 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1310 if (bytesperpixel == 4)
1313 Image_Resample32Lerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1315 Image_Resample32Nolerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1317 else if (bytesperpixel == 3)
1320 Image_Resample24Lerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1322 Image_Resample24Nolerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1325 Con_Printf ("Image_Resample: unsupported bytesperpixel %i\n", bytesperpixel);
1328 // in can be the same as out
1329 void Image_MipReduce(const qbyte *in, qbyte *out, int *width, int *height, int *depth, int destwidth, int destheight, int destdepth, int bytesperpixel)
1332 if (*depth != 1 || destdepth != 1)
1334 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1337 nextrow = *width * bytesperpixel;
1338 if (*width > destwidth)
1341 if (*height > destheight)
1345 if (bytesperpixel == 4)
1347 for (y = 0;y < *height;y++)
1349 for (x = 0;x < *width;x++)
1351 out[0] = (qbyte) ((in[0] + in[4] + in[nextrow ] + in[nextrow+4]) >> 2);
1352 out[1] = (qbyte) ((in[1] + in[5] + in[nextrow+1] + in[nextrow+5]) >> 2);
1353 out[2] = (qbyte) ((in[2] + in[6] + in[nextrow+2] + in[nextrow+6]) >> 2);
1354 out[3] = (qbyte) ((in[3] + in[7] + in[nextrow+3] + in[nextrow+7]) >> 2);
1358 in += nextrow; // skip a line
1361 else if (bytesperpixel == 3)
1363 for (y = 0;y < *height;y++)
1365 for (x = 0;x < *width;x++)
1367 out[0] = (qbyte) ((in[0] + in[3] + in[nextrow ] + in[nextrow+3]) >> 2);
1368 out[1] = (qbyte) ((in[1] + in[4] + in[nextrow+1] + in[nextrow+4]) >> 2);
1369 out[2] = (qbyte) ((in[2] + in[5] + in[nextrow+2] + in[nextrow+5]) >> 2);
1373 in += nextrow; // skip a line
1377 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1382 if (bytesperpixel == 4)
1384 for (y = 0;y < *height;y++)
1386 for (x = 0;x < *width;x++)
1388 out[0] = (qbyte) ((in[0] + in[4]) >> 1);
1389 out[1] = (qbyte) ((in[1] + in[5]) >> 1);
1390 out[2] = (qbyte) ((in[2] + in[6]) >> 1);
1391 out[3] = (qbyte) ((in[3] + in[7]) >> 1);
1397 else if (bytesperpixel == 3)
1399 for (y = 0;y < *height;y++)
1401 for (x = 0;x < *width;x++)
1403 out[0] = (qbyte) ((in[0] + in[3]) >> 1);
1404 out[1] = (qbyte) ((in[1] + in[4]) >> 1);
1405 out[2] = (qbyte) ((in[2] + in[5]) >> 1);
1412 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1417 if (*height > destheight)
1421 if (bytesperpixel == 4)
1423 for (y = 0;y < *height;y++)
1425 for (x = 0;x < *width;x++)
1427 out[0] = (qbyte) ((in[0] + in[nextrow ]) >> 1);
1428 out[1] = (qbyte) ((in[1] + in[nextrow+1]) >> 1);
1429 out[2] = (qbyte) ((in[2] + in[nextrow+2]) >> 1);
1430 out[3] = (qbyte) ((in[3] + in[nextrow+3]) >> 1);
1434 in += nextrow; // skip a line
1437 else if (bytesperpixel == 3)
1439 for (y = 0;y < *height;y++)
1441 for (x = 0;x < *width;x++)
1443 out[0] = (qbyte) ((in[0] + in[nextrow ]) >> 1);
1444 out[1] = (qbyte) ((in[1] + in[nextrow+1]) >> 1);
1445 out[2] = (qbyte) ((in[2] + in[nextrow+2]) >> 1);
1449 in += nextrow; // skip a line
1453 Con_Printf ("Image_MipReduce: unsupported bytesperpixel %i\n", bytesperpixel);
1456 Con_Printf ("Image_MipReduce: desired size already achieved\n");
1460 void Image_HeightmapToNormalmap(const unsigned char *inpixels, unsigned char *outpixels, int width, int height, int clamp, float bumpscale)
1463 const unsigned char *p0, *p1, *p2;
1465 float iwidth, iheight, ibumpscale, n[3];
1466 iwidth = 1.0f / width;
1467 iheight = 1.0f / height;
1468 ibumpscale = (255.0f * 3.0f) / bumpscale;
1470 for (y = 0;y < height;y++)
1472 for (x = 0;x < width;x++)
1474 p0 = inpixels + (y * width + x) * 4;
1478 p1 = inpixels + (y * width + x) * 4;
1480 p1 = inpixels + (y * width) * 4;
1483 p1 = inpixels + (y * width + x + 1) * 4;
1484 if (y == height - 1)
1487 p2 = inpixels + (y * width + x) * 4;
1489 p2 = inpixels + x * 4;
1492 p2 = inpixels + ((y + 1) * width + x) * 4;
1496 dv[0][2] = ((p0[0] + p0[1] + p0[2]) * ibumpscale) - ((p1[0] + p1[1] + p1[2]) * ibumpscale);
1499 dv[1][2] = ((p2[0] + p2[1] + p2[2]) * ibumpscale) - ((p0[0] + p0[1] + p0[2]) * ibumpscale);
1500 n[0] = dv[0][1]*dv[1][2]-dv[0][2]*dv[1][1];
1501 n[1] = dv[0][2]*dv[1][0]-dv[0][0]*dv[1][2];
1502 n[2] = dv[0][0]*dv[1][1]-dv[0][1]*dv[1][0];
1504 n[0] = ((p0[0] + p0[1] + p0[2]) - (p1[0] + p1[1] + p1[2]));
1505 n[1] = ((p2[0] + p2[1] + p2[2]) - (p0[0] + p0[1] + p0[2]));
1509 // this should work for the bottom right triangle if anyone wants
1510 // code for that for some reason
1511 n[0] = ((p3[0] + p3[1] + p3[2]) - (p1[0] + p1[1] + p1[2]));
1512 n[1] = ((p2[0] + p2[1] + p2[2]) - (p3[0] + p3[1] + p3[2]));
1516 out[0] = 128.0f + n[0] * 127.0f;
1517 out[1] = 128.0f + n[1] * 127.0f;
1518 out[2] = 128.0f + n[2] * 127.0f;
1519 out[3] = (p0[0] + p0[1] + p0[2]) / 3;
1525 int image_loadskin(imageskin_t *s, char *shadername)
1529 int bumppixels_width, bumppixels_height;
1530 char name[MAX_QPATH];
1531 strlcpy(name, shadername, sizeof(name));
1532 Image_StripImageExtension(name, name);
1533 memset(s, 0, sizeof(*s));
1534 s->basepixels = loadimagepixels(name, false, 0, 0);
1535 if (s->basepixels == NULL)
1537 s->basepixels_width = image_width;
1538 s->basepixels_height = image_height;
1540 bumppixels = NULL;bumppixels_width = 0;bumppixels_height = 0;
1541 if (Image_CheckAlpha(s->basepixels, s->basepixels_width * s->basepixels_height, true))
1543 s->maskpixels = Mem_Alloc(loadmodel->mempool, s->basepixels_width * s->basepixels_height * 4);
1544 s->maskpixels_width = s->basepixels_width;
1545 s->maskpixels_height = s->basepixels_height;
1546 memcpy(s->maskpixels, s->basepixels, s->maskpixels_width * s->maskpixels_height * 4);
1547 for (j = 0;j < s->basepixels_width * s->basepixels_height * 4;j += 4)
1549 s->maskpixels[j+0] = 255;
1550 s->maskpixels[j+1] = 255;
1551 s->maskpixels[j+2] = 255;
1555 // _luma is supported for tenebrae compatibility
1556 // (I think it's a very stupid name, but oh well)
1557 if ((s->glowpixels = loadimagepixels(va("%s_glow", name), false, 0, 0)) != NULL
1558 || (s->glowpixels = loadimagepixels(va("%s_luma", name), false, 0, 0)) != NULL)
1560 s->glowpixels_width = image_width;
1561 s->glowpixels_height = image_height;
1563 // _norm is the name used by tenebrae
1564 // (I don't like the name much)
1565 if ((s->nmappixels = loadimagepixels(va("%s_norm", name), false, 0, 0)) != NULL)
1567 s->nmappixels_width = image_width;
1568 s->nmappixels_height = image_height;
1570 else if ((bumppixels = loadimagepixels(va("%s_bump", name), false, 0, 0)) != NULL)
1572 bumppixels_width = image_width;
1573 bumppixels_height = image_height;
1575 if ((s->glosspixels = loadimagepixels(va("%s_gloss", name), false, 0, 0)) != NULL)
1577 s->glosspixels_width = image_width;
1578 s->glosspixels_height = image_height;
1580 if ((s->pantspixels = loadimagepixels(va("%s_pants", name), false, 0, 0)) != NULL)
1582 s->pantspixels_width = image_width;
1583 s->pantspixels_height = image_height;
1585 if ((s->shirtpixels = loadimagepixels(va("%s_shirt", name), false, 0, 0)) != NULL)
1587 s->shirtpixels_width = image_width;
1588 s->shirtpixels_height = image_height;
1591 if (s->nmappixels == NULL)
1593 if (bumppixels != NULL)
1595 if (r_shadow_bumpscale_bumpmap.value > 0)
1597 s->nmappixels = Mem_Alloc(loadmodel->mempool, bumppixels_width * bumppixels_height * 4);
1598 s->nmappixels_width = bumppixels_width;
1599 s->nmappixels_height = bumppixels_height;
1600 Image_HeightmapToNormalmap(bumppixels, s->nmappixels, s->nmappixels_width, s->nmappixels_height, false, r_shadow_bumpscale_bumpmap.value);
1605 if (r_shadow_bumpscale_basetexture.value > 0)
1607 s->nmappixels = Mem_Alloc(loadmodel->mempool, s->basepixels_width * s->basepixels_height * 4);
1608 s->nmappixels_width = s->basepixels_width;
1609 s->nmappixels_height = s->basepixels_height;
1610 Image_HeightmapToNormalmap(s->basepixels, s->nmappixels, s->nmappixels_width, s->nmappixels_height, false, r_shadow_bumpscale_basetexture.value);
1614 if (bumppixels != NULL)
1615 Mem_Free(bumppixels);
1619 void image_freeskin(imageskin_t *s)
1622 Mem_Free(s->basepixels);
1624 Mem_Free(s->maskpixels);
1626 Mem_Free(s->nmappixels);
1628 Mem_Free(s->glowpixels);
1630 Mem_Free(s->glosspixels);
1632 Mem_Free(s->pantspixels);
1634 Mem_Free(s->shirtpixels);
1635 memset(s, 0, sizeof(*s));