2010-12-21 09:15:31 +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"
|
|
|
|
|
2012-02-13 12:58:34 +00:00
|
|
|
#include "QF/plugin/console.h"
|
|
|
|
|
2021-06-12 13:50:51 +00:00
|
|
|
#include "QF/ui/view.h"
|
|
|
|
|
2010-12-21 09:15:31 +00:00
|
|
|
#include "sv_console.h"
|
2020-06-21 14:15:17 +00:00
|
|
|
|
|
|
|
#include "qtv/include/client.h"
|
|
|
|
#include "qtv/include/server.h"
|
|
|
|
#include "qtv/include/qtv.h"
|
2010-12-21 09:15:31 +00:00
|
|
|
|
|
|
|
static void
|
2022-10-31 15:40:52 +00:00
|
|
|
draw_clients (view_t view)
|
2010-12-21 09:15:31 +00:00
|
|
|
{
|
2022-10-31 15:40:52 +00:00
|
|
|
sv_view_t *sv_view = Ent_GetComponent (view.id, server_view, view.reg);
|
2010-12-21 09:15:31 +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-12-21 09:15:31 +00:00
|
|
|
const char *str;
|
|
|
|
const char *s;
|
|
|
|
char *d;
|
|
|
|
|
2021-01-31 07:01:20 +00:00
|
|
|
str = va (0, "[CL: %3d]", client_count);
|
2022-10-31 15:40:52 +00:00
|
|
|
for (s = str, d = sb->text + rel.x; *s; s++)
|
2010-12-21 09:15:31 +00:00
|
|
|
*d++ = *s;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2022-10-31 15:40:52 +00:00
|
|
|
draw_servers (view_t view)
|
2010-12-21 09:15:31 +00:00
|
|
|
{
|
2022-10-31 15:40:52 +00:00
|
|
|
sv_view_t *sv_view = Ent_GetComponent (view.id, server_view, view.reg);
|
2010-12-21 09:15:31 +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-12-21 09:15:31 +00:00
|
|
|
const char *str;
|
|
|
|
const char *s;
|
|
|
|
char *d;
|
|
|
|
|
2021-01-31 07:01:20 +00:00
|
|
|
str = va (0, "[SV: %2d]", server_count);
|
2022-10-31 15:40:52 +00:00
|
|
|
for (s = str, d = sb->text + rel.x; *s; s++)
|
2010-12-21 09:15:31 +00:00
|
|
|
*d++ = *s;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
qtv_sbar_init (void)
|
|
|
|
{
|
2022-10-31 15:40:52 +00:00
|
|
|
view_t status;
|
|
|
|
view_t view;
|
2010-12-21 09:15:31 +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, 8, 1);
|
|
|
|
View_SetGravity (view, grav_northwest);
|
|
|
|
sv_view.draw = draw_servers;
|
|
|
|
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, 8, 0);
|
|
|
|
View_SetLen (view, 9, 1);
|
|
|
|
View_SetGravity (view, grav_northwest);
|
|
|
|
sv_view.draw = draw_clients;
|
|
|
|
Ent_SetComponent (view.id, server_view, view.reg, &sv_view);
|
|
|
|
|
|
|
|
View_UpdateHierarchy (status);
|
2010-12-21 09:15:31 +00:00
|
|
|
}
|