DarkPlaces
Game engine based on the Quake 1 engine by id Software, developed by LadyHavoc
 
image.h File Reference
#include <stddef.h>
#include "qtypes.h"
#include "cvar.h"
#include "r_textures.h"
+ Include dependency graph for image.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define Image_LinearFloatFromsRGB(c)
 
#define Image_LinearFloatFromsRGBFloat(c)
 
#define Image_sRGBFloatFromLinear(c)
 
#define Image_sRGBFloatFromLinear_Lightmap(c)
 
#define Image_sRGBFloatFromLinearFloat(c)
 

Functions

void Image_Copy8bitBGRA (const unsigned char *in, unsigned char *out, int pixels, const unsigned int *pal)
 
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)
 
void Image_FixTransparentPixels_f (cmd_state_t *cmd)
 
void Image_GammaRemapRGB (const unsigned char *in, unsigned char *out, int pixels, const unsigned char *gammar, const unsigned char *gammag, const unsigned char *gammab)
 
unsigned char * Image_GenerateNoTexture (void)
 
qbool Image_GetStockPicSize (const char *filename, int *returnwidth, int *returnheight)
 
void Image_HeightmapToNormalmap_BGRA (const unsigned char *inpixels, unsigned char *outpixels, int width, int height, int clamp, float bumpscale)
 
void Image_MakeLinearColorsFromsRGB (unsigned char *pout, const unsigned char *pin, int numpixels)
 
void Image_MakesRGBColorsFromLinear_Lightmap (unsigned char *pout, const unsigned char *pin, int numpixels)
 
void Image_MipReduce32 (const unsigned char *in, unsigned char *out, int *width, int *height, int *depth, int destwidth, int destheight, int destdepth)
 
void Image_Resample32 (const void *indata, int inwidth, int inheight, int indepth, void *outdata, int outwidth, int outheight, int outdepth, int quality)
 
void Image_StripImageExtension (const char *in, char *out, size_t size_out)
 
qbool Image_WriteTGABGR_preflipped (const char *filename, int width, int height, const unsigned char *data)
 
qbool Image_WriteTGABGRA (const char *filename, int width, int height, const unsigned char *data)
 
unsigned char * loadimagepixelsbgra (const char *filename, qbool complain, qbool allowFixtrans, qbool convertsRGB, int *miplevel)
 
qbool LoadPCX_PaletteOnly (const unsigned char *f, int filesize, unsigned char *palette768b)
 
qbool LoadPCX_QWSkin (const unsigned char *f, int filesize, unsigned char *pixels, int outwidth, int outheight)
 
rtexture_tloadtextureimage (rtexturepool_t *pool, const char *filename, qbool complain, int flags, qbool allowFixtrans, qbool sRGB)
 
unsigned char * LoadTGA_BGRA (const unsigned char *f, int filesize, int *miplevel)
 
qbool LoadWAL_GetMetadata (const unsigned char *f, int filesize, int *retwidth, int *retheight, int *retflags, int *retvalue, int *retcontents, char *retanimname32c)
 

Variables

int image_height
 
int image_width
 
cvar_t r_fixtrans_auto
 

Macro Definition Documentation

◆ Image_LinearFloatFromsRGB

#define Image_LinearFloatFromsRGB ( c)

◆ Image_LinearFloatFromsRGBFloat

#define Image_LinearFloatFromsRGBFloat ( c)
Value:
(((c) <= 0.04045f) ? (c) * (1.0f / 12.92f) : (float)pow(((c) + 0.055f)*(1.0f/1.055f), 2.4f))
float pow(float a, float b)
precision highp float
Definition shader_glsl.h:53

Definition at line 67 of file image.h.

◆ Image_sRGBFloatFromLinear

#define Image_sRGBFloatFromLinear ( c)
Value:
Image_sRGBFloatFromLinearFloat((c) * (1.0f / 255.0f))
#define Image_sRGBFloatFromLinearFloat(c)
Definition image.h:68

Definition at line 70 of file image.h.

◆ Image_sRGBFloatFromLinear_Lightmap

#define Image_sRGBFloatFromLinear_Lightmap ( c)
Value:
Image_sRGBFloatFromLinearFloat((c) * (2.0f / 255.0f)) * 0.5f

Definition at line 71 of file image.h.

Referenced by Image_MakesRGBColorsFromLinear_Lightmap(), Mod_Q3BSP_LoadLightGrid(), and Mod_Q3BSP_LoadVertices().

◆ Image_sRGBFloatFromLinearFloat

#define Image_sRGBFloatFromLinearFloat ( c)
Value:
(((c) < 0.0031308f) ? (c) * 12.92f : 1.055f * (float)pow((c), 1.0f/2.4f) - 0.055f)

Definition at line 68 of file image.h.

Referenced by R_RenderView(), and VID_BuildGammaTables().

Function Documentation

◆ Image_Copy8bitBGRA()

void Image_Copy8bitBGRA ( const unsigned char * in,
unsigned char * out,
int pixels,
const unsigned int * pal )

Definition at line 129 of file image.c.

130{
131 int *iout = (int *)out;
132 while (pixels >= 8)
133 {
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]];
142 in += 8;
143 iout += 8;
144 pixels -= 8;
145 }
146 if (pixels & 4)
147 {
148 iout[0] = pal[in[0]];
149 iout[1] = pal[in[1]];
150 iout[2] = pal[in[2]];
151 iout[3] = pal[in[3]];
152 in += 4;
153 iout += 4;
154 }
155 if (pixels & 2)
156 {
157 iout[0] = pal[in[0]];
158 iout[1] = pal[in[1]];
159 in += 2;
160 iout += 2;
161 }
162 if (pixels & 1)
163 iout[0] = pal[in[0]];
164}
GLint GLenum GLenum GLvoid * pixels
Definition glquake.h:706

References pixels.

Referenced by LoadWAL_BGRA(), Mod_Sprite_SharedSetup(), R_SkinFrame_GenerateTexturesFromQPixels(), and R_UploadFullTexture().

◆ Image_CopyMux()

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 )

Definition at line 24 of file image.c.

25{
26 int index, c, x, y;
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);
30
31 for (c = 0; c < numoutputcomponents; c++)
32 if (outputinputcomponentindices[c] & 0x80000000)
33 break;
34 if (c < numoutputcomponents)
35 {
36 // special indices used
37 if (inputflipdiagonal)
38 {
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];
43 }
44 else
45 {
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];
50 }
51 }
52 else
53 {
54 // special indices not used
55 if (inputflipdiagonal)
56 {
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]];
61 }
62 else
63 {
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]];
68 }
69 }
70}
GLint GLenum GLint GLint y
Definition glquake.h:651
GLint GLenum GLint x
Definition glquake.h:651
GLuint index
Definition glquake.h:629

References index, x, and y.

Referenced by Image_Compress(), R_LoadCubemap(), R_LoadSkyBox(), R_SetupTexture(), and SCR_ScreenShot().

◆ Image_FixTransparentPixels_f()

void Image_FixTransparentPixels_f ( cmd_state_t * cmd)

Definition at line 1376 of file image.c.

