]> icculus.org git repositories - btb/d2x.git/blob - arch/ogl/gr.c
use GL_RGB for non-transparent textures, and fix fonts not having transparent flag...
[btb/d2x.git] / arch / ogl / gr.c
1 /* $Id: gr.c,v 1.28 2004-05-22 09:15:15 btb Exp $ */
2 /*
3  *
4  * OGL video functions. - Added 9/15/99 Matthew Mueller
5  *
6  *
7  */
8
9 #ifdef HAVE_CONFIG_H
10 #include <conf.h>
11 #endif
12
13 #include <stdlib.h>
14 #include <stdio.h>
15 #include <string.h>
16 #ifdef _MSC_VER
17 #include <windows.h>
18 #endif
19
20 #if defined(__APPLE__) && defined(__MACH__)
21 //#include <OpenGL/gl.h>
22 #else
23 //#include <GL/gl.h>
24 #endif
25 #ifndef _MSC_VER
26 #include <unistd.h>
27 #endif
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <fcntl.h>
31 #include <errno.h>
32
33 #include "hudmsg.h"
34 #include "game.h"
35 #include "text.h"
36 #include "gr.h"
37 #include "gamefont.h"
38 #include "grdef.h"
39 #include "palette.h"
40 #include "u_mem.h"
41 #include "error.h"
42
43 #include "inferno.h"
44 #include "screens.h"
45
46 #include "strutil.h"
47 #include "mono.h"
48 #include "args.h"
49 #include "key.h"
50
51 #define DECLARE_VARS
52 #include "internal.h"
53 #if defined(__APPLE__) && defined(__MACH__)
54 #include <OpenGL/glu.h>
55 #undef GL_ARB_multitexture // hack!
56 #else
57 #include <GL/glu.h>
58 #endif
59
60 int ogl_voodoohack=0;
61
62 int gr_installed = 0;
63
64
65 void gr_palette_clear(); // Function prototype for gr_init;
66 int gl_initialized=0;
67 int gl_reticle = 0;
68
69 int ogl_fullscreen=0;
70
71 int gr_check_fullscreen(void){
72         return ogl_fullscreen;
73 }
74
75 void gr_do_fullscreen(int f){
76         if (ogl_voodoohack)
77                 ogl_fullscreen=1;//force fullscreen mode on voodoos.
78         else
79                 ogl_fullscreen=f;
80         if (gl_initialized){
81                 ogl_do_fullscreen_internal();
82         }
83 }
84
85 int gr_toggle_fullscreen(void){
86         gr_do_fullscreen(!ogl_fullscreen);
87         //      grd_curscreen->sc_mode=0;//hack to get it to reset screen mode
88         return ogl_fullscreen;
89 }
90
91 int arch_toggle_fullscreen_menu(void){
92         unsigned char *buf=NULL;
93
94         if (ogl_readpixels_ok){
95                 MALLOC(buf,unsigned char,grd_curscreen->sc_w*grd_curscreen->sc_h*3);
96                 glReadBuffer(GL_FRONT);
97                 glReadPixels(0,0,grd_curscreen->sc_w,grd_curscreen->sc_h,GL_RGB,GL_UNSIGNED_BYTE,buf);
98         }
99
100         gr_do_fullscreen(!ogl_fullscreen);
101
102         if (ogl_readpixels_ok){
103 //              glWritePixels(0,0,grd_curscreen->sc_w,grd_curscreen->sc_h,GL_RGB,GL_UNSIGNED_BYTE,buf);
104                 glRasterPos2f(0,0);
105                 glDrawPixels(grd_curscreen->sc_w,grd_curscreen->sc_h,GL_RGB,GL_UNSIGNED_BYTE,buf);
106                 free(buf);
107         }
108         //      grd_curscreen->sc_mode=0;//hack to get it to reset screen mode
109
110         return ogl_fullscreen;
111 }
112
113 void ogl_init_state(void){
114         /* select clearing (background) color   */
115         glClearColor(0.0, 0.0, 0.0, 0.0);
116         glShadeModel(GL_SMOOTH);
117
118         /* initialize viewing values */
119         glMatrixMode(GL_PROJECTION);
120         glLoadIdentity();
121         glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 1.0);
122         glScalef(1.0, -1.0, 1.0);
123         glTranslatef(0.0, -1.0, 0.0);
124         gr_palette_step_up(0,0,0);//in case its left over from in game
125 }
126
127 int last_screen_mode=-1;
128
129 void ogl_set_screen_mode(void){
130         if (last_screen_mode==Screen_mode)
131                 return;
132         OGL_VIEWPORT(0,0,grd_curscreen->sc_w,grd_curscreen->sc_h);
133 //      OGL_VIEWPORT(grd_curcanv->cv_bitmap.bm_x,grd_curcanv->cv_bitmap.bm_y,grd_curcanv->cv_bitmap.bm_w,grd_curcanv->cv_bitmap.bm_h);
134         if (Screen_mode==SCREEN_GAME){
135                 glDrawBuffer(GL_BACK);
136         }else{
137                 glClearColor(0.0, 0.0, 0.0, 0.0);
138                 glDrawBuffer(GL_FRONT);
139                 glClear(GL_COLOR_BUFFER_BIT);
140                 glMatrixMode(GL_PROJECTION);
141                 glLoadIdentity();//clear matrix
142                 glOrtho(0.0, 1.0, 0.0, 1.0, -1.0, 1.0);
143                 glMatrixMode(GL_MODELVIEW);
144                 glLoadIdentity();//clear matrix
145                 glEnable(GL_BLEND);
146                 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
147         }
148         last_screen_mode=Screen_mode;
149 }
150
151 void gr_update()
152 {
153         if (gl_initialized){
154
155                 if(Screen_mode != SCREEN_GAME){
156                         glFlush();
157                 }
158         }
159 }
160
161 const char *gl_vendor,*gl_renderer,*gl_version,*gl_extensions;
162
163 void ogl_get_verinfo(void)
164 {
165         int t, arb_max_textures = -1, sgi_max_textures = -1;
166         float anisotropic_max = 0;
167
168         gl_vendor=glGetString(GL_VENDOR);
169         gl_renderer=glGetString(GL_RENDERER);
170         gl_version=glGetString(GL_VERSION);
171         gl_extensions=glGetString(GL_EXTENSIONS);
172
173         con_printf(CON_VERBOSE, "gl vendor:%s renderer:%s version:%s extensions:%s\n",gl_vendor,gl_renderer,gl_version,gl_extensions);
174
175         ogl_intensity4_ok = 1;
176         ogl_luminance4_alpha4_ok = 1;
177         ogl_rgba2_ok = 1;
178         ogl_gettexlevelparam_ok = 1;
179         ogl_setgammaramp_ok = 1;
180
181 #ifdef WGL_VIDEO
182         dglMultiTexCoord2fARB = (glMultiTexCoord2fARB_fp)wglGetProcAddress("glMultiTexCoord2fARB");
183         dglActiveTextureARB = (glActiveTextureARB_fp)wglGetProcAddress("glActiveTextureARB");
184         dglMultiTexCoord2fSGIS = (glMultiTexCoord2fSGIS_fp)wglGetProcAddress("glMultiTexCoord2fSGIS");
185         dglSelectTextureSGIS = (glSelectTextureSGIS_fp)wglGetProcAddress("glSelectTextureSGIS");
186         dglColorTableEXT = (glColorTableEXT_fp)wglGetProcAddress("glColorTableEXT");
187 #endif
188
189 #ifdef GL_ARB_multitexture
190         ogl_arb_multitexture_ok = (strstr(gl_extensions, "GL_ARB_multitexture") != 0 && glActiveTextureARB != 0);
191         mprintf((0,"c:%p d:%p e:%p\n",strstr(gl_extensions,"GL_ARB_multitexture"),glActiveTextureARB,glBegin));
192 #endif
193 #ifdef GL_SGIS_multitexture
194         ogl_sgis_multitexture_ok = (strstr(gl_extensions, "GL_SGIS_multitexture") != 0 && glSelectTextureSGIS != 0);
195         mprintf((0,"a:%p b:%p\n",strstr(gl_extensions,"GL_SGIS_multitexture"),glSelectTextureSGIS));
196 #endif
197         ogl_nv_texture_env_combine4_ok = (strstr(gl_extensions, "GL_NV_texture_env_combine4") != 0);
198
199         ogl_ext_texture_filter_anisotropic_ok = (strstr(gl_extensions, "GL_EXT_texture_filter_anisotropic") != 0);
200         if (ogl_ext_texture_filter_anisotropic_ok)
201                 glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &anisotropic_max);
202
203 #ifdef GL_EXT_paletted_texture
204         ogl_paletted_texture_ok = (strstr(gl_extensions, "GL_EXT_paletted_texture") != 0 && glColorTableEXT != 0);
205         ogl_shared_palette_ok = (strstr(gl_extensions, "GL_EXT_shared_texture_palette") != 0 && ogl_paletted_texture_ok);
206 #endif
207         //add driver specific hacks here.  whee.
208         if ((stricmp(gl_renderer,"Mesa NVIDIA RIVA 1.0\n")==0 || stricmp(gl_renderer,"Mesa NVIDIA RIVA 1.2\n")==0) && stricmp(gl_version,"1.2 Mesa 3.0")==0){
209                 ogl_intensity4_ok=0;//ignores alpha, always black background instead of transparent.
210                 ogl_readpixels_ok=0;//either just returns all black, or kills the X server entirely
211                 ogl_gettexlevelparam_ok=0;//returns random data..
212         }
213         if (stricmp(gl_vendor,"Matrox Graphics Inc.")==0){
214                 //displays garbage. reported by
215                 //  redomen@crcwnet.com (render="Matrox G400" version="1.1.3 5.52.015")
216                 //  orulz (Matrox G200)
217                 ogl_intensity4_ok=0;
218         }
219
220         //allow overriding of stuff.
221 #ifdef GL_ARB_multitexture
222         if ((t=FindArg("-gl_arb_multitexture_ok"))){
223                 ogl_arb_multitexture_ok=atoi(Args[t+1]);
224         }
225         if (ogl_arb_multitexture_ok)
226                 glGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, &arb_max_textures);
227 #endif
228 #ifdef GL_SGIS_multitexture
229         if ((t=FindArg("-gl_sgis_multitexture_ok"))){
230                 ogl_sgis_multitexture_ok=atoi(Args[t+1]);
231         }
232         if (ogl_sgis_multitexture_ok)
233                 glGetIntegerv(GL_MAX_TEXTURES_SGIS, &sgi_max_textures);
234 #endif
235 #ifdef GL_EXT_paletted_texture
236         if ((t = FindArg("-gl_paletted_texture_ok")))
237         {
238                 ogl_paletted_texture_ok = atoi(Args[t + 1]);
239         }
240         if ((t = FindArg("-gl_shared_palette_ok")))
241         {
242                 ogl_shared_palette_ok = atoi(Args[t + 1]);
243         }
244         ogl_shared_palette_ok = ogl_shared_palette_ok && ogl_paletted_texture_ok; // shared palettes require palette support in the first place, obviously ;)
245         printf("gl_paletted_texture: %i  gl_shared_palette: %i  (using paletted textures: %i)\n", ogl_paletted_texture_ok, ogl_shared_palette_ok, ogl_shared_palette_ok);
246 #endif
247         if ((t=FindArg("-gl_intensity4_ok"))){
248                 ogl_intensity4_ok=atoi(Args[t+1]);
249         }
250         if ((t=FindArg("-gl_luminance4_alpha4_ok"))){
251                 ogl_luminance4_alpha4_ok=atoi(Args[t+1]);
252         }
253         if ((t=FindArg("-gl_rgba2_ok"))){
254                 ogl_rgba2_ok=atoi(Args[t+1]);
255         }
256         if ((t=FindArg("-gl_readpixels_ok"))){
257                 ogl_readpixels_ok=atoi(Args[t+1]);
258         }
259         if ((t=FindArg("-gl_gettexlevelparam_ok"))){
260                 ogl_gettexlevelparam_ok=atoi(Args[t+1]);
261         }
262         if ((t=FindArg("-gl_setgammaramp_ok")))
263         {
264                 ogl_setgammaramp_ok = atoi(Args[t + 1]);
265         }
266
267         con_printf(CON_VERBOSE, "gl_arb_multitexture:%i(%i units) gl_sgis_multitexture:%i(%i units) gl_nv_texture_env_combine4:%i\n", ogl_arb_multitexture_ok, arb_max_textures, ogl_sgis_multitexture_ok, sgi_max_textures, ogl_nv_texture_env_combine4_ok);
268         con_printf(CON_VERBOSE, "gl_intensity4:%i gl_luminance4_alpha4:%i gl_rgba2:%i gl_readpixels:%i gl_gettexlevelparam:%i gl_setgammaramp_ok:%i gl_ext_texture_filter_anisotropic:%i(%f max)\n", ogl_intensity4_ok, ogl_luminance4_alpha4_ok, ogl_rgba2_ok, ogl_readpixels_ok, ogl_gettexlevelparam_ok, ogl_setgammaramp_ok, ogl_ext_texture_filter_anisotropic_ok, anisotropic_max);
269 }
270
271
272 int gr_check_mode(u_int32_t mode)
273 {
274         int w, h;
275
276         w = SM_W(mode);
277         h = SM_H(mode);
278         return ogl_check_mode(w, h); // platform specific code
279 }
280
281
282 extern int VGA_current_mode; // DPH: kludge - remove at all costs
283
284 int gr_set_mode(u_int32_t mode)
285 {
286         unsigned int w,h;
287         char *gr_bm_data;
288
289 #ifdef NOGRAPH
290 return 0;
291 #endif
292 //      mode=0;
293         if (mode<=0)
294                 return 0;
295
296         w=SM_W(mode);
297         h=SM_H(mode);
298         VGA_current_mode = mode;
299
300         //if (screen != NULL) gr_palette_clear();
301
302 //      ogl_init_state();
303         
304         gr_bm_data=grd_curscreen->sc_canvas.cv_bitmap.bm_data;//since we use realloc, we want to keep this pointer around.
305         memset( grd_curscreen, 0, sizeof(grs_screen));
306         grd_curscreen->sc_mode = mode;
307         grd_curscreen->sc_w = w;
308         grd_curscreen->sc_h = h;
309         grd_curscreen->sc_aspect = fixdiv(grd_curscreen->sc_w*3,grd_curscreen->sc_h*4);
310         grd_curscreen->sc_canvas.cv_bitmap.bm_x = 0;
311         grd_curscreen->sc_canvas.cv_bitmap.bm_y = 0;
312         grd_curscreen->sc_canvas.cv_bitmap.bm_w = w;
313         grd_curscreen->sc_canvas.cv_bitmap.bm_h = h;
314         //grd_curscreen->sc_canvas.cv_bitmap.bm_rowsize = screen->pitch;
315         grd_curscreen->sc_canvas.cv_bitmap.bm_rowsize = w;
316         grd_curscreen->sc_canvas.cv_bitmap.bm_type = BM_OGL;
317         //grd_curscreen->sc_canvas.cv_bitmap.bm_data = (unsigned char *)screen->pixels;
318 //      mprintf((0,"ogl/gr.c: reallocing %p to %i\n",grd_curscreen->sc_canvas.cv_bitmap.bm_data,w*h));
319         grd_curscreen->sc_canvas.cv_bitmap.bm_data = d_realloc(gr_bm_data,w*h);
320         gr_set_current_canvas(NULL);
321         //gr_enable_default_palette_loading();
322         
323         ogl_init_window(w,h);//platform specific code
324
325         ogl_get_verinfo();
326
327         OGL_VIEWPORT(0,0,w,h);
328
329         ogl_set_screen_mode();
330
331 //      gamefont_choose_game_font(w,h);
332         
333         return 0;
334 }
335
336 #define GLstrcmptestr(a,b) if (stricmp(a,#b)==0 || stricmp(a,"GL_" #b)==0)return GL_ ## b;
337 int ogl_atotexfilti(char *a,int min){
338         GLstrcmptestr(a,NEAREST);
339         GLstrcmptestr(a,LINEAR);
340         if (min){//mipmaps are valid only for the min filter
341                 GLstrcmptestr(a,NEAREST_MIPMAP_NEAREST);
342                 GLstrcmptestr(a,NEAREST_MIPMAP_LINEAR);
343                 GLstrcmptestr(a,LINEAR_MIPMAP_NEAREST);
344                 GLstrcmptestr(a,LINEAR_MIPMAP_LINEAR);
345         }
346         Error("unknown/invalid texture filter %s\n",a);
347 //      return GL_NEAREST;
348 }
349 int ogl_testneedmipmaps(int i){
350         switch (i){
351                 case GL_NEAREST:
352                 case GL_LINEAR:
353                         return 0;
354                 case GL_NEAREST_MIPMAP_NEAREST:
355                 case GL_NEAREST_MIPMAP_LINEAR:
356                 case GL_LINEAR_MIPMAP_NEAREST:
357                 case GL_LINEAR_MIPMAP_LINEAR:
358                         return 1;
359         }
360         Error("unknown texture filter %x\n",i);
361 //      return -1;
362 }
363 #ifdef OGL_RUNTIME_LOAD
364 #ifdef _WIN32
365 char *OglLibPath="opengl32.dll";
366 #endif
367 #ifdef __unix__
368 char *OglLibPath="libGL.so";
369 #endif
370
371 int ogl_rt_loaded=0;
372 int ogl_init_load_library(void)
373 {
374         int retcode=0;
375         if (!ogl_rt_loaded){
376                 int t;
377                 if ((t=FindArg("-gl_library")))
378                         OglLibPath=Args[t+1];
379
380                 retcode = OpenGL_LoadLibrary(true);
381                 if(retcode)
382                 {
383                         mprintf((0,"Opengl loaded ok\n"));
384         
385                         if(!glEnd)
386                         {
387                                 Error("Opengl: Functions not imported\n");
388                         }
389                 }else{
390                         Error("Opengl: error loading %s\n",OglLibPath);
391                 }
392                 ogl_rt_loaded=1;
393         }
394         return retcode;
395 }
396 #endif
397
398 int gr_init()
399 {
400         int mode = SM(640,480);
401         int retcode, t, glt = 0;
402
403         // Only do this function once!
404         if (gr_installed==1)
405                 return -1;
406
407
408 #ifdef OGL_RUNTIME_LOAD
409         ogl_init_load_library();
410 #endif
411
412 #ifdef GR_SUPPORTS_FULLSCREEN_TOGGLE
413         if (FindArg("-gl_voodoo")){
414                 ogl_voodoohack=1;
415                 gr_toggle_fullscreen();
416         }
417         if (FindArg("-fullscreen"))
418                 gr_toggle_fullscreen();
419 #endif
420         if ((glt=FindArg("-gl_alttexmerge")))
421                 ogl_alttexmerge=1;
422         if ((t=FindArg("-gl_stdtexmerge")))
423                 if (t>=glt)//allow overriding of earlier args
424                         ogl_alttexmerge=0;
425
426         if ((glt = FindArg("-gl_16bittextures")))
427         {
428                 ogl_rgba_internalformat = GL_RGB5_A1;
429                 ogl_rgb_internalformat = GL_RGB5;
430         }
431
432         if ((glt=FindArg("-gl_mipmap"))){
433                 GL_texmagfilt=GL_LINEAR;
434                 GL_texminfilt=GL_LINEAR_MIPMAP_NEAREST;
435         }
436         if ((glt=FindArg("-gl_trilinear")))
437         {
438                 GL_texmagfilt = GL_LINEAR;
439                 GL_texminfilt = GL_LINEAR_MIPMAP_LINEAR;
440         }
441         if ((t=FindArg("-gl_simple"))){
442                 if (t>=glt){//allow overriding of earlier args
443                         glt=t;
444                         GL_texmagfilt=GL_NEAREST;
445                         GL_texminfilt=GL_NEAREST;
446                 }
447         }
448         if ((t=FindArg("-gl_texmagfilt")) || (t=FindArg("-gl_texmagfilter"))){
449                 if (t>=glt)//allow overriding of earlier args
450                         GL_texmagfilt=ogl_atotexfilti(Args[t+1],0);
451         }
452         if ((t=FindArg("-gl_texminfilt")) || (t=FindArg("-gl_texminfilter"))){
453                 if (t>=glt)//allow overriding of earlier args
454                         GL_texminfilt=ogl_atotexfilti(Args[t+1],1);
455         }
456         GL_needmipmaps=ogl_testneedmipmaps(GL_texminfilt);
457
458         if ((t = FindArg("-gl_anisotropy")) || (t = FindArg("-gl_anisotropic")))
459         {
460                 GL_texanisofilt=atof(Args[t + 1]);
461         }
462
463         mprintf((0,"gr_init: texmagfilt:%x texminfilt:%x needmipmaps=%i anisotropic:%f\n",GL_texmagfilt,GL_texminfilt,GL_needmipmaps,GL_texanisofilt));
464
465         
466         if ((t=FindArg("-gl_vidmem"))){
467                 ogl_mem_target=atoi(Args[t+1])*1024*1024;
468         }
469         if ((t=FindArg("-gl_reticle"))){
470                 gl_reticle=atoi(Args[t+1]);
471         }
472         //printf("ogl_mem_target=%i\n",ogl_mem_target);
473         
474         ogl_init();//platform specific initialization
475
476         ogl_init_texture_list_internal();
477                 
478         MALLOC( grd_curscreen,grs_screen,1 );
479         memset( grd_curscreen, 0, sizeof(grs_screen));
480         grd_curscreen->sc_canvas.cv_bitmap.bm_data = NULL;
481
482         // Set the mode.
483         if ((retcode=gr_set_mode(mode)))
484         {
485                 return retcode;
486         }
487
488         grd_curscreen->sc_canvas.cv_color = 0;
489         grd_curscreen->sc_canvas.cv_drawmode = 0;
490         grd_curscreen->sc_canvas.cv_font = NULL;
491         grd_curscreen->sc_canvas.cv_font_fg_color = 0;
492         grd_curscreen->sc_canvas.cv_font_bg_color = 0;
493         gr_set_current_canvas( &grd_curscreen->sc_canvas );
494
495         gr_installed = 1;
496         
497         atexit(gr_close);
498
499         return 0;
500 }
501
502 void gr_close()
503 {
504 //      mprintf((0,"ogl init: %s %s %s - %s\n",glGetString(GL_VENDOR),glGetString(GL_RENDERER),glGetString(GL_VERSION),glGetString,(GL_EXTENSIONS)));
505
506         ogl_close();//platform specific code
507         if (grd_curscreen){
508                 if (grd_curscreen->sc_canvas.cv_bitmap.bm_data)
509                         d_free(grd_curscreen->sc_canvas.cv_bitmap.bm_data);
510                 d_free(grd_curscreen);
511         }
512 #ifdef OGL_RUNTIME_LOAD
513         if (ogl_rt_loaded)
514                 OpenGL_LoadLibrary(false);
515 #endif
516 }
517 extern int r_upixelc;
518 void ogl_upixelc(int x, int y, int c){
519         r_upixelc++;
520 //      printf("gr_upixelc(%i,%i,%i)%i\n",x,y,c,Function_mode==FMODE_GAME);
521 //      if(Function_mode != FMODE_GAME){
522 //              grd_curcanv->cv_bitmap.bm_data[y*grd_curscreen->sc_canvas.cv_bitmap.bm_w+x]=c;
523 //      }else{
524                 OGL_DISABLE(TEXTURE_2D);
525                 glPointSize(1.0);
526                 glBegin(GL_POINTS);
527 //              glBegin(GL_LINES);
528 //      ogl_pal=gr_current_pal;
529                 glColor3f(CPAL2Tr(c),CPAL2Tg(c),CPAL2Tb(c));
530 //      ogl_pal=gr_palette;
531                 glVertex2f((x + grd_curcanv->cv_bitmap.bm_x + 0.5) / (float)last_width, 1.0 - (y + grd_curcanv->cv_bitmap.bm_y + 0.5) / (float)last_height);
532 //              glVertex2f(x/((float)last_width+1),1.0-y/((float)last_height+1));
533                 glEnd();
534 //      }
535 }
536 void ogl_urect(int left,int top,int right,int bot){
537         GLfloat xo,yo,xf,yf;
538         int c=COLOR;
539         
540         xo=(left+grd_curcanv->cv_bitmap.bm_x)/(float)last_width;
541         xf = (right + 1 + grd_curcanv->cv_bitmap.bm_x) / (float)last_width;
542         yo=1.0-(top+grd_curcanv->cv_bitmap.bm_y)/(float)last_height;
543         yf = 1.0 - (bot + 1 + grd_curcanv->cv_bitmap.bm_y) / (float)last_height;
544
545         OGL_DISABLE(TEXTURE_2D);
546         glColor3f(CPAL2Tr(c),CPAL2Tg(c),CPAL2Tb(c));
547         glBegin(GL_QUADS);
548         glVertex2f(xo,yo);
549         glVertex2f(xo,yf);
550         glVertex2f(xf,yf);
551         glVertex2f(xf,yo);
552         glEnd();
553 }
554 void ogl_ulinec(int left,int top,int right,int bot,int c){
555         GLfloat xo,yo,xf,yf;
556
557         xo = (left + grd_curcanv->cv_bitmap.bm_x + 0.5) / (float)last_width;
558         xf = (right + grd_curcanv->cv_bitmap.bm_x + 0.5) / (float)last_width;
559         yo = 1.0 - (top + grd_curcanv->cv_bitmap.bm_y + 0.5) / (float)last_height;
560         yf = 1.0 - (bot + grd_curcanv->cv_bitmap.bm_y + 0.5) / (float)last_height;
561
562         OGL_DISABLE(TEXTURE_2D);
563         glColor3f(CPAL2Tr(c),CPAL2Tg(c),CPAL2Tb(c));
564         glBegin(GL_LINES);
565         glVertex2f(xo,yo);
566         glVertex2f(xf,yf);
567         glEnd();
568 }
569         
570
571 GLfloat last_r=0, last_g=0, last_b=0;
572 int do_pal_step=0;
573 void ogl_do_palfx(void){
574 //      GLfloat r,g,b,a;
575         OGL_DISABLE(TEXTURE_2D);
576         if (gr_palette_faded_out){
577 /*              glEnable(GL_BLEND);
578                 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);*/
579                 glColor3f(0,0,0);
580 //              r=g=b=0.0;a=1.0;
581         }else{
582                 if (do_pal_step){
583                         //glBlendFunc(GL_SRC_COLOR, GL_DST_COLOR);
584                         glEnable(GL_BLEND);
585                         glBlendFunc(GL_ONE,GL_ONE);
586                         glColor3f(last_r,last_g,last_b);
587 //                      r=f2fl(last_r);g=f2fl(last_g);b=f2fl(last_b);a=0.5;
588                 }else
589                         return;
590         }
591         
592         
593         glBegin(GL_QUADS);
594         glVertex2f(0,0);
595         glVertex2f(0,1);
596         glVertex2f(1,1);
597         glVertex2f(1,0);
598         glEnd();
599         
600         glEnable(GL_BLEND);     
601         glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
602 }
603
604 void gr_palette_clear()
605 {
606         gr_palette_faded_out=1;
607 }
608
609
610 int ogl_brightness_ok = 0;
611 int ogl_setgammaramp_ok = 1;
612 int ogl_brightness_r = 0, ogl_brightness_g = 0, ogl_brightness_b = 0;
613 static int old_b_r = 0, old_b_g = 0, old_b_b = 0;
614
615 void gr_palette_step_up(int r, int g, int b)
616 {
617         if (gr_palette_faded_out)
618                 return;
619
620         old_b_r = ogl_brightness_r;
621         old_b_g = ogl_brightness_g;
622         old_b_b = ogl_brightness_b;
623
624         ogl_brightness_r = max(r + gr_palette_gamma, 0);
625         ogl_brightness_g = max(g + gr_palette_gamma, 0);
626         ogl_brightness_b = max(b + gr_palette_gamma, 0);
627
628         if (ogl_setgammaramp_ok &&
629             (old_b_r != ogl_brightness_r ||
630              old_b_g != ogl_brightness_g ||
631              old_b_b != ogl_brightness_b))
632                 ogl_brightness_ok = !ogl_setbrightness_internal();
633
634         if (!ogl_setgammaramp_ok || !ogl_brightness_ok)
635         {
636                 last_r = ogl_brightness_r / 63.0;
637                 last_g = ogl_brightness_g / 63.0;
638                 last_b = ogl_brightness_b / 63.0;
639
640                 do_pal_step = (r || g || b || gr_palette_gamma);
641         }
642         else
643         {
644                 do_pal_step = 0;
645         }
646 }
647
648 //added on 980913 by adb to fix palette problems
649 // need a min without side effects...
650 #undef min
651 static inline int min(int x, int y) { return x < y ? x : y; }
652 //end changes by adb
653
654 void gr_palette_load( ubyte *pal )      
655 {
656  int i;//, j;
657
658  for (i=0; i<768; i++ ) {
659      gr_current_pal[i] = pal[i];
660      if (gr_current_pal[i] > 63) gr_current_pal[i] = 63;
661  }
662  //palette = screen->format->palette;
663
664  gr_palette_faded_out=0;
665
666         gr_palette_step_up(0, 0, 0); // make ogl_setbrightness_internal get run so that menus get brightened too.
667
668  init_computed_colors();
669
670         ogl_init_shared_palette();
671 }
672
673
674
675 int gr_palette_fade_out(ubyte *pal, int nsteps, int allow_keys)
676 {
677         gr_palette_faded_out=1;
678         return 0;
679 }
680
681
682
683 int gr_palette_fade_in(ubyte *pal, int nsteps, int allow_keys)
684 {
685         gr_palette_faded_out=0;
686         return 0;
687 }
688
689
690
691 void gr_palette_read(ubyte * pal)
692 {
693         int i;
694         for (i=0; i<768; i++ ) {
695                 pal[i]=gr_current_pal[i];
696                 if (pal[i] > 63) pal[i] = 63;
697         }
698 }
699
700 //writes out an uncompressed RGB .tga file
701 //if we got really spiffy, we could optionally link in libpng or something, and use that.
702 void write_bmp(char *savename,int w,int h,unsigned char *buf){
703         int f;
704 #ifdef _WIN32
705         f=open(savename,O_CREAT|O_EXCL|O_WRONLY,S_IREAD|S_IWRITE);
706 #else
707         f=open(savename,O_CREAT|O_EXCL|O_WRONLY,S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
708 #endif
709         if (f>=0){
710                 GLubyte    targaMagic[12] = { 0, //no identification field
711                          0,//no colormap
712                          2,//RGB image (well, BGR, actually)
713                          0, 0, 0, 0, 0, 0, 0, 0, 0 };//no colormap or image origin stuff.
714                 GLubyte blah;
715                 int r;
716                 GLubyte *s;
717                 int x,y;
718                 
719                 //write .TGA header.
720                 write (f,targaMagic,sizeof(targaMagic));
721                 blah=w%256;write (f,&blah,1);//w, low
722                 blah=w/256;write (f,&blah,1);//w, high
723                 blah=h%256;write (f,&blah,1);//h, low
724                 blah=h/256;write (f,&blah,1);//h, high
725                 blah=24;write (f,&blah,1);//24 bpp
726                 blah=0;write (f,&blah,1);//no attribute bits, origin is lowerleft, no interleave
727                 
728                 s=buf;
729                 for (y=0;y<h;y++){//TGAs use BGR ordering of data.
730                         for (x=0;x<w;x++){
731                                 blah=s[0];
732                                 s[0]=s[2];
733                                 s[2]=blah;
734                                 s+=3;                           
735                         }
736                 }
737                 x=0;y=w*h*3;
738                 while (y > 0)
739                 {
740                         r=write(f,buf+x,y);
741                         if (r<=0){
742                                 mprintf((0,"screenshot error, couldn't write to %s (err %i)\n",savename,errno));
743                                 break;
744                         }
745                         x+=r;y-=r;
746                 }
747                 close(f);
748         }else{
749                 mprintf((0,"screenshot error, couldn't open %s (err %i)\n",savename,errno));
750         }
751 }
752 void save_screen_shot(int automap_flag)
753 {
754 //      fix t1;
755         char message[100];
756         static int savenum=0;
757         char savename[13];
758         unsigned char *buf;
759         
760         if (!ogl_readpixels_ok){
761                 if (!automap_flag)
762                         hud_message(MSGC_GAME_FEEDBACK,"glReadPixels not supported on your configuration");
763                 return;
764         }
765
766         stop_time();
767
768 //added/changed on 10/31/98 by Victor Rachels to fix overwrite each new game
769         if ( savenum == 9999 ) savenum = 0;
770         sprintf(savename,"scrn%04d.tga",savenum++);
771
772         while(!access(savename,0))
773         {
774                 if ( savenum == 9999 ) savenum = 0;
775                 sprintf(savename,"scrn%04d.tga",savenum++);
776         }
777         sprintf( message, "%s '%s'", TXT_DUMPING_SCREEN, savename );
778 //end this section addition/change - Victor Rachels
779
780         if (automap_flag) {
781 //      save_font = grd_curcanv->cv_font;
782 //      gr_set_curfont(GAME_FONT);
783 //      gr_set_fontcolor(gr_find_closest_color_current(0,31,0),-1);
784 //      gr_get_string_size(message,&w,&h,&aw);
785 //              modex_print_message(32, 2, message);
786         } else {
787                 hud_message(MSGC_GAME_FEEDBACK,message);
788         }
789         
790         buf = d_malloc(grd_curscreen->sc_w*grd_curscreen->sc_h*3);
791         glReadBuffer(GL_FRONT);
792         glReadPixels(0,0,grd_curscreen->sc_w,grd_curscreen->sc_h,GL_RGB,GL_UNSIGNED_BYTE,buf);
793         write_bmp(savename,grd_curscreen->sc_w,grd_curscreen->sc_h,buf);
794         d_free(buf);
795
796         key_flush();
797         start_time();
798 }