2001-08-25 02:47:11 +00:00
|
|
|
/*
|
|
|
|
d_init.c
|
|
|
|
|
|
|
|
rasterization driver initialization
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
#define NH_DEFINE
|
|
|
|
#include "namehack.h"
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-08-29 01:28:03 +00:00
|
|
|
#include "QF/cvar.h"
|
|
|
|
#include "QF/render.h"
|
2001-08-25 02:47:11 +00:00
|
|
|
|
2001-08-29 01:28:03 +00:00
|
|
|
#include "compat.h"
|
|
|
|
#include "d_local.h"
|
2012-02-14 08:28:09 +00:00
|
|
|
#include "r_internal.h"
|
2012-02-17 07:13:56 +00:00
|
|
|
#include "vid_internal.h"
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
#define NUM_MIPS 4
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
surfcache_t *sw32_d_initial_rover;
|
|
|
|
qboolean sw32_d_roverwrapped;
|
|
|
|
int sw32_d_minmip;
|
|
|
|
float sw32_d_scalemip[NUM_MIPS - 1];
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
static float basemip[NUM_MIPS - 1] = { 1.0, 0.5 * 0.8, 0.25 * 0.8 };
|
|
|
|
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
float sw32_d_zitable[65536];
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_D_Init (void)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_r_drawpolys = false;
|
|
|
|
sw32_r_worldpolysbacktofront = false;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
// LordHavoc: compute 1/zi table for use in rendering code everywhere
|
2012-02-22 07:32:34 +00:00
|
|
|
if (!sw32_d_zitable[1]) {
|
2001-08-25 02:47:11 +00:00
|
|
|
int i;
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_d_zitable[0] = 0;
|
2001-08-25 02:47:11 +00:00
|
|
|
for (i = 1;i < 65536;i++)
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_d_zitable[i] = (65536.0 * 65536.0 / (double) i);
|
2001-08-25 02:47:11 +00:00
|
|
|
}
|
2001-08-25 05:54:21 +00:00
|
|
|
|
2012-02-26 05:00:15 +00:00
|
|
|
vr_data.vid->surf_cache_size = sw32_D_SurfaceCacheForRes;
|
|
|
|
vr_data.vid->flush_caches = sw32_D_FlushCaches;
|
|
|
|
vr_data.vid->init_caches = sw32_D_InitCaches;
|
2001-08-25 05:54:21 +00:00
|
|
|
|
|
|
|
VID_InitBuffers ();
|
2014-02-02 07:19:04 +00:00
|
|
|
VID_MakeColormaps();
|
2001-08-25 02:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_D_EnableBackBufferAccess (void)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
|
|
|
VID_LockBuffer ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_D_TurnZOn (void)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
|
|
|
// not needed for software version
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_D_DisableBackBufferAccess (void)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
|
|
|
VID_UnlockBuffer ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_D_SetupFrame (void)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
if (sw32_r_dowarp)
|
|
|
|
sw32_d_viewbuffer = sw32_r_warpbuffer;
|
2001-08-25 02:47:11 +00:00
|
|
|
else
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_d_viewbuffer = vid.buffer;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
if (sw32_r_dowarp)
|
|
|
|
sw32_screenwidth = WARP_WIDTH;
|
2001-08-25 02:47:11 +00:00
|
|
|
else
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_screenwidth = vid.rowbytes / sw32_r_pixbytes;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_d_roverwrapped = false;
|
|
|
|
sw32_d_initial_rover = sw32_sc_rover;
|
2001-08-25 02:47:11 +00:00
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_d_minmip = bound (0, d_mipcap->value, 3);
|
2001-08-25 02:47:11 +00:00
|
|
|
|
|
|
|
for (i = 0; i < (NUM_MIPS - 1); i++)
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_d_scalemip[i] = basemip[i] * d_mipscale->value;
|
2001-08-25 02:47:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
sw32_D_UpdateRects (vrect_t *prect)
|
2001-08-25 02:47:11 +00:00
|
|
|
{
|
|
|
|
// the software driver draws these directly to the vid buffer
|
|
|
|
}
|