1377{
1378 const char *filename, *filename_pattern;
1379 fssearch_t *search;
1380 int i, n;
1381 char outfilename[MAX_QPATH], buf[MAX_QPATH];
1382 unsigned char *data;
1383 if(Cmd_Argc(cmd) != 2)
1384 {
1385 Con_Printf("Usage: %s imagefile\n", Cmd_Argv(cmd, 0));
1386 return;
1387 }
1388 filename_pattern = Cmd_Argv(cmd, 1);
1389 search = FS_Search(filename_pattern, true, true, NULL);
1390 if(!search)
1391 return;
1392 for(i = 0; i < search->numfilenames; ++i)
1393 {
1394 filename = search->filenames[i];
1395 Con_Printf("Processing %s... ", filename);
1396 Image_StripImageExtension(filename, buf, sizeof(buf));
1397 dpsnprintf(outfilename, sizeof(outfilename), "fixtrans/%s.tga", buf);
1398 if(!(data = loadimagepixelsbgra(filename, true, false, false, NULL)))
1399 return;
1401 {
1403 Con_Printf("%s written (%d pixels changed).\n", outfilename, n);
1404 }
1405 else
1406 Con_Printf("unchanged.\n");
1407 Mem_Free(data);
1408 }
1409 FS_FreeSearch(search);
1410}
static int Cmd_Argc(cmd_state_t *cmd)
Definition cmd.h:249
static const char * Cmd_Argv(cmd_state_t *cmd, int arg)
Cmd_Argv(cmd, ) will return an empty string (not a NULL) if arg > argc, so string operations are alwa...
Definition cmd.h:254
int dpsnprintf(char *buffer, size_t buffersize, const char *format,...)
Returns the number of printed characters, excluding the final '\0' or returns -1 if the buffer isn't ...
Definition common.c:997
void Con_Printf(const char *fmt,...)
Prints to all appropriate console targets.
Definition console.c:1514
#define n(x, y)
void FS_FreeSearch(fssearch_t *search)
Definition fs.c:3963
fssearch_t * FS_Search(const char *pattern, int caseinsensitive, int quiet, const char *packfile)
Definition fs.c:3756
GLsizeiptr const GLvoid * data
Definition glquake.h:639
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition glquake.h:657
int image_height
Definition image.c:10
qbool Image_WriteTGABGRA(const char *filename, int width, int height, const unsigned char *data)
Definition image.c:1436
unsigned char * loadimagepixelsbgra(const char *filename, qbool complain, qbool allowFixtrans, qbool convertsRGB, int *miplevel)
Definition image.c:1043
int image_width
Definition image.c:9
void Image_StripImageExtension(const char *in, char *out, size_t size_out)
Definition image.c:913
int fixtransparentpixels(unsigned char *data, int w, int h)
Definition image.c:1257
void cmd(string command,...)
int i
#define MAX_QPATH
max length of a quake game pathname
Definition qdefs.h:169
#define NULL
Definition qtypes.h:12
char ** filenames
Definition fs.h:117
int numfilenames
Definition fs.h:116
#define Mem_Free(mem)
Definition zone.h:96

References buf, cmd(), Cmd_Argc(), Cmd_Argv(), Con_Printf(), data, dpsnprintf(), fssearch_t::filenames, fixtransparentpixels(), FS_FreeSearch(), FS_Search(), i, image_height, Image_StripImageExtension(), image_width, Image_WriteTGABGRA(), loadimagepixelsbgra(), MAX_QPATH, Mem_Free, n, NULL, and fssearch_t::numfilenames.

Referenced by CL_InitCommands().

◆ Image_GammaRemapRGB()

void Image_GammaRemapRGB ( const unsigned char * in,
unsigned char * out,
int pixels,
const unsigned char * gammar,
const unsigned char * gammag,
const unsigned char * gammab )

Definition at line 116 of file image.c.

117{
118 while (pixels--)
119 {
120 out[0] = gammar[in[0]];
121 out[1] = gammag[in[1]];
122 out[2] = gammab[in[2]];
123 in += 3;
124 out += 3;
125 }
126}

References pixels.

◆ Image_GenerateNoTexture()

unsigned char * Image_GenerateNoTexture ( void )

Definition at line 1887 of file image.c.

1888{
1889 int x, y;
1890 unsigned char *data = (unsigned char *)Mem_Alloc(tempmempool, 16 * 16 * 4);
1891 image_width = 16;
1892 image_height = 16;
1893 // this makes a light grey/dark grey checkerboard texture
1894 for (y = 0; y < 16; y++)
1895 {
1896 for (x = 0; x < 16; x++)
1897 {
1898 data[(y * 16 + x) * 4 + 0] =
1899 data[(y * 16 + x) * 4 + 1] =
1900 data[(y * 16 + x) * 4 + 2] = (y < 8) ^ (x < 8) ? 128 : 64;
1901 data[(y * 16 + x) * 4 + 3] = 255;
1902 }
1903 }
1904 return data;
1905}
mempool_t * tempmempool
Definition zone.c:794
#define Mem_Alloc(pool, size)
Definition zone.h:92

References data, image_height, image_width, Mem_Alloc, tempmempool, x, and y.

Referenced by R_BuildNoTexture(), R_SkinFrame_LoadExternal_SkinFrame(), and R_SkinFrame_LoadNoTexture().

◆ Image_GetStockPicSize()

qbool Image_GetStockPicSize ( const char * filename,
int * returnwidth,
int * returnheight )

Definition at line 1196 of file image.c.

1197{
1198 unsigned char *data;
1199 fs_offset_t filesize;
1200 char lmppath[MAX_QPATH];
1201 if (!strcasecmp(filename, "gfx/conchars"))
1202 {
1203 *returnwidth = 128;
1204 *returnheight = 128;
1205 return true;
1206 }
1207
1208 dpsnprintf(lmppath, sizeof(lmppath), "%s.lmp", filename);
1209 data = FS_LoadFile(lmppath, tempmempool, true, &filesize);
1210 if (data)
1211 {
1212 if (filesize > 8)
1213 {
1214 int w = data[0] + data[1] * 0x100 + data[2] * 0x10000 + data[3] * 0x1000000;
1215 int h = data[4] + data[5] * 0x100 + data[6] * 0x10000 + data[7] * 0x1000000;
1216 if (w >= 1 && w <= 32768 && h >= 1 && h <= 32768)
1217 {
1218 *returnwidth = w;
1219 *returnheight = h;
1220 Mem_Free(data);
1221 return true;
1222 }
1223 }
1224 Mem_Free(data);
1225 }
1226 if (!strncasecmp(filename, "gfx/", 4))
1227 {
1228 data = W_GetLumpName(filename + 4, &filesize);
1229 if (data && filesize > 8)
1230 {
1231 int w = data[0] + data[1] * 0x100 + data[2] * 0x10000 + data[3] * 0x1000000;
1232 int h = data[4] + data[5] * 0x100 + data[6] * 0x10000 + data[7] * 0x1000000;
1233 if (w >= 1 && w <= 32768 && h >= 1 && h <= 32768)
1234 {
1235 *returnwidth = w;
1236 *returnheight = h;
1237 return true;
1238 }
1239 }
1240 }
1241 return false;
1242}
unsigned char * FS_LoadFile(const char *path, mempool_t *pool, qbool quiet, fs_offset_t *filesizepointer)
Definition fs.c:3540
int64_t fs_offset_t
Definition fs.h:37
GLubyte GLubyte GLubyte GLubyte w
Definition glquake.h:782
unsigned char * W_GetLumpName(const char *name, fs_offset_t *returnfilesize)
Definition wad.c:114

