2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
sv_ccmds.c
|
|
|
|
|
|
|
|
(description)
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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 <stdlib.h>
|
2001-09-10 05:04:00 +00:00
|
|
|
#include <ctype.h>
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/cmd.h"
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/msg.h"
|
|
|
|
#include "QF/qargs.h"
|
|
|
|
#include "QF/qendian.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/va.h"
|
2001-08-28 02:43:24 +00:00
|
|
|
#include "QF/vfs.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "bothdefs.h"
|
2001-08-28 02:43:24 +00:00
|
|
|
#include "compat.h"
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "server.h"
|
|
|
|
#include "sv_progs.h"
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
qboolean sv_allow_cheats;
|
|
|
|
|
|
|
|
int fp_messages = 4, fp_persecond = 4, fp_secondsdead = 10;
|
|
|
|
char fp_msg[255] = { 0 };
|
|
|
|
extern cvar_t *cl_warncmd;
|
2001-09-11 05:43:58 +00:00
|
|
|
cvar_t *sv_leetnickmatch;
|
2001-02-19 21:15:25 +00:00
|
|
|
extern redirect_t sv_redirected;
|
|
|
|
|
2001-09-10 05:04:00 +00:00
|
|
|
static qboolean
|
|
|
|
match_char (char a, char b)
|
|
|
|
{
|
|
|
|
a = tolower (sys_char_map[(byte)a]);
|
|
|
|
b = tolower (sys_char_map[(byte)b]);
|
|
|
|
|
2001-09-11 05:43:58 +00:00
|
|
|
if (a == b || (sv_leetnickmatch->int_val
|
|
|
|
&& ((a == '1' && b == 'i') || (a == 'i' && b == '1')
|
|
|
|
|| (a == '1' && b == 'l') || (a == 'l' && b == '1')
|
|
|
|
|| (a == '3' && b == 'e') || (a == 'e' && b == '3')
|
|
|
|
|| (a == '4' && b == 'a') || (a == 'a' && b == '4')
|
|
|
|
|| (a == '5' && b == 'g') || (a == 'g' && b == '5')
|
|
|
|
|| (a == '5' && b == 'r') || (a == 'r' && b == '5')
|
|
|
|
|| (a == '7' && b == 't') || (a == 't' && b == '7')
|
|
|
|
|| (a == '9' && b == 'p') || (a == 'p' && b == '9')
|
|
|
|
|| (a == '0' && b == 'o') || (a == 'o' && b == '0')
|
|
|
|
|| (a == '$' && b == 's') || (a == 's' && b == '$'))))
|
2001-09-10 05:04:00 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2001-08-28 02:43:24 +00:00
|
|
|
|
2001-09-11 07:10:45 +00:00
|
|
|
/*
|
|
|
|
FIXME: this function and it's callers are getting progressively
|
|
|
|
uglier as more features are added :)
|
|
|
|
*/
|
2001-07-10 18:25:54 +00:00
|
|
|
qboolean
|
|
|
|
SV_Match_User (const char *substr, int *uidp)
|
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
int count = 0;
|
|
|
|
char *str;
|
|
|
|
client_t *cl;
|
|
|
|
|
|
|
|
if (!substr[0]) {
|
2001-09-11 07:10:45 +00:00
|
|
|
if (uidp) {
|
|
|
|
*uidp = 0;
|
|
|
|
SV_Printf ("Too many matches, ignoring command!\n");
|
|
|
|
}
|
|
|
|
return true;
|
2001-07-10 18:25:54 +00:00
|
|
|
}
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
2001-09-10 05:04:00 +00:00
|
|
|
for (str = cl->name; *str && !match_char (*str, substr[0]); str++)
|
|
|
|
;
|
|
|
|
while (*str) {
|
2001-07-10 18:25:54 +00:00
|
|
|
for (j = 0; substr[j] && str[j]; j++)
|
2001-09-10 05:04:00 +00:00
|
|
|
if (!match_char (substr[j], str[j]))
|
2001-07-10 18:25:54 +00:00
|
|
|
break;
|
|
|
|
if (!substr[j]) { // found a match;
|
2001-09-11 07:10:45 +00:00
|
|
|
if (uidp)
|
|
|
|
*uidp = cl->userid;
|
2001-07-10 18:25:54 +00:00
|
|
|
count++;
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("User %04d matches with name: %s\n",
|
2001-09-11 07:10:45 +00:00
|
|
|
cl->userid, cl->name);
|
|
|
|
break;
|
2001-07-10 18:25:54 +00:00
|
|
|
}
|
2001-09-11 07:10:45 +00:00
|
|
|
str++;
|
2001-07-10 18:25:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (count > 1) {
|
2001-09-11 07:10:45 +00:00
|
|
|
if (uidp) {
|
|
|
|
*uidp = 0;
|
|
|
|
SV_Printf ("Too many matches, ignoring command!\n");
|
|
|
|
}
|
2001-07-10 18:25:54 +00:00
|
|
|
}
|
|
|
|
if (count)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
OPERATOR CONSOLE ONLY COMMANDS
|
|
|
|
|
|
|
|
These commands can only be entered from stdin or by a remote operator
|
|
|
|
datagram
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_SetMaster_f
|
|
|
|
|
|
|
|
Make a master server current
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_SetMaster_f (void)
|
|
|
|
{
|
|
|
|
char data[2];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
memset (&master_adr, 0, sizeof (master_adr));
|
|
|
|
|
|
|
|
for (i = 1; i < Cmd_Argc (); i++) {
|
2001-07-19 07:07:32 +00:00
|
|
|
if (i > MAX_MASTERS) {
|
|
|
|
SV_Printf ("Too many masters specified. Only using the first %d\n",
|
|
|
|
MAX_MASTERS);
|
|
|
|
break;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
if (!strcmp (Cmd_Argv (i), "none")
|
|
|
|
|| !NET_StringToAdr (Cmd_Argv (i), &master_adr[i - 1])) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Setting nomaster mode.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (master_adr[i - 1].port == 0)
|
|
|
|
master_adr[i - 1].port = BigShort (27000);
|
|
|
|
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Master server at %s\n",
|
2001-02-19 21:15:25 +00:00
|
|
|
NET_AdrToString (master_adr[i - 1]));
|
|
|
|
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Sending a ping.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
data[0] = A2A_PING;
|
|
|
|
data[1] = 0;
|
|
|
|
NET_SendPacket (2, data, master_adr[i - 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
svs.last_heartbeat = -99999;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Quit_f (void)
|
|
|
|
{
|
|
|
|
SV_FinalMessage ("server shutdown\n");
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Shutting down.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_Shutdown ();
|
|
|
|
Sys_Quit ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Logfile_f (void)
|
|
|
|
{
|
|
|
|
char name[MAX_OSPATH];
|
|
|
|
|
|
|
|
if (sv_logfile) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("File logging off.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
Qclose (sv_logfile);
|
|
|
|
sv_logfile = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf (name, sizeof (name), "%s/qconsole.log", com_gamedir);
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Logging text to %s.\n", name);
|
2001-02-19 21:15:25 +00:00
|
|
|
sv_logfile = Qopen (name, "w");
|
|
|
|
if (!sv_logfile)
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("failed.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Fraglogfile_f (void)
|
|
|
|
{
|
|
|
|
char name[MAX_OSPATH];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (sv_fraglogfile) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Frag file logging off.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
Qclose (sv_fraglogfile);
|
|
|
|
sv_fraglogfile = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// find an unused name
|
|
|
|
for (i = 0; i < 1000; i++) {
|
|
|
|
snprintf (name, sizeof (name), "%s/frag_%i.log", com_gamedir, i);
|
|
|
|
sv_fraglogfile = Qopen (name, "r");
|
|
|
|
if (!sv_fraglogfile) { // can't read it, so create this one
|
|
|
|
sv_fraglogfile = Qopen (name, "w");
|
|
|
|
if (!sv_fraglogfile)
|
|
|
|
i = 1000; // give error
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Qclose (sv_fraglogfile);
|
|
|
|
}
|
|
|
|
if (i == 1000) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Can't open any logfiles.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
sv_fraglogfile = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Logging frags to %s.\n", name);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_SetPlayer
|
|
|
|
|
|
|
|
Sets host_client and sv_player to the player with idnum Cmd_Argv(1)
|
|
|
|
*/
|
|
|
|
qboolean
|
|
|
|
SV_SetPlayer (void)
|
|
|
|
{
|
|
|
|
client_t *cl;
|
2001-08-28 02:43:24 +00:00
|
|
|
int i, idnum;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
idnum = atoi (Cmd_Argv (1));
|
|
|
|
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
|
|
|
if (cl->userid == idnum) {
|
|
|
|
host_client = cl;
|
|
|
|
sv_player = host_client->edict;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Userid %i is not on the server\n", idnum);
|
2001-02-19 21:15:25 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_God_f
|
|
|
|
|
|
|
|
Sets client to godmode
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_God_f (void)
|
|
|
|
{
|
|
|
|
if (!sv_allow_cheats) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf
|
2001-02-19 21:15:25 +00:00
|
|
|
("You must run the server with -cheats to enable this command.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SV_SetPlayer ())
|
|
|
|
return;
|
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (sv_player, flags) = (int) SVfloat (sv_player, flags) ^ FL_GODMODE;
|
|
|
|
if (!((int) SVfloat (sv_player, flags) & FL_GODMODE))
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_ClientPrintf (host_client, PRINT_HIGH, "godmode OFF\n");
|
|
|
|
else
|
|
|
|
SV_ClientPrintf (host_client, PRINT_HIGH, "godmode ON\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Noclip_f (void)
|
|
|
|
{
|
|
|
|
if (!sv_allow_cheats) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf
|
2001-02-19 21:15:25 +00:00
|
|
|
("You must run the server with -cheats to enable this command.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SV_SetPlayer ())
|
|
|
|
return;
|
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
if (SVfloat (sv_player, movetype) != MOVETYPE_NOCLIP) {
|
|
|
|
SVfloat (sv_player, movetype) = MOVETYPE_NOCLIP;
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_ClientPrintf (host_client, PRINT_HIGH, "noclip ON\n");
|
|
|
|
} else {
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (sv_player, movetype) = MOVETYPE_WALK;
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_ClientPrintf (host_client, PRINT_HIGH, "noclip OFF\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Give_f (void)
|
|
|
|
{
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *t;
|
2001-02-19 21:15:25 +00:00
|
|
|
int v;
|
|
|
|
|
|
|
|
if (!sv_allow_cheats) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf
|
2001-02-19 21:15:25 +00:00
|
|
|
("You must run the server with -cheats to enable this command.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SV_SetPlayer ())
|
|
|
|
return;
|
|
|
|
|
|
|
|
t = Cmd_Argv (2);
|
|
|
|
v = atoi (Cmd_Argv (3));
|
|
|
|
|
|
|
|
switch (t[0]) {
|
|
|
|
case '2':
|
|
|
|
case '3':
|
|
|
|
case '4':
|
|
|
|
case '5':
|
|
|
|
case '6':
|
|
|
|
case '7':
|
|
|
|
case '8':
|
|
|
|
case '9':
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (sv_player, items) =
|
|
|
|
(int) SVfloat (sv_player, items) | IT_SHOTGUN << (t[0] - '2');
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 's':
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (sv_player, ammo_shells) = v;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case 'n':
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (sv_player, ammo_nails) = v;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case 'r':
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (sv_player, ammo_rockets) = v;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case 'h':
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (sv_player, health) = v;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
case 'c':
|
2001-08-08 20:28:53 +00:00
|
|
|
SVfloat (sv_player, ammo_cells) = v;
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use this to keep track of current level --KB
|
|
|
|
static char curlevel[MAX_QPATH] = "";
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_Map_f
|
|
|
|
|
|
|
|
handle a
|
|
|
|
map <mapname>
|
|
|
|
command from the console or progs.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_Map_f (void)
|
|
|
|
{
|
|
|
|
char level[MAX_QPATH];
|
|
|
|
char expanded[MAX_QPATH];
|
2001-05-30 03:21:19 +00:00
|
|
|
VFile *f;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-07-06 17:38:17 +00:00
|
|
|
if (Cmd_Argc () > 2) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("map <levelname> : continue game on a new level\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-07-06 17:38:17 +00:00
|
|
|
if (Cmd_Argc () == 1) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("map is %s\n", curlevel);
|
2001-07-06 17:38:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
strncpy (level, Cmd_Argv (1), sizeof (level) - 1);
|
|
|
|
level[sizeof (level) - 1] = 0;
|
|
|
|
|
|
|
|
// check to make sure the level exists
|
|
|
|
snprintf (expanded, sizeof (expanded), "maps/%s.bsp", level);
|
|
|
|
COM_FOpenFile (expanded, &f);
|
|
|
|
if (!f) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Can't find %s\n", expanded);
|
2001-02-19 21:15:25 +00:00
|
|
|
// If curlevel == level, something is SCREWED! --KB
|
2001-02-21 22:38:58 +00:00
|
|
|
if (strcaseequal (level, curlevel))
|
2001-02-19 21:15:25 +00:00
|
|
|
SV_Error ("map: cannot restart level\n");
|
|
|
|
else
|
|
|
|
Cbuf_AddText (va ("map %s", curlevel));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Qclose (f);
|
|
|
|
|
|
|
|
SV_BroadcastCommand ("changing\n");
|
|
|
|
SV_SendMessagesToAll ();
|
|
|
|
|
|
|
|
strncpy (curlevel, level, sizeof (curlevel) - 1);
|
|
|
|
curlevel[sizeof (curlevel) - 1] = 0;
|
|
|
|
SV_SpawnServer (level);
|
|
|
|
|
|
|
|
SV_BroadcastCommand ("reconnect\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_Kick_f
|
|
|
|
|
|
|
|
Kick a user off of the server
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_Kick_f (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
client_t *cl;
|
|
|
|
int uid;
|
|
|
|
|
2001-07-10 18:25:54 +00:00
|
|
|
if (Cmd_Argc () != 2) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("usage: kick <name/userid>\n");
|
2001-07-10 18:25:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (SV_Match_User (Cmd_Argv(1), &uid)) {
|
|
|
|
if (!uid)
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
uid = atoi (Cmd_Argv (1));
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
|
|
|
if (cl->userid == uid) {
|
|
|
|
SV_BroadcastPrintf (PRINT_HIGH, "%s was kicked\n", cl->name);
|
|
|
|
// print directly, because the dropped client won't get the
|
|
|
|
// SV_BroadcastPrintf message
|
|
|
|
SV_ClientPrintf (cl, PRINT_HIGH, "You were kicked from the game\n");
|
|
|
|
SV_DropClient (cl);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Couldn't find user number %i\n", uid);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Status_f (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
client_t *cl;
|
|
|
|
float cpu, avg, pak;
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *s;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
cpu = (svs.stats.latched_active + svs.stats.latched_idle);
|
|
|
|
if (cpu)
|
|
|
|
cpu = 100 * svs.stats.latched_active / cpu;
|
|
|
|
avg = 1000 * svs.stats.latched_active / STATFRAMES;
|
|
|
|
pak = (float) svs.stats.latched_packets / STATFRAMES;
|
|
|
|
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("net address : %s\n", NET_AdrToString (net_local_adr));
|
|
|
|
SV_Printf ("cpu utilization : %3i%%\n", (int) cpu);
|
|
|
|
SV_Printf ("avg response time: %i ms\n", (int) avg);
|
|
|
|
SV_Printf ("packets/frame : %5.2f\n", pak);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-28 02:43:24 +00:00
|
|
|
// min fps lat drp
|
2001-02-19 21:15:25 +00:00
|
|
|
if (sv_redirected != RD_NONE) {
|
|
|
|
// most remote clients are 40 columns
|
|
|
|
// 0123456789012345678901234567890123456789
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("name userid frags\n");
|
|
|
|
SV_Printf (" address rate ping drop\n");
|
|
|
|
SV_Printf (" ---------------- ---- ---- -----\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
|
|
|
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("%-16.16s ", cl->name);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-08 20:28:53 +00:00
|
|
|
SV_Printf ("%6i %5i", cl->userid, (int) SVfloat (cl->edict, frags));
|
2001-02-19 21:15:25 +00:00
|
|
|
if (cl->spectator)
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf (" (s)\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
s = NET_BaseAdrToString (cl->netchan.remote_address);
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf (" %-16.16s", s);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (cl->state == cs_connected) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("CONNECTING\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (cl->state == cs_zombie) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("ZOMBIE\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
|
|
|
}
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("%4i %4i %5.2f\n", (int) (1000 * cl->netchan.frame_rate)
|
2001-02-19 21:15:25 +00:00
|
|
|
, (int) SV_CalcPing (cl)
|
|
|
|
,
|
|
|
|
100.0 * cl->netchan.drop_count /
|
|
|
|
cl->netchan.incoming_sequence);
|
|
|
|
}
|
|
|
|
} else {
|
2001-08-28 02:43:24 +00:00
|
|
|
SV_Printf ("frags userid address name rate ping "
|
|
|
|
"drop qport\n");
|
|
|
|
SV_Printf ("----- ------ --------------- --------------- ---- ---- "
|
|
|
|
"----- -----\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
2001-08-28 02:43:24 +00:00
|
|
|
SV_Printf ("%5i %6i ", (int) SVfloat (cl->edict, frags),
|
|
|
|
cl->userid);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
s = NET_BaseAdrToString (cl->netchan.remote_address);
|
|
|
|
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("%-15.15s ", s);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("%-15.15s ", cl->name);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (cl->state == cs_connected) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("CONNECTING\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (cl->state == cs_zombie) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("ZOMBIE\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
|
|
|
}
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("%4i %4i %3.1f %4i",
|
2001-02-19 21:15:25 +00:00
|
|
|
(int) (1000 * cl->netchan.frame_rate),
|
|
|
|
(int) SV_CalcPing (cl),
|
|
|
|
100.0 * cl->netchan.drop_count /
|
|
|
|
cl->netchan.incoming_sequence, cl->netchan.qport);
|
|
|
|
if (cl->spectator)
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf (" (s)\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
else
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-09-09 04:51:08 +00:00
|
|
|
#define MAXPENALTY 10.0
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Cuff_f (void)
|
|
|
|
{
|
|
|
|
int i, uid;
|
|
|
|
double mins = 0.5;
|
|
|
|
qboolean all = false, done = false;
|
|
|
|
client_t *cl;
|
|
|
|
char text[1024];
|
|
|
|
|
|
|
|
if (Cmd_Argc() != 2 && Cmd_Argc() != 3) {
|
|
|
|
SV_Printf ("usage: cuff <name/userid/ALL> [minutes]\n"
|
|
|
|
" (default = 0.5, 0 = cancel cuff).\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strequal (Cmd_Argv(1), "ALL")) {
|
|
|
|
all = true;
|
|
|
|
} else {
|
|
|
|
if (SV_Match_User (Cmd_Argv(1), &uid)) {
|
|
|
|
if (!uid)
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
uid = atoi(Cmd_Argv(1)); // assume userid
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Cmd_Argc() == 3) {
|
|
|
|
mins = atof(Cmd_Argv(2));
|
|
|
|
if (mins < 0.0 || mins > MAXPENALTY)
|
|
|
|
mins = MAXPENALTY;
|
|
|
|
}
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
|
|
|
if (all || (cl->userid == uid)) {
|
|
|
|
cl->cuff_time = realtime + mins*60.0;
|
|
|
|
done = true;
|
|
|
|
if (mins) {
|
|
|
|
sprintf(text,
|
|
|
|
"You are cuffed for %.1f minutes\n\n"
|
|
|
|
"reconnecting won't help...\n", mins);
|
|
|
|
ClientReliableWrite_Begin(cl,svc_centerprint, 2+strlen(text));
|
|
|
|
ClientReliableWrite_String (cl, text);
|
|
|
|
}
|
|
|
|
if (!all)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (done) {
|
|
|
|
if (mins)
|
|
|
|
SV_BroadcastPrintf (PRINT_HIGH, "%s cuffed for %.1f minutes.\n",
|
|
|
|
all? "All Users" : cl->name, mins);
|
|
|
|
else
|
|
|
|
SV_BroadcastPrintf (PRINT_HIGH, "%s un-cuffed.\n",
|
|
|
|
all? "All Users" : cl->name);
|
|
|
|
} else {
|
|
|
|
SV_Printf (all? "No users\n" : "Couldn't find user %s\n", Cmd_Argv(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Mute_f (void)
|
|
|
|
{
|
|
|
|
int i, uid;
|
|
|
|
double mins = 0.5;
|
|
|
|
qboolean all = false, done = false;
|
|
|
|
client_t *cl;
|
|
|
|
char text[1024];
|
|
|
|
|
|
|
|
if (Cmd_Argc() != 2 && Cmd_Argc() != 3) {
|
|
|
|
SV_Printf ("usage: mute <name/userid/ALL> [minutes]\n"
|
|
|
|
" (default = 0.5, 0 = cancel mute).\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (strequal(Cmd_Argv(1),"ALL")) {
|
|
|
|
all = true;
|
|
|
|
} else {
|
|
|
|
if (SV_Match_User (Cmd_Argv(1), &uid)) {
|
|
|
|
if (!uid)
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
uid = atoi(Cmd_Argv(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Cmd_Argc() == 3) {
|
|
|
|
mins = atof(Cmd_Argv(2));
|
|
|
|
if (mins < 0.0 || mins > MAXPENALTY)
|
|
|
|
mins = MAXPENALTY;
|
|
|
|
}
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
|
|
|
if (all || (cl->userid == uid)) {
|
|
|
|
cl->lockedtill = realtime + mins*60.0;
|
|
|
|
done = true;
|
|
|
|
if (mins) {
|
|
|
|
sprintf(text, "You are muted for %.1f minutes\n\n"
|
|
|
|
"reconnecting won't help...\n", mins);
|
|
|
|
ClientReliableWrite_Begin(cl,svc_centerprint, 2+strlen(text));
|
|
|
|
ClientReliableWrite_String (cl, text);
|
|
|
|
}
|
|
|
|
if (!all)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (done) {
|
|
|
|
if (mins)
|
|
|
|
SV_BroadcastPrintf (PRINT_HIGH, "%s muted for %.1f minutes.\n",
|
|
|
|
all? "All Users" : cl->name, mins);
|
|
|
|
else
|
|
|
|
SV_BroadcastPrintf (PRINT_HIGH, "%s allowed to speak.\n",
|
|
|
|
all? "All Users" : cl->name);
|
|
|
|
} else {
|
|
|
|
SV_Printf (all? "No users\n" : "Couldn't find user %s\n",
|
|
|
|
Cmd_Argv(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-10 18:25:54 +00:00
|
|
|
void
|
|
|
|
SV_Tell (const char *prefix)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
char text[512];
|
2001-08-28 02:43:24 +00:00
|
|
|
client_t *cl;
|
|
|
|
int i, uid;
|
2001-07-10 18:25:54 +00:00
|
|
|
|
|
|
|
if (Cmd_Argc () < 3) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("usage: tell <name/userid> <text...>\n");
|
2001-07-10 18:25:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (SV_Match_User (Cmd_Argv(1), &uid)) {
|
|
|
|
if (!uid)
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
uid = atoi (Cmd_Argv(1));
|
|
|
|
}
|
|
|
|
|
2001-07-15 07:04:17 +00:00
|
|
|
p = Hunk_TempAlloc (strlen(Cmd_Args (2)) + 1);
|
|
|
|
strcpy (p, Cmd_Args (2));
|
2001-07-10 18:25:54 +00:00
|
|
|
if (*p == '"') {
|
|
|
|
p++;
|
|
|
|
p[strlen (p) - 1] = 0;
|
|
|
|
}
|
|
|
|
// construct "[PRIVATE] Console> "
|
|
|
|
sprintf (text, "[\xd0\xd2\xc9\xd6\xc1\xd4\xc5] %s\x8d ", prefix);
|
|
|
|
i = strlen (text);
|
|
|
|
strncat (text, p, sizeof (text) - 1 - i);
|
|
|
|
text[sizeof (text) - 1] = 0;
|
|
|
|
for (; text[i];)
|
|
|
|
text[i++] |= 0x80; // non-bold text
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
|
|
|
if (cl->userid == uid) {
|
|
|
|
SV_ClientPrintf(cl, PRINT_CHAT, "\n"); // bell
|
|
|
|
SV_ClientPrintf(cl, PRINT_HIGH, "%s\n", text);
|
|
|
|
SV_ClientPrintf(cl, PRINT_CHAT, "%s", ""); // bell
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Couldn't find user %s\n", Cmd_Argv(1));
|
2001-07-10 18:25:54 +00:00
|
|
|
}
|
|
|
|
|
2001-09-09 04:51:08 +00:00
|
|
|
void
|
|
|
|
SV_Ban_f (void)
|
|
|
|
{
|
|
|
|
int i, uid;
|
|
|
|
double mins = 30.0;
|
|
|
|
client_t *cl;
|
|
|
|
|
|
|
|
if (Cmd_Argc() != 2 && Cmd_Argc() != 3) {
|
|
|
|
SV_Printf ("usage: ban <name/userid> [minutes]\n"
|
|
|
|
" (default = 30, 0 = permanent).\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (SV_Match_User(Cmd_Argv(1), &uid)) {
|
|
|
|
if (!uid)
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
uid = atoi(Cmd_Argv(1));
|
|
|
|
}
|
|
|
|
if (Cmd_Argc() == 3) {
|
|
|
|
mins = atof(Cmd_Argv(2));
|
|
|
|
if (mins<0.0 || mins > 1000000.0) // bout 2 yrs
|
|
|
|
mins = 0.0;
|
|
|
|
}
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
|
|
|
if (cl->userid == uid) {
|
|
|
|
SV_BroadcastPrintf (PRINT_HIGH, "Admin Banned user %s %s\n",
|
|
|
|
cl->name, mins ? va("for %.1f minutes",mins)
|
|
|
|
: "permanently");
|
|
|
|
SV_DropClient (cl);
|
|
|
|
Cmd_ExecuteString (
|
|
|
|
va ("addip %s %f",
|
|
|
|
NET_BaseAdrToString(cl->netchan.remote_address), mins),
|
|
|
|
src_command);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Con_Printf ("Couldn't find user %s\n", Cmd_Argv(1));
|
|
|
|
}
|
|
|
|
|
2001-09-11 07:10:45 +00:00
|
|
|
void
|
|
|
|
SV_Match_f (void)
|
|
|
|
{
|
|
|
|
if (Cmd_Argc() != 2) {
|
|
|
|
SV_Printf ("usage: match <name/userid>\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SV_Match_User (Cmd_Argv(1), NULL))
|
|
|
|
SV_Printf ("No usernames matched, would treat as number\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
void
|
2001-07-09 23:33:35 +00:00
|
|
|
SV_ConSay (const char *prefix)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
char text[1024];
|
2001-08-28 02:43:24 +00:00
|
|
|
client_t *client;
|
|
|
|
int j;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (Cmd_Argc () < 2)
|
|
|
|
return;
|
|
|
|
|
2001-07-15 07:04:17 +00:00
|
|
|
p = Hunk_TempAlloc (strlen(Cmd_Args (1)) + 1);
|
|
|
|
strcpy (p, Cmd_Args (1));
|
2001-02-19 21:15:25 +00:00
|
|
|
if (*p == '"') {
|
|
|
|
p++;
|
|
|
|
p[strlen (p) - 1] = 0;
|
|
|
|
}
|
2001-07-09 23:33:35 +00:00
|
|
|
strcpy (text, prefix); // bold header
|
|
|
|
strcat (text, "\x8d "); // and arrow
|
|
|
|
j = strlen (text);
|
|
|
|
strncat (text, p, sizeof (text) - j);
|
|
|
|
while (text[j])
|
|
|
|
text[j++] |= 0x80; // non-bold text
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
for (j = 0, client = svs.clients; j < MAX_CLIENTS; j++, client++) {
|
2001-07-09 23:33:35 +00:00
|
|
|
if (client->state != cs_spawned) // kk just has !client->state
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
2001-07-09 23:33:35 +00:00
|
|
|
SV_ClientPrintf (client, PRINT_HIGH, "%s\n", text);
|
|
|
|
if (*prefix != 'I') // beep, except for Info says
|
|
|
|
SV_ClientPrintf(client, PRINT_CHAT, "%s", "");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-10 18:25:54 +00:00
|
|
|
void
|
|
|
|
SV_Tell_f (void)
|
|
|
|
{
|
|
|
|
if (rcon_from_user)
|
|
|
|
SV_Tell("Admin");
|
|
|
|
else
|
|
|
|
SV_Tell("Console");
|
|
|
|
}
|
|
|
|
|
2001-07-09 23:33:35 +00:00
|
|
|
void
|
|
|
|
SV_ConSay_f (void)
|
|
|
|
{
|
|
|
|
if (rcon_from_user)
|
|
|
|
SV_ConSay("Admin");
|
|
|
|
else
|
|
|
|
SV_ConSay("Console");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_ConSay_Info_f (void)
|
|
|
|
{
|
|
|
|
SV_ConSay("Info");
|
|
|
|
}
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
void
|
|
|
|
SV_Heartbeat_f (void)
|
|
|
|
{
|
|
|
|
svs.last_heartbeat = -9999;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-07-15 07:04:17 +00:00
|
|
|
SV_SendServerInfoChange (const char *key, const char *value)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
|
|
|
if (!sv.state)
|
|
|
|
return;
|
|
|
|
|
|
|
|
MSG_WriteByte (&sv.reliable_datagram, svc_serverinfo);
|
|
|
|
MSG_WriteString (&sv.reliable_datagram, key);
|
|
|
|
MSG_WriteString (&sv.reliable_datagram, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_Serverinfo_f
|
|
|
|
|
|
|
|
Examine or change the serverinfo string
|
|
|
|
*/
|
|
|
|
char *CopyString (char *s);
|
|
|
|
void
|
|
|
|
SV_Serverinfo_f (void)
|
|
|
|
{
|
|
|
|
cvar_t *var;
|
|
|
|
|
|
|
|
if (Cmd_Argc () == 1) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Server info settings:\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
Info_Print (svs.info);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Cmd_Argc () != 3) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("usage: serverinfo [ <key> <value> ]\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Cmd_Argv (1)[0] == '*') {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Star variables cannot be changed.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Info_SetValueForKey (svs.info, Cmd_Argv (1), Cmd_Argv (2),
|
2001-07-31 18:27:49 +00:00
|
|
|
MAX_SERVERINFO_STRING, !sv_highchars->int_val);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// if this is a cvar, change it too
|
|
|
|
var = Cvar_FindVar (Cmd_Argv (1));
|
|
|
|
if (var)
|
|
|
|
Cvar_Set (var, Cmd_Argv (2));
|
|
|
|
|
|
|
|
if (!var || !(var->flags & CVAR_SERVERINFO))
|
|
|
|
// Cvar_Set will send the change if CVAR_SERVERINFO is set
|
|
|
|
SV_SendServerInfoChange (Cmd_Argv (1), Cmd_Argv (2));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_Serverinfo_f
|
|
|
|
|
|
|
|
Examine or change the serverinfo string
|
|
|
|
*/
|
|
|
|
char *CopyString (char *s);
|
|
|
|
void
|
|
|
|
SV_Localinfo_f (void)
|
|
|
|
{
|
|
|
|
if (Cmd_Argc () == 1) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Local info settings:\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
Info_Print (localinfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Cmd_Argc () != 3) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("usage: localinfo [ <key> <value> ]\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Cmd_Argv (1)[0] == '*') {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Star variables cannot be changed.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Info_SetValueForKey (localinfo, Cmd_Argv (1), Cmd_Argv (2),
|
2001-07-31 18:27:49 +00:00
|
|
|
MAX_LOCALINFO_STRING, !sv_highchars->int_val);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_User_f
|
|
|
|
|
|
|
|
Examine a users info strings
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_User_f (void)
|
|
|
|
{
|
|
|
|
if (Cmd_Argc () != 2) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Usage: user <userid>\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SV_SetPlayer ())
|
|
|
|
return;
|
|
|
|
|
|
|
|
Info_Print (host_client->userinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_Gamedir
|
|
|
|
|
|
|
|
Sets the fake *gamedir to a different directory.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_Gamedir (void)
|
|
|
|
{
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *dir;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
if (Cmd_Argc () == 1) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Current *gamedir: %s\n",
|
2001-02-19 21:15:25 +00:00
|
|
|
Info_ValueForKey (svs.info, "*gamedir"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Cmd_Argc () != 2) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Usage: sv_gamedir <newgamedir>\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dir = Cmd_Argv (1);
|
|
|
|
|
|
|
|
if (strstr (dir, "..") || strstr (dir, "/")
|
|
|
|
|| strstr (dir, "\\") || strstr (dir, ":")) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("*Gamedir should be a single filename, not a path\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-07-31 18:27:49 +00:00
|
|
|
Info_SetValueForStarKey (svs.info, "*gamedir", dir, MAX_SERVERINFO_STRING,
|
|
|
|
!sv_highchars->int_val);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
SV_Floodport_f
|
|
|
|
|
|
|
|
Sets the gamedir and path to a different directory.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SV_Floodprot_f (void)
|
|
|
|
{
|
|
|
|
int arg1, arg2, arg3;
|
|
|
|
|
|
|
|
if (Cmd_Argc () == 1) {
|
|
|
|
if (fp_messages) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf
|
2001-08-28 02:43:24 +00:00
|
|
|
("Current floodprot settings: \nAfter %d msgs per %d seconds, "
|
|
|
|
"silence for %d seconds\n",
|
2001-02-19 21:15:25 +00:00
|
|
|
fp_messages, fp_persecond, fp_secondsdead);
|
|
|
|
return;
|
|
|
|
} else
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("No floodprots enabled.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Cmd_Argc () != 4) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf
|
2001-08-28 02:43:24 +00:00
|
|
|
("Usage: floodprot <# of messages> <per # of seconds> <seconds to "
|
|
|
|
"silence>\n");
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf
|
2001-08-28 02:43:24 +00:00
|
|
|
("Use floodprotmsg to set a custom message to say to the "
|
|
|
|
"flooder.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
arg1 = atoi (Cmd_Argv (1));
|
|
|
|
arg2 = atoi (Cmd_Argv (2));
|
|
|
|
arg3 = atoi (Cmd_Argv (3));
|
|
|
|
|
|
|
|
if (arg1 <= 0 || arg2 <= 0 || arg3 <= 0) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("All values must be positive numbers\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arg1 > 10) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Can only track up to 10 messages.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fp_messages = arg1;
|
|
|
|
fp_persecond = arg2;
|
|
|
|
fp_secondsdead = arg3;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Floodprotmsg_f (void)
|
|
|
|
{
|
|
|
|
if (Cmd_Argc () == 1) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Current msg: %s\n", fp_msg);
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
} else if (Cmd_Argc () != 2) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Usage: floodprotmsg \"<message>\"\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
snprintf (fp_msg, sizeof (fp_msg), "%s", Cmd_Argv (1));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Snap (int uid)
|
|
|
|
{
|
|
|
|
char pcxname[80];
|
|
|
|
char checkname[MAX_OSPATH];
|
2001-08-28 02:43:24 +00:00
|
|
|
client_t *cl;
|
2001-02-19 21:15:25 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (!cl->state)
|
|
|
|
continue;
|
|
|
|
if (cl->userid == uid)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i >= MAX_CLIENTS) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("userid not found\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf (pcxname, sizeof (pcxname), "%d-00.pcx", uid);
|
|
|
|
|
|
|
|
snprintf (checkname, sizeof (checkname), "%s/snap", com_gamedir);
|
|
|
|
COM_CreatePath (va ("%s/dummy", checkname));
|
|
|
|
|
|
|
|
for (i = 0; i <= 99; i++) {
|
|
|
|
pcxname[strlen (pcxname) - 6] = i / 10 + '0';
|
|
|
|
pcxname[strlen (pcxname) - 5] = i % 10 + '0';
|
|
|
|
snprintf (checkname, sizeof (checkname), "%s/snap/%s", com_gamedir,
|
|
|
|
pcxname);
|
|
|
|
if (Sys_FileTime (checkname) == -1)
|
|
|
|
break; // file doesn't exist
|
|
|
|
}
|
|
|
|
if (i == 100) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Snap: Couldn't create a file, clean some out.\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
strcpy (cl->uploadfn, checkname);
|
|
|
|
|
|
|
|
memcpy (&cl->snap_from, &net_from, sizeof (net_from));
|
|
|
|
if (sv_redirected != RD_NONE)
|
|
|
|
cl->remote_snap = true;
|
|
|
|
else
|
|
|
|
cl->remote_snap = false;
|
|
|
|
|
|
|
|
ClientReliableWrite_Begin (cl, svc_stufftext, 24);
|
|
|
|
ClientReliableWrite_String (cl, "cmd snap\n");
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Requesting snap from user %d...\n", uid);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_Snap_f (void)
|
|
|
|
{
|
|
|
|
int uid;
|
|
|
|
|
|
|
|
if (Cmd_Argc () != 2) {
|
2001-07-11 23:11:29 +00:00
|
|
|
SV_Printf ("Usage: snap <userid>\n");
|
2001-02-19 21:15:25 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uid = atoi (Cmd_Argv (1));
|
|
|
|
|
|
|
|
SV_Snap (uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_SnapAll_f (void)
|
|
|
|
{
|
|
|
|
client_t *cl;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0, cl = svs.clients; i < MAX_CLIENTS; i++, cl++) {
|
|
|
|
if (cl->state < cs_connected || cl->spectator)
|
|
|
|
continue;
|
|
|
|
SV_Snap (cl->userid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SV_InitOperatorCommands (void)
|
|
|
|
{
|
|
|
|
if (COM_CheckParm ("-cheats")) {
|
|
|
|
sv_allow_cheats = true;
|
|
|
|
Info_SetValueForStarKey (svs.info, "*cheats", "ON",
|
2001-08-13 09:14:15 +00:00
|
|
|
MAX_SERVERINFO_STRING, 0);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-08-28 02:43:24 +00:00
|
|
|
Cmd_AddCommand ("logfile", SV_Logfile_f, "Toggles logging of console text "
|
|
|
|
"to qconsole.log");
|
|
|
|
Cmd_AddCommand ("fraglogfile", SV_Fraglogfile_f, "Enables logging of kills "
|
|
|
|
"to frag_##.log");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-08-28 02:43:24 +00:00
|
|
|
Cmd_AddCommand ("snap", SV_Snap_f, "FIXME: Take a screenshot of userid? No "
|
|
|
|
"Description");
|
2001-02-19 21:15:25 +00:00
|
|
|
Cmd_AddCommand ("snapall", SV_SnapAll_f, "FIXME: No Description");
|
2001-08-28 02:43:24 +00:00
|
|
|
Cmd_AddCommand ("kick", SV_Kick_f, "Remove a user from the server (kick "
|
|
|
|
"userid)");
|
|
|
|
Cmd_AddCommand ("status", SV_Status_f, "Report information on the current "
|
|
|
|
"connected clients and the server - displays userids");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
Cmd_AddCommand ("map", SV_Map_f, "Change to a new map (map mapname)");
|
2001-08-28 02:43:24 +00:00
|
|
|
Cmd_AddCommand ("setmaster", SV_SetMaster_f, "Lists the server with up to "
|
|
|
|
"eight masters.\n"
|
|
|
|
"When a server is listed with a master, the master is "
|
|
|
|
"aware of the server's IP address and port and it is added "
|
|
|
|
"to the\n"
|
|
|
|
"list of current servers connected to a master. A "
|
|
|
|
"heartbeat is sent to the master from the server to "
|
|
|
|
"indicated that the\n"
|
|
|
|
"server is still running and alive.\n\n"
|
|
|
|
"Examples:\n"
|
|
|
|
"setmaster 192.246.40.12:27002\n"
|
|
|
|
"setmaster 192.246.40.12:27002 192.246.40.12:27004");
|
|
|
|
Cmd_AddCommand ("heartbeat", SV_Heartbeat_f, "Force a heartbeat to be sent "
|
|
|
|
"to the master server.\n"
|
|
|
|
"A heartbeat tells the Master the server's IP address and "
|
|
|
|
"that it is still alive.");
|
2001-02-19 21:15:25 +00:00
|
|
|
Cmd_AddCommand ("quit", SV_Quit_f, "Shut down the server");
|
2001-08-28 02:43:24 +00:00
|
|
|
Cmd_AddCommand ("god", SV_God_f, "Toggle god cheat to userid (god userid) "
|
|
|
|
"Requires cheats are enabled");
|
2001-02-19 21:15:25 +00:00
|
|
|
Cmd_AddCommand ("give", SV_Give_f, "Give userid items, or health.\n"
|
2001-08-28 02:43:24 +00:00
|
|
|
"Items: 1 Axe, 2 Shotgun, 3 Double-Barrelled Shotgun, 4 "
|
|
|
|
"Nailgun, 5 Super Nailgun, 6 Grenade Launcher, 7 Rocket "
|
|
|
|
"Launcher,\n"
|
|
|
|
"8 ThunderBolt, C Cells, H Health, N Nails, R Rockets, S "
|
|
|
|
"Shells. Requires cheats to be enabled. (give userid item "
|
|
|
|
"amount)");
|
|
|
|
Cmd_AddCommand ("noclip", SV_Noclip_f, "Toggle no clipping cheat for "
|
|
|
|
"userid. Requires cheats to be enabled. (noclip userid)");
|
|
|
|
Cmd_AddCommand ("serverinfo", SV_Serverinfo_f, "Reports or sets "
|
|
|
|
"information about server.\n"
|
|
|
|
"The information stored in this space is broadcast on the "
|
|
|
|
"network to all players.\n"
|
|
|
|
"Values:\n"
|
|
|
|
"dq - Drop Quad Damage when a player dies.\n"
|
|
|
|
"dr - Drop Ring of Shadows when a player dies.\n"
|
|
|
|
"rj - Sets the multiplier rate for splash damage kick.\n"
|
|
|
|
"needpass - Displays the passwords enabled on the server.\n"
|
|
|
|
"watervis - Toggle the use of r_watervis by OpenGL "
|
|
|
|
"clients.\n"
|
|
|
|
"Note: Keys with (*) in front cannot be changed. Maximum "
|
|
|
|
"key size cannot exceed 64-bytes.\n"
|
|
|
|
"Maximum size for all keys cannot exceed 512-bytes.\n"
|
|
|
|
"(serverinfo key value)");
|
|
|
|
Cmd_AddCommand ("localinfo", SV_Localinfo_f, "Shows or sets localinfo "
|
|
|
|
"variables.\n"
|
|
|
|
"Useful for mod programmers who need to allow the admin to "
|
|
|
|
"change settings.\n"
|
|
|
|
"This is an alternative storage space to the serverinfo "
|
|
|
|
"space for mod variables.\n"
|
|
|
|
"The variables stored in this space are not broadcast on "
|
|
|
|
"the network.\n"
|
|
|
|
"This space also has a 32-kilobyte limit which is much "
|
|
|
|
"greater then the 512-byte limit on the serverinfo space.\n"
|
|
|
|
"Special Keys: (current map) (next map) - Using this "
|
|
|
|
"combination will allow the creation of a custom map cycle "
|
|
|
|
"without editing code.\n\n"
|
|
|
|
"Example:\n"
|
|
|
|
"localinfo dm2 dm4\n"
|
|
|
|
"localinfo dm4 dm6\n"
|
|
|
|
"localinfo dm6 dm2\n"
|
|
|
|
"(localinfo key value)");
|
|
|
|
Cmd_AddCommand ("user", SV_User_f, "Report information about the user "
|
|
|
|
"(user userid)");
|
|
|
|
Cmd_AddCommand ("sv_gamedir", SV_Gamedir, "Displays or determines the "
|
|
|
|
"value of the serverinfo *gamedir variable.\n"
|
|
|
|
"Note: Useful when the physical gamedir directory has a "
|
|
|
|
"different name than the widely accepted gamedir "
|
|
|
|
"directory.\n"
|
|
|
|
"Example:\n"
|
|
|
|
"gamedir tf2_5; sv_gamedir fortress\n"
|
|
|
|
"gamedir ctf4_2; sv_gamedir ctf\n"
|
|
|
|
"(sv_gamedir dirname)");
|
|
|
|
Cmd_AddCommand ("floodprot", SV_Floodprot_f, "Sets the options for flood "
|
|
|
|
"protection.\n"
|
|
|
|
"Default: 4 4 10\n"
|
|
|
|
"(floodprot (number of messages) (number of seconds) "
|
|
|
|
"(silence time in seconds))");
|
|
|
|
Cmd_AddCommand ("floodprotmsg", SV_Floodprotmsg_f, "Sets the message "
|
|
|
|
"displayed after flood protection is invoked (floodprotmsg "
|
|
|
|
"message)");
|
2001-02-19 21:15:25 +00:00
|
|
|
Cmd_AddCommand ("maplist", COM_Maplist_f, "List all maps on the server");
|
2001-08-28 02:43:24 +00:00
|
|
|
Cmd_AddCommand ("say", SV_ConSay_f, "Say something to everyone on the "
|
|
|
|
"server. Will show up as the name 'Console' (or 'Admin') "
|
|
|
|
"in game");
|
|
|
|
Cmd_AddCommand ("sayinfo", SV_ConSay_Info_f, "Say something to everyone on "
|
|
|
|
"the server. Will show up as the name 'Info' in game");
|
|
|
|
Cmd_AddCommand ("tell", SV_Tell_f, "Say something to a specific user on "
|
|
|
|
"the server. Will show up as the name 'Console' (or "
|
|
|
|
"'Admin') in game");
|
2001-09-09 04:51:08 +00:00
|
|
|
Cmd_AddCommand ("ban", SV_Ban_f, "ban a player for a specified time");
|
|
|
|
Cmd_AddCommand ("cuff", SV_Cuff_f, "\"hand-cuff\" a player for a "
|
|
|
|
"specified time");
|
|
|
|
Cmd_AddCommand ("mute", SV_Mute_f, "silience a player for a specified "
|
|
|
|
"time");
|
2001-09-11 07:10:45 +00:00
|
|
|
Cmd_AddCommand ("match", SV_Match_f, "matches nicks as ban/cuff/mute "
|
|
|
|
"commands do, so you can check safely");
|
2001-07-09 23:33:35 +00:00
|
|
|
|
2001-08-28 02:43:24 +00:00
|
|
|
cl_warncmd = Cvar_Get ("cl_warncmd", "1", CVAR_NONE, NULL, "Toggles the "
|
|
|
|
"display of error messages for unknown commands");
|
|
|
|
// poor description
|
2001-09-11 05:43:58 +00:00
|
|
|
sv_leetnickmatch = Cvar_Get ("sv_3133735_7h4n_7h0u", "1", CVAR_NONE, NULL,
|
|
|
|
"Match '1' as 'i' and such in nicks");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|