2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
d_surf.c
|
|
|
|
|
2001-05-18 20:19:20 +00:00
|
|
|
rasterization driver surface heap manager
|
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
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2003-01-15 15:31:36 +00:00
|
|
|
static __attribute__ ((unused)) const char rcsid[] =
|
|
|
|
"$Id$";
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2001-05-18 20:19:20 +00:00
|
|
|
#include "QF/qargs.h"
|
2003-01-06 18:28:13 +00:00
|
|
|
#include "QF/render.h"
|
2001-05-18 20:19:20 +00:00
|
|
|
#include "QF/sys.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-31 19:13:16 +00:00
|
|
|
#include "compat.h"
|
2001-08-16 06:58:55 +00:00
|
|
|
#include "d_local.h"
|
|
|
|
#include "r_local.h"
|
|
|
|
|
|
|
|
float surfscale;
|
|
|
|
qboolean r_cache_thrash; // set if surface cache is thrashing
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-16 06:58:55 +00:00
|
|
|
int sc_size;
|
2001-02-26 06:48:02 +00:00
|
|
|
surfcache_t *sc_rover, *sc_base;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#define GUARDSIZE 4
|
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
|
|
|
|
void *
|
2001-02-19 21:15:25 +00:00
|
|
|
D_SurfaceCacheAddress (void)
|
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
return sc_base;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
int
|
|
|
|
D_SurfaceCacheForRes (int width, int height)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
int size, pix;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (COM_CheckParm ("-surfcachesize")) {
|
|
|
|
size = atoi (com_argv[COM_CheckParm ("-surfcachesize") + 1]) * 1024;
|
2001-02-19 21:15:25 +00:00
|
|
|
return size;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
size = SURFCACHE_SIZE_AT_320X200;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
pix = width * height;
|
2001-02-19 21:15:25 +00:00
|
|
|
if (pix > 64000)
|
2001-02-26 06:48:02 +00:00
|
|
|
size += (pix - 64000) * 3;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-02-26 06:48:02 +00:00
|
|
|
D_CheckCacheGuard (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
byte *s;
|
|
|
|
int i;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
s = (byte *) sc_base + sc_size;
|
|
|
|
for (i = 0; i < GUARDSIZE; i++)
|
|
|
|
if (s[i] != (byte) i)
|
2001-02-19 21:15:25 +00:00
|
|
|
Sys_Error ("D_CheckCacheGuard: failed");
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2001-02-26 06:48:02 +00:00
|
|
|
D_ClearCacheGuard (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
byte *s;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
s = (byte *) sc_base + sc_size;
|
|
|
|
for (i = 0; i < GUARDSIZE; i++)
|
|
|
|
s[i] = (byte) i;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_InitCaches (void *buffer, int size)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-08-27 18:05:59 +00:00
|
|
|
Sys_DPrintf ("D_InitCaches: %ik surface cache\n", size/1024);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
sc_size = size - GUARDSIZE;
|
2001-02-26 06:48:02 +00:00
|
|
|
sc_base = (surfcache_t *) buffer;
|
2001-02-19 21:15:25 +00:00
|
|
|
sc_rover = sc_base;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
sc_base->next = NULL;
|
|
|
|
sc_base->owner = NULL;
|
|
|
|
sc_base->size = sc_size;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-04-16 20:38:51 +00:00
|
|
|
d_pzbuffer = vid.zbuffer;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
D_ClearCacheGuard ();
|
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
|
|
|
D_FlushCaches (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
surfcache_t *c;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (!sc_base)
|
|
|
|
return;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (c = sc_base; c; c = c->next) {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (c->owner)
|
|
|
|
*c->owner = NULL;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
sc_rover = sc_base;
|
|
|
|
sc_base->next = NULL;
|
|
|
|
sc_base->owner = NULL;
|
|
|
|
sc_base->size = sc_size;
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static surfcache_t *
|
2001-02-26 06:48:02 +00:00
|
|
|
D_SCAlloc (int width, int size)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
surfcache_t *new;
|
|
|
|
qboolean wrapped_this_time;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-22 19:00:55 +00:00
|
|
|
if ((width < 0) || (width > 512)) // FIXME shouldn't really have a max
|
2002-05-14 06:12:29 +00:00
|
|
|
Sys_Error ("D_SCAlloc: bad cache width %d", width);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2002-08-22 19:00:55 +00:00
|
|
|
if ((size <= 0) || (size > 0x40000)) // FIXME ditto
|
2002-05-14 06:12:29 +00:00
|
|
|
Sys_Error ("D_SCAlloc: bad cache size %d", size);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2002-10-10 19:44:27 +00:00
|
|
|
// This adds the offset of data[0] in the surfcache_t struct.
|
2001-08-31 19:13:16 +00:00
|
|
|
size += field_offset (surfcache_t, data);
|
2001-05-18 20:19:20 +00:00
|
|
|
|
2002-10-10 19:44:27 +00:00
|
|
|
#define SIZE_ALIGN (sizeof (surfcache_t *) - 1)
|
2001-05-18 20:19:20 +00:00
|
|
|
size = (size + SIZE_ALIGN) & ~SIZE_ALIGN;
|
|
|
|
#undef SIZE_ALIGN
|
2001-02-19 21:15:25 +00:00
|
|
|
size = (size + 3) & ~3;
|
|
|
|
if (size > sc_size)
|
2001-02-26 06:48:02 +00:00
|
|
|
Sys_Error ("D_SCAlloc: %i > cache size", size);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
// if there is not size bytes after the rover, reset to the start
|
2001-02-19 21:15:25 +00:00
|
|
|
wrapped_this_time = false;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (!sc_rover || (byte *) sc_rover - (byte *) sc_base > sc_size - size) {
|
|
|
|
if (sc_rover) {
|
2001-02-19 21:15:25 +00:00
|
|
|
wrapped_this_time = true;
|
|
|
|
}
|
|
|
|
sc_rover = sc_base;
|
|
|
|
}
|
2001-05-15 17:38:43 +00:00
|
|
|
// colect and free surfcache_t blocks until the rover block is large enough
|
2001-02-19 21:15:25 +00:00
|
|
|
new = sc_rover;
|
|
|
|
if (sc_rover->owner)
|
|
|
|
*sc_rover->owner = NULL;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
while (new->size < size) {
|
|
|
|
// free another
|
2001-02-19 21:15:25 +00:00
|
|
|
sc_rover = sc_rover->next;
|
|
|
|
if (!sc_rover)
|
|
|
|
Sys_Error ("D_SCAlloc: hit the end of memory");
|
|
|
|
if (sc_rover->owner)
|
|
|
|
*sc_rover->owner = NULL;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
new->size += sc_rover->size;
|
|
|
|
new->next = sc_rover->next;
|
|
|
|
}
|
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
// create a fragment out of any leftovers
|
2001-02-26 06:48:02 +00:00
|
|
|
if (new->size - size > 256) {
|
|
|
|
sc_rover = (surfcache_t *) ((byte *) new + size);
|
2001-02-19 21:15:25 +00:00
|
|
|
sc_rover->size = new->size - size;
|
|
|
|
sc_rover->next = new->next;
|
|
|
|
sc_rover->width = 0;
|
|
|
|
sc_rover->owner = NULL;
|
|
|
|
new->next = sc_rover;
|
|
|
|
new->size = size;
|
2001-02-26 06:48:02 +00:00
|
|
|
} else
|
2001-02-19 21:15:25 +00:00
|
|
|
sc_rover = new->next;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
new->width = width;
|
|
|
|
// DEBUG
|
|
|
|
if (width > 0)
|
2001-02-26 06:48:02 +00:00
|
|
|
new->height = (size - sizeof (*new) + sizeof (new->data)) / width;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
new->owner = NULL; // should be set properly after return
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (d_roverwrapped) {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (wrapped_this_time || (sc_rover >= d_initial_rover))
|
|
|
|
r_cache_thrash = true;
|
2001-02-26 06:48:02 +00:00
|
|
|
} else if (wrapped_this_time) {
|
2001-02-19 21:15:25 +00:00
|
|
|
d_roverwrapped = true;
|
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
D_CheckCacheGuard (); // DEBUG
|
2001-02-19 21:15:25 +00:00
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
#if 0
|
|
|
|
static void
|
2001-02-26 06:48:02 +00:00
|
|
|
D_SCDump (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
surfcache_t *test;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (test = sc_base; test; test = test->next) {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (test == sc_rover)
|
|
|
|
Sys_Printf ("ROVER:\n");
|
2001-05-18 20:19:20 +00:00
|
|
|
Sys_Printf ("%p : %i bytes %i width\n", test, test->size,
|
|
|
|
test->width);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
2003-01-06 18:28:13 +00:00
|
|
|
#endif
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
surfcache_t *
|
|
|
|
D_CacheSurface (msurface_t *surface, int miplevel)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
surfcache_t *cache;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
// if the surface is animating or flashing, flush the cache
|
2002-03-16 09:25:06 +00:00
|
|
|
r_drawsurf.texture = R_TextureAnimation (surface);
|
2001-02-19 21:15:25 +00:00
|
|
|
r_drawsurf.lightadj[0] = d_lightstylevalue[surface->styles[0]];
|
|
|
|
r_drawsurf.lightadj[1] = d_lightstylevalue[surface->styles[1]];
|
|
|
|
r_drawsurf.lightadj[2] = d_lightstylevalue[surface->styles[2]];
|
|
|
|
r_drawsurf.lightadj[3] = d_lightstylevalue[surface->styles[3]];
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
// see if the cache holds apropriate data
|
2001-02-19 21:15:25 +00:00
|
|
|
cache = surface->cachespots[miplevel];
|
|
|
|
|
|
|
|
if (cache && !cache->dlight && surface->dlightframe != r_framecount
|
2001-02-26 06:48:02 +00:00
|
|
|
&& cache->texture == r_drawsurf.texture
|
|
|
|
&& cache->lightadj[0] == r_drawsurf.lightadj[0]
|
|
|
|
&& cache->lightadj[1] == r_drawsurf.lightadj[1]
|
|
|
|
&& cache->lightadj[2] == r_drawsurf.lightadj[2]
|
|
|
|
&& cache->lightadj[3] == r_drawsurf.lightadj[3])
|
2001-02-19 21:15:25 +00:00
|
|
|
return cache;
|
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
// determine shape of surface
|
2001-02-26 06:48:02 +00:00
|
|
|
surfscale = 1.0 / (1 << miplevel);
|
2001-02-19 21:15:25 +00:00
|
|
|
r_drawsurf.surfmip = miplevel;
|
|
|
|
r_drawsurf.surfwidth = surface->extents[0] >> miplevel;
|
|
|
|
r_drawsurf.rowbytes = r_drawsurf.surfwidth;
|
|
|
|
r_drawsurf.surfheight = surface->extents[1] >> miplevel;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
// allocate memory if needed
|
2001-08-29 02:16:17 +00:00
|
|
|
if (!cache) {
|
|
|
|
// if a texture just animated, don't reallocate it
|
2001-02-19 21:15:25 +00:00
|
|
|
cache = D_SCAlloc (r_drawsurf.surfwidth,
|
|
|
|
r_drawsurf.surfwidth * r_drawsurf.surfheight);
|
|
|
|
surface->cachespots[miplevel] = cache;
|
|
|
|
cache->owner = &surface->cachespots[miplevel];
|
|
|
|
cache->mipscale = surfscale;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (surface->dlightframe == r_framecount)
|
|
|
|
cache->dlight = 1;
|
|
|
|
else
|
|
|
|
cache->dlight = 0;
|
|
|
|
|
2001-08-25 02:47:11 +00:00
|
|
|
r_drawsurf.surfdat = (byte *) cache->data;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
cache->texture = r_drawsurf.texture;
|
|
|
|
cache->lightadj[0] = r_drawsurf.lightadj[0];
|
|
|
|
cache->lightadj[1] = r_drawsurf.lightadj[1];
|
|
|
|
cache->lightadj[2] = r_drawsurf.lightadj[2];
|
|
|
|
cache->lightadj[3] = r_drawsurf.lightadj[3];
|
|
|
|
|
2001-05-15 17:38:43 +00:00
|
|
|
// draw and light the surface texture
|
2001-02-19 21:15:25 +00:00
|
|
|
r_drawsurf.surf = surface;
|
|
|
|
|
|
|
|
c_surf++;
|
|
|
|
R_DrawSurface ();
|
|
|
|
|
|
|
|
return surface->cachespots[miplevel];
|
|
|
|
}
|