References data, dpsnprintf(), FS_LoadFile(), MAX_QPATH, Mem_Free, tempmempool, w, and W_GetLumpName().

Referenced by Draw_CachePic_Flags().

◆ Image_HeightmapToNormalmap_BGRA()

void Image_HeightmapToNormalmap_BGRA ( const unsigned char * inpixels,
unsigned char * outpixels,
int width,
int height,
int clamp,
float bumpscale )

Definition at line 1769 of file image.c.

1770{
1771 int x, y, x1, x2, y1, y2;
1772 const unsigned char *b, *row[3];
1773 int p[5];
1774 unsigned char *out;
1775 float ibumpscale, n[3];
1776 ibumpscale = (255.0f * 6.0f) / bumpscale;
1777 out = outpixels;
1778 for (y = 0, y1 = height-1;y < height;y1 = y, y++)
1779 {
1780 y2 = y + 1;if (y2 >= height) y2 = 0;
1781 row[0] = inpixels + (y1 * width) * 4;
1782 row[1] = inpixels + (y * width) * 4;
1783 row[2] = inpixels + (y2 * width) * 4;
1784 for (x = 0, x1 = width-1;x < width;x1 = x, x++)
1785 {
1786 x2 = x + 1;if (x2 >= width) x2 = 0;
1787 // left, right
1788 b = row[1] + x1 * 4;p[0] = (b[0] + b[1] + b[2]);
1789 b = row[1] + x2 * 4;p[1] = (b[0] + b[1] + b[2]);
1790 // above, below
1791 b = row[0] + x * 4;p[2] = (b[0] + b[1] + b[2]);
1792 b = row[2] + x * 4;p[3] = (b[0] + b[1] + b[2]);
1793 // center
1794 b = row[1] + x * 4;p[4] = (b[0] + b[1] + b[2]);
1795 // calculate a normal from the slopes
1796 n[0] = p[0] - p[1];
1797 n[1] = p[3] - p[2];
1798 n[2] = ibumpscale;
1800 // turn it into a dot3 rgb vector texture
1801 out[2] = (int)(128.0f + n[0] * 127.0f);
1802 out[1] = (int)(128.0f + n[1] * 127.0f);
1803 out[0] = (int)(128.0f + n[2] * 127.0f);
1804 out[3] = (p[4]) / 3;
1805 out += 4;
1806 }
1807 }
1808}
static int(ZEXPORT *qz_inflate)(z_stream *strm
GLenum GLsizei width
Definition glquake.h:622
GLenum GLsizei GLsizei height
Definition glquake.h:622
#define VectorNormalize(v)
Definition mathlib.h:104
vec3 y2
vec3 x2
dp_FragColor b
vec3 x1

References b, height, int(), n, VectorNormalize, width, x, x1, x2, y, and y2.

Referenced by R_SkinFrame_GenerateTexturesFromQPixels(), R_SkinFrame_LoadExternal_SkinFrame(), and R_SkinFrame_LoadInternalBGRA().

◆ Image_MakeLinearColorsFromsRGB()

void Image_MakeLinearColorsFromsRGB ( unsigned char * pout,
const unsigned char * pin,
int numpixels )

Definition at line 930 of file image.c.

931{
932 int i;
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++)
938 {
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];
943 }
944}
static unsigned char image_linearfromsrgb[256]
Definition image.c:927
#define Image_LinearFloatFromsRGB(c)
Definition image.h:69
float floor(float f)

References floor(), i, Image_LinearFloatFromsRGB, and image_linearfromsrgb.

Referenced by loadimagepixelsbgra(), R_LoadTextureDDSFile(), and R_SetupTexture().

◆ Image_MakesRGBColorsFromLinear_Lightmap()

void Image_MakesRGBColorsFromLinear_Lightmap ( unsigned char * pout,
const unsigned char * pin,
int numpixels )

Definition at line 946 of file image.c.

947{
948 int i;
949 // this math from http://www.opengl.org/registry/specs/EXT/texture_sRGB.txt
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++)
954 {
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];
959 }
960}
static unsigned char image_srgbfromlinear_lightmap[256]
Definition image.c:928
#define Image_sRGBFloatFromLinear_Lightmap(c)
Definition image.h:71
#define bound(min, num, max)
Definition mathlib.h:34

References bound, floor(), i, Image_sRGBFloatFromLinear_Lightmap, and image_srgbfromlinear_lightmap.

Referenced by Mod_Q3BSP_LoadLightmaps(), and R_BuildLightMap().

◆ Image_MipReduce32()

void Image_MipReduce32 ( const unsigned char * in,
unsigned char * out,
int * width,
int * height,
int * depth,
int destwidth,
int destheight,
int destdepth )

Definition at line 1689 of file image.c.

1690{
1691 const unsigned char *inrow;
1692 int x, y, nextrow;
1693 if (*depth != 1 || destdepth != 1)
1694 {
1695 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1696 if (*width > destwidth)
1697 *width >>= 1;
1698 if (*height > destheight)
1699 *height >>= 1;
1700 if (*depth > destdepth)
1701 *depth >>= 1;
1702 return;
1703 }
1704 // note: if given odd width/height this discards the last row/column of
1705 // pixels, rather than doing a proper box-filter scale down
1706 inrow = in;
1707 nextrow = *width * 4;
1708 if (*width > destwidth)
1709 {
1710 *width >>= 1;
1711 if (*height > destheight)
1712 {
1713 // reduce both
1714 *height >>= 1;
1715 for (y = 0;y < *height;y++, inrow += nextrow * 2)
1716 {
1717 for (in = inrow, x = 0;x < *width;x++)
1718 {
1719 out[0] = (unsigned char) ((in[0] + in[4] + in[nextrow ] + in[nextrow+4]) >> 2);
1720 out[1] = (unsigned char) ((in[1] + in[5] + in[nextrow+1] + in[nextrow+5]) >> 2);
1721 out[2] = (unsigned char) ((in[2] + in[6] + in[nextrow+2] + in[nextrow+6]) >> 2);
1722 out[3] = (unsigned char) ((in[3] + in[7] + in[nextrow+3] + in[nextrow+7]) >> 2);
1723 out += 4;
1724 in += 8;
1725 }
1726 }
1727 }
1728 else
1729 {
1730 // reduce width
1731 for (y = 0;y < *height;y++, inrow += nextrow)
1732 {
1733 for (in = inrow, x = 0;x < *width;x++)
1734 {
1735 out[0] = (unsigned char) ((in[0] + in[4]) >> 1);
1736 out[1] = (unsigned char) ((in[1] + in[5]) >> 1);
1737 out[2] = (unsigned char) ((in[2] + in[6]) >> 1);
1738 out[3] = (unsigned char) ((in[3] + in[7]) >> 1);
1739 out += 4;
1740 in += 8;
1741 }
1742 }
1743 }
1744 }
1745 else
1746 {
1747 if (*height > destheight)
1748 {
1749 // reduce height
1750 *height >>= 1;
1751 for (y = 0;y < *height;y++, inrow += nextrow * 2)
1752 {
1753 for (in = inrow, x = 0;x < *width;x++)
1754 {
1755 out[0] = (unsigned char) ((in[0] + in[nextrow ]) >> 1);
1756 out[1] = (unsigned char) ((in[1] + in[nextrow+1]) >> 1);
1757 out[2] = (unsigned char) ((in[2] + in[nextrow+2]) >> 1);
1758 out[3] = (unsigned char) ((in[3] + in[nextrow+3]) >> 1);
1759 out += 4;
1760 in += 4;
1761 }
1762 }
1763 }
1764 else
1765 Con_Printf ("Image_MipReduce: desired size already achieved\n");
1766 }
1767}
GLint GLenum GLsizei GLsizei GLsizei depth
Definition glquake.h:648

