Make the frametime graph a bit more pretty.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6297 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
e7a8e6b7f3
commit
4fc23b4f4d
5 changed files with 101 additions and 61 deletions
|
@ -179,7 +179,7 @@ void M_DrawTextBox (int x, int y, int width, int lines)
|
||||||
{
|
{
|
||||||
mpic_t *p;
|
mpic_t *p;
|
||||||
int cx, cy;
|
int cx, cy;
|
||||||
int n;
|
int n, w;
|
||||||
|
|
||||||
// draw left side
|
// draw left side
|
||||||
cx = x;
|
cx = x;
|
||||||
|
@ -208,32 +208,38 @@ void M_DrawTextBox (int x, int y, int width, int lines)
|
||||||
M_DrawScalePic (cx, cy+8, 8, 8, p);
|
M_DrawScalePic (cx, cy+8, 8, 8, p);
|
||||||
|
|
||||||
// draw middle
|
// draw middle
|
||||||
cx += 8;
|
|
||||||
while (width > 0)
|
|
||||||
{
|
|
||||||
cy = y;
|
cy = y;
|
||||||
|
cx += 8;
|
||||||
|
//top-strip
|
||||||
p = R2D_SafeCachePic ("gfx/box_tm.lmp");
|
p = R2D_SafeCachePic ("gfx/box_tm.lmp");
|
||||||
if (p)
|
if (p) for (w = 0; w < width; w+=2)
|
||||||
M_DrawScalePic (cx, cy, 16, 8, p);
|
M_DrawScalePic (cx+w*8, cy, 16, 8, p);
|
||||||
|
|
||||||
|
//just-under-top (shadowed region)
|
||||||
|
if (lines)
|
||||||
|
{
|
||||||
|
cy+=8;
|
||||||
p = R2D_SafeCachePic ("gfx/box_mm.lmp");
|
p = R2D_SafeCachePic ("gfx/box_mm.lmp");
|
||||||
if (p)
|
if (p) for (w = 0; w < width; w+=2)
|
||||||
for (n = 0; n < lines; n++)
|
M_DrawScalePic (cx+w*8, cy, 16, 8, p);
|
||||||
{
|
}
|
||||||
cy += 8;
|
|
||||||
if (n == 1)
|
//2d body
|
||||||
{
|
|
||||||
p = R2D_SafeCachePic ("gfx/box_mm2.lmp");
|
p = R2D_SafeCachePic ("gfx/box_mm2.lmp");
|
||||||
if (!p)
|
for (n = 1; n < lines; n++)
|
||||||
break;
|
{
|
||||||
}
|
cy+=8;
|
||||||
M_DrawScalePic (cx, cy, 16, 8, p);
|
if (p) for (w = 0; w < width; w+=2)
|
||||||
|
M_DrawScalePic (cx+w*8, cy, 16, 8, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//bottom strip
|
||||||
|
cy+=8;
|
||||||
p = R2D_SafeCachePic ("gfx/box_bm.lmp");
|
p = R2D_SafeCachePic ("gfx/box_bm.lmp");
|
||||||
if (p)
|
if (p) for (w = 0; w < width; w+=2)
|
||||||
M_DrawScalePic (cx, cy+8, 16, 8, p);
|
M_DrawScalePic (cx+w*8, cy, 16, 8, p);
|
||||||
width -= 2;
|
|
||||||
cx += 16;
|
cx += 8*width;
|
||||||
}
|
|
||||||
|
|
||||||
// draw right side
|
// draw right side
|
||||||
cy = y;
|
cy = y;
|
||||||
|
|
|
@ -56,6 +56,8 @@ extern cvar_t r_stainfadeammount;
|
||||||
extern cvar_t r_lightmap_nearest;
|
extern cvar_t r_lightmap_nearest;
|
||||||
extern cvar_t r_lightmap_format;
|
extern cvar_t r_lightmap_format;
|
||||||
|
|
||||||
|
double r_loaderstalltime;
|
||||||
|
|
||||||
extern int r_dlightframecount;
|
extern int r_dlightframecount;
|
||||||
|
|
||||||
static void Surf_FreeLightmap(lightmapinfo_t *lm);
|
static void Surf_FreeLightmap(lightmapinfo_t *lm);
|
||||||
|
@ -2484,6 +2486,7 @@ static void R_DestroyWorldEBO(struct webostate_s *es)
|
||||||
}
|
}
|
||||||
void R_GeneratedWorldEBO(void *ctx, void *data, size_t a_, size_t b_)
|
void R_GeneratedWorldEBO(void *ctx, void *data, size_t a_, size_t b_)
|
||||||
{
|
{
|
||||||
|
double starttime = Sys_DoubleTime();
|
||||||
size_t idxcount, vertcount;
|
size_t idxcount, vertcount;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
model_t *mod;
|
model_t *mod;
|
||||||
|
@ -2648,6 +2651,8 @@ void R_GeneratedWorldEBO(void *ctx, void *data, size_t a_, size_t b_)
|
||||||
webostate->rbatches[sortid] = b;
|
webostate->rbatches[sortid] = b;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
r_loaderstalltime += Sys_DoubleTime() - starttime;
|
||||||
}
|
}
|
||||||
#ifdef Q1BSPS
|
#ifdef Q1BSPS
|
||||||
static void Surf_SimpleWorld_Q1BSP(struct webostate_s *es, qbyte *pvs)
|
static void Surf_SimpleWorld_Q1BSP(struct webostate_s *es, qbyte *pvs)
|
||||||
|
|
|
@ -1000,7 +1000,7 @@ void GL_CullFace(unsigned int sflags)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void R_FetchPlayerColour(unsigned int cv, vec3_t rgb)
|
static void R_FetchPlayerColour(unsigned int cv, vec3_t rgb)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
@ -5530,8 +5530,10 @@ void GLBE_SubmitMeshes (batch_t **worldbatches, int start, int stop)
|
||||||
#define THREADEDWORLD
|
#define THREADEDWORLD
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
extern double r_loaderstalltime;
|
||||||
void GLBE_UpdateLightmaps(void)
|
void GLBE_UpdateLightmaps(void)
|
||||||
{
|
{
|
||||||
|
double starttime;
|
||||||
lightmapinfo_t *lm;
|
lightmapinfo_t *lm;
|
||||||
int lmidx;
|
int lmidx;
|
||||||
|
|
||||||
|
@ -5542,6 +5544,7 @@ void GLBE_UpdateLightmaps(void)
|
||||||
webo_blocklightmapupdates |= 2; //FIXME: round-robin it? one lightmap per frame?
|
webo_blocklightmapupdates |= 2; //FIXME: round-robin it? one lightmap per frame?
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
starttime = Sys_DoubleTime();
|
||||||
for (lmidx = 0; lmidx < numlightmaps; lmidx++)
|
for (lmidx = 0; lmidx < numlightmaps; lmidx++)
|
||||||
{
|
{
|
||||||
lm = lightmap[lmidx];
|
lm = lightmap[lmidx];
|
||||||
|
@ -5615,6 +5618,7 @@ void GLBE_UpdateLightmaps(void)
|
||||||
lm->rectchange.b = 0;
|
lm->rectchange.b = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
r_loaderstalltime += Sys_DoubleTime()-starttime;
|
||||||
}
|
}
|
||||||
|
|
||||||
batch_t *GLBE_GetTempBatch(void)
|
batch_t *GLBE_GetTempBatch(void)
|
||||||
|
|
|
@ -213,6 +213,7 @@ void R_NetGraph (void)
|
||||||
Vector4Copy(rgba[2], rgba[1]);
|
Vector4Copy(rgba[2], rgba[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (a)
|
||||||
R2D_Image2dQuad((const vec2_t*)p, (const vec2_t*)tc, (const vec4_t*)rgba, shader_draw_fill);
|
R2D_Image2dQuad((const vec2_t*)p, (const vec2_t*)tc, (const vec4_t*)rgba, shader_draw_fill);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -220,12 +221,14 @@ void R_NetGraph (void)
|
||||||
|
|
||||||
void R_FrameTimeGraph (float frametime, float scale)
|
void R_FrameTimeGraph (float frametime, float scale)
|
||||||
{
|
{
|
||||||
float bias = 0;
|
float bias = 0, h, lh;
|
||||||
int a, x, i, y, h, col;
|
int a, b, x, i, y;
|
||||||
|
|
||||||
vec2_t p[4];
|
struct{
|
||||||
|
vec2_t xy[4];
|
||||||
vec2_t tc[4];
|
vec2_t tc[4];
|
||||||
vec4_t rgba[4];
|
vec4_t rgba[4];
|
||||||
|
} g[3];
|
||||||
extern shader_t *shader_draw_fill;
|
extern shader_t *shader_draw_fill;
|
||||||
|
|
||||||
conchar_t line[128];
|
conchar_t line[128];
|
||||||
|
@ -234,17 +237,25 @@ void R_FrameTimeGraph (float frametime, float scale)
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
float time;
|
float time[countof(g)];
|
||||||
int col;
|
|
||||||
} history[NET_TIMINGS];
|
} history[NET_TIMINGS];
|
||||||
static unsigned int findex;
|
static unsigned int findex;
|
||||||
|
|
||||||
#ifdef LOADERTHREAD
|
#ifdef LOADERTHREAD
|
||||||
extern int com_hadwork[WG_COUNT];
|
extern int com_hadwork[WG_COUNT];
|
||||||
#endif
|
#endif
|
||||||
|
extern double server_frametime, r_loaderstalltime;
|
||||||
|
|
||||||
|
history[findex&NET_TIMINGSMASK].time[0] = max(0,frametime); //server band
|
||||||
|
#ifdef HAVE_SERVER
|
||||||
|
frametime -= server_frametime; server_frametime = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
history[findex&NET_TIMINGSMASK].time[1] = max(0,frametime); //stalls band
|
||||||
|
frametime -= r_loaderstalltime; r_loaderstalltime = 0;
|
||||||
|
|
||||||
|
history[findex&NET_TIMINGSMASK].time[2] = max(0,frametime); //client band (max is needed because we might have been failing to clear the other timers)
|
||||||
|
|
||||||
history[findex&NET_TIMINGSMASK].time = frametime;
|
|
||||||
history[findex&NET_TIMINGSMASK].col = 0xffffffff;
|
|
||||||
findex++;
|
findex++;
|
||||||
|
|
||||||
#ifdef LOADERTHREAD
|
#ifdef LOADERTHREAD
|
||||||
|
@ -252,20 +263,20 @@ void R_FrameTimeGraph (float frametime, float scale)
|
||||||
{ //recolour the graph red if the main thread processed something from a worker.
|
{ //recolour the graph red if the main thread processed something from a worker.
|
||||||
//show three, because its not so easy to see when its whizzing past.
|
//show three, because its not so easy to see when its whizzing past.
|
||||||
com_hadwork[WG_MAIN] = 0;
|
com_hadwork[WG_MAIN] = 0;
|
||||||
history[(findex-1)&NET_TIMINGSMASK].col = 0xff0000ff;
|
// history[(findex-1)&NET_TIMINGSMASK].col = 0xff0000ff;
|
||||||
history[(findex-2)&NET_TIMINGSMASK].col = 0xff0000ff;
|
// history[(findex-2)&NET_TIMINGSMASK].col = 0xff0000ff;
|
||||||
history[(findex-3)&NET_TIMINGSMASK].col = 0xff0000ff;
|
// history[(findex-3)&NET_TIMINGSMASK].col = 0xff0000ff;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
x = 0;
|
x = 0;
|
||||||
for (a=0 ; a<NET_TIMINGS ; a++)
|
for (a=0 ; a<NET_TIMINGS ; a++)
|
||||||
{
|
{
|
||||||
avg += history[a].time;
|
avg += history[a].time[0];
|
||||||
if (minv > history[a].time)
|
if (minv > history[a].time[0])
|
||||||
minv = history[a].time;
|
minv = history[a].time[0];
|
||||||
if (maxv < history[a].time)
|
if (maxv < history[a].time[0])
|
||||||
maxv = history[a].time;
|
maxv = history[a].time[0];
|
||||||
}
|
}
|
||||||
if (!scale)
|
if (!scale)
|
||||||
{
|
{
|
||||||
|
@ -276,7 +287,7 @@ void R_FrameTimeGraph (float frametime, float scale)
|
||||||
scale *= 1000;
|
scale *= 1000;
|
||||||
avg/=a;
|
avg/=a;
|
||||||
for (a = 0; a < NET_TIMINGS; a++)
|
for (a = 0; a < NET_TIMINGS; a++)
|
||||||
dev += 1000*1000*(history[a].time - avg)*(history[a].time - avg);
|
dev += 1000*1000*(history[a].time[0] - avg)*(history[a].time[0] - avg);
|
||||||
dev /= a;
|
dev /= a;
|
||||||
dev = sqrt(dev);
|
dev = sqrt(dev);
|
||||||
|
|
||||||
|
@ -306,31 +317,42 @@ void R_FrameTimeGraph (float frametime, float scale)
|
||||||
Draw_ExpandedString(font_console, x, y, line);
|
Draw_ExpandedString(font_console, x, y, line);
|
||||||
y += Font_CharVHeight(font_console);
|
y += Font_CharVHeight(font_console);
|
||||||
|
|
||||||
Vector2Set(p[2], 0,0);
|
for (b = 0; b < countof(g); b++)
|
||||||
Vector2Set(p[3], 0,0);
|
{
|
||||||
Vector4Set(rgba[2], 0,0,0,0);
|
Vector2Set(g[b].xy[2], 0,0);
|
||||||
Vector4Set(rgba[3], 0,0,0,0);
|
Vector2Set(g[b].xy[3], 0,0);
|
||||||
|
}
|
||||||
|
for (a=0 ; a<4 ; a++)
|
||||||
|
{
|
||||||
|
Vector4Set(g[0].rgba[a], 1.0,0.1,0.1,1.0); //server = red
|
||||||
|
Vector4Set(g[1].rgba[a], 0.1,1.0,0.1,1.0); //lightmap/stalls = green
|
||||||
|
Vector4Set(g[2].rgba[a], 1.0,1.0,1.0,1.0); //client/other = white.
|
||||||
|
}
|
||||||
|
|
||||||
for (a=0 ; a<NET_TIMINGS ; a++)
|
for (a=0 ; a<NET_TIMINGS ; a++)
|
||||||
{
|
{
|
||||||
i = (findex-NET_TIMINGS+a)&(NET_TIMINGS-1);
|
i = (findex-NET_TIMINGS+a)&(NET_TIMINGS-1);
|
||||||
h = (history[i].time - bias) * scale;
|
lh = NET_GRAPHHEIGHT;
|
||||||
col = history[i].col;
|
for (b = countof(g); b-- > 0; lh = h)
|
||||||
|
{
|
||||||
|
h = (history[i].time[b]-bias) * scale;
|
||||||
|
|
||||||
if (h > NET_GRAPHHEIGHT)
|
if (h > NET_GRAPHHEIGHT)
|
||||||
h = NET_GRAPHHEIGHT;
|
h = NET_GRAPHHEIGHT;
|
||||||
Vector2Copy(p[3], p[0]); Vector4Copy(rgba[3], rgba[0]);
|
h = (NET_GRAPHHEIGHT-h);
|
||||||
Vector2Copy(p[2], p[1]); Vector4Copy(rgba[2], rgba[1]);
|
|
||||||
|
|
||||||
Vector2Set(p[2+0], x+a, y+(NET_GRAPHHEIGHT-h));
|
Vector2Copy(g[b].xy[3], g[b].xy[0]); Vector4Copy(g[b].rgba[3], g[b].rgba[0]);
|
||||||
Vector2Set(p[2+1], x+a, y+NET_GRAPHHEIGHT);
|
Vector2Copy(g[b].xy[2], g[b].xy[1]); Vector4Copy(g[b].rgba[2], g[b].rgba[1]);
|
||||||
|
|
||||||
Vector2Set(tc[2+0], x/(float)NET_TIMINGS, (NET_GRAPHHEIGHT-h)/NET_GRAPHHEIGHT);
|
Vector2Set(g[b].xy[2+0], x+a, y+h);
|
||||||
Vector2Set(tc[2+1], x/(float)NET_TIMINGS, 1);
|
Vector2Set(g[b].xy[2+1], x+a, y+lh);
|
||||||
Vector4Set(rgba[2+0], ((col>>0)&0xff)/255.0, ((col>>8)&0xff)/255.0, ((col>>16)&0xff)/255.0, ((col>>24)&0xff)/255.0);
|
|
||||||
Vector4Copy(rgba[2+0], rgba[2+1]);
|
|
||||||
|
|
||||||
if (a)
|
Vector2Set(g[b].tc[2+0], x/(float)NET_TIMINGS, (NET_GRAPHHEIGHT-h)/NET_GRAPHHEIGHT);
|
||||||
R2D_Image2dQuad((const vec2_t*)p, (const vec2_t*)tc, (const vec4_t*)rgba, shader_draw_fill);
|
Vector2Set(g[b].tc[2+1], x/(float)NET_TIMINGS, 1);
|
||||||
|
|
||||||
|
if (a && (h!=lh || g[b].xy[0][1]!=g[b].xy[1][1]))
|
||||||
|
R2D_Image2dQuad((const vec2_t*)g[b].xy, (const vec2_t*)g[b].tc, (const vec4_t*)g[b].rgba, shader_draw_fill);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5286,6 +5286,7 @@ static void SV_PauseChanged(void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double server_frametime;
|
||||||
/*
|
/*
|
||||||
==================
|
==================
|
||||||
SV_Frame
|
SV_Frame
|
||||||
|
@ -5590,6 +5591,8 @@ float SV_Frame (void)
|
||||||
svs.stats.maxpackets = 0;
|
svs.stats.maxpackets = 0;
|
||||||
}
|
}
|
||||||
oldpackets = svs.stats.packets;
|
oldpackets = svs.stats.packets;
|
||||||
|
|
||||||
|
server_frametime += end-start;
|
||||||
return delay;
|
return delay;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue