2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
gl_rmisc.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
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
2001-02-19 21:15:25 +00:00
|
|
|
#ifdef HAVE_STRINGS_H
|
2001-05-09 05:41:34 +00:00
|
|
|
# include <strings.h>
|
2001-02-19 21:15:25 +00:00
|
|
|
#endif
|
|
|
|
|
2011-12-15 06:07:01 +00:00
|
|
|
#if defined(_WIN32) && defined(HAVE_MALLOC_H)
|
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2001-05-09 05:41:34 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "QF/cmd.h"
|
|
|
|
#include "QF/cvar.h"
|
2002-06-13 05:24:52 +00:00
|
|
|
#include "QF/draw.h"
|
2002-08-27 07:16:28 +00:00
|
|
|
#include "QF/quakefs.h"
|
2001-05-22 06:00:38 +00:00
|
|
|
#include "QF/render.h"
|
2012-02-01 12:52:47 +00:00
|
|
|
#include "QF/screen.h"
|
2001-05-15 03:27:55 +00:00
|
|
|
#include "QF/skin.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/sys.h"
|
2001-09-04 10:32:51 +00:00
|
|
|
#include "QF/vid.h"
|
2001-06-24 09:25:55 +00:00
|
|
|
#include "QF/GL/defines.h"
|
2001-09-04 10:32:51 +00:00
|
|
|
#include "QF/GL/funcs.h"
|
2022-03-14 05:31:23 +00:00
|
|
|
#include "QF/GL/qf_draw.h"
|
2022-03-26 03:08:06 +00:00
|
|
|
#include "QF/GL/qf_fisheye.h"
|
2022-03-17 04:09:20 +00:00
|
|
|
#include "QF/GL/qf_lightmap.h"
|
2022-03-14 05:31:23 +00:00
|
|
|
#include "QF/GL/qf_particles.h"
|
|
|
|
#include "QF/GL/qf_rlight.h"
|
2001-06-24 09:25:55 +00:00
|
|
|
#include "QF/GL/qf_rmain.h"
|
|
|
|
#include "QF/GL/qf_rsurf.h"
|
2022-03-14 05:31:23 +00:00
|
|
|
#include "QF/GL/qf_sky.h"
|
|
|
|
#include "QF/GL/qf_sprite.h"
|
2001-10-28 04:23:37 +00:00
|
|
|
#include "QF/GL/qf_textures.h"
|
2001-09-04 10:32:51 +00:00
|
|
|
#include "QF/GL/qf_vid.h"
|
2001-06-24 09:25:55 +00:00
|
|
|
|
2022-03-04 16:48:10 +00:00
|
|
|
#include "QF/scene/entity.h"
|
2022-05-05 05:41:46 +00:00
|
|
|
#include "QF/scene/scene.h"
|
2022-03-04 16:48:10 +00:00
|
|
|
|
2012-02-14 12:25:19 +00:00
|
|
|
#include "mod_internal.h"
|
2012-02-14 08:28:09 +00:00
|
|
|
#include "r_internal.h"
|
2001-08-22 11:00:25 +00:00
|
|
|
#include "varrays.h"
|
2019-07-08 16:00:47 +00:00
|
|
|
#include "vid_gl.h"
|
2001-08-22 11:00:25 +00:00
|
|
|
|
2022-05-05 12:22:44 +00:00
|
|
|
static gltex_t gl_notexture = { };
|
|
|
|
|
2022-03-14 05:31:23 +00:00
|
|
|
static void
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_LoadSky_f (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
if (Cmd_Argc () != 2) {
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("loadsky <name> : load a skybox\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_LoadSkys (Cmd_Argv (1));
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2022-03-14 05:31:23 +00:00
|
|
|
/*
|
|
|
|
R_TimeRefresh_f
|
|
|
|
|
|
|
|
For program optimization
|
|
|
|
LordHavoc: improved appearance and accuracy of timerefresh
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
gl_R_TimeRefresh_f (void)
|
|
|
|
{
|
|
|
|
/*FIXME update for simd
|
|
|
|
double start, stop, time;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
gl_ctx->end_rendering ();
|
|
|
|
|
|
|
|
start = Sys_DoubleTime ();
|
|
|
|
for (i = 0; i < 128; i++) {
|
|
|
|
r_refdef.viewangles[1] = i * (360.0 / 128.0);
|
|
|
|
gl_R_RenderView ();
|
|
|
|
gl_ctx->end_rendering ();
|
|
|
|
}
|
|
|
|
|
|
|
|
stop = Sys_DoubleTime ();
|
|
|
|
time = stop - start;
|
|
|
|
Sys_Printf ("%g seconds (%g fps)\n", time, 128 / time);
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2012-02-18 13:28:42 +00:00
|
|
|
void
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_Init (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2022-05-05 12:22:44 +00:00
|
|
|
r_notexture_mip->render = &gl_notexture;
|
|
|
|
|
2012-04-10 04:27:53 +00:00
|
|
|
R_Init_Cvars ();
|
|
|
|
|
2012-02-22 07:32:34 +00:00
|
|
|
Cmd_AddCommand ("timerefresh", gl_R_TimeRefresh_f,
|
2001-05-13 00:28:50 +00:00
|
|
|
"Tests the current refresh rate for the current location");
|
2012-02-22 07:32:34 +00:00
|
|
|
Cmd_AddCommand ("loadsky", gl_R_LoadSky_f, "Load a skybox");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2013-02-19 05:45:50 +00:00
|
|
|
gl_Draw_Init ();
|
2022-03-17 04:09:20 +00:00
|
|
|
glrmain_init ();
|
|
|
|
gl_lightmap_init ();
|
2012-02-01 12:52:47 +00:00
|
|
|
SCR_Init ();
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_InitBubble ();
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-05-09 05:41:34 +00:00
|
|
|
GDT_Init ();
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2022-03-15 04:29:05 +00:00
|
|
|
gl_R_InitGraphTextures ();
|
|
|
|
gl_Skin_Init_Textures ();
|
2001-05-15 03:27:55 +00:00
|
|
|
|
2001-12-19 04:03:57 +00:00
|
|
|
r_init = 1;
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_InitParticles ();
|
|
|
|
gl_R_InitSprites ();
|
2012-04-10 04:27:53 +00:00
|
|
|
Skin_Init ();
|
2022-03-26 03:08:06 +00:00
|
|
|
gl_InitFisheye ();
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2011-12-15 06:18:07 +00:00
|
|
|
static void
|
2021-02-01 10:31:11 +00:00
|
|
|
register_textures (mod_brush_t *brush)
|
2011-12-15 06:18:07 +00:00
|
|
|
{
|
|
|
|
texture_t *tex;
|
|
|
|
|
2021-08-01 12:54:05 +00:00
|
|
|
for (unsigned i = 0; i < brush->numtextures; i++) {
|
2021-02-01 10:31:11 +00:00
|
|
|
tex = brush->textures[i];
|
2011-12-15 06:18:07 +00:00
|
|
|
if (!tex)
|
|
|
|
continue;
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_AddTexture (tex);
|
2011-12-15 06:18:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-18 13:28:42 +00:00
|
|
|
void
|
2022-05-05 05:41:46 +00:00
|
|
|
gl_R_NewScene (scene_t *scene)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2002-08-09 06:07:25 +00:00
|
|
|
texture_t *tex;
|
2021-02-01 10:31:11 +00:00
|
|
|
mod_brush_t *brush;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2021-07-26 02:15:51 +00:00
|
|
|
for (int i = 0; i < 256; i++)
|
2001-02-19 21:15:25 +00:00
|
|
|
d_lightstylevalue[i] = 264; // normal light value
|
|
|
|
|
2022-05-05 05:41:46 +00:00
|
|
|
r_refdef.worldmodel = scene->worldmodel;
|
|
|
|
brush = &scene->worldmodel->brush;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-13 00:28:50 +00:00
|
|
|
// clear out efrags in case the level hasn't been reloaded
|
2021-07-27 03:32:40 +00:00
|
|
|
for (unsigned i = 0; i < brush->modleafs; i++)
|
2021-02-01 10:31:11 +00:00
|
|
|
brush->leafs[i].efrags = NULL;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2012-01-29 07:09:35 +00:00
|
|
|
// Force a vis update
|
2022-05-22 07:31:24 +00:00
|
|
|
R_MarkLeaves (0, 0, 0, 0);
|
2012-01-29 07:09:35 +00:00
|
|
|
|
2021-12-19 04:08:39 +00:00
|
|
|
R_ClearParticles ();
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-05-05 05:41:46 +00:00
|
|
|
GL_BuildLightmaps (scene->models, scene->num_models);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// identify sky texture
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_ClearTextures ();
|
2021-08-01 12:54:05 +00:00
|
|
|
for (unsigned i = 0; i < brush->numtextures; i++) {
|
2021-02-01 10:31:11 +00:00
|
|
|
tex = brush->textures[i];
|
2001-11-05 06:20:35 +00:00
|
|
|
if (!tex)
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
2004-11-06 02:21:00 +00:00
|
|
|
if (!strncmp (tex->name, "sky", 3)) {
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_InitSky (tex);
|
2004-11-06 02:21:00 +00:00
|
|
|
}
|
2011-12-15 06:18:07 +00:00
|
|
|
}
|
2011-12-17 10:14:14 +00:00
|
|
|
|
2021-02-01 10:31:11 +00:00
|
|
|
gl_R_InitSurfaceChains (brush);
|
2012-02-22 07:32:34 +00:00
|
|
|
gl_R_AddTexture (r_notexture_mip);
|
2021-02-01 10:31:11 +00:00
|
|
|
register_textures (brush);
|
2022-05-05 05:41:46 +00:00
|
|
|
for (int i = 0; i < scene->num_models; i++) {
|
|
|
|
if (!scene->models[i])
|
2011-12-15 06:18:07 +00:00
|
|
|
continue;
|
2022-05-05 05:41:46 +00:00
|
|
|
if (*scene->models[i]->path == '*')
|
2011-12-17 10:14:14 +00:00
|
|
|
continue;
|
2022-05-05 05:41:46 +00:00
|
|
|
if (scene->models[i] != r_refdef.worldmodel
|
|
|
|
&& scene->models[i]->type == mod_brush)
|
|
|
|
register_textures (&scene->models[i]->brush);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|