References Con_Printf(), depth, height, width, x, and y.

Referenced by Image_Compress(), and R_UploadFullTexture().

◆ Image_Resample32()

void Image_Resample32 ( const void * indata,
int inwidth,
int inheight,
int indepth,
void * outdata,
int outwidth,
int outheight,
int outdepth,
int quality )

Definition at line 1675 of file image.c.

1676{
1677 if (indepth != 1 || outdepth != 1)
1678 {
1679 Con_Printf ("Image_Resample: 3D resampling not supported\n");
1680 return;
1681 }
1682 if (quality)
1683 Image_Resample32Lerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1684 else
1685 Image_Resample32Nolerp(indata, inwidth, inheight, outdata, outwidth, outheight);
1686}
static void Image_Resample32Lerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
Definition image.c:1529
static void Image_Resample32Nolerp(const void *indata, int inwidth, int inheight, void *outdata, int outwidth, int outheight)
Definition image.c:1633

References Con_Printf(), Image_Resample32Lerp(), and Image_Resample32Nolerp().

Referenced by R_UploadFullTexture().

◆ Image_StripImageExtension()

void Image_StripImageExtension ( const char * in,
char * out,
size_t size_out )

Definition at line 913 of file image.c.

914{
915 const char *ext;
916
917 if (size_out == 0)
918 return;
919
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);
923 else
924 dp_strlcpy(out, in, size_out);
925}
#define dp_strlcpy(dst, src, dsize)
Definition common.h:303
const char * FS_FileExtension(const char *in)
Definition fs.c:1403
void FS_StripExtension(const char *in, char *out, size_t size_out)
Definition fs.c:3611

References dp_strlcpy, FS_FileExtension(), and FS_StripExtension().

Referenced by Image_FixTransparentPixels_f(), loadimagepixelsbgra(), Mod_BuildAliasSkinsFromSkinFiles(), R_SkinFrame_Find(), R_SkinFrame_FindNextByName(), and R_SkinFrame_LoadExternal_SkinFrame().

◆ Image_WriteTGABGR_preflipped()

qbool Image_WriteTGABGR_preflipped ( const char * filename,
int width,
int height,
const unsigned char * data )

Definition at line 1412 of file image.c.

1413{
1414 qbool ret;
1415 unsigned char buffer[18];
1416 const void *buffers[2];
1417 fs_offset_t sizes[2];
1418
1419 memset (buffer, 0, 18);
1420 buffer[2] = 2; // uncompressed type
1421 buffer[12] = (width >> 0) & 0xFF;
1422 buffer[13] = (width >> 8) & 0xFF;
1423 buffer[14] = (height >> 0) & 0xFF;
1424 buffer[15] = (height >> 8) & 0xFF;
1425 buffer[16] = 24; // pixel size
1426
1427 buffers[0] = buffer;
1428 sizes[0] = 18;
1429 buffers[1] = data;
1430 sizes[1] = width*height*3;
1431 ret = FS_WriteFileInBlocks(filename, buffers, sizes, 2);
1432
1433 return ret;
1434}
qbool FS_WriteFileInBlocks(const char *filename, const void *const *data, const fs_offset_t *len, size_t count)
Definition fs.c:3569
GLuint buffer
Definition glquake.h:630
const GLuint * buffers
Definition glquake.h:658
bool qbool
Definition qtypes.h:9
return ret

References buffer, buffers, data, FS_WriteFileInBlocks(), height, ret, and width.

Referenced by SCR_ScreenShot().

◆ Image_WriteTGABGRA()

qbool Image_WriteTGABGRA ( const char * filename,
int width,
int height,
const unsigned char * data )

Definition at line 1436 of file image.c.

1437{
1438 int y;
1439 unsigned char *buffer, *out;
1440 const unsigned char *in, *end;
1441 qbool ret;
1442
1443 buffer = (unsigned char *)Mem_Alloc(tempmempool, width*height*4 + 18);
1444
1445 memset (buffer, 0, 18);
1446 buffer[2] = 2; // uncompressed type
1447 buffer[12] = (width >> 0) & 0xFF;
1448 buffer[13] = (width >> 8) & 0xFF;
1449 buffer[14] = (height >> 0) & 0xFF;
1450 buffer[15] = (height >> 8) & 0xFF;
1451
1452 for (y = 3;y < width*height*4;y += 4)
1453 if (data[y] < 255)
1454 break;
1455
1456 if (y < width*height*4)
1457 {
1458 // save the alpha channel
1459 buffer[16] = 32; // pixel size
1460 buffer[17] = 8; // 8 bits of alpha
1461
1462 // flip upside down
1463 out = buffer + 18;
1464 for (y = height - 1;y >= 0;y--)
1465 {
1466 memcpy(out, data + y * width * 4, width * 4);
1467 out += width*4;
1468 }
1469 }
1470 else
1471 {
1472 // save only the color channels
1473 buffer[16] = 24; // pixel size
1474 buffer[17] = 0; // 8 bits of alpha
1475
1476 // truncate bgra to bgr and flip upside down
1477 out = buffer + 18;
1478 for (y = height - 1;y >= 0;y--)
1479 {
1480 in = data + y * width * 4;
1481 end = in + width * 4;
1482 for (;in < end;in += 4)
1483 {
1484 *out++ = in[0];
1485 *out++ = in[1];
1486 *out++ = in[2];
1487 }
1488 }
1489 }
1490 ret = FS_WriteFile (filename, buffer, out - buffer);
1491
1493
1494 return ret;
1495}
qbool FS_WriteFile(const char *filename, const void *data, fs_offset_t len)
Definition fs.c:3592

References buffer, data, FS_WriteFile(), height, Mem_Alloc, Mem_Free, ret, tempmempool, width, and y.

Referenced by Image_FixTransparentPixels_f(), Image_GenerateConChars(), loadimagepixelsbgra(), R_InitParticleTexture(), R_Shadow_DrawModelShadowMaps(), and SCR_ScreenShot().

◆ loadimagepixelsbgra()

unsigned char * loadimagepixelsbgra ( const char * filename,
qbool complain,
qbool allowFixtrans,
qbool convertsRGB,
int * miplevel )

