X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=gl_draw.c;h=7509ea46e907ee13011d656d526cbf21cd7f0a47;hp=d2e627d7a8f9420c08d1d0ba053057ccebe80c9e;hb=66ba61eab96c3f91e48a2768238c4096efbdb063;hpb=dc9c3c045d3685a2e32ace6cd30efe05114897fc diff --git a/gl_draw.c b/gl_draw.c index d2e627d7..7509ea46 100644 --- a/gl_draw.c +++ b/gl_draw.c @@ -20,13 +20,18 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "quakedef.h" #include "image.h" +#include "wad.h" + +#include "cl_video.h" + static rtexture_t *char_texture; //============================================================================= /* Support Routines */ -#define MAX_CACHED_PICS 256 +#define FONT_FILESIZE 13468 +#define MAX_CACHED_PICS 1024 #define CACHEPICHASHSIZE 256 static cachepic_t *cachepichash[CACHEPICHASHSIZE]; static cachepic_t cachepics[MAX_CACHED_PICS]; @@ -34,8 +39,64 @@ static int numcachepics; static rtexturepool_t *drawtexturepool; -static qbyte pointerimage[256] = +static unsigned char concharimage[FONT_FILESIZE] = +{ +#include "lhfont.h" +}; + +static rtexture_t *draw_generateconchars(void) { + int i; + unsigned char buffer[65536][4], *data = NULL; + double random; + + 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 + (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 + (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 + (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 + (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]; + } + +#if 0 + Image_WriteTGARGBA ("gfx/generated_conchars.tga", 256, 256, &buffer[0][0]); +#endif + + Mem_Free(data); + return R_LoadTexture2D(drawtexturepool, "conchars", 256, 256, &buffer[0][0], TEXTYPE_RGBA, TEXF_ALPHA | TEXF_PRECACHE, NULL); +} + +static char *pointerimage = "333333332......." "26777761........" "2655541........." @@ -52,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] == '.') @@ -79,9 +140,9 @@ static rtexture_t *draw_generatemousepointer(void) } // must match NUMCROSSHAIRS in r_crosshairs.c -#define NUMCROSSHAIRS 5 +#define NUMCROSSHAIRS 6 -static qbyte *crosshairtexdata[NUMCROSSHAIRS] = +static char *crosshairtexdata[NUMCROSSHAIRS] = { "................" "................" @@ -129,10 +190,10 @@ static qbyte *crosshairtexdata[NUMCROSSHAIRS] = ".......44......." ".......44......." "................" + "................" ".......77......." ".......77......." "................" - "................" , "................" "................" @@ -148,7 +209,7 @@ static qbyte *crosshairtexdata[NUMCROSSHAIRS] = "........7......." "........7......." "........7......." - "................" + "........7......." "................" , "................" @@ -167,13 +228,30 @@ static qbyte *crosshairtexdata[NUMCROSSHAIRS] = "................" "................" "................" + , + "................" + "................" + "................" + "................" + "................" + "................" + "................" + ".......55......." + ".......55......." + "................" + "................" + "................" + "................" + "................" + "................" + "................" }; 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++) { @@ -189,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); @@ -197,10 +275,24 @@ static rtexture_t *draw_generatecrosshair(int num) static rtexture_t *draw_generateditherpattern(void) { - qbyte data[16]; +#if 1 + int x, y; + unsigned char data[8*8*4]; + for (y = 0;y < 8;y++) + { + for (x = 0;x < 8;x++) + { + data[(y*8+x)*4+0] = data[(y*8+x)*4+1] = data[(y*8+x)*4+2] = ((x^y) & 4) ? 255 : 0; + data[(y*8+x)*4+3] = 255; + } + } + return R_LoadTexture2D(drawtexturepool, "ditherpattern", 8, 8, data, TEXTYPE_RGBA, TEXF_FORCENEAREST | TEXF_PRECACHE, NULL); +#else + 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); +#endif } /* @@ -209,67 +301,95 @@ Draw_CachePic ================ */ // FIXME: move this to client somehow -cachepic_t *Draw_CachePic (char *path) +cachepic_t *Draw_CachePic (const char *path, qboolean persistent) { int i, crc, hashkey; cachepic_t *pic; qpic_t *p; + int flags; + + if (!strncmp(CLVIDEOPREFIX, path, sizeof(CLVIDEOPREFIX) - 1)) - crc = CRC_Block(path, strlen(path)); + { + clvideo_t *video; + + video = CL_GetVideo(path); + if( video ) + return &video->cpif; + } + + 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)) return pic; if (numcachepics == MAX_CACHED_PICS) - Sys_Error ("numcachepics == MAX_CACHED_PICS"); + { + Con_Printf ("Draw_CachePic: numcachepics == MAX_CACHED_PICS\n"); + // FIXME: support NULL in callers? + return cachepics; // return the first one + } pic = cachepics + (numcachepics++); - strcpy (pic->name, path); + strlcpy (pic->name, path, sizeof(pic->name)); // link into list pic->chain = cachepichash[hashkey]; cachepichash[hashkey] = pic; + flags = TEXF_ALPHA; + if (persistent) + flags |= TEXF_PRECACHE; + if (!strcmp(path, "gfx/colorcontrol/ditherpattern")) + flags |= TEXF_CLAMP; + // load the pic from disk - pic->tex = loadtextureimage(drawtexturepool, path, 0, 0, false, TEXF_ALPHA | TEXF_PRECACHE); + pic->tex = loadtextureimage(drawtexturepool, path, 0, 0, false, flags); if (pic->tex == NULL && !strncmp(path, "gfx/", 4)) { // compatibility with older versions - pic->tex = loadtextureimage(drawtexturepool, path + 4, 0, 0, false, TEXF_ALPHA | TEXF_PRECACHE); + 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; - pic->tex = R_LoadTexture2D(drawtexturepool, path, 128, 128, pix, TEXTYPE_PALETTE, TEXF_ALPHA | TEXF_PRECACHE, palette_complete); + pic->tex = R_LoadTexture2D(drawtexturepool, path, 128, 128, pix, TEXTYPE_PALETTE, flags, palette_complete); } else - pic->tex = R_LoadTexture2D(drawtexturepool, path, p->width, p->height, p->data, TEXTYPE_PALETTE, TEXF_ALPHA | TEXF_PRECACHE, palette_complete); + pic->tex = R_LoadTexture2D(drawtexturepool, path, p->width, p->height, p->data, TEXTYPE_PALETTE, flags, palette_complete); } } - if (pic->tex == NULL && !strcmp(path, "ui/mousepointer.tga")) + + if (pic->tex == NULL && !strcmp(path, "gfx/conchars")) + pic->tex = draw_generateconchars(); + if (pic->tex == NULL && !strcmp(path, "ui/mousepointer")) + pic->tex = draw_generatemousepointer(); + 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/colorcontrol/ditherpattern.tga")) + if (pic->tex == NULL && !strcmp(path, "gfx/crosshair6")) + pic->tex = draw_generatecrosshair(5); + if (pic->tex == NULL && !strcmp(path, "gfx/colorcontrol/ditherpattern")) pic->tex = draw_generateditherpattern(); if (pic->tex == NULL) { - Con_Printf ("Draw_CachePic: failed to load %s\n", path); - pic->tex = r_notexture; + Con_Printf("Draw_CachePic: failed to load %s\n", path); + pic->tex = r_texture_notexture; } pic->width = R_TextureWidth(pic->tex); @@ -277,12 +397,12 @@ cachepic_t *Draw_CachePic (char *path) return pic; } -cachepic_t *Draw_NewPic(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)) @@ -301,7 +421,11 @@ cachepic_t *Draw_NewPic(char *picname, int width, int height, int alpha, qbyte * if (pic == NULL) { if (numcachepics == MAX_CACHED_PICS) - Sys_Error ("numcachepics == MAX_CACHED_PICS"); + { + Con_Printf ("Draw_NewPic: numcachepics == MAX_CACHED_PICS\n"); + // FIXME: support NULL in callers? + return cachepics; // return the first one + } pic = cachepics + (numcachepics++); strcpy (pic->name, picname); // link into list @@ -318,17 +442,17 @@ cachepic_t *Draw_NewPic(char *picname, int width, int height, int alpha, qbyte * return pic; } -void Draw_FreePic(char *picname) +void Draw_FreePic(const char *picname) { int crc; 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) { - if (!strcmp (picname, pic->name)) + if (!strcmp (picname, pic->name) && pic->tex) { R_FreeTexture(pic->tex); pic->width = 0; @@ -350,7 +474,7 @@ static void gl_draw_start(void) numcachepics = 0; memset(cachepichash, 0, sizeof(cachepichash)); - char_texture = Draw_CachePic("gfx/conchars")->tex; + char_texture = Draw_CachePic("gfx/conchars", true)->tex; } static void gl_draw_shutdown(void) @@ -378,11 +502,11 @@ float blendvertex3f[9] = {-5000, -5000, 10, 10000, -5000, 10, -5000, 10000, 10}; int quadelements[768]; void R_DrawQueue(void) { - int pos, num, chartexnum, overbright, texnum, additive, batch; + int pos, num, chartexnum, texnum, batch; float x, y, w, h, s, t, u, v, *av, *at, c[4]; cachepic_t *pic; drawqueue_t *dq; - char *str, *currentpic; + char *str; int batchcount; unsigned int color; drawqueuemesh_t *mesh; @@ -404,38 +528,52 @@ void R_DrawQueue(void) quadelements[pos++] = num + 3; } } - GL_SetupView_ViewPort(vid.realx, vid.realy, vid.realwidth, vid.realheight); - GL_SetupView_Mode_Ortho(0, 0, vid.conwidth, vid.conheight, -10, 100); + + r_view_width = bound(0, r_refdef.width, vid.width); + r_view_height = bound(0, r_refdef.height, vid.height); + r_view_depth = 1; + r_view_x = bound(0, r_refdef.x, vid.width - r_refdef.width); + r_view_y = bound(0, r_refdef.y, vid.height - r_refdef.height); + r_view_z = 0; + r_view_matrix = r_refdef.viewentitymatrix; + GL_ColorMask(r_refdef.colormask[0], r_refdef.colormask[1], r_refdef.colormask[2], 1); + + qglViewport(r_view_x, vid.height - (r_view_y + r_view_height), r_view_width, r_view_height); + GL_SetupView_Mode_Ortho(0, 0, vid_conwidth.integer, vid_conheight.integer, -10, 100); qglDepthFunc(GL_LEQUAL); - R_Mesh_Start(); R_Mesh_Matrix(&r_identitymatrix); chartexnum = R_GetTexture(char_texture); memset(&m, 0, sizeof(m)); - m.tex[0] = 0; - R_Mesh_State_Texture(&m); - currentpic = ""; pic = NULL; texnum = 0; color = 0; + GL_Color(1,1,1,1); - overbright = v_overbrightbits.integer; batch = false; batchcount = 0; for (pos = 0;pos < r_refdef.drawqueuesize;pos += ((drawqueue_t *)(r_refdef.drawqueue + pos))->size) { dq = (drawqueue_t *)(r_refdef.drawqueue + pos); - additive = (dq->flags & DRAWFLAG_ADDITIVE) != 0; color = dq->color; - GL_BlendFunc(GL_SRC_ALPHA, additive ? GL_ONE : GL_ONE_MINUS_SRC_ALPHA); + + if(dq->flags == DRAWFLAG_ADDITIVE) + GL_BlendFunc(GL_SRC_ALPHA, GL_ONE); + else if(dq->flags == DRAWFLAG_MODULATE) + GL_BlendFunc(GL_DST_COLOR, GL_ZERO); + else if(dq->flags == DRAWFLAG_2XMODULATE) + GL_BlendFunc(GL_DST_COLOR,GL_SRC_COLOR); + else + GL_BlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); + GL_DepthMask(true); GL_DepthTest(false); - c[0] = (float) ((color >> 24) & 0xFF) * (1.0f / 255.0f) * r_colorscale; - c[1] = (float) ((color >> 16) & 0xFF) * (1.0f / 255.0f) * r_colorscale; - c[2] = (float) ((color >> 8) & 0xFF) * (1.0f / 255.0f) * r_colorscale; + c[0] = (float) ((color >> 24) & 0xFF) * (1.0f / 255.0f); + c[1] = (float) ((color >> 16) & 0xFF) * (1.0f / 255.0f); + c[2] = (float) ((color >> 8) & 0xFF) * (1.0f / 255.0f); c[3] = (float) ( color & 0xFF) * (1.0f / 255.0f); x = dq->x; y = dq->y; @@ -447,18 +585,15 @@ void R_DrawQueue(void) case DRAWQUEUE_STRING: GL_Color(c[0], c[1], c[2], c[3]); str = (char *)(dq + 1); - if (strcmp("gfx/conchars", currentpic)) - { - currentpic = "gfx/conchars"; - m.tex[0] = chartexnum; - } batchcount = 0; - GL_VertexPointer(varray_vertex3f); + m.pointer_vertex = varray_vertex3f; + m.pointer_color = NULL; m.pointer_texcoord[0] = varray_texcoord2f[0]; - R_Mesh_State_Texture(&m); + m.tex[0] = chartexnum; + R_Mesh_State(&m); at = varray_texcoord2f[0]; av = varray_vertex3f; - while ((num = *str++) && x < vid.conwidth) + while ((num = *str++) && x < vid_conwidth.integer) { if (num != ' ') { @@ -479,7 +614,9 @@ void R_DrawQueue(void) batchcount++; if (batchcount >= 128) { - R_Mesh_Draw(batchcount * 4, batchcount * 2, quadelements); + GL_LockArrays(0, batchcount * 4); + R_Mesh_Draw(0, batchcount * 4, batchcount * 2, quadelements); + GL_LockArrays(0, 0); batchcount = 0; at = varray_texcoord2f[0]; av = varray_vertex3f; @@ -488,17 +625,42 @@ void R_DrawQueue(void) x += w; } if (batchcount > 0) - R_Mesh_Draw(batchcount * 4, batchcount * 2, quadelements); + { + GL_LockArrays(0, batchcount * 4); + R_Mesh_Draw(0, batchcount * 4, batchcount * 2, quadelements); + GL_LockArrays(0, 0); + } break; case DRAWQUEUE_MESH: - mesh = (void *)(dq + 1); - GL_VertexPointer(mesh->vertex3f); - GL_ColorPointer(mesh->color4f); + mesh = (drawqueuemesh_t *)(dq + 1); + m.pointer_vertex = mesh->data_vertex3f; + m.pointer_color = mesh->data_color4f; + m.pointer_texcoord[0] = mesh->data_texcoord2f; m.tex[0] = R_GetTexture(mesh->texture); - m.pointer_texcoord[0] = mesh->texcoord2f; - R_Mesh_State_Texture(&m); - R_Mesh_Draw(mesh->numvertices, mesh->numtriangles, mesh->element3i); - currentpic = "\0"; + if (!m.tex[0]) + m.pointer_texcoord[0] = NULL; + R_Mesh_State(&m); + GL_LockArrays(0, mesh->num_vertices); + R_Mesh_Draw(0, mesh->num_vertices, mesh->num_triangles, mesh->data_element3i); + GL_LockArrays(0, 0); + break; + case DRAWQUEUE_SETCLIP: + { + // We have to convert the con coords into real coords + int x , y, width, height; + x = dq->x * ((float)vid.width / vid_conwidth.integer); + // OGL uses top to bottom + y = dq->y * ((float) vid.height / vid_conheight.integer); + width = dq->scalex * ((float)vid.width / vid_conwidth.integer); + height = dq->scaley * ((float)vid.height / vid_conheight.integer); + + GL_Scissor(x, y, width, height); + + GL_ScissorTest(true); + } + break; + case DRAWQUEUE_RESETCLIP: + GL_ScissorTest(false); break; } } @@ -507,7 +669,8 @@ void R_DrawQueue(void) { // all the blends ignore depth memset(&m, 0, sizeof(m)); - R_Mesh_State_Texture(&m); + m.pointer_vertex = blendvertex3f; + R_Mesh_State(&m); GL_DepthMask(true); GL_DepthTest(false); if (v_color_enable.integer) @@ -518,15 +681,13 @@ void R_DrawQueue(void) } else c[0] = c[1] = c[2] = v_contrast.value; - VectorScale(c, (float) (1 << v_overbrightbits.integer), c); if (c[0] >= 1.01f || c[1] >= 1.01f || c[2] >= 1.01f) { GL_BlendFunc(GL_DST_COLOR, GL_ONE); - GL_VertexPointer(blendvertex3f); while (c[0] >= 1.01f || c[1] >= 1.01f || c[2] >= 1.01f) { GL_Color(bound(0, c[0] - 1, 1), bound(0, c[1] - 1, 1), bound(0, c[2] - 1, 1), 1); - R_Mesh_Draw(3, 1, polygonelements); + R_Mesh_Draw(0, 3, 1, polygonelements); VectorScale(c, 0.5, c); } } @@ -541,11 +702,9 @@ void R_DrawQueue(void) if (c[0] >= 0.01f || c[1] >= 0.01f || c[2] >= 0.01f) { GL_BlendFunc(GL_ONE, GL_ONE); - GL_VertexPointer(blendvertex3f); GL_Color(c[0], c[1], c[2], 1); - R_Mesh_Draw(3, 1, polygonelements); + R_Mesh_Draw(0, 3, 1, polygonelements); } } - R_Mesh_Finish(); }