2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
d_init.c
|
|
|
|
|
2001-05-18 20:19:20 +00:00
|
|
|
rasterization driver initialization
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2001-05-10 06:01:11 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-05-24 19:22:35 +00:00
|
|
|
#include "QF/render.h"
|
2001-05-18 20:19:20 +00:00
|
|
|
#include "QF/vid.h"
|
2001-05-10 06:01:11 +00:00
|
|
|
|
2001-08-16 06:58:55 +00:00
|
|
|
#include "compat.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
#include "d_local.h"
|
2001-05-11 19:21:48 +00:00
|
|
|
#include "r_cvar.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#define NUM_MIPS 4
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
surfcache_t *d_initial_rover;
|
2001-08-16 06:58:55 +00:00
|
|
|
qboolean d_roverwrapped;
|
|
|
|
int d_minmip;
|
|
|
|
float d_scalemip[NUM_MIPS - 1];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
static float basemip[NUM_MIPS - 1] = { 1.0, 0.5 * 0.8, 0.25 * 0.8 };
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-16 06:58:55 +00:00
|
|
|
extern int d_aflatcolor;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void (*d_drawspans) (espan_t *pspan);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_Init (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
r_skydirect = 1;
|
|
|
|
|
|
|
|
r_drawpolys = false;
|
|
|
|
r_worldpolysbacktofront = false;
|
|
|
|
r_recursiveaffinetriangles = true;
|
|
|
|
r_pixbytes = 1;
|
|
|
|
r_aliasuvscale = 1.0;
|
2001-04-16 20:38:51 +00:00
|
|
|
|
|
|
|
vid.surf_cache_size = D_SurfaceCacheForRes;
|
|
|
|
vid.flush_caches = D_FlushCaches;
|
|
|
|
vid.init_caches = D_InitCaches;
|
|
|
|
|
|
|
|
VID_InitBuffers ();
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_CopyRects (vrect_t *prects, int transparent)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-08-16 06:58:55 +00:00
|
|
|
/*
|
|
|
|
this function is only required if the CPU doesn't have direct access to the
|
|
|
|
back buffer, and there's some driver interface function that the driver
|
|
|
|
doesn't support and requires Quake to do in software (such as drawing the
|
|
|
|
console); Quake will then draw into wherever the driver points vid.buffer
|
|
|
|
and will call this function before swapping buffers
|
|
|
|
*/
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_EnableBackBufferAccess (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
VID_LockBuffer ();
|
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_TurnZOn (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-08-16 06:58:55 +00:00
|
|
|
// not needed for software version
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_DisableBackBufferAccess (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
VID_UnlockBuffer ();
|
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_SetupFrame (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
int i;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (r_dowarp)
|
|
|
|
d_viewbuffer = r_warpbuffer;
|
|
|
|
else
|
2001-02-26 06:48:02 +00:00
|
|
|
d_viewbuffer = (void *) (byte *) vid.buffer;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (r_dowarp)
|
|
|
|
screenwidth = WARP_WIDTH;
|
|
|
|
else
|
|
|
|
screenwidth = vid.rowbytes;
|
|
|
|
|
|
|
|
d_roverwrapped = false;
|
|
|
|
d_initial_rover = sc_rover;
|
|
|
|
|
2001-05-18 20:19:20 +00:00
|
|
|
d_minmip = bound (0, d_mipcap->value, 3);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < (NUM_MIPS - 1); i++)
|
2001-02-19 21:15:25 +00:00
|
|
|
d_scalemip[i] = basemip[i] * d_mipscale->value;
|
|
|
|
|
2001-06-11 20:59:48 +00:00
|
|
|
#ifdef PIC
|
2001-05-25 14:57:31 +00:00
|
|
|
#undef USE_INTEL_ASM //XXX asm pic hack
|
2001-06-11 20:59:48 +00:00
|
|
|
#endif
|
2001-05-25 14:57:31 +00:00
|
|
|
|
2001-05-18 20:19:20 +00:00
|
|
|
#ifdef USE_INTEL_ASM
|
2001-02-26 06:48:02 +00:00
|
|
|
if (d_subdiv16->int_val)
|
|
|
|
d_drawspans = D_DrawSpans16;
|
|
|
|
else
|
|
|
|
d_drawspans = D_DrawSpans8;
|
2001-02-19 21:15:25 +00:00
|
|
|
#else
|
2001-02-26 06:48:02 +00:00
|
|
|
d_drawspans = D_DrawSpans8;
|
2001-02-19 21:15:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
d_aflatcolor = 0;
|
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_UpdateRects (vrect_t *prect)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-05-18 20:19:20 +00:00
|
|
|
// the software driver draws these directly to the vid buffer
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|