mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
Oops, forget this.
This commit is contained in:
parent
af165dcc59
commit
8f8d866cdf
1 changed files with 113 additions and 0 deletions
113
qw/source/sv_gib.c
Normal file
113
qw/source/sv_gib.c
Normal file
|
@ -0,0 +1,113 @@
|
|||
/*
|
||||
sv_gib.c
|
||||
|
||||
GIB interface to qw-server
|
||||
|
||||
Copyright (C) 2003 Brian Koropoff
|
||||
|
||||
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
|
||||
|
||||
static __attribute__ ((unused)) const char rcsid[] =
|
||||
"$Id$";
|
||||
|
||||
#ifdef HAVE_STRING_H
|
||||
# include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
#endif
|
||||
|
||||
#include "QF/dstring.h"
|
||||
#include "QF/hash.h"
|
||||
#include "QF/info.h"
|
||||
#include "QF/gib_builtin.h"
|
||||
|
||||
#include "server.h"
|
||||
#include "client.h"
|
||||
|
||||
static client_t *
|
||||
SV_GIB_GetClient (int uid)
|
||||
{
|
||||
client_t *cl;
|
||||
int i;
|
||||
|
||||
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++)
|
||||
if (cl->state && cl->userid == uid)
|
||||
return cl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
SV_GIB_Client_GetList_f (void)
|
||||
{
|
||||
client_t *cl;
|
||||
int i;
|
||||
|
||||
if (GIB_Argc() != 1)
|
||||
GIB_USAGE("");
|
||||
else if (GIB_CanReturn())
|
||||
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++)
|
||||
if (cl->state)
|
||||
dsprintf (GIB_Return(0), "%i", cl->userid);
|
||||
}
|
||||
|
||||
static void
|
||||
SV_GIB_Client_GetKeys_f (void)
|
||||
{
|
||||
client_t *cl;
|
||||
|
||||
if (GIB_Argc() != 2)
|
||||
GIB_USAGE("");
|
||||
else if (!(cl = SV_GIB_GetClient (atoi(GIB_Argv(1)))))
|
||||
GIB_Error ("uid", "No user with id '%s' was found on the server.", GIB_Argv(1));
|
||||
else if (GIB_CanReturn ()) {
|
||||
info_key_t **key, **keys = (info_key_t **) Hash_GetList (cl->userinfo->tab);
|
||||
for (key = keys; *key; key++)
|
||||
dstring_appendstr (GIB_Return(0), (*key)->key);
|
||||
free (keys);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
SV_GIB_Client_GetInfo_f (void)
|
||||
{
|
||||
client_t *cl;
|
||||
const char *str;
|
||||
|
||||
if (GIB_Argc() != 3)
|
||||
GIB_USAGE("");
|
||||
else if (!(cl = SV_GIB_GetClient (atoi(GIB_Argv(1)))))
|
||||
GIB_Error ("uid", "No user with id '%s' was found on the server.", GIB_Argv(1));
|
||||
else if ((str = Info_ValueForKey (cl->userinfo, GIB_Argv(2))))
|
||||
GIB_Return (str);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
SV_GIB_Init (void)
|
||||
{
|
||||
GIB_Builtin_Add ("client::getList", SV_GIB_Client_GetList_f);
|
||||
GIB_Builtin_Add ("client::getKeys", SV_GIB_Client_GetKeys_f);
|
||||
GIB_Builtin_Add ("client::getInfo", SV_GIB_Client_GetInfo_f);
|
||||
}
|
Loading…
Reference in a new issue