Definition at line 1043 of file image.c.

1044{
1045 fs_offset_t filesize;
1046 imageformat_t *firstformat, *format;
1047 int mymiplevel;
1048 unsigned char *f, *data = NULL, *data2 = NULL;
1049 char basename[MAX_QPATH], name[MAX_QPATH], name2[MAX_QPATH], path[MAX_QPATH], afterpath[MAX_QPATH], *c;
1050 char vabuf[1024];
1051 //if (developer_memorydebug.integer)
1052 // Mem_CheckSentinelsGlobal();
1054 Log_Printf("textures.log", "%s\n", filename);
1055 Image_StripImageExtension(filename, basename, sizeof(basename)); // strip filename extensions to allow replacement by other types
1056 // replace *'s with #, so commandline utils don't get confused when dealing with the external files
1057 for (c = basename;*c;c++)
1058 if (*c == '*')
1059 *c = '#';
1060 path[0] = 0;
1061 name[0] = 0;
1062 dp_strlcpy(afterpath, basename, sizeof(afterpath));
1063 if (strchr(basename, '/'))
1064 {
1065 int i;
1066 for (i = 0;i < (int)sizeof(path)-1 && basename[i] != '/' && basename[i];i++)
1067 path[i] = basename[i];
1068 path[i] = 0;
1069 dp_strlcpy(afterpath, basename + i + 1, sizeof(afterpath));
1070 }
1071 if (gamemode == GAME_TENEBRAE)
1072 firstformat = imageformats_tenebrae;
1073 else if (gamemode == GAME_DELUXEQUAKE)
1074 firstformat = imageformats_dq;
1075 else if (!strcasecmp(path, "textures"))
1076 firstformat = imageformats_textures;
1077 else if (!strcasecmp(path, "gfx") || !strcasecmp(path, "locale")) // locale/ is used in GAME_BLOODOMNICIDE
1078 firstformat = imageformats_gfx;
1079 else if (!path[0])
1080 firstformat = imageformats_nopath;
1081 else
1082 firstformat = imageformats_other;
1083 // now try all the formats in the selected list
1084 for (format = firstformat;format->formatstring;format++)
1085 {
1086 dpsnprintf (name, sizeof(name), format->formatstring, basename);
1087
1089
1090 if(FS_FileExists(name) && (f = FS_LoadFile(name, tempmempool, true, &filesize)) != NULL)
1091 {
1092 mymiplevel = miplevel ? *miplevel : 0;
1093 image_width = 0;
1094 image_height = 0;
1095 data = format->loadfunc(f, (int)filesize, &mymiplevel);
1096 Mem_Free(f);
1097 if (data)
1098 {
1099 if(format->loadfunc == JPEG_LoadImage_BGRA) // jpeg can't do alpha, so let's simulate it by loading another jpeg
1100 {
1101 dpsnprintf (name2, sizeof(name2), format->formatstring, va(vabuf, sizeof(vabuf), "%s_alpha", basename));
1102 f = FS_LoadFile(name2, tempmempool, true, &filesize);
1103 if(f)
1104 {
1105 int mymiplevel2 = miplevel ? *miplevel : 0;
1106 int image_width_save = image_width;
1107 int image_height_save = image_height;
1108 data2 = format->loadfunc(f, (int)filesize, &mymiplevel2);
1109 if(data2 && mymiplevel == mymiplevel2 && image_width == image_width_save && image_height == image_height_save)
1111 else
1112 Con_Printf("loadimagepixelsrgba: corrupt or invalid alpha image %s_alpha\n", basename);
1113 image_width = image_width_save;
1114 image_height = image_height_save;
1115 if(data2)
1116 Mem_Free(data2);
1117 Mem_Free(f);
1118 }
1119 }
1121 Con_DPrintf("loaded image %s (%dx%d)\n", name, image_width, image_height);
1122 if(miplevel)
1123 *miplevel = mymiplevel;
1124 //if (developer_memorydebug.integer)
1125 // Mem_CheckSentinelsGlobal();
1126 if(allowFixtrans && r_fixtrans_auto.integer)
1127 {
1129 if(n)
1130 {
1131 Con_Printf("- had to fix %s (%d pixels changed)\n", name, n);
1132 if(r_fixtrans_auto.integer >= 2)
1133 {
1134 char outfilename[MAX_QPATH], buf[MAX_QPATH];
1136 dpsnprintf(outfilename, sizeof(outfilename), "fixtrans/%s.tga", buf);
1138 Con_Printf("- %s written.\n", outfilename);
1139 }
1140 }
1141 }
1142 if (convertsRGB)
1144 return data;
1145 }
1146 else
1147 Con_DPrintf("Error loading image %s (file loaded but decode failed)\n", name);
1148 }
1149 }
1150 if (!strcasecmp(path, "gfx"))
1151 {
1152 unsigned char *lmpdata;
1153 if ((lmpdata = W_GetLumpName(afterpath, &filesize)))
1154 {
1156 Con_Printf("loading gfx.wad lump \"%s\"\n", afterpath);
1157
1158 mymiplevel = miplevel ? *miplevel : 0;
1159 if (!strcmp(afterpath, "conchars"))
1160 {
1161 // conchars is a raw image and with color 0 as transparent instead of 255
1162 data = LoadConChars_BGRA(lmpdata, filesize, &mymiplevel);
1163 }
1164 else
1165 data = LoadLMP_BGRA(lmpdata, filesize, &mymiplevel);
1166 // no cleanup after looking up a wad lump - the whole gfx.wad is loaded at once
1167 if (data)
1168 return data;
1169 Con_DPrintf("Error loading image %s (file loaded but decode failed)\n", name);
1170 }
1171 }
1172
1173 // check if the image name exists as an embedded pic
1174 if ((data = Image_GetEmbeddedPicBGRA(basename)))
1175 return data;
1176
1177 if (complain)
1178 {
1179 Con_Printf(CON_ERROR "Couldn't load %s using ", filename);
1180 for (format = firstformat;format->formatstring;format++)
1181 {
1182 dpsnprintf (name, sizeof(name), format->formatstring, basename);
1183 Con_Printf(format == firstformat ? "\"%s\"" : (format[1].formatstring ? ", \"%s\"" : " or \"%s\".\n"), format->formatstring);
1184 }
1185 }
1186
1187 // texture loading can take a while, so make sure we're sending keepalives
1188 CL_KeepaliveMessage(false);
1189
1190 //if (developer_memorydebug.integer)
1191 // Mem_CheckSentinelsGlobal();
1192
1193 return NULL;
1194}
cvar_t r_fixtrans_auto
Definition cl_cmd.c:42
void CL_KeepaliveMessage(qbool readmessages)
Definition cl_parse.c:314
gamemode_t gamemode
Definition com_game.c:26
@ GAME_TENEBRAE
full of evil hackery
Definition com_game.h:41
@ GAME_DELUXEQUAKE
Definition com_game.h:45
char * va(char *buf, size_t buflen, const char *format,...)
Definition common.c:972
void Con_DPrintf(const char *fmt,...)
A Con_Printf that only shows up if the "developer" cvar is set.
Definition console.c:1544
void Log_Printf(const char *logfilename, const char *fmt,...)
Definition console.c:655
#define CON_ERROR
Definition console.h:102
void FS_SanitizePath(char *path)
Definition fs.c:2673
const char * FS_FileExists(const char *filename)
Look for a file in the packages and in the filesystem Returns its canonical name (same case as used i...
Definition fs.c:3693
cvar_t developer_texturelogging
Definition gl_rmain.c:231
GLint GLint GLint GLsizei GLsizei GLenum format
Definition glquake.h:649
const GLchar * name
Definition glquake.h:601
cvar_t developer_loading
Definition host.c:52
static unsigned char * Image_GetEmbeddedPicBGRA(const char *name)
Definition image.c:2079
void Image_MakeLinearColorsFromsRGB(unsigned char *pout, const unsigned char *pin, int numpixels)
Definition image.c:930
imageformat_t imageformats_gfx[]
Definition image.c:1022
static void Image_CopyAlphaFromBlueBGRA(unsigned char *outpixels, const unsigned char *inpixels, int w, int h)
Definition image.c:14
imageformat_t imageformats_other[]
Definition image.c:1032
imageformat_t imageformats_textures[]
Definition image.c:1012
static unsigned char * LoadConChars_BGRA(const unsigned char *f, int filesize, int *miplevel)
Definition image.c:881
imageformat_t imageformats_nopath[]
Definition image.c:983
imageformat_t imageformats_dq[]
Definition image.c:1003
imageformat_t imageformats_tenebrae[]
Definition image.c:970
static unsigned char * LoadLMP_BGRA(const unsigned char *f, int filesize, int *miplevel)
Definition image.c:841
unsigned char * JPEG_LoadImage_BGRA(const unsigned char *f, int filesize, int *miplevel)
Definition jpeg.c:606
float f
int integer
Definition cvar.h:73

References buf, CL_KeepaliveMessage(), Con_DPrintf(), CON_ERROR, Con_Printf(), data, developer_loading, developer_texturelogging, dp_strlcpy, dpsnprintf(), f, fixtransparentpixels(), format, FS_FileExists(), FS_LoadFile(), FS_SanitizePath(), GAME_DELUXEQUAKE, GAME_TENEBRAE, gamemode, i, Image_CopyAlphaFromBlueBGRA(), Image_GetEmbeddedPicBGRA(), image_height, Image_MakeLinearColorsFromsRGB(), Image_StripImageExtension(), image_width, Image_WriteTGABGRA(), imageformats_dq, imageformats_gfx, imageformats_nopath, imageformats_other, imageformats_tenebrae, imageformats_textures, int(), cvar_t::integer, JPEG_LoadImage_BGRA(), LoadConChars_BGRA(), LoadLMP_BGRA(), Log_Printf(), MAX_QPATH, Mem_Free, n, name, NULL, r_fixtrans_auto, tempmempool, va(), and W_GetLumpName().

Referenced by Image_Compress(), Image_FixTransparentPixels_f(), loadtextureimage(), Mod_Q1BSP_LoadTextures(), Mod_Q3BSP_LoadLightmaps(), R_BuildFogHeightTexture(), R_LoadCubemap(), R_LoadSkyBox(), and R_SkinFrame_LoadExternal_SkinFrame().

◆ LoadPCX_PaletteOnly()

qbool LoadPCX_PaletteOnly ( const unsigned char * f,
int filesize,
unsigned char * palette768b )

Definition at line 365 of file image.c.

366{
367 if (filesize < 768)
368 return false;
369 memcpy(palette768b, f + filesize - 768, 768);
370 return true;
371}

References f.

Referenced by Palette_LoadQ2Colormap().

◆ LoadPCX_QWSkin()

qbool LoadPCX_QWSkin ( const unsigned char * f,
int filesize,
unsigned char * pixels,
int outwidth,
int outheight )

Definition at line 286 of file image.c.

287{
288 pcx_t pcx;
289 unsigned char *a;
290 const unsigned char *fin, *enddata;
291 int x, y, x2, dataByte, pcxwidth, pcxheight;
292
293 if (filesize < (int)sizeof(pcx) + 768)
294 return false;
295
296 image_width = outwidth;
297 image_height = outheight;
298 fin = f;
299
300 memcpy(&pcx, fin, sizeof(pcx));
301 fin += sizeof(pcx);
302
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);
312
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)
316 return false;
317
318 enddata = f + filesize - 768;
319
320 for (y = 0;y < outheight && fin < enddata;y++)
321 {
322 a = pixels + y * outwidth;
323 // pad the output with blank lines if needed
324 if (y >= pcxheight)
325 {
326 memset(a, 0, outwidth);
327 continue;
328 }
329 for (x = 0;x < pcxwidth;)
330 {
331 if (fin >= enddata)
332 return false;
333 dataByte = *fin++;
334 if(dataByte >= 0xC0)
335 {
336 x2 = x + (dataByte & 0x3F);
337 if (fin >= enddata)
338 return false;
339 if (x2 > pcxwidth)
340 return false;
341 dataByte = *fin++;
342 for (;x < x2;x++)
343 if (x < outwidth)
344 a[x] = dataByte;
345 }
346 else
347 {
348 if (x < outwidth) // truncate to destination width
349 a[x] = dataByte;
350 x++;
351 }
352 }
353 while(x < outwidth)
354 a[x++] = 0;
355 }
356
357 return true;
358}
#define LittleShort(l)
Definition common.h:90
ret a
Definition image.c:175
unsigned short palette_type
Definition image.c:186
unsigned short hres
Definition image.c:181
unsigned short ymax
Definition image.c:180
unsigned short bytes_per_line
Definition image.c:185
unsigned short ymin
Definition image.c:180
unsigned short xmax
Definition image.c:180
unsigned short xmin
Definition image.c:180
char version
Definition image.c:177
char manufacturer
Definition image.c:176
char encoding
Definition image.c:178
char bits_per_pixel
Definition image.c:179
unsigned short vres
Definition image.c:181

