2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
d_init.c
|
|
|
|
|
|
|
|
@description@
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
#include "d_local.h"
|
|
|
|
#include "vid.h"
|
|
|
|
|
|
|
|
#define NUM_MIPS 4
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
cvar_t *d_subdiv16;
|
|
|
|
cvar_t *d_mipcap;
|
|
|
|
cvar_t *d_mipscale;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
surfcache_t *d_initial_rover;
|
|
|
|
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-02-26 06:48:02 +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
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
D_Init
|
|
|
|
===============
|
|
|
|
*/
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_Init (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
r_skydirect = 1;
|
|
|
|
|
2001-04-10 23:39:30 +00:00
|
|
|
d_subdiv16 = Cvar_Get ("d_subdiv16", "1", CVAR_NONE, NULL, "None");
|
|
|
|
d_mipcap = Cvar_Get ("d_mipcap", "0", CVAR_NONE, NULL, "None");
|
|
|
|
d_mipscale = Cvar_Get ("d_mipscale", "1", CVAR_NONE, NULL, "None");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
r_drawpolys = false;
|
|
|
|
r_worldpolysbacktofront = false;
|
|
|
|
r_recursiveaffinetriangles = true;
|
|
|
|
r_pixbytes = 1;
|
|
|
|
r_aliasuvscale = 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
D_CopyRects
|
|
|
|
===============
|
|
|
|
*/
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_CopyRects (vrect_t *prects, int transparent)
|
2001-02-19 21:15:25 +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
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
D_EnableBackBufferAccess
|
|
|
|
===============
|
|
|
|
*/
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_EnableBackBufferAccess (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
VID_LockBuffer ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
D_TurnZOn
|
|
|
|
===============
|
|
|
|
*/
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_TurnZOn (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
// not needed for software version
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
D_DisableBackBufferAccess
|
|
|
|
===============
|
|
|
|
*/
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_DisableBackBufferAccess (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
VID_UnlockBuffer ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
D_SetupFrame
|
|
|
|
===============
|
|
|
|
*/
|
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;
|
|
|
|
|
|
|
|
d_minmip = d_mipcap->int_val;
|
|
|
|
if (d_minmip > 3)
|
|
|
|
d_minmip = 3;
|
|
|
|
else if (d_minmip < 0)
|
|
|
|
d_minmip = 0;
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
===============
|
|
|
|
D_UpdateRects
|
|
|
|
===============
|
|
|
|
*/
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_UpdateRects (vrect_t *prect)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
// the software driver draws these directly to the vid buffer
|
|
|
|
|
|
|
|
}
|