2012-02-14 13:19:17 +00:00
|
|
|
/*
|
2012-02-22 12:53:17 +00:00
|
|
|
vid_render_glsl.c
|
2012-02-14 13:19:17 +00:00
|
|
|
|
|
|
|
GLSL version of the renderer
|
|
|
|
|
|
|
|
Copyright (C) 2012 Bill Currie <bill@taniwha.org>
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-03-25 03:22:16 +00:00
|
|
|
#include "QF/cvar.h"
|
2022-03-31 10:07:15 +00:00
|
|
|
#include "QF/image.h"
|
2022-03-25 03:22:16 +00:00
|
|
|
|
2012-02-14 13:19:17 +00:00
|
|
|
#include "QF/plugin/general.h"
|
|
|
|
#include "QF/plugin/vid_render.h"
|
|
|
|
|
2022-03-07 14:32:44 +00:00
|
|
|
#include "QF/GLSL/funcs.h"
|
|
|
|
#include "QF/GLSL/defines.h"
|
2021-07-21 07:36:51 +00:00
|
|
|
#include "QF/GLSL/qf_bsp.h"
|
2022-03-07 14:32:44 +00:00
|
|
|
#include "QF/GLSL/qf_draw.h"
|
2022-03-25 03:22:16 +00:00
|
|
|
#include "QF/GLSL/qf_fisheye.h"
|
2022-03-14 05:31:23 +00:00
|
|
|
#include "QF/GLSL/qf_main.h"
|
2022-03-17 08:50:38 +00:00
|
|
|
#include "QF/GLSL/qf_particles.h"
|
2012-04-12 04:57:05 +00:00
|
|
|
#include "QF/GLSL/qf_vid.h"
|
2022-03-24 16:24:38 +00:00
|
|
|
#include "QF/GLSL/qf_warp.h"
|
2012-04-12 04:57:05 +00:00
|
|
|
|
2012-02-14 13:19:17 +00:00
|
|
|
#include "mod_internal.h"
|
|
|
|
#include "r_internal.h"
|
2019-07-08 04:40:29 +00:00
|
|
|
#include "vid_internal.h"
|
2019-07-08 16:00:47 +00:00
|
|
|
#include "vid_gl.h"
|
2012-02-14 13:19:17 +00:00
|
|
|
|
2019-07-08 16:00:47 +00:00
|
|
|
gl_ctx_t *glsl_ctx;
|
|
|
|
|
2021-06-26 06:43:17 +00:00
|
|
|
static void
|
2021-07-10 15:09:41 +00:00
|
|
|
glsl_vid_render_choose_visual (void *data)
|
2021-06-26 06:43:17 +00:00
|
|
|
{
|
|
|
|
glsl_ctx->choose_visual (glsl_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-07-10 15:09:41 +00:00
|
|
|
glsl_vid_render_create_context (void *data)
|
2021-06-26 06:43:17 +00:00
|
|
|
{
|
2022-03-24 11:35:29 +00:00
|
|
|
glsl_ctx->create_context (glsl_ctx, 1);
|
2021-06-26 06:43:17 +00:00
|
|
|
}
|
|
|
|
|
2012-02-22 12:53:17 +00:00
|
|
|
static vid_model_funcs_t model_funcs = {
|
2021-01-19 04:05:39 +00:00
|
|
|
sizeof (glsltex_t),
|
2012-02-23 03:55:50 +00:00
|
|
|
glsl_Mod_LoadLighting,
|
2021-01-18 23:26:53 +00:00
|
|
|
0,//Mod_SubdivideSurface,
|
2012-02-23 03:55:50 +00:00
|
|
|
glsl_Mod_ProcessTexture,
|
|
|
|
|
2012-04-27 05:40:06 +00:00
|
|
|
Mod_LoadIQM,
|
2012-02-22 12:53:17 +00:00
|
|
|
Mod_LoadAliasModel,
|
|
|
|
Mod_LoadSpriteModel,
|
|
|
|
|
2012-02-23 03:55:50 +00:00
|
|
|
glsl_Mod_MakeAliasModelDisplayLists,
|
[model] Make alias skin loading a batch operation
Really, this won't make all that much difference because alias models
with more than one skin are quite rare, and those with animated skin
groups are even rarer. However, for those models that do have more than
one skin, it will allow for reduced allocation overheads, and when
supported (glsl, vulkan, maybe gl), loading all the skins into an array
texture (since all skins are the same size, though external skins may
vary), but that's not implemented yet, this just wraps the old one skin
at a time code.
2022-04-04 06:38:27 +00:00
|
|
|
glsl_Mod_LoadAllSkins,
|
2012-02-23 03:55:50 +00:00
|
|
|
glsl_Mod_FinalizeAliasModel,
|
|
|
|
glsl_Mod_LoadExternalSkins,
|
2012-05-14 14:02:06 +00:00
|
|
|
glsl_Mod_IQMFinish,
|
2012-02-23 03:55:50 +00:00
|
|
|
0,
|
2021-12-13 23:36:19 +00:00
|
|
|
glsl_Mod_SpriteLoadFrames,
|
2012-02-23 03:55:50 +00:00
|
|
|
|
2012-02-22 12:53:17 +00:00
|
|
|
Skin_SetColormap,
|
|
|
|
Skin_SetSkin,
|
2012-02-23 03:09:19 +00:00
|
|
|
glsl_Skin_SetupSkin,
|
2012-02-22 12:53:17 +00:00
|
|
|
Skin_SetTranslation,
|
2012-02-23 03:09:19 +00:00
|
|
|
glsl_Skin_ProcessTranslation,
|
|
|
|
glsl_Skin_InitTranslations,
|
2012-02-22 12:53:17 +00:00
|
|
|
};
|
|
|
|
|
2021-06-26 06:43:17 +00:00
|
|
|
static void
|
|
|
|
glsl_vid_render_init (void)
|
|
|
|
{
|
|
|
|
if (!vr_data.vid->vid_internal->sw_context) {
|
|
|
|
Sys_Error ("Sorry, OpenGL (GLSL) not supported by this program.");
|
|
|
|
}
|
|
|
|
glsl_ctx = vr_data.vid->vid_internal->gl_context ();
|
|
|
|
glsl_ctx->init_gl = GLSL_Init_Common;
|
|
|
|
glsl_ctx->load_gl ();
|
|
|
|
|
2021-07-10 15:09:41 +00:00
|
|
|
vr_data.vid->vid_internal->data = glsl_ctx;
|
2021-06-26 06:43:17 +00:00
|
|
|
vr_data.vid->vid_internal->set_palette = GLSL_SetPalette;
|
|
|
|
vr_data.vid->vid_internal->choose_visual = glsl_vid_render_choose_visual;
|
|
|
|
vr_data.vid->vid_internal->create_context = glsl_vid_render_create_context;
|
|
|
|
vr_funcs = &glsl_vid_render_funcs;
|
|
|
|
m_funcs = &model_funcs;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
glsl_vid_render_shutdown (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-03-07 14:32:44 +00:00
|
|
|
static unsigned int GLErr_InvalidEnum;
|
|
|
|
static unsigned int GLErr_InvalidValue;
|
|
|
|
static unsigned int GLErr_InvalidOperation;
|
|
|
|
static unsigned int GLErr_OutOfMemory;
|
|
|
|
static unsigned int GLErr_Unknown;
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
R_TestErrors (unsigned int numerous)
|
|
|
|
{
|
|
|
|
switch (qfeglGetError ()) {
|
|
|
|
case GL_NO_ERROR:
|
|
|
|
return numerous;
|
|
|
|
break;
|
|
|
|
case GL_INVALID_ENUM:
|
|
|
|
GLErr_InvalidEnum++;
|
|
|
|
R_TestErrors (numerous++);
|
|
|
|
break;
|
|
|
|
case GL_INVALID_VALUE:
|
|
|
|
GLErr_InvalidValue++;
|
|
|
|
R_TestErrors (numerous++);
|
|
|
|
break;
|
|
|
|
case GL_INVALID_OPERATION:
|
|
|
|
GLErr_InvalidOperation++;
|
|
|
|
R_TestErrors (numerous++);
|
|
|
|
break;
|
|
|
|
case GL_OUT_OF_MEMORY:
|
|
|
|
GLErr_OutOfMemory++;
|
|
|
|
R_TestErrors (numerous++);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
GLErr_Unknown++;
|
|
|
|
R_TestErrors (numerous++);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return numerous;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
R_DisplayErrors (void)
|
|
|
|
{
|
|
|
|
if (GLErr_InvalidEnum)
|
|
|
|
printf ("%d OpenGL errors: Invalid Enum!\n", GLErr_InvalidEnum);
|
|
|
|
if (GLErr_InvalidValue)
|
|
|
|
printf ("%d OpenGL errors: Invalid Value!\n", GLErr_InvalidValue);
|
|
|
|
if (GLErr_InvalidOperation)
|
|
|
|
printf ("%d OpenGL errors: Invalid Operation!\n", GLErr_InvalidOperation);
|
|
|
|
if (GLErr_OutOfMemory)
|
|
|
|
printf ("%d OpenGL errors: Out Of Memory!\n", GLErr_OutOfMemory);
|
|
|
|
if (GLErr_Unknown)
|
|
|
|
printf ("%d Unknown OpenGL errors!\n", GLErr_Unknown);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
R_ClearErrors (void)
|
|
|
|
{
|
|
|
|
GLErr_InvalidEnum = 0;
|
|
|
|
GLErr_InvalidValue = 0;
|
|
|
|
GLErr_InvalidOperation = 0;
|
|
|
|
GLErr_OutOfMemory = 0;
|
|
|
|
GLErr_Unknown = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
glsl_begin_frame (void)
|
|
|
|
{
|
|
|
|
if (R_TestErrors (0))
|
|
|
|
R_DisplayErrors ();
|
|
|
|
R_ClearErrors ();
|
|
|
|
|
|
|
|
if (glsl_ctx->begun) {
|
|
|
|
glsl_ctx->begun = 0;
|
|
|
|
glsl_ctx->end_rendering ();
|
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME forces the status bar to redraw. needed because it does not fully
|
|
|
|
//update in sw modes but must in glsl mode
|
|
|
|
vr_data.scr_copyeverything = 1;
|
|
|
|
|
|
|
|
qfeglClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
|
|
|
|
|
|
|
glsl_ctx->begun = 1;
|
|
|
|
|
|
|
|
GLSL_Set2D ();
|
|
|
|
GLSL_DrawReset ();
|
|
|
|
|
|
|
|
if (r_refdef.vrect.x > 0) {
|
2022-03-17 02:21:38 +00:00
|
|
|
int rx = r_refdef.vrect.x + r_refdef.vrect.width;
|
|
|
|
int vh = vid.height - vr_data.lineadj;
|
2022-03-07 14:32:44 +00:00
|
|
|
// left
|
2022-03-17 02:21:38 +00:00
|
|
|
glsl_Draw_TileClear (0, 0, r_refdef.vrect.x, vh);
|
2022-03-07 14:32:44 +00:00
|
|
|
// right
|
2022-03-17 02:21:38 +00:00
|
|
|
glsl_Draw_TileClear (rx, 0, vid.width - rx, vh);
|
2022-03-07 14:32:44 +00:00
|
|
|
}
|
|
|
|
if (r_refdef.vrect.y > 0) {
|
2022-03-17 02:21:38 +00:00
|
|
|
int lx = r_refdef.vrect.x;
|
|
|
|
int ty = r_refdef.vrect.y;
|
|
|
|
int rx = r_refdef.vrect.x + r_refdef.vrect.width;
|
|
|
|
int by = r_refdef.vrect.y + r_refdef.vrect.height;
|
|
|
|
int vh = vid.height - vr_data.lineadj;
|
2022-03-07 14:32:44 +00:00
|
|
|
// top
|
2022-03-17 02:21:38 +00:00
|
|
|
glsl_Draw_TileClear (lx, 0, rx, ty);
|
2022-03-07 14:32:44 +00:00
|
|
|
// bottom
|
2022-03-17 02:21:38 +00:00
|
|
|
glsl_Draw_TileClear (lx, by, r_refdef.vrect.width, vh - by);
|
2022-03-07 14:32:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
glsl_render_view (void)
|
|
|
|
{
|
2022-03-25 03:22:16 +00:00
|
|
|
qfeglClear (GL_DEPTH_BUFFER_BIT);
|
2022-03-07 14:32:44 +00:00
|
|
|
glsl_R_RenderView ();
|
|
|
|
}
|
|
|
|
|
2022-03-17 15:14:48 +00:00
|
|
|
static void
|
|
|
|
glsl_draw_transparent (void)
|
|
|
|
{
|
|
|
|
glsl_R_DrawWaterSurfaces ();
|
|
|
|
}
|
|
|
|
|
2022-03-25 03:22:16 +00:00
|
|
|
static void glsl_bind_framebuffer (framebuffer_t *fb);
|
|
|
|
|
2022-03-24 06:45:01 +00:00
|
|
|
static void
|
|
|
|
glsl_post_process (framebuffer_t *src)
|
|
|
|
{
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (scr_fisheye) {
|
2022-03-25 03:22:16 +00:00
|
|
|
glsl_FisheyeScreen (src);
|
|
|
|
} else if (r_dowarp) {
|
2022-03-24 16:24:38 +00:00
|
|
|
glsl_WarpScreen (src);
|
|
|
|
}
|
2022-03-24 06:45:01 +00:00
|
|
|
}
|
|
|
|
|
2022-03-07 14:32:44 +00:00
|
|
|
static void
|
2022-03-15 06:42:43 +00:00
|
|
|
glsl_set_2d (int scaled)
|
2022-03-07 14:32:44 +00:00
|
|
|
{
|
2022-03-15 06:42:43 +00:00
|
|
|
if (scaled) {
|
|
|
|
GLSL_Set2DScaled ();
|
|
|
|
} else {
|
|
|
|
GLSL_Set2D ();
|
|
|
|
}
|
2022-03-07 14:32:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
glsl_end_frame (void)
|
|
|
|
{
|
|
|
|
GLSL_FlushText ();
|
|
|
|
GLSL_End2D ();
|
|
|
|
qfeglFlush ();
|
|
|
|
}
|
|
|
|
|
2022-03-24 06:45:01 +00:00
|
|
|
static framebuffer_t *
|
2022-03-25 03:22:16 +00:00
|
|
|
glsl_create_cube_map (int side)
|
2022-03-24 06:45:01 +00:00
|
|
|
{
|
2022-03-25 03:22:16 +00:00
|
|
|
GLuint tex[2];
|
|
|
|
qfeglGenTextures (2, tex);
|
|
|
|
|
|
|
|
qfeglBindTexture (GL_TEXTURE_CUBE_MAP, tex[0]);
|
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
qfeglTexImage2D (GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, GL_RGBA,
|
|
|
|
side, side, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0);
|
|
|
|
}
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S,
|
|
|
|
GL_CLAMP_TO_EDGE);
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T,
|
|
|
|
GL_CLAMP_TO_EDGE);
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
|
|
|
|
qfeglBindTexture (GL_TEXTURE_2D, tex[1]);
|
|
|
|
qfeglTexImage2D (GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, side, side, 0,
|
|
|
|
GL_DEPTH_COMPONENT, GL_UNSIGNED_BYTE, 0);
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
|
|
|
|
size_t size = sizeof (framebuffer_t) * 6;
|
|
|
|
size += sizeof (gl_framebuffer_t) * 6;
|
|
|
|
|
|
|
|
framebuffer_t *cube = malloc (size);
|
|
|
|
__auto_type buffer_base = (gl_framebuffer_t *) &cube[6];
|
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
cube[i].width = side;
|
|
|
|
cube[i].height = side;
|
|
|
|
__auto_type buffer = buffer_base + i;
|
|
|
|
cube[i].buffer = buffer;
|
|
|
|
|
|
|
|
buffer->color = tex[0];
|
|
|
|
buffer->depth = tex[1];
|
|
|
|
qfeglGenFramebuffers (1, &buffer->handle);
|
|
|
|
|
|
|
|
qfeglBindFramebuffer (GL_FRAMEBUFFER, buffer->handle);
|
|
|
|
qfeglFramebufferTexture2D (GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
|
|
|
GL_TEXTURE_CUBE_MAP_POSITIVE_X + i,
|
|
|
|
buffer->color, 0);
|
|
|
|
qfeglFramebufferTexture2D (GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT,
|
|
|
|
GL_TEXTURE_2D, buffer->depth, 0);
|
|
|
|
}
|
|
|
|
qfeglBindFramebuffer (GL_FRAMEBUFFER, 0);
|
|
|
|
return cube;
|
2022-03-24 06:45:01 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 03:22:27 +00:00
|
|
|
static framebuffer_t *
|
|
|
|
glsl_create_frame_buffer (int width, int height)
|
|
|
|
{
|
2022-03-24 16:24:38 +00:00
|
|
|
size_t size = sizeof (framebuffer_t) + sizeof (gl_framebuffer_t);
|
|
|
|
|
|
|
|
framebuffer_t *fb = malloc (size);
|
|
|
|
fb->width = width;
|
|
|
|
fb->height = height;
|
|
|
|
__auto_type buffer = (gl_framebuffer_t *) &fb[1];
|
|
|
|
fb->buffer = buffer;
|
|
|
|
qfeglGenFramebuffers (1, &buffer->handle);
|
|
|
|
|
|
|
|
GLuint tex[2];
|
|
|
|
qfeglGenTextures (2, tex);
|
|
|
|
|
|
|
|
buffer->color = tex[0];
|
|
|
|
buffer->depth = tex[1];
|
|
|
|
|
|
|
|
qfeglBindTexture (GL_TEXTURE_2D, buffer->color);
|
|
|
|
qfeglTexImage2D (GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0,
|
|
|
|
GL_RGBA, GL_UNSIGNED_BYTE, 0);
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
2022-03-25 03:22:16 +00:00
|
|
|
qfeglTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
2022-03-24 16:24:38 +00:00
|
|
|
|
|
|
|
qfeglBindTexture (GL_TEXTURE_2D, buffer->depth);
|
|
|
|
qfeglTexImage2D (GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, width, height, 0,
|
|
|
|
GL_DEPTH_COMPONENT, GL_UNSIGNED_BYTE, 0);
|
2022-03-25 03:22:16 +00:00
|
|
|
qfeglTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
qfeglTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
2022-03-24 16:24:38 +00:00
|
|
|
|
|
|
|
qfeglBindFramebuffer (GL_FRAMEBUFFER, buffer->handle);
|
|
|
|
qfeglFramebufferTexture2D (GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
|
|
|
|
GL_TEXTURE_2D, buffer->color, 0);
|
|
|
|
qfeglFramebufferTexture2D (GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT,
|
|
|
|
GL_TEXTURE_2D, buffer->depth, 0);
|
|
|
|
|
|
|
|
qfeglBindFramebuffer (GL_FRAMEBUFFER, 0);
|
|
|
|
return fb;
|
2022-03-24 03:22:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
glsl_bind_framebuffer (framebuffer_t *framebuffer)
|
|
|
|
{
|
2022-03-25 03:22:16 +00:00
|
|
|
unsigned width = vr_data.vid->width;
|
|
|
|
unsigned height = vr_data.vid->height;
|
|
|
|
if (!framebuffer) {
|
|
|
|
qfeglBindFramebuffer (GL_FRAMEBUFFER, 0);
|
|
|
|
} else {
|
|
|
|
gl_framebuffer_t *buffer = framebuffer->buffer;
|
|
|
|
qfeglBindFramebuffer (GL_FRAMEBUFFER, buffer->handle);
|
|
|
|
|
|
|
|
width = framebuffer->width;
|
|
|
|
height = framebuffer->height;
|
|
|
|
}
|
2022-03-24 16:24:38 +00:00
|
|
|
|
2022-03-25 03:22:16 +00:00
|
|
|
vrect_t r = { 0, 0, width, height };
|
2022-03-24 16:24:38 +00:00
|
|
|
R_SetVrect (&r, &r_refdef.vrect, 0);
|
2022-03-24 03:22:27 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 15:29:34 +00:00
|
|
|
static void
|
|
|
|
glsl_set_viewport (const vrect_t *view)
|
|
|
|
{
|
2022-03-26 00:41:58 +00:00
|
|
|
int x = view->x;
|
2022-03-30 05:55:32 +00:00
|
|
|
int y = vid.height - (view->y + view->height); //FIXME vid.height
|
2022-03-26 00:41:58 +00:00
|
|
|
int w = view->width;
|
|
|
|
int h = view->height;
|
2022-03-25 15:29:34 +00:00
|
|
|
qfeglViewport (x, y, w, h);
|
|
|
|
}
|
|
|
|
|
2022-03-30 05:55:32 +00:00
|
|
|
static void
|
|
|
|
glsl_set_fov (float x, float y)
|
|
|
|
{
|
|
|
|
float neard, fard;
|
|
|
|
mat4f_t proj;
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
neard = r_nearclip;
|
|
|
|
fard = r_farclip;
|
2022-03-30 05:55:32 +00:00
|
|
|
|
|
|
|
// NOTE columns!
|
|
|
|
proj[0] = (vec4f_t) { 1/x, 0, 0, 0 };
|
|
|
|
proj[1] = (vec4f_t) { 0, 1/y, 0, 0 };
|
|
|
|
proj[2] = (vec4f_t) { 0, 0, (fard) / (fard - neard), 1 };
|
|
|
|
proj[3] = (vec4f_t) { 0, 0, (fard * neard) / (neard - fard), 0 };
|
|
|
|
|
|
|
|
// convert 0..1 depth buffer range to -1..1
|
|
|
|
static mat4f_t depth_range = {
|
|
|
|
{ 1, 0, 0, 0},
|
|
|
|
{ 0, 1, 0, 0},
|
|
|
|
{ 0, 0, 2, 0},
|
|
|
|
{ 0, 0,-1, 1},
|
|
|
|
};
|
|
|
|
mmulf (glsl_ctx->projection, depth_range, proj);
|
|
|
|
}
|
|
|
|
|
2022-03-31 10:07:15 +00:00
|
|
|
static void
|
|
|
|
glsl_capture_screen (capfunc_t callback, void *data)
|
|
|
|
{
|
2022-03-31 11:00:13 +00:00
|
|
|
int count = vid.width * vid.height;
|
|
|
|
tex_t *tex = malloc (sizeof (tex_t) + count * 3);
|
2022-03-31 10:07:15 +00:00
|
|
|
|
|
|
|
if (tex) {
|
|
|
|
tex->data = (byte *) (tex + 1);
|
|
|
|
tex->width = vid.width;
|
|
|
|
tex->height = vid.height;
|
|
|
|
tex->format = tex_rgb;
|
|
|
|
tex->palette = 0;
|
2022-03-31 11:00:13 +00:00
|
|
|
tex->flagbits = 0;
|
|
|
|
tex->loaded = 1;
|
|
|
|
tex->flipped = 1;
|
2022-03-31 10:07:15 +00:00
|
|
|
qfeglReadPixels (0, 0, tex->width, tex->height, GL_RGB,
|
|
|
|
GL_UNSIGNED_BYTE, tex->data);
|
|
|
|
}
|
|
|
|
callback (tex, data);
|
|
|
|
}
|
|
|
|
|
2012-02-22 12:53:17 +00:00
|
|
|
vid_render_funcs_t glsl_vid_render_funcs = {
|
2021-06-26 06:43:17 +00:00
|
|
|
glsl_vid_render_init,
|
2012-02-22 12:53:17 +00:00
|
|
|
glsl_Draw_Character,
|
|
|
|
glsl_Draw_String,
|
|
|
|
glsl_Draw_nString,
|
|
|
|
glsl_Draw_AltString,
|
|
|
|
glsl_Draw_ConsoleBackground,
|
|
|
|
glsl_Draw_Crosshair,
|
|
|
|
glsl_Draw_CrosshairAt,
|
|
|
|
glsl_Draw_TileClear,
|
|
|
|
glsl_Draw_Fill,
|
|
|
|
glsl_Draw_TextBox,
|
|
|
|
glsl_Draw_FadeScreen,
|
|
|
|
glsl_Draw_BlendScreen,
|
|
|
|
glsl_Draw_CachePic,
|
|
|
|
glsl_Draw_UncachePic,
|
|
|
|
glsl_Draw_MakePic,
|
|
|
|
glsl_Draw_DestroyPic,
|
|
|
|
glsl_Draw_PicFromWad,
|
|
|
|
glsl_Draw_Pic,
|
|
|
|
glsl_Draw_Picf,
|
|
|
|
glsl_Draw_SubPic,
|
|
|
|
|
2021-12-19 05:47:25 +00:00
|
|
|
glsl_ParticleSystem,
|
2012-04-10 04:27:53 +00:00
|
|
|
glsl_R_Init,
|
2012-02-22 12:53:17 +00:00
|
|
|
glsl_R_ClearState,
|
|
|
|
glsl_R_LoadSkys,
|
2022-05-05 05:41:46 +00:00
|
|
|
glsl_R_NewScene,
|
2012-02-22 12:53:17 +00:00
|
|
|
glsl_R_LineGraph,
|
2022-03-07 14:32:44 +00:00
|
|
|
glsl_begin_frame,
|
|
|
|
glsl_render_view,
|
2022-03-17 08:50:38 +00:00
|
|
|
glsl_R_RenderEntities,
|
|
|
|
glsl_R_DrawParticles,
|
2022-03-17 15:14:48 +00:00
|
|
|
glsl_draw_transparent,
|
2022-03-24 06:45:01 +00:00
|
|
|
glsl_post_process,
|
2022-03-07 14:32:44 +00:00
|
|
|
glsl_set_2d,
|
|
|
|
glsl_end_frame,
|
2022-03-24 03:22:27 +00:00
|
|
|
|
2022-03-24 06:45:01 +00:00
|
|
|
glsl_create_cube_map,
|
2022-03-24 03:22:27 +00:00
|
|
|
glsl_create_frame_buffer,
|
|
|
|
glsl_bind_framebuffer,
|
2022-03-25 15:29:34 +00:00
|
|
|
glsl_set_viewport,
|
2022-03-30 05:55:32 +00:00
|
|
|
glsl_set_fov,
|
2022-03-24 03:22:27 +00:00
|
|
|
|
2022-03-31 10:07:15 +00:00
|
|
|
glsl_capture_screen,
|
|
|
|
|
2012-02-22 12:53:17 +00:00
|
|
|
&model_funcs
|
|
|
|
};
|
|
|
|
|
2012-02-14 13:19:17 +00:00
|
|
|
static general_funcs_t plugin_info_general_funcs = {
|
2021-06-26 06:43:17 +00:00
|
|
|
.shutdown = glsl_vid_render_shutdown,
|
2012-02-14 13:19:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static general_data_t plugin_info_general_data;
|
|
|
|
|
|
|
|
static plugin_funcs_t plugin_info_funcs = {
|
2021-06-26 06:43:17 +00:00
|
|
|
.general = &plugin_info_general_funcs,
|
|
|
|
.vid_render = &glsl_vid_render_funcs,
|
2012-02-14 13:19:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static plugin_data_t plugin_info_data = {
|
2021-06-26 06:43:17 +00:00
|
|
|
.general = &plugin_info_general_data,
|
|
|
|
.vid_render = &vid_render_data,
|
2012-02-14 13:19:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static plugin_t plugin_info = {
|
2019-07-07 05:57:56 +00:00
|
|
|
qfp_vid_render,
|
2012-02-14 13:19:17 +00:00
|
|
|
0,
|
|
|
|
QFPLUGIN_VERSION,
|
|
|
|
"0.1",
|
|
|
|
"GLSL Renderer",
|
|
|
|
"Copyright (C) 1996-1997 Id Software, Inc.\n"
|
|
|
|
"Copyright (C) 1999-2012 contributors of the QuakeForge project\n"
|
|
|
|
"Please see the file \"AUTHORS\" for a list of contributors",
|
|
|
|
&plugin_info_funcs,
|
|
|
|
&plugin_info_data,
|
|
|
|
};
|
|
|
|
|
|
|
|
PLUGIN_INFO(vid_render, glsl)
|
|
|
|
{
|
|
|
|
return &plugin_info;
|
|
|
|
}
|