References a, pcx_t::bits_per_pixel, pcx_t::bytes_per_line, pcx_t::encoding, f, pcx_t::hres, image_height, image_width, LittleShort, pcx_t::manufacturer, pcx_t::palette_type, pixels, pcx_t::version, pcx_t::vres, x, x2, pcx_t::xmax, pcx_t::xmin, y, pcx_t::ymax, and pcx_t::ymin.

Referenced by R_LoadQWSkin().

◆ loadtextureimage()

rtexture_t * loadtextureimage ( rtexturepool_t * pool,
const char * filename,
qbool complain,
int flags,
qbool allowFixtrans,
qbool sRGB )

Definition at line 1245 of file image.c.

1246{
1247 unsigned char *data;
1248 rtexture_t *rt;
1249 int miplevel = R_PicmipForFlags(flags);
1250 if (!(data = loadimagepixelsbgra (filename, complain, allowFixtrans, false, &miplevel)))
1251 return 0;
1252 rt = R_LoadTexture2D(pool, filename, image_width, image_height, data, sRGB ? TEXTYPE_SRGB_BGRA : TEXTYPE_BGRA, flags, miplevel, NULL);
1253 Mem_Free(data);
1254 return rt;
1255}
float flags
int R_PicmipForFlags(int flags)
rtexture_t * R_LoadTexture2D(rtexturepool_t *rtexturepool, const char *identifier, int width, int height, const unsigned char *data, textype_t textype, int flags, int miplevel, const unsigned int *palette)
@ TEXTYPE_SRGB_BGRA
Definition r_textures.h:73
@ TEXTYPE_BGRA
Definition r_textures.h:53

References data, flags, image_height, image_width, loadimagepixelsbgra(), Mem_Free, NULL, R_LoadTexture2D(), R_PicmipForFlags(), TEXTYPE_BGRA, and TEXTYPE_SRGB_BGRA.

Referenced by R_InitParticleTexture().

◆ LoadTGA_BGRA()

unsigned char * LoadTGA_BGRA ( const unsigned char * f,
int filesize,
int * miplevel )

Definition at line 401 of file image.c.

402{
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];
409 union
410 {
411 unsigned int i;
412 unsigned char b[4];
413 }
414 bgra;
415
416 if (filesize < 19)
417 return NULL;
418
419 enddata = f + filesize;
420
421 targa_header.id_length = f[0];
422 targa_header.colormap_type = f[1];
423 targa_header.image_type = f[2];
424
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];
434
435 if (image_width > 32768 || image_height > 32768 || image_width <= 0 || image_height <= 0)
436 {
437 Con_Print("LoadTGA: invalid size\n");
438 PrintTargaHeader(&targa_header);
439 return NULL;
440 }
441
442 memset(palettei, 0, sizeof(palettei));
443
444 // advance to end of header
445 fin = f + 18;
446
447 // skip TARGA image comment (usually 0 bytes)
448 fin += targa_header.id_length;
449
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
452 // the image data)
453 if (targa_header.colormap_type)
454 {
455 if (targa_header.colormap_length > 256)
456 {
457 Con_Print("LoadTGA: only up to 256 colormap_length supported\n");
458 PrintTargaHeader(&targa_header);
459 return NULL;
460 }
461 if (targa_header.colormap_index)
462 {
463 Con_Print("LoadTGA: colormap_index not supported\n");
464 PrintTargaHeader(&targa_header);
465 return NULL;
466 }
467 if (targa_header.colormap_size == 24)
468 {
469 for (x = 0;x < targa_header.colormap_length;x++)
470 {
471 bgra.b[0] = *fin++;
472 bgra.b[1] = *fin++;
473 bgra.b[2] = *fin++;
474 bgra.b[3] = 255;
475 palettei[x] = bgra.i;
476 }
477 }
478 else if (targa_header.colormap_size == 32)
479 {
480 memcpy(palettei, fin, targa_header.colormap_length*4);
481 fin += targa_header.colormap_length * 4;
482 }
483 else
484 {
485 Con_Print("LoadTGA: Only 32 and 24 bit colormap_size supported\n");
486 PrintTargaHeader(&targa_header);
487 return NULL;
488 }
489 }
490
491 // check our pixel_size restrictions according to image_type
492 switch (targa_header.image_type & ~8)
493 {
494 case 2:
495 if (targa_header.pixel_size != 24 && targa_header.pixel_size != 32)
496 {
497 Con_Print("LoadTGA: only 24bit and 32bit pixel sizes supported for type 2 and type 10 images\n");
498 PrintTargaHeader(&targa_header);
499 return NULL;
500 }
501 break;
502 case 3:
503 // set up a palette to make the loader easier
504 for (x = 0;x < 256;x++)
505 {
506 bgra.b[0] = bgra.b[1] = bgra.b[2] = x;
507 bgra.b[3] = 255;
508 palettei[x] = bgra.i;
509 }
510 // fall through to colormap case
511 case 1:
512 if (targa_header.pixel_size != 8)
513 {
514 Con_Print("LoadTGA: only 8bit pixel size for type 1, 3, 9, and 11 images supported\n");
515 PrintTargaHeader(&targa_header);
516 return NULL;
517 }
518 break;
519 default:
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);
522 return NULL;
523 }
524
525 if (targa_header.attributes & 0x10)
526 {
527 Con_Print("LoadTGA: origin must be in top left or bottom left, top right and bottom right are not supported\n");
528 return NULL;
529 }
530
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)
534 {
535 Con_Print("LoadTGA: only 0 or 8 attribute (alpha) bits supported\n");
536 return NULL;
537 }
538
539 image_buffer = (unsigned char *)Mem_Alloc(tempmempool, image_width * image_height * 4);
540 if (!image_buffer)
541 {
542 Con_Printf("LoadTGA: not enough memory for %i by %i image\n", image_width, image_height);
543 return NULL;
544 }
545
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)
548 {
549 pixbufi = (unsigned int*)image_buffer + (image_height - 1)*image_width;
550 row_inci = -image_width*2;
551 }
552 else
553 {
554 pixbufi = (unsigned int*)image_buffer;
555 row_inci = 0;
556 }
557
558 pix_inc = 1;
559 if ((targa_header.image_type & ~8) == 2)
560 pix_inc = (targa_header.pixel_size + 7) / 8;
561 switch (targa_header.image_type)
562 {
563 case 1: // colormapped, uncompressed
564 case 3: // greyscale, uncompressed
565 if (fin + image_width * image_height * pix_inc > enddata)
566 break;
567 for (y = 0;y < image_height;y++, pixbufi += row_inci)
568 for (x = 0;x < image_width;x++)
569 *pixbufi++ = palettei[*fin++];
570 break;
571 case 2:
572 // BGR or BGRA, uncompressed
573 if (fin + image_width * image_height * pix_inc > enddata)
574 break;
575 if (targa_header.pixel_size == 32 && alphabits)
576 {
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);
579 }
580 else
581 {
582 for (y = 0;y < image_height;y++, pixbufi += row_inci)
583 {
584 for (x = 0;x < image_width;x++, fin += pix_inc)
585 {
586 bgra.b[0] = fin[0];
587 bgra.b[1] = fin[1];
588 bgra.b[2] = fin[2];
589 bgra.b[3] = 255;
590 *pixbufi++ = bgra.i;
591 }
592 }
593 }
594 break;
595 case 9: // colormapped, RLE
596 case 11: // greyscale, RLE
597 for (y = 0;y < image_height;y++, pixbufi += row_inci)
598 {
599 for (x = 0;x < image_width;)
600 {
601 if (fin >= enddata)
602 break; // error - truncated file
603 runlen = *fin++;
604 if (runlen & 0x80)
605 {
606 // RLE - all pixels the same color
607 runlen += 1 - 0x80;
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++];
613 for (;runlen--;x++)
614 *pixbufi++ = bgra.i;
615 }
616 else
617 {
618 // uncompressed - all pixels different color
619 runlen++;
620 if (fin + pix_inc * runlen > enddata)
621 break; // error - truncated file
622 if (x + runlen > image_width)
623 break; // error - line exceeds width
624 for (;runlen--;x++)
625 *pixbufi++ = palettei[*fin++];
626 }
627 }
628
629 if (x != image_width)
630 {
631 // pixbufi is useless now
632 Con_Printf("LoadTGA: corrupt file\n");
633 break;
634 }
635 }
636 break;
637 case 10:
638 // BGR or BGRA, RLE
639 if (targa_header.pixel_size == 32 && alphabits)
640 {
641 for (y = 0;y < image_height;y++, pixbufi += row_inci)
642 {
643 for (x = 0;x < image_width;)
644 {
645 if (fin >= enddata)
646 break; // error - truncated file
647 runlen = *fin++;
648 if (runlen & 0x80)
649 {
650 // RLE - all pixels the same color
651 runlen += 1 - 0x80;
652 if (fin + pix_inc > enddata)
653 break; // error - truncated file
654 if (x + runlen > image_width)
655 break; // error - line exceeds width
656 bgra.b[0] = fin[0];
657 bgra.b[1] = fin[1];
658 bgra.b[2] = fin[2];
659 bgra.b[3] = fin[3];
660 fin += pix_inc;
661 for (;runlen--;x++)
662 *pixbufi++ = bgra.i;
663 }
664 else
665 {
666 // uncompressed - all pixels different color
667 runlen++;
668 if (fin + pix_inc * runlen > enddata)
669 break; // error - truncated file
670 if (x + runlen > image_width)
671 break; // error - line exceeds width
672 for (;runlen--;x++)
673 {
674 bgra.b[0] = fin[0];
675 bgra.b[1] = fin[1];
676 bgra.b[2] = fin[2];
677 bgra.b[3] = fin[3];
678 fin += pix_inc;
679 *pixbufi++ = bgra.i;
680 }
681 }
682 }
683
684 if (x != image_width)
685 {
686 // pixbufi is useless now
687 Con_Printf("LoadTGA: corrupt file\n");
688 break;
689 }
690 }
691 }
692 else
693 {
694 for (y = 0;y < image_height;y++, pixbufi += row_inci)
695 {
696 for (x = 0;x < image_width;)
697 {
698 if (fin >= enddata)
699 break; // error - truncated file
700 runlen = *fin++;
701 if (runlen & 0x80)
702 {
703 // RLE - all pixels the same color
704 runlen += 1 - 0x80;
705 if (fin + pix_inc > enddata)
706 break; // error - truncated file
707 if (x + runlen > image_width)
708 break; // error - line exceeds width
709 bgra.b[0] = fin[0];
710 bgra.b[1] = fin[1];
711 bgra.b[2] = fin[2];
712 bgra.b[3] = 255;
713 fin += pix_inc;
714 for (;runlen--;x++)
715 *pixbufi++ = bgra.i;
716 }
717 else
718 {
719 // uncompressed - all pixels different color
720 runlen++;
721 if (fin + pix_inc * runlen > enddata)
722 break; // error - truncated file
723 if (x + runlen > image_width)
724 break; // error - line exceeds width
725 for (;runlen--;x++)
726 {
727 bgra.b[0] = fin[0];
728 bgra.b[1] = fin[1];
729 bgra.b[2] = fin[2];
730 bgra.b[3] = 255;
731 fin += pix_inc;
732 *pixbufi++ = bgra.i;
733 }
734 }
735 }
736
737 if (x != image_width)
738 {
739 // pixbufi is useless now
740 Con_Printf("LoadTGA: corrupt file\n");
741 break;
742 }
743 }
744 }
745 break;
746 default:
747 // unknown image_type
748 break;
749 }
750
751 return image_buffer;
752}
void Con_Print(const char *msg)
Prints to all appropriate console targets, and adds timestamps.
Definition console.c:1504
static void PrintTargaHeader(TargaHeader *t)
Definition image.c:391
unsigned char attributes
Definition image.c:387
unsigned char colormap_size
Definition image.c:385
unsigned short width
Definition image.c:386
unsigned short height
Definition image.c:386
unsigned short x_origin
Definition image.c:386
unsigned char pixel_size
Definition image.c:387
unsigned char colormap_type
Definition image.c:383
unsigned short colormap_length
Definition image.c:384
unsigned short colormap_index
Definition image.c:384
unsigned char image_type
Definition image.c:383
unsigned char id_length
Definition image.c:383
unsigned short y_origin
Definition image.c:386

References TargaHeader::attributes, b, TargaHeader::colormap_index, TargaHeader::colormap_length, TargaHeader::colormap_size, TargaHeader::colormap_type, Con_Print(), Con_Printf(), f, TargaHeader::height, i, TargaHeader::id_length, image_height, TargaHeader::image_type, image_width, Mem_Alloc, NULL, TargaHeader::pixel_size, PrintTargaHeader(), tempmempool, TargaHeader::width, x, TargaHeader::x_origin, y, and TargaHeader::y_origin.

Referenced by Image_GenerateConChars().

◆ LoadWAL_GetMetadata()

qbool LoadWAL_GetMetadata ( const unsigned char * f,
int filesize,
int * retwidth,
int * retheight,
int * retflags,
int * retvalue,
int * retcontents,
char * retanimname32c )

Definition at line 800 of file image.c.

801{
802 const q2wal_t *inwal = (const q2wal_t *)f;
803
804 if (filesize < (int) sizeof(q2wal_t))
805 {
806 Con_Print("LoadWAL: invalid WAL file\n");
807 if (retwidth)
808 *retwidth = 16;
809 if (retheight)
810 *retheight = 16;
811 if (retflags)
812 *retflags = 0;
813 if (retvalue)
814 *retvalue = 0;
815 if (retcontents)
816 *retcontents = 0;
817 if (retanimname32c)
818 memset(retanimname32c, 0, 32);
819 return false;
820 }
821
822 if (retwidth)
823 *retwidth = LittleLong(inwal->width);
824 if (retheight)
825 *retheight = LittleLong(inwal->height);
826 if (retflags)
827 *retflags = LittleLong(inwal->flags);
828 if (retvalue)
829 *retvalue = LittleLong(inwal->value);
830 if (retcontents)
831 *retcontents = LittleLong(inwal->contents);
832 if (retanimname32c)
833 {
834 memcpy(retanimname32c, inwal->animname, 32);
835 retanimname32c[31] = 0;
836 }
837 return true;
838}
#define LittleLong(l)
Definition common.h:92
int value
Definition image.c:762
int flags
Definition image.c:760
unsigned width
Definition image.c:757
char animname[32]
Definition image.c:759
unsigned height
Definition image.c:757
int contents
Definition image.c:761

References q2wal_t::animname, Con_Print(), q2wal_t::contents, f, q2wal_t::flags, q2wal_t::height, LittleLong, q2wal_t::value, and q2wal_t::width.

Referenced by Mod_Q2BSP_LoadTexinfo().

Variable Documentation

◆ image_height

int image_height

Definition at line 10 of file image.h.

◆ image_width

◆ r_fixtrans_auto

cvar_t r_fixtrans_auto
extern

Definition at line 42 of file cl_cmd.c.

42{CF_CLIENT, "r_fixtrans_auto", "0", "automatically fixtrans textures (when set to 2, it also saves the fixed versions to a fixtrans directory)"};
#define CF_CLIENT
cvar/command that only the client can change/execute
Definition cmd.h:48

Referenced by CL_InitCommands(), and loadimagepixelsbgra().