2007-04-09 00:10:10 +00:00
|
|
|
/*
|
|
|
|
#FILENAME#
|
|
|
|
|
|
|
|
#DESCRIPTION#
|
|
|
|
|
|
|
|
Copyright (C) 2007 #AUTHOR#
|
|
|
|
|
|
|
|
Author: #AUTHOR#
|
|
|
|
Date: #DATE#
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
#include "QF/console.h"
|
|
|
|
#include "QF/va.h"
|
|
|
|
|
2021-06-12 13:50:51 +00:00
|
|
|
#include "QF/ui/view.h"
|
|
|
|
|
2012-02-13 12:58:34 +00:00
|
|
|
#include "QF/plugin/console.h"
|
|
|
|
|
2007-04-09 00:10:10 +00:00
|
|
|
#include "sv_console.h"
|
2020-06-21 14:15:17 +00:00
|
|
|
|
|
|
|
#include "qw/include/server.h"
|
2021-12-27 11:25:22 +00:00
|
|
|
#include "qw/include/sv_progs.h"
|
2020-06-21 14:15:17 +00:00
|
|
|
#include "qw/include/sv_recorder.h"
|
2007-04-09 00:10:10 +00:00
|
|
|
|
|
|
|
static void
|
2022-10-31 15:40:52 +00:00
|
|
|
draw_cpu (view_t view)
|
2007-04-09 00:10:10 +00:00
|
|
|
{
|
2022-10-31 15:40:52 +00:00
|
|
|
sv_view_t *sv_view = Ent_GetComponent (view.id, server_view, view.reg);
|
2007-04-09 00:10:10 +00:00
|
|
|
sv_sbar_t *sb = sv_view->obj;
|
2022-10-31 15:40:52 +00:00
|
|
|
view_pos_t rel = View_GetRel (view);
|
2007-04-09 00:10:10 +00:00
|
|
|
double cpu;
|
|
|
|
const char *cpu_str;
|
|
|
|
const char *s;
|
|
|
|
char *d;
|
|
|
|
|
|
|
|
cpu = (svs.stats.latched_active + svs.stats.latched_idle);
|
|
|
|
cpu = 100 * svs.stats.latched_active / cpu;
|
|
|
|
|
2021-01-31 07:01:20 +00:00
|
|
|
cpu_str = va (0, "[CPU: %3d%%]", (int) cpu);
|
2022-10-31 15:40:52 +00:00
|
|
|
for (s = cpu_str, d = sb->text + rel.x; *s; s++)
|
2007-04-09 00:10:10 +00:00
|
|
|
*d++ = *s;
|
|
|
|
if (cpu > 70.0) {
|
|
|
|
int i;
|
|
|
|
for (i = 6; i < 9; i++)
|
2022-10-31 15:40:52 +00:00
|
|
|
sb->text[rel.x + i] |= 0x80;
|
2007-04-09 00:10:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-13 06:48:20 +00:00
|
|
|
static void
|
2022-10-31 15:40:52 +00:00
|
|
|
draw_rec (view_t view)
|
2010-01-13 06:48:20 +00:00
|
|
|
{
|
2022-10-31 15:40:52 +00:00
|
|
|
sv_view_t *sv_view = Ent_GetComponent (view.id, server_view, view.reg);
|
2010-01-13 06:48:20 +00:00
|
|
|
sv_sbar_t *sb = sv_view->obj;
|
2022-10-31 15:40:52 +00:00
|
|
|
view_pos_t rel = View_GetRel (view);
|
2010-01-13 06:48:20 +00:00
|
|
|
const char *str;
|
|
|
|
const char *s;
|
|
|
|
char *d;
|
|
|
|
|
2021-01-31 07:01:20 +00:00
|
|
|
str = va (0, "[REC: %d]", SVR_NumRecorders ());
|
2022-10-31 15:40:52 +00:00
|
|
|
for (s = str, d = sb->text + rel.x; *s; s++)
|
2010-01-13 06:48:20 +00:00
|
|
|
*d++ = *s;
|
|
|
|
}
|
|
|
|
|
2021-12-27 11:25:22 +00:00
|
|
|
static void
|
2022-10-31 15:40:52 +00:00
|
|
|
draw_mem (view_t view)
|
2021-12-27 11:25:22 +00:00
|
|
|
{
|
2022-10-31 15:40:52 +00:00
|
|
|
sv_view_t *sv_view = Ent_GetComponent (view.id, server_view, view.reg);
|
2021-12-27 11:25:22 +00:00
|
|
|
sv_sbar_t *sb = sv_view->obj;
|
2022-10-31 15:40:52 +00:00
|
|
|
view_pos_t rel = View_GetRel (view);
|
2021-12-27 11:25:22 +00:00
|
|
|
const char *str;
|
|
|
|
const char *s;
|
|
|
|
char *d;
|
|
|
|
size_t used, size;
|
|
|
|
byte mask = 0;
|
|
|
|
|
|
|
|
Z_MemInfo (sv_pr_state.zone, &used, &size);
|
|
|
|
str = va (0, "[mem: %4zd / %-4zd]", used / 1024, size / 1024);
|
|
|
|
if (used / (size / 256) >= 192) {
|
|
|
|
mask = 0x80;
|
|
|
|
}
|
2022-10-31 15:40:52 +00:00
|
|
|
for (s = str, d = sb->text + rel.x; *s; s++)
|
2021-12-27 11:25:22 +00:00
|
|
|
*d++ = *s | mask;
|
|
|
|
}
|
|
|
|
|
2007-04-09 00:10:10 +00:00
|
|
|
void
|
|
|
|
SV_Sbar_Init (void)
|
|
|
|
{
|
2022-10-31 15:40:52 +00:00
|
|
|
view_t status;
|
|
|
|
view_t view;
|
2007-04-09 00:10:10 +00:00
|
|
|
|
|
|
|
if (!con_module || !con_module->data->console->status_view)
|
|
|
|
return;
|
2022-10-31 15:40:52 +00:00
|
|
|
|
|
|
|
status = *con_module->data->console->status_view;
|
|
|
|
void *comp = Ent_GetComponent (status.id, server_window, status.reg);
|
|
|
|
sv_view_t sv_view = *(sv_view_t *) comp;
|
|
|
|
sv_view.setgeometry = 0;
|
|
|
|
|
2022-12-14 13:38:37 +00:00
|
|
|
ecs_system_t viewsys = { .reg = status.reg,
|
|
|
|
.base = status.comp - view_href };
|
|
|
|
view = View_New (viewsys, status);
|
2022-10-31 15:40:52 +00:00
|
|
|
View_SetPos (view, 0, 0);
|
|
|
|
View_SetLen (view, 11, 1);
|
|
|
|
View_SetGravity (view, grav_northwest);
|
|
|
|
sv_view.draw = draw_cpu;
|
|
|
|
Ent_SetComponent (view.id, server_view, view.reg, &sv_view);
|
|
|
|
|
2022-12-14 13:38:37 +00:00
|
|
|
view = View_New (viewsys, status);
|
2022-10-31 15:40:52 +00:00
|
|
|
View_SetPos (view, 11, 0);
|
|
|
|
View_SetLen (view, 8, 1);
|
|
|
|
View_SetGravity (view, grav_northwest);
|
|
|
|
sv_view.draw = draw_rec;
|
|
|
|
Ent_SetComponent (view.id, server_view, view.reg, &sv_view);
|
|
|
|
|
2022-12-14 13:38:37 +00:00
|
|
|
view = View_New (viewsys, status);
|
2022-10-31 15:40:52 +00:00
|
|
|
View_SetPos (view, 19, 0);
|
|
|
|
View_SetLen (view, 18, 1);
|
|
|
|
View_SetGravity (view, grav_northwest);
|
|
|
|
sv_view.draw = draw_mem;
|
|
|
|
Ent_SetComponent (view.id, server_view, view.reg, &sv_view);
|
|
|
|
|
|
|
|
View_UpdateHierarchy (status);
|
2007-04-09 00:10:10 +00:00
|
|
|
}
|