2001-04-15 04:18:22 +00:00
|
|
|
/*
|
|
|
|
vid_3dfxsvga.c
|
|
|
|
|
|
|
|
OpenGL device driver for 3Dfx chipsets running Linux
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
Copyright (C) 1999,2000 contributors of the QuakeForge project
|
|
|
|
Please see the file "AUTHORS" for a list of contributors
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
2001-09-28 06:26:31 +00:00
|
|
|
static const char rcsid[] =
|
|
|
|
"$Id$";
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2001-08-25 02:47:11 +00:00
|
|
|
#ifdef HAVE_DLOPEN
|
|
|
|
# include <dlfcn.h>
|
|
|
|
#endif
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2002-04-25 21:51:47 +00:00
|
|
|
#include <setjmp.h>
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
#include "QF/console.h"
|
2001-05-31 11:41:22 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-04-15 04:18:22 +00:00
|
|
|
#include "QF/qargs.h"
|
|
|
|
#include "QF/qendian.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/va.h"
|
2001-04-17 03:08:52 +00:00
|
|
|
#include "QF/vid.h"
|
2001-08-25 02:47:11 +00:00
|
|
|
#include "QF/GL/extensions.h"
|
|
|
|
#include "QF/GL/funcs.h"
|
|
|
|
|
|
|
|
#include "compat.h"
|
|
|
|
#include "sbar.h"
|
2001-06-29 03:27:18 +00:00
|
|
|
#include "r_cvar.h"
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2002-06-24 21:35:37 +00:00
|
|
|
#define WARP_WIDTH 320
|
|
|
|
#define WARP_HEIGHT 200
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2001-06-29 02:10:52 +00:00
|
|
|
#define GLAPI extern
|
|
|
|
#define GLAPIENTRY
|
|
|
|
|
2002-06-24 21:35:37 +00:00
|
|
|
#define FXMESA_NONE 0 // to terminate attribList
|
2001-06-29 02:10:52 +00:00
|
|
|
#define FXMESA_DOUBLEBUFFER 10
|
2002-06-24 21:35:37 +00:00
|
|
|
#define FXMESA_ALPHA_SIZE 11 // followed by an integer
|
|
|
|
#define FXMESA_DEPTH_SIZE 12 // followed by an integer
|
2001-06-29 02:10:52 +00:00
|
|
|
|
2002-06-24 21:35:37 +00:00
|
|
|
#define GL_DITHER 0x0BD0
|
2001-06-29 02:10:52 +00:00
|
|
|
|
|
|
|
typedef struct tfxMesaContext *fxMesaContext;
|
|
|
|
|
2002-06-24 21:35:37 +00:00
|
|
|
#define GR_REFRESH_75Hz 0x3
|
|
|
|
|
|
|
|
#define GR_DITHER_2x2 0x1
|
|
|
|
#define GR_DITHER_4x4 0x2
|
|
|
|
#define GR_RESOLUTION_320x200 0x0
|
|
|
|
#define GR_RESOLUTION_320x240 0x1
|
|
|
|
#define GR_RESOLUTION_400x256 0x2
|
|
|
|
#define GR_RESOLUTION_512x384 0x3
|
|
|
|
#define GR_RESOLUTION_640x200 0x4
|
|
|
|
#define GR_RESOLUTION_640x350 0x5
|
|
|
|
#define GR_RESOLUTION_640x400 0x6
|
|
|
|
#define GR_RESOLUTION_640x480 0x7
|
|
|
|
#define GR_RESOLUTION_800x600 0x8
|
|
|
|
#define GR_RESOLUTION_960x720 0x9
|
|
|
|
#define GR_RESOLUTION_512x256 0xb
|
|
|
|
#define GR_RESOLUTION_856x480 0xa
|
|
|
|
#define GR_RESOLUTION_400x300 0xF
|
2002-06-24 15:56:01 +00:00
|
|
|
|
2001-10-16 04:11:25 +00:00
|
|
|
void (* qf_fxMesaDestroyContext) (fxMesaContext ctx);
|
|
|
|
void (* qf_fxMesaSwapBuffers) (void);
|
|
|
|
fxMesaContext (* qf_fxMesaCreateContext) (GLuint win, GrScreenResolution_t, GrScreenRefresh_t, const GLint attribList[]);
|
|
|
|
void (* qf_fxMesaMakeCurrent) (fxMesaContext ctx);
|
2001-06-29 02:10:52 +00:00
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
static fxMesaContext fc = NULL;
|
|
|
|
|
2002-06-24 21:35:37 +00:00
|
|
|
int VID_options_items = 0;
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(HAVE_DLOPEN)
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2002-06-24 21:35:37 +00:00
|
|
|
void * (* glGetProcAddress) (const char *symbol)= NULL;
|
2002-08-16 18:29:21 +00:00
|
|
|
|
|
|
|
void *
|
|
|
|
QFGL_GetProcAddress (void *handle, const char *name)
|
|
|
|
{
|
|
|
|
void *glfunc = NULL;
|
|
|
|
|
|
|
|
if (glGetProcAddress)
|
|
|
|
glfunc = glGetProcAddress (name);
|
|
|
|
if (!glfunc)
|
|
|
|
glfunc = dlsym (handle, name);
|
|
|
|
return glfunc;
|
|
|
|
}
|
2002-06-24 21:35:37 +00:00
|
|
|
|
|
|
|
void *
|
|
|
|
QFGL_LoadLibrary (void)
|
|
|
|
{
|
|
|
|
void *handle;
|
|
|
|
|
|
|
|
if (!(handle = dlopen (gl_driver->string, RTLD_NOW))) {
|
|
|
|
Sys_Error ("Couldn't load OpenGL library %s: %s", gl_driver->string,
|
|
|
|
dlerror ());
|
|
|
|
}
|
|
|
|
glGetProcAddress = dlsym (handle, "glXGetProcAddressARB");
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
# error "Cannot load libraries: %s was not configured with DSO support"
|
|
|
|
|
|
|
|
// the following is to avoid other compiler errors
|
2002-08-16 18:29:21 +00:00
|
|
|
void *
|
|
|
|
QFGL_GetProcAddress (void *handle, const char *name)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2002-06-24 21:35:37 +00:00
|
|
|
|
|
|
|
void *
|
|
|
|
QFGL_LoadLibrary (void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif // HAVE_DLOPEN
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
VID_Shutdown (void)
|
|
|
|
{
|
|
|
|
if (!fc)
|
|
|
|
return;
|
|
|
|
|
2001-10-16 04:11:25 +00:00
|
|
|
qf_fxMesaDestroyContext (fc);
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GL_Init (void)
|
|
|
|
{
|
|
|
|
QF_3DfxSetDitherModeEXT dither_select = NULL;
|
|
|
|
int p;
|
|
|
|
|
|
|
|
GL_Init_Common ();
|
|
|
|
|
|
|
|
if (!(QFGL_ExtensionPresent ("3DFX_set_dither_mode")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!(dither_select = QFGL_ExtensionAddress ("gl3DfxSetDitherModeEXT")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
Con_Printf ("Dithering: ");
|
|
|
|
|
|
|
|
if ((p = COM_CheckParm ("-dither")) && p < com_argc) {
|
|
|
|
if (strequal (com_argv[p+1], "2x2")) {
|
|
|
|
dither_select (GR_DITHER_2x2);
|
|
|
|
Con_Printf ("2x2.\n");
|
|
|
|
}
|
|
|
|
if (strequal (com_argv[p+1], "4x4")) {
|
|
|
|
dither_select (GR_DITHER_4x4);
|
|
|
|
Con_Printf ("4x4.\n");
|
|
|
|
}
|
|
|
|
} else {
|
2001-06-26 02:26:46 +00:00
|
|
|
qfglDisable (GL_DITHER);
|
2001-04-15 04:18:22 +00:00
|
|
|
Con_Printf ("disabled.\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
GL_EndRendering (void)
|
|
|
|
{
|
2002-02-27 05:22:21 +00:00
|
|
|
qfglFinish ();
|
2001-10-16 04:11:25 +00:00
|
|
|
qf_fxMesaSwapBuffers ();
|
2001-04-15 04:18:22 +00:00
|
|
|
Sbar_Changed ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static int resolutions[][3] = {
|
|
|
|
{320, 200, GR_RESOLUTION_320x200},
|
|
|
|
{320, 240, GR_RESOLUTION_320x240},
|
|
|
|
{400, 256, GR_RESOLUTION_400x256},
|
|
|
|
{400, 300, GR_RESOLUTION_400x300},
|
|
|
|
{512, 256, GR_RESOLUTION_512x256},
|
|
|
|
{512, 384, GR_RESOLUTION_512x384},
|
|
|
|
{640, 200, GR_RESOLUTION_640x200},
|
|
|
|
{640, 350, GR_RESOLUTION_640x350},
|
|
|
|
{640, 400, GR_RESOLUTION_640x400},
|
|
|
|
{640, 480, GR_RESOLUTION_640x480},
|
|
|
|
{800, 600, GR_RESOLUTION_800x600},
|
|
|
|
{856, 480, GR_RESOLUTION_856x480},
|
|
|
|
{960, 720, GR_RESOLUTION_960x720},
|
|
|
|
#ifdef GR_RESOLUTION_1024x768
|
|
|
|
{1024, 768, GR_RESOLUTION_1024x768},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_1152x864
|
|
|
|
{1152, 864, GR_RESOLUTION_1152x864},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_1280x960
|
|
|
|
{1280, 960, GR_RESOLUTION_1280x960},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_1280x1024
|
|
|
|
{1280, 1024, GR_RESOLUTION_1280x1024},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_1600x1024
|
|
|
|
{1600, 1024, GR_RESOLUTION_1600x1024},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_1600x1200
|
|
|
|
{1600, 1200, GR_RESOLUTION_1600x1200},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_1792x1344
|
|
|
|
{1792, 1344, GR_RESOLUTION_1792x1344},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_1856x1392
|
|
|
|
{1856, 1392, GR_RESOLUTION_1856x1392},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_1920x1440
|
|
|
|
{1920, 1440, GR_RESOLUTION_1920x1440},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_2048x1536
|
|
|
|
{2048, 1536, GR_RESOLUTION_2048x1536},
|
|
|
|
#endif
|
|
|
|
#ifdef GR_RESOLUTION_2048x2048
|
|
|
|
{2048, 2048, GR_RESOLUTION_2048x2048}
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
#define NUM_RESOLUTIONS (sizeof (resolutions) / (sizeof (int) * 3))
|
|
|
|
|
|
|
|
static int
|
|
|
|
findres (int *width, int *height)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NUM_RESOLUTIONS; i++) {
|
|
|
|
if ((*width <= resolutions[i][0]) && (*height <= resolutions[i][1])) {
|
|
|
|
*width = resolutions[i][0];
|
|
|
|
*height = resolutions[i][1];
|
|
|
|
return resolutions[i][2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*width = 640;
|
|
|
|
*height = 480;
|
|
|
|
return GR_RESOLUTION_640x480;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VID_Init (unsigned char *palette)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
GLint attribs[32];
|
|
|
|
|
2001-10-15 19:06:22 +00:00
|
|
|
GL_Pre_Init ();
|
|
|
|
|
2001-10-16 04:11:25 +00:00
|
|
|
qf_fxMesaCreateContext = QFGL_ProcAddress (libgl_handle,
|
2001-08-25 02:47:11 +00:00
|
|
|
"fxMesaCreateContext", true);
|
2001-10-16 04:11:25 +00:00
|
|
|
qf_fxMesaDestroyContext = QFGL_ProcAddress (libgl_handle,
|
2001-08-25 02:47:11 +00:00
|
|
|
"fxMesaDestroyContext", true);
|
2001-10-16 04:11:25 +00:00
|
|
|
qf_fxMesaMakeCurrent = QFGL_ProcAddress (libgl_handle,
|
2001-08-25 02:47:11 +00:00
|
|
|
"fxMesaMakeCurrent", true);
|
2001-10-16 04:11:25 +00:00
|
|
|
qf_fxMesaSwapBuffers = QFGL_ProcAddress (libgl_handle,
|
2001-08-25 02:47:11 +00:00
|
|
|
"fxMesaSwapBuffers", true);
|
2001-06-29 03:27:18 +00:00
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
VID_GetWindowSize (640, 480);
|
|
|
|
Con_CheckResize (); // Now that we have a window size, fix console
|
|
|
|
|
|
|
|
vid.maxwarpwidth = WARP_WIDTH;
|
|
|
|
vid.maxwarpheight = WARP_HEIGHT;
|
2001-08-25 02:47:11 +00:00
|
|
|
vid.colormap8 = vid_colormap;
|
|
|
|
vid.fullbright = 256 - LittleLong (*((int *) vid.colormap8 + 2048));
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
// interpret command-line params
|
|
|
|
|
|
|
|
// set vid parameters
|
|
|
|
attribs[0] = FXMESA_DOUBLEBUFFER;
|
|
|
|
attribs[1] = FXMESA_ALPHA_SIZE;
|
|
|
|
attribs[2] = 1;
|
|
|
|
attribs[3] = FXMESA_DEPTH_SIZE;
|
|
|
|
attribs[4] = 1;
|
|
|
|
attribs[5] = FXMESA_NONE;
|
|
|
|
|
|
|
|
if ((i = COM_CheckParm ("-conwidth")))
|
|
|
|
vid.conwidth = atoi (com_argv[i + 1]);
|
|
|
|
else
|
|
|
|
vid.conwidth = 640;
|
|
|
|
|
|
|
|
vid.conwidth &= 0xfff8; // make it a multiple of eight
|
|
|
|
|
|
|
|
vid.conwidth = max (vid.conwidth, 320);
|
|
|
|
|
|
|
|
// pick a conheight that matches with correct aspect
|
|
|
|
vid.conheight = vid.conwidth * 3 / 4;
|
|
|
|
|
|
|
|
if ((i = COM_CheckParm ("-conheight")) != 0)
|
|
|
|
vid.conheight = atoi (com_argv[i + 1]);
|
|
|
|
|
|
|
|
vid.conheight = max (vid.conheight, 200);
|
|
|
|
|
2001-10-16 04:11:25 +00:00
|
|
|
fc = qf_fxMesaCreateContext (0, findres (&scr_width, &scr_height),
|
2001-04-15 04:18:22 +00:00
|
|
|
GR_REFRESH_75Hz, attribs);
|
|
|
|
if (!fc)
|
2002-05-14 06:12:29 +00:00
|
|
|
Sys_Error ("Unable to create 3DFX context.");
|
2001-04-15 04:18:22 +00:00
|
|
|
|
2001-10-16 04:11:25 +00:00
|
|
|
qf_fxMesaMakeCurrent (fc);
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
vid.width = vid.conwidth = min (vid.conwidth, scr_width);
|
|
|
|
vid.height = vid.conheight = min (vid.conheight, scr_height);
|
|
|
|
|
|
|
|
vid.aspect = ((float) vid.height / (float) vid.width) * (320.0 / 240.0);
|
|
|
|
vid.numpages = 2;
|
|
|
|
|
2001-05-25 02:26:30 +00:00
|
|
|
vid_gamma_avail = 1;
|
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
GL_Init ();
|
|
|
|
|
|
|
|
VID_InitGamma (palette);
|
2002-09-10 06:35:32 +00:00
|
|
|
VID_SetPalette (vid.palette);
|
2001-04-15 04:18:22 +00:00
|
|
|
|
|
|
|
// Check for 3DFX Extensions and initialize them.
|
|
|
|
VID_Init8bitPalette ();
|
|
|
|
|
2001-05-25 04:06:51 +00:00
|
|
|
vid.initialized = true;
|
2001-05-25 04:03:47 +00:00
|
|
|
|
2001-04-15 04:18:22 +00:00
|
|
|
Con_Printf ("Video mode %dx%d initialized.\n", scr_width, scr_height);
|
|
|
|
|
|
|
|
vid.recalc_refdef = 1; // force a surface cache flush
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VID_Init_Cvars (void)
|
|
|
|
{
|
2001-08-25 02:47:11 +00:00
|
|
|
vid_system_gamma = Cvar_Get ("vid_system_gamma", "1", CVAR_ARCHIVE, NULL,
|
|
|
|
"Use system gamma control if available");
|
2001-04-15 04:18:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VID_ExtraOptionDraw (unsigned int options_draw_cursor)
|
|
|
|
{
|
|
|
|
/* Port specific Options menu entrys */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VID_ExtraOptionCmd (int option_cursor)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
switch(option_cursor)
|
|
|
|
{
|
|
|
|
case 12: // Always start with 12
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
VID_SetCaption (const char *text)
|
2001-04-15 04:18:22 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
qboolean
|
|
|
|
VID_SetGamma (double gamma)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|