/* =========================================================================== Copyright (C) 1997-2001 Id Software, Inc. Copyright (C) 2000-2002 Mr. Hyde and Mad Dog This file is part of Lazarus Quake 2 Mod source code. Lazarus Quake 2 Mod source code 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. Lazarus Quake 2 Mod source code 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 Lazarus Quake 2 Mod source code; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA =========================================================================== */ #include "g_local.h" void Svcmd_Test_f (void) { safe_cprintf (NULL, PRINT_HIGH, "Svcmd_Test_f()\n"); } /* ============================================================================== PACKET FILTERING You can add or remove addresses from the filter list with: addip removeip The ip address is specified in dot format, and any unspecified digits will match any value, so you can specify an entire class C network with "addip 192.246.40". Removeip will only remove an address specified exactly the same way. You cannot addip a subnet, then removeip a single host. listip Prints the current list of filters. writeip Dumps "addip " commands to listip.cfg so it can be execed at a later date. The filter lists are not saved and restored by default, because I beleive it would cause too much confusion. filterban <0 or 1> If 1 (the default), then ip addresses matching the current list will be prohibited from entering the game. This is the default setting. If 0, then only addresses matching the list will be allowed. This lets you easily set up a private game, or a game that only allows players from your local network. ============================================================================== */ typedef struct { unsigned mask; unsigned compare; } ipfilter_t; #define MAX_IPFILTERS 1024 ipfilter_t ipfilters[MAX_IPFILTERS]; int numipfilters; /* ================= StringToFilter ================= */ static qboolean StringToFilter (char *s, ipfilter_t *f) { char num[128]; int i, j; byte b[4]; byte m[4]; for (i=0 ; i<4 ; i++) { b[i] = 0; m[i] = 0; } for (i=0 ; i<4 ; i++) { if (*s < '0' || *s > '9') { safe_cprintf(NULL, PRINT_HIGH, "Bad filter address: %s\n", s); return false; } j = 0; while (*s >= '0' && *s <= '9') { num[j++] = *s++; } num[j] = 0; b[i] = atoi(num); if (b[i] != 0) m[i] = 255; if (!*s) break; s++; } f->mask = *(unsigned *)m; f->compare = *(unsigned *)b; return true; } /* ================= SV_FilterPacket ================= */ qboolean SV_FilterPacket (char *from) { int i; unsigned in; byte m[4]; char *p; i = 0; p = from; while (*p && i < 4) { m[i] = 0; while (*p >= '0' && *p <= '9') { m[i] = m[i]*10 + (*p - '0'); p++; } if (!*p || *p == ':') break; i++, p++; } in = *(unsigned *)m; for (i=0 ; ivalue; return (int)!filterban->value; } /* ================= SV_AddIP_f ================= */ void SVCmd_AddIP_f (void) { int i; if (gi.argc() < 3) { safe_cprintf(NULL, PRINT_HIGH, "Usage: addip \n"); return; } for (i=0 ; i\n"); return; } if (!StringToFilter (gi.argv(2), &f)) return; for (i=0 ; istring) Com_sprintf (name, sizeof(name), "%s/listip.cfg", GAMEVERSION); else Com_sprintf (name, sizeof(name), "%s/listip.cfg", game->string); safe_cprintf (NULL, PRINT_HIGH, "Writing %s.\n", name); f = fopen (name, "wb"); if (!f) { safe_cprintf (NULL, PRINT_HIGH, "Couldn't open %s\n", name); return; } fprintf(f, "set filterban %d\n", (int)filterban->value); for (i=0 ; ivalue) // Knightmare added { safe_bprintf (PRINT_MEDIUM, "ACE: Can only spawn bots in deathmatch mode.\n"); return; } if (ctf->value) // name, skin, team ACESP_SpawnBot (gi.argv(2), gi.argv(3), gi.argv(4), NULL); else // name, skin ACESP_SpawnBot (NULL, gi.argv(2), gi.argv(3), NULL); } // removebot else if (Q_stricmp (cmd, "removebot") == 0) ACESP_RemoveBot (gi.argv(2)); // Node saving else if (Q_stricmp (cmd, "savenodes") == 0) ACEND_SaveNodes (); // ACEBOT_END // Knightmare added- DM pause else if(Q_stricmp (cmd, "dmpause") == 0) { if (!deathmatch->value) { safe_cprintf (NULL, PRINT_HIGH, "Dmpause only works in deathmatch.\n", cmd); paused = false; return; } paused = !paused; if (!paused) // unfreeze players { int i; edict_t *player; for (i=0; iinuse || !player->client) continue; if (player->is_bot || player->client->ctf_grapple) continue; player->client->ps.pmove.pm_flags &= ~PMF_NO_PREDICTION; } safe_bprintf (PRINT_HIGH, "Game unpaused\n"); } } else safe_cprintf (NULL, PRINT_HIGH, "Unknown server command \"%s\"\n", cmd); }