2001-05-23 06:33:23 +00:00
|
|
|
/*
|
|
|
|
cl_screen.c
|
|
|
|
|
|
|
|
master for refresh, status bar, console, chat, notify, etc
|
|
|
|
|
|
|
|
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-23 06:33:23 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "QF/console.h"
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-05-23 06:33:23 +00:00
|
|
|
#include "QF/draw.h"
|
2003-09-04 18:59:39 +00:00
|
|
|
#include "QF/image.h"
|
2001-05-23 06:33:23 +00:00
|
|
|
#include "QF/pcx.h"
|
|
|
|
#include "QF/screen.h"
|
|
|
|
|
2022-09-21 08:31:18 +00:00
|
|
|
#include "QF/plugin/console.h"
|
2023-01-21 18:45:50 +00:00
|
|
|
#include "QF/plugin/general.h"
|
2012-02-14 08:28:09 +00:00
|
|
|
#include "QF/plugin/vid_render.h"
|
|
|
|
|
2022-05-05 05:41:46 +00:00
|
|
|
#include "QF/scene/scene.h"
|
2022-02-28 07:59:38 +00:00
|
|
|
#include "QF/scene/transform.h"
|
2023-01-20 18:34:33 +00:00
|
|
|
#include "QF/ui/canvas.h"
|
2021-07-10 09:04:34 +00:00
|
|
|
|
2022-09-21 08:31:18 +00:00
|
|
|
#include "r_local.h" //FIXME for r_cache_thrash
|
|
|
|
|
2022-10-31 15:40:52 +00:00
|
|
|
#include "client/hud.h"
|
2022-12-01 04:11:16 +00:00
|
|
|
#include "client/sbar.h"
|
2022-11-02 06:08:09 +00:00
|
|
|
#include "client/screen.h"
|
|
|
|
#include "client/view.h"
|
2022-03-04 16:48:10 +00:00
|
|
|
#include "client/world.h"
|
|
|
|
|
2022-11-02 06:08:09 +00:00
|
|
|
//#include "nq/include/client.h"
|
2020-06-21 14:15:17 +00:00
|
|
|
|
2022-09-21 08:31:18 +00:00
|
|
|
int scr_showpause;
|
|
|
|
static cvar_t scr_showpause_cvar = {
|
|
|
|
.name = "showpause",
|
|
|
|
.description =
|
|
|
|
"Toggles display of pause graphic",
|
|
|
|
.default_value = "1",
|
|
|
|
.flags = CVAR_NONE,
|
|
|
|
.value = { .type = &cexpr_int, .value = &scr_showpause },
|
|
|
|
};
|
|
|
|
int scr_showram;
|
|
|
|
static cvar_t scr_showram_cvar = {
|
|
|
|
.name = "showram",
|
|
|
|
.description =
|
|
|
|
"Show RAM icon if game is running low on memory",
|
|
|
|
.default_value = "1",
|
|
|
|
.flags = CVAR_NONE,
|
|
|
|
.value = { .type = &cexpr_int, .value = &scr_showram },
|
|
|
|
};
|
|
|
|
int scr_showturtle;
|
|
|
|
static cvar_t scr_showturtle_cvar = {
|
|
|
|
.name = "showturtle",
|
|
|
|
.description =
|
|
|
|
"Show a turtle icon if your fps is below 10",
|
|
|
|
.default_value = "0",
|
|
|
|
.flags = CVAR_NONE,
|
|
|
|
.value = { .type = &cexpr_int, .value = &scr_showturtle },
|
|
|
|
};
|
|
|
|
|
2022-10-31 15:40:52 +00:00
|
|
|
view_t cl_screen_view;
|
2023-01-20 18:34:33 +00:00
|
|
|
uint32_t cl_canvas;
|
2022-10-31 15:40:52 +00:00
|
|
|
static view_t net_view;
|
|
|
|
static view_t timegraph_view;
|
|
|
|
static view_t zgraph_view;
|
|
|
|
static view_t loading_view;
|
|
|
|
static view_t ram_view;
|
|
|
|
static view_t turtle_view;
|
|
|
|
static view_t pause_view;
|
2023-07-08 05:32:02 +00:00
|
|
|
static view_t crosshair_view;
|
|
|
|
static view_t cshift_view;
|
|
|
|
static view_t centerprint_view;
|
2011-12-09 09:41:52 +00:00
|
|
|
|
2022-11-02 06:08:09 +00:00
|
|
|
static viewstate_t *_vs;//FIXME ick
|
|
|
|
|
2023-01-20 18:34:33 +00:00
|
|
|
canvas_system_t cl_canvas_sys;
|
|
|
|
|
2023-07-08 05:04:29 +00:00
|
|
|
static ecs_system_t cl_view_system;
|
|
|
|
|
|
|
|
static view_t
|
|
|
|
clscr_view (int x, int y, int w, int h, grav_t gravity)
|
|
|
|
{
|
|
|
|
auto view = View_New (cl_view_system, cl_screen_view);
|
|
|
|
View_SetPos (view, x, y);
|
|
|
|
View_SetLen (view, w, h);
|
|
|
|
View_SetGravity (view, gravity);
|
|
|
|
View_SetVisible (view, 0);
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clscr_set_pic (view_t view, qpic_t *pic)
|
|
|
|
{
|
|
|
|
Ent_SetComponent (view.id, canvas_pic, view.reg, &pic);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clscr_set_cachepic (view_t view, const char *name)
|
|
|
|
{
|
|
|
|
Ent_SetComponent (view.id, canvas_cachepic, view.reg, &name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clscr_set_canvas_func (view_t view, canvas_func_f func)
|
|
|
|
{
|
|
|
|
Ent_SetComponent (view.id, canvas_func, view.reg, &func);
|
|
|
|
}
|
|
|
|
|
2012-01-28 11:45:14 +00:00
|
|
|
static void
|
2023-07-08 05:32:02 +00:00
|
|
|
cl_draw_crosshair (view_pos_t abs, view_pos_t len)
|
|
|
|
{
|
|
|
|
r_funcs->Draw_Crosshair ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cl_draw_centerprint (view_pos_t abs, view_pos_t len)
|
|
|
|
{
|
|
|
|
Sbar_DrawCenterPrint ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
SCR_CShift (view_pos_t abs, view_pos_t len)
|
2012-01-28 11:45:14 +00:00
|
|
|
{
|
|
|
|
mleaf_t *leaf;
|
|
|
|
int contents = CONTENTS_EMPTY;
|
|
|
|
|
2022-11-02 06:08:09 +00:00
|
|
|
if (_vs->active && cl_world.scene->worldmodel) {
|
2022-02-28 07:59:38 +00:00
|
|
|
vec4f_t origin;
|
2022-11-02 06:08:09 +00:00
|
|
|
origin = Transform_GetWorldPosition (_vs->camera_transform);
|
2023-06-28 12:45:41 +00:00
|
|
|
leaf = Mod_PointInLeaf (origin, &cl_world.scene->worldmodel->brush);
|
2012-01-28 11:45:14 +00:00
|
|
|
contents = leaf->contents;
|
|
|
|
}
|
2022-11-02 06:08:09 +00:00
|
|
|
V_SetContentsColor (_vs, contents);
|
|
|
|
r_funcs->Draw_BlendScreen (_vs->cshift_color);
|
2012-01-28 11:45:14 +00:00
|
|
|
}
|
|
|
|
|
2022-09-21 08:31:18 +00:00
|
|
|
static void
|
2022-10-31 15:40:52 +00:00
|
|
|
scr_draw_views (void)
|
2022-09-21 08:31:18 +00:00
|
|
|
{
|
2022-10-31 15:40:52 +00:00
|
|
|
if (scr_showturtle) {
|
|
|
|
static int count;
|
|
|
|
if (r_data->frametime < 0.1) {
|
|
|
|
count = 0;
|
|
|
|
} else {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
View_SetVisible (turtle_view, count > 2);
|
2022-09-21 08:31:18 +00:00
|
|
|
}
|
|
|
|
|
2022-10-31 15:40:52 +00:00
|
|
|
// turn off for screenshots
|
|
|
|
View_SetVisible (pause_view, scr_showpause && r_data->paused);
|
2022-09-21 08:31:18 +00:00
|
|
|
|
2022-10-31 15:40:52 +00:00
|
|
|
View_SetVisible (ram_view, scr_showram && r_cache_thrash);
|
2022-12-01 08:50:13 +00:00
|
|
|
double msg_time = _vs->realtime - _vs->last_servermessage;
|
|
|
|
View_SetVisible (net_view, (!_vs->demoplayback && msg_time >= 0.3));
|
2022-11-02 06:08:09 +00:00
|
|
|
View_SetVisible (loading_view, _vs->loading);
|
2023-07-08 05:32:02 +00:00
|
|
|
View_SetVisible (crosshair_view, !_vs->intermission);
|
2022-10-31 15:40:52 +00:00
|
|
|
// FIXME cvar callbacks
|
|
|
|
View_SetVisible (timegraph_view, r_timegraph);
|
|
|
|
View_SetVisible (zgraph_view, r_zgraph);
|
2021-07-11 03:05:14 +00:00
|
|
|
|
2023-01-21 18:45:50 +00:00
|
|
|
Con_DrawConsole ();
|
2023-01-20 18:34:33 +00:00
|
|
|
Canvas_Draw (cl_canvas_sys);
|
|
|
|
}
|
2001-05-23 06:33:23 +00:00
|
|
|
|
2023-01-20 18:34:33 +00:00
|
|
|
static SCR_Func scr_funcs[] = {
|
2022-11-01 12:00:40 +00:00
|
|
|
scr_draw_views,
|
2004-03-01 23:47:39 +00:00
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2023-01-16 04:23:44 +00:00
|
|
|
static int cl_scale;
|
|
|
|
static int cl_xlen;
|
|
|
|
static int cl_ylen;
|
|
|
|
|
|
|
|
static void
|
|
|
|
cl_set_size (void)
|
|
|
|
{
|
|
|
|
int xlen = cl_xlen / cl_scale;
|
|
|
|
int ylen = cl_ylen / cl_scale;
|
2023-07-08 11:56:40 +00:00
|
|
|
//printf ("cl_set_size: %d %d %d\n", cl_scale, xlen, ylen);
|
|
|
|
Canvas_SetLen (cl_canvas_sys, cl_canvas, (view_pos_t) { xlen, ylen });
|
|
|
|
Canvas_SetLen (cl_canvas_sys, hud_canvas, (view_pos_t) { xlen, ylen });
|
2023-01-16 04:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cl_scale_listener (void *data, const cvar_t *cvar)
|
|
|
|
{
|
|
|
|
cl_scale = *(int *) cvar->value.value;
|
|
|
|
cl_set_size ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cl_vidsize_listener (void *data, const viddef_t *vdef)
|
|
|
|
{
|
|
|
|
cl_xlen = vdef->width;
|
|
|
|
cl_ylen = vdef->height;
|
|
|
|
cl_set_size ();
|
|
|
|
}
|
|
|
|
|
2023-07-08 05:04:29 +00:00
|
|
|
static void
|
|
|
|
cl_create_views (void)
|
2022-09-21 08:31:18 +00:00
|
|
|
{
|
|
|
|
qpic_t *pic;
|
2023-07-08 05:04:29 +00:00
|
|
|
const char *name;
|
2023-07-08 05:32:02 +00:00
|
|
|
auto vid = r_data->vid;
|
2022-09-21 08:31:18 +00:00
|
|
|
|
2023-07-08 05:04:29 +00:00
|
|
|
pic = r_funcs->Draw_PicFromWad ("ram");
|
|
|
|
ram_view = clscr_view (32, 0, pic->width, pic->height, grav_northwest);
|
|
|
|
clscr_set_pic (ram_view, pic);
|
|
|
|
|
|
|
|
pic = r_funcs->Draw_PicFromWad ("turtle");
|
|
|
|
turtle_view = clscr_view (32, 0, pic->width, pic->height, grav_northwest);
|
|
|
|
clscr_set_pic (turtle_view, pic);
|
|
|
|
|
|
|
|
pic = r_funcs->Draw_PicFromWad ("net");
|
|
|
|
net_view = clscr_view (64, 0, pic->width, pic->height, grav_northwest);
|
|
|
|
clscr_set_pic (net_view, pic);
|
|
|
|
|
2023-07-08 05:32:02 +00:00
|
|
|
timegraph_view = clscr_view (0, 0, vid->width, 100, grav_southwest);
|
2023-07-08 05:04:29 +00:00
|
|
|
clscr_set_canvas_func (timegraph_view, R_TimeGraph);
|
|
|
|
View_SetVisible (timegraph_view, r_timegraph);
|
|
|
|
|
2023-07-08 05:32:02 +00:00
|
|
|
zgraph_view = clscr_view (0, 0, vid->width, 100, grav_southwest);
|
2023-07-08 05:04:29 +00:00
|
|
|
clscr_set_canvas_func (zgraph_view, R_ZGraph);
|
|
|
|
View_SetVisible (zgraph_view, r_zgraph);
|
|
|
|
|
|
|
|
name = "gfx/loading.lmp";
|
|
|
|
pic = r_funcs->Draw_CachePic (name, 1);
|
|
|
|
loading_view = clscr_view (0, -24, pic->width, pic->height, grav_center);
|
|
|
|
clscr_set_cachepic (loading_view, name);
|
|
|
|
|
|
|
|
name = "gfx/pause.lmp";
|
|
|
|
pic = r_funcs->Draw_CachePic (name, 1);
|
|
|
|
pause_view = clscr_view (0, -24, pic->width, pic->height, grav_center);
|
|
|
|
clscr_set_cachepic (pause_view, name);
|
2023-07-08 05:32:02 +00:00
|
|
|
|
|
|
|
crosshair_view = clscr_view (0, 0, vid->width, vid->height, grav_northwest);
|
|
|
|
clscr_set_canvas_func (crosshair_view, cl_draw_crosshair);
|
|
|
|
|
|
|
|
cshift_view = clscr_view (0, 0, vid->width, vid->height, grav_northwest);
|
|
|
|
clscr_set_canvas_func (cshift_view, SCR_CShift);
|
|
|
|
View_SetVisible (cshift_view, 1);
|
|
|
|
|
|
|
|
centerprint_view = clscr_view (0, 0, vid->width, vid->height,
|
|
|
|
grav_northwest);
|
|
|
|
clscr_set_canvas_func (centerprint_view, cl_draw_centerprint);
|
2023-07-08 05:04:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CL_Init_Screen (void)
|
|
|
|
{
|
2023-01-20 18:34:33 +00:00
|
|
|
__auto_type reg = ECS_NewRegistry ();
|
|
|
|
Canvas_InitSys (&cl_canvas_sys, reg);
|
2023-01-21 18:45:50 +00:00
|
|
|
if (con_module) {
|
|
|
|
__auto_type cd = con_module->data->console;
|
|
|
|
cd->component_base = ECS_RegisterComponents (reg, cd->components,
|
|
|
|
cd->num_components);
|
|
|
|
cd->canvas_sys = &cl_canvas_sys;
|
|
|
|
}
|
2023-01-20 18:34:33 +00:00
|
|
|
HUD_Init (reg);
|
|
|
|
ECS_CreateComponentPools (reg);
|
|
|
|
|
2023-01-16 04:23:44 +00:00
|
|
|
cl_xlen = viddef.width;
|
|
|
|
cl_ylen = viddef.height;
|
2022-10-31 15:40:52 +00:00
|
|
|
|
2023-07-08 05:04:29 +00:00
|
|
|
cl_view_system = (ecs_system_t) {
|
2023-01-20 18:34:33 +00:00
|
|
|
.reg = reg,
|
|
|
|
.base = cl_canvas_sys.view_base,
|
|
|
|
};
|
|
|
|
|
|
|
|
HUD_CreateCanvas (cl_canvas_sys);
|
|
|
|
|
|
|
|
cl_canvas = Canvas_New (cl_canvas_sys);
|
|
|
|
cl_screen_view = Canvas_GetRootView (cl_canvas_sys, cl_canvas);
|
2022-10-31 15:40:52 +00:00
|
|
|
|
|
|
|
View_SetPos (cl_screen_view, 0, 0);
|
2023-01-20 18:34:33 +00:00
|
|
|
View_SetLen (cl_screen_view, cl_xlen, cl_ylen);
|
2022-10-31 15:40:52 +00:00
|
|
|
View_SetGravity (cl_screen_view, grav_northwest);
|
|
|
|
View_SetVisible (cl_screen_view, 1);
|
|
|
|
|
2022-09-21 08:31:18 +00:00
|
|
|
Cvar_Register (&scr_showpause_cvar, 0, 0);
|
|
|
|
Cvar_Register (&scr_showram_cvar, 0, 0);
|
|
|
|
Cvar_Register (&scr_showturtle_cvar, 0, 0);
|
|
|
|
|
2023-07-08 05:04:29 +00:00
|
|
|
cl_create_views ();
|
2023-01-16 04:23:44 +00:00
|
|
|
|
|
|
|
cvar_t *con_scale = Cvar_FindVar ("con_scale");
|
|
|
|
Cvar_AddListener (con_scale, cl_scale_listener, 0);
|
|
|
|
cl_scale_listener (0, con_scale);
|
|
|
|
VID_OnVidResize_AddListener (cl_vidsize_listener, 0);
|
2022-09-21 08:31:18 +00:00
|
|
|
}
|
|
|
|
|
2001-05-23 06:33:23 +00:00
|
|
|
void
|
2022-11-02 06:08:09 +00:00
|
|
|
CL_UpdateScreen (viewstate_t *vs)
|
2001-05-23 06:33:23 +00:00
|
|
|
{
|
2022-11-02 06:08:09 +00:00
|
|
|
_vs = vs;
|
2004-03-01 23:47:39 +00:00
|
|
|
|
2012-02-14 08:28:09 +00:00
|
|
|
//FIXME not every time
|
2022-11-02 06:08:09 +00:00
|
|
|
if (vs->active) {
|
|
|
|
if (vs->watervis)
|
2012-06-03 00:30:31 +00:00
|
|
|
r_data->min_wateralpha = 0.0;
|
|
|
|
else
|
|
|
|
r_data->min_wateralpha = 1.0;
|
|
|
|
}
|
2004-03-01 23:47:39 +00:00
|
|
|
|
2022-11-02 06:08:09 +00:00
|
|
|
V_PrepBlend (vs);
|
|
|
|
V_RenderView (vs);
|
2023-01-20 18:34:33 +00:00
|
|
|
SCR_UpdateScreen (vs->camera_transform, vs->time, scr_funcs);
|
2001-05-23 06:33:23 +00:00
|
|
|
}
|