X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=gl_draw.c;h=41836e13a3199864547c879cfb6868359d82b4c4;hb=4d7f4863c87e02a4101587d6e3efce96697cf9b9;hp=ecd5154d6fd999a597d5e0499cd971a381ffba15;hpb=3779acfc88fe7c276d68d21484116cee06cee9c8;p=xonotic%2Fdarkplaces.git diff --git a/gl_draw.c b/gl_draw.c index ecd5154d..41836e13 100644 --- a/gl_draw.c +++ b/gl_draw.c @@ -31,7 +31,7 @@ static rtexture_t *char_texture; /* Support Routines */ #define FONT_FILESIZE 13468 -#define MAX_CACHED_PICS 256 +#define MAX_CACHED_PICS 1024 #define CACHEPICHASHSIZE 256 static cachepic_t *cachepichash[CACHEPICHASHSIZE]; static cachepic_t cachepics[MAX_CACHED_PICS]; @@ -39,56 +39,52 @@ static int numcachepics; static rtexturepool_t *drawtexturepool; -static qbyte concharimage[FONT_FILESIZE] = +static unsigned char concharimage[FONT_FILESIZE] = { #include "lhfont.h" }; -extern qbyte *LoadTGA (qbyte *f, int matchwidth, int matchheight); - static rtexture_t *draw_generateconchars(void) { int i; - qbyte buffer[65536][4], *data = NULL; + unsigned char buffer[65536][4], *data = NULL; double random; - fs_filesize = FONT_FILESIZE; - data = LoadTGA (concharimage, 256, 256); - fs_filesize = -1; + data = LoadTGA (concharimage, FONT_FILESIZE, 256, 256); // Gold numbers for (i = 0;i < 8192;i++) { random = lhrandom (0.0,1.0); - buffer[i][0] = 83 + (qbyte)(random * 64); - buffer[i][1] = 71 + (qbyte)(random * 32); - buffer[i][2] = 23 + (qbyte)(random * 16); + buffer[i][0] = 83 + (unsigned char)(random * 64); + buffer[i][1] = 71 + (unsigned char)(random * 32); + buffer[i][2] = 23 + (unsigned char)(random * 16); buffer[i][3] = data[i*4+0]; } // White chars for (i = 8192;i < 32768;i++) { random = lhrandom (0.0,1.0); - buffer[i][0] = 95 + (qbyte)(random * 64); - buffer[i][1] = 95 + (qbyte)(random * 64); - buffer[i][2] = 95 + (qbyte)(random * 64); + buffer[i][0] = 95 + (unsigned char)(random * 64); + buffer[i][1] = 95 + (unsigned char)(random * 64); + buffer[i][2] = 95 + (unsigned char)(random * 64); buffer[i][3] = data[i*4+0]; } // Gold numbers for (i = 32768;i < 40960;i++) { random = lhrandom (0.0,1.0); - buffer[i][0] = 83 + (qbyte)(random * 64); - buffer[i][1] = 71 + (qbyte)(random * 32); - buffer[i][2] = 23 + (qbyte)(random * 16); + buffer[i][0] = 83 + (unsigned char)(random * 64); + buffer[i][1] = 71 + (unsigned char)(random * 32); + buffer[i][2] = 23 + (unsigned char)(random * 16); buffer[i][3] = data[i*4+0]; } // Red chars for (i = 40960;i < 65536;i++) { random = lhrandom (0.0,1.0); - buffer[i][0] = 96 + (qbyte)(random * 64); - buffer[i][1] = 43 + (qbyte)(random * 32); - buffer[i][2] = 27 + (qbyte)(random * 32); + buffer[i][0] = 96 + (unsigned char)(random * 64); + buffer[i][1] = 43 + (unsigned char)(random * 32); + buffer[i][2] = 27 + (unsigned char)(random * 32); buffer[i][3] = data[i*4+0]; } @@ -100,8 +96,7 @@ static rtexture_t *draw_generateconchars(void) return R_LoadTexture2D(drawtexturepool, "conchars", 256, 256, &buffer[0][0], TEXTYPE_RGBA, TEXF_ALPHA | TEXF_PRECACHE, NULL); } -static qbyte pointerimage[256] = -{ +static char *pointerimage = "333333332......." "26777761........" "2655541........." @@ -118,12 +113,12 @@ static qbyte pointerimage[256] = "................" "................" "................" -}; +; static rtexture_t *draw_generatemousepointer(void) { int i; - qbyte buffer[256][4]; + unsigned char buffer[256][4]; for (i = 0;i < 256;i++) { if (pointerimage[i] == '.') @@ -147,7 +142,7 @@ static rtexture_t *draw_generatemousepointer(void) // must match NUMCROSSHAIRS in r_crosshairs.c #define NUMCROSSHAIRS 6 -static qbyte *crosshairtexdata[NUMCROSSHAIRS] = +static char *crosshairtexdata[NUMCROSSHAIRS] = { "................" "................" @@ -256,7 +251,7 @@ static rtexture_t *draw_generatecrosshair(int num) { int i; char *in; - qbyte data[16*16][4]; + unsigned char data[16*16][4]; in = crosshairtexdata[num]; for (i = 0;i < 16*16;i++) { @@ -272,7 +267,7 @@ static rtexture_t *draw_generatecrosshair(int num) data[i][0] = 255; data[i][1] = 255; data[i][2] = 255; - data[i][3] = (qbyte) ((int) (in[i] - '0') * 255 / 7); + data[i][3] = (unsigned char) ((int) (in[i] - '0') * 255 / 7); } } return R_LoadTexture2D(drawtexturepool, va("crosshair%i", num), 16, 16, &data[0][0], TEXTYPE_RGBA, TEXF_ALPHA | TEXF_PRECACHE, NULL); @@ -282,7 +277,7 @@ static rtexture_t *draw_generateditherpattern(void) { #if 1 int x, y; - qbyte data[8*8*4]; + unsigned char data[8*8*4]; for (y = 0;y < 8;y++) { for (x = 0;x < 8;x++) @@ -293,7 +288,7 @@ static rtexture_t *draw_generateditherpattern(void) } return R_LoadTexture2D(drawtexturepool, "ditherpattern", 8, 8, data, TEXTYPE_RGBA, TEXF_FORCENEAREST | TEXF_PRECACHE, NULL); #else - qbyte data[16]; + unsigned char data[16]; memset(data, 255, sizeof(data)); data[0] = data[1] = data[2] = data[12] = data[13] = data[14] = 0; return R_LoadTexture2D(drawtexturepool, "ditherpattern", 2, 2, data, TEXTYPE_RGBA, TEXF_FORCENEAREST | TEXF_PRECACHE, NULL); @@ -323,7 +318,7 @@ cachepic_t *Draw_CachePic (const char *path, qboolean persistent) return &video->cpif; } - crc = CRC_Block(path, strlen(path)); + crc = CRC_Block((unsigned char *)path, strlen(path)); hashkey = ((crc >> 8) ^ crc) % CACHEPICHASHSIZE; for (pic = cachepichash[hashkey];pic;pic = pic->chain) if (!strcmp (path, pic->name)) @@ -331,7 +326,7 @@ cachepic_t *Draw_CachePic (const char *path, qboolean persistent) if (numcachepics == MAX_CACHED_PICS) { - Con_Printf ("Draw_CachePic: numcachepics == MAX_CACHED_PICS"); + Con_Printf ("Draw_CachePic: numcachepics == MAX_CACHED_PICS\n"); // FIXME: support NULL in callers? return cachepics; // return the first one } @@ -344,7 +339,7 @@ cachepic_t *Draw_CachePic (const char *path, qboolean persistent) flags = TEXF_ALPHA; if (persistent) flags |= TEXF_PRECACHE; - if (!strcmp(path, "gfx/colorcontrol/ditherpattern.tga")) + if (!strcmp(path, "gfx/colorcontrol/ditherpattern")) flags |= TEXF_CLAMP; // load the pic from disk @@ -354,13 +349,13 @@ cachepic_t *Draw_CachePic (const char *path, qboolean persistent) // compatibility with older versions pic->tex = loadtextureimage(drawtexturepool, path + 4, 0, 0, false, flags); // failed to find gfx/whatever.tga or similar, try the wad - if (pic->tex == NULL && (p = W_GetLumpName (path + 4))) + if (pic->tex == NULL && (p = (qpic_t *)W_GetLumpName (path + 4))) { if (!strcmp(path, "gfx/conchars")) { - qbyte *pix; + unsigned char *pix; // conchars is a raw image and with the wrong transparent color - pix = (qbyte *)p; + pix = (unsigned char *)p; for (i = 0;i < 128 * 128;i++) if (pix[i] == 0) pix[i] = 255; @@ -373,23 +368,23 @@ cachepic_t *Draw_CachePic (const char *path, qboolean persistent) if (pic->tex == NULL && !strcmp(path, "gfx/conchars")) pic->tex = draw_generateconchars(); - if (pic->tex == NULL && !strcmp(path, "ui/mousepointer.tga")) + if (pic->tex == NULL && !strcmp(path, "ui/mousepointer")) pic->tex = draw_generatemousepointer(); - if (pic->tex == NULL && !strcmp(path, "gfx/prydoncursor001.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/prydoncursor001")) pic->tex = draw_generatemousepointer(); - if (pic->tex == NULL && !strcmp(path, "gfx/crosshair1.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/crosshair1")) pic->tex = draw_generatecrosshair(0); - if (pic->tex == NULL && !strcmp(path, "gfx/crosshair2.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/crosshair2")) pic->tex = draw_generatecrosshair(1); - if (pic->tex == NULL && !strcmp(path, "gfx/crosshair3.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/crosshair3")) pic->tex = draw_generatecrosshair(2); - if (pic->tex == NULL && !strcmp(path, "gfx/crosshair4.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/crosshair4")) pic->tex = draw_generatecrosshair(3); - if (pic->tex == NULL && !strcmp(path, "gfx/crosshair5.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/crosshair5")) pic->tex = draw_generatecrosshair(4); - if (pic->tex == NULL && !strcmp(path, "gfx/crosshair6.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/crosshair6")) pic->tex = draw_generatecrosshair(5); - if (pic->tex == NULL && !strcmp(path, "gfx/colorcontrol/ditherpattern.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/colorcontrol/ditherpattern")) pic->tex = draw_generateditherpattern(); if (pic->tex == NULL) { @@ -402,12 +397,12 @@ cachepic_t *Draw_CachePic (const char *path, qboolean persistent) return pic; } -cachepic_t *Draw_NewPic(const char *picname, int width, int height, int alpha, qbyte *pixels) +cachepic_t *Draw_NewPic(const char *picname, int width, int height, int alpha, unsigned char *pixels) { int crc, hashkey; cachepic_t *pic; - crc = CRC_Block(picname, strlen(picname)); + crc = CRC_Block((unsigned char *)picname, strlen(picname)); hashkey = ((crc >> 8) ^ crc) % CACHEPICHASHSIZE; for (pic = cachepichash[hashkey];pic;pic = pic->chain) if (!strcmp (picname, pic->name)) @@ -427,7 +422,7 @@ cachepic_t *Draw_NewPic(const char *picname, int width, int height, int alpha, q { if (numcachepics == MAX_CACHED_PICS) { - Con_Printf ("Draw_NewPic: numcachepics == MAX_CACHED_PICS"); + Con_Printf ("Draw_NewPic: numcachepics == MAX_CACHED_PICS\n"); // FIXME: support NULL in callers? return cachepics; // return the first one } @@ -453,7 +448,7 @@ void Draw_FreePic(const char *picname) int hashkey; cachepic_t *pic; // this doesn't really free the pic, but does free it's texture - crc = CRC_Block(picname, strlen(picname)); + crc = CRC_Block((unsigned char *)picname, strlen(picname)); hashkey = ((crc >> 8) ^ crc) % CACHEPICHASHSIZE; for (pic = cachepichash[hashkey];pic;pic = pic->chain) { @@ -639,7 +634,7 @@ void R_DrawQueue(void) } break; case DRAWQUEUE_MESH: - mesh = (void *)(dq + 1); + mesh = (drawqueuemesh_t *)(dq + 1); m.pointer_vertex = mesh->data_vertex3f; m.pointer_color = mesh->data_color4f; m.pointer_texcoord[0] = mesh->data_texcoord2f;