mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
91eeae5186
The renderer's LineGraph now takes a height parameter, and netgraph now uses cl_* cvars instead of r_* (which never really made sense), including it's own height cvar (the render graphs still use r_graphheight).
132 lines
3.1 KiB
C
132 lines
3.1 KiB
C
/*
|
|
cl_ngraph.c
|
|
|
|
client network diagnostic graph
|
|
|
|
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
|
|
|
|
#ifdef HAVE_STRING_H
|
|
# include <string.h>
|
|
#endif
|
|
#ifdef HAVE_STRINGS_H
|
|
# include <strings.h>
|
|
#endif
|
|
|
|
#include "QF/cvar.h"
|
|
#include "QF/draw.h"
|
|
#include "QF/render.h"
|
|
#include "QF/screen.h"
|
|
#include "QF/va.h"
|
|
#include "QF/ui/view.h"
|
|
|
|
#include "compat.h"
|
|
|
|
#include "qw/include/cl_parse.h"
|
|
#include "qw/include/client.h"
|
|
#include "sbar.h"
|
|
|
|
cvar_t *cl_netgraph;
|
|
cvar_t *cl_netgraph_alpha;
|
|
cvar_t *cl_netgraph_box;
|
|
cvar_t *cl_netgraph_height;
|
|
view_t *cl_netgraph_view;
|
|
|
|
static void
|
|
cl_netgraph_f (cvar_t *var)
|
|
{
|
|
if (cl_netgraph_view) {
|
|
cl_netgraph_view->visible = var->int_val != 0;
|
|
}
|
|
}
|
|
|
|
static void
|
|
cl_netgraph_height_f (cvar_t *var)
|
|
{
|
|
if (var->int_val < 32) {
|
|
Cvar_Set (var, "32");
|
|
}
|
|
if (cl_netgraph_view) {
|
|
view_resize (cl_netgraph_view, cl_netgraph_view->xlen,
|
|
var->int_val + 25);
|
|
}
|
|
}
|
|
|
|
void
|
|
CL_NetGraph (view_t *view)
|
|
{
|
|
int lost, a, l, x, y, i, o;
|
|
int timings[NET_TIMINGS];
|
|
|
|
x = view->xabs;
|
|
y = view->yabs;
|
|
|
|
if (cl_netgraph_box->int_val) {
|
|
r_funcs->Draw_TextBox (x, y, NET_TIMINGS / 8,
|
|
cl_netgraph_height->int_val / 8 + 1,
|
|
cl_netgraph_alpha->value * 255);
|
|
}
|
|
|
|
lost = CL_CalcNet ();
|
|
x = view->xabs + 8;
|
|
y = view->yabs + view->ylen - 9;
|
|
|
|
l = NET_TIMINGS;
|
|
if (l > view->xlen - 8)
|
|
l = view->xlen - 8;
|
|
i = cls.netchan.outgoing_sequence & NET_TIMINGSMASK;
|
|
a = i - l;
|
|
o = 0;
|
|
if (a < 0) {
|
|
memcpy (timings + o, packet_latency + a + NET_TIMINGS,
|
|
-a * sizeof (timings[0]));
|
|
o -= a;
|
|
l += a;
|
|
a = 0;
|
|
}
|
|
memcpy (timings + o, packet_latency + a, l * sizeof (timings[0]));
|
|
r_funcs->R_LineGraph (x, y, timings,
|
|
NET_TIMINGS, cl_netgraph_height->int_val);
|
|
|
|
x = view->xabs + 8;
|
|
y = view->yabs + 8;
|
|
r_funcs->Draw_String (x, y, va (0, "%3i%% packet loss", lost));
|
|
}
|
|
|
|
void
|
|
CL_NetGraph_Init_Cvars (void)
|
|
{
|
|
cl_netgraph = Cvar_Get ("cl_netgraph", "0", CVAR_NONE, cl_netgraph_f,
|
|
"Toggle the display of a graph showing network "
|
|
"performance");
|
|
cl_netgraph_alpha = Cvar_Get ("cl_netgraph_alpha", "0.5", CVAR_ARCHIVE, 0,
|
|
"Net graph translucency");
|
|
cl_netgraph_box = Cvar_Get ("cl_netgraph_box", "1", CVAR_ARCHIVE, 0,
|
|
" Draw box around net graph");
|
|
cl_netgraph_height = Cvar_Get ("cl_netgraph_height", "32", CVAR_ARCHIVE,
|
|
cl_netgraph_height_f,
|
|
"Set the fullscale (1s) height of the "
|
|
"graph");
|
|
}
|