diff options
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_ptr.c | 84 | ||||
-rw-r--r-- | src/cgame/cg_servercmds.c | 34 |
2 files changed, 0 insertions, 118 deletions
diff --git a/src/cgame/cg_ptr.c b/src/cgame/cg_ptr.c deleted file mode 100644 index f9f7405a..00000000 --- a/src/cgame/cg_ptr.c +++ /dev/null @@ -1,84 +0,0 @@ -/* -=========================================================================== -Copyright (C) 2000-2009 Darklegion Development - -This file is part of Tremulous. - -Tremulous 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. - -Tremulous 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 Tremulous; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -=========================================================================== -*/ - -// cg_ptr.c -- post timeout restoration handling - - -#include "cg_local.h" - -#define PTRC_FILE "ptrc.cfg" - -/* -=============== -CG_ReadPTRCode - -Read a PTR code from disk -=============== -*/ -int CG_ReadPTRCode( void ) -{ - int len; - char text[ 16 ]; - fileHandle_t f; - - // load the file - len = trap_FS_FOpenFile( PTRC_FILE, &f, FS_READ ); - if( len < 0 ) - return 0; - - // should never happen - malformed write - if( len == 0 || len >= sizeof( text ) - 1 ) - { - trap_FS_FCloseFile( f ); - return 0; - } - - trap_FS_Read( text, len, f ); - text[ len ] = 0; - trap_FS_FCloseFile( f ); - - return atoi( text ); -} - -/* -=============== -CG_WritePTRCode - -Write a PTR code to disk -=============== -*/ -void CG_WritePTRCode( int code ) -{ - char text[ 16 ]; - fileHandle_t f; - - Com_sprintf( text, 16, "%d", code ); - - // open file - if( trap_FS_FOpenFile( PTRC_FILE, &f, FS_WRITE ) < 0 ) - return; - - // write the code - trap_FS_Write( text, strlen( text ), f ); - - trap_FS_FCloseFile( f ); -} diff --git a/src/cgame/cg_servercmds.c b/src/cgame/cg_servercmds.c index 63db2ffe..faa5a175 100644 --- a/src/cgame/cg_servercmds.c +++ b/src/cgame/cg_servercmds.c @@ -1235,37 +1235,6 @@ static void CG_PoisonCloud_f( void ) } } -/* -================= -CG_PTRRequest_f -================= -*/ -static void CG_PTRRequest_f( void ) -{ - trap_SendClientCommand( va( "ptrcverify %d", CG_ReadPTRCode( ) ) ); -} - -/* -================= -CG_PTRIssue_f -================= -*/ -static void CG_PTRIssue_f( void ) -{ - if( trap_Argc( ) == 2 ) - CG_WritePTRCode( atoi( CG_Argv( 1 ) ) ); -} - -/* -================= -CG_PTRConfirm_f -================= -*/ -static void CG_PTRConfirm_f( void ) -{ - trap_SendConsoleCommand( "menu ptrc_popmenu\n" ); -} - static void CG_GameCmds_f( void ) { int i; @@ -1291,9 +1260,6 @@ static consoleCommand_t svcommands[ ] = { "map_restart", CG_MapRestart }, { "poisoncloud", CG_PoisonCloud_f }, { "print", CG_Print_f }, - { "ptrcconfirm", CG_PTRConfirm_f }, - { "ptrcissue", CG_PTRIssue_f }, - { "ptrcrequest", CG_PTRRequest_f }, { "scores", CG_ParseScores }, { "serverclosemenus", CG_ServerCloseMenus_f }, { "servermenu", CG_ServerMenu_f }, |