diff options
author | Tim Angus <tim@ngus.net> | 2005-12-28 02:32:43 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-12-28 02:32:43 +0000 |
commit | 1dc7e94283f026b17c1e793cbf7542872812ffda (patch) | |
tree | 33de56bca208626f1e7c77853255afc2b8244279 /src/qcommon/qcommon.h | |
parent | 4b614e63d7da358a8a30e61a89365add79ecde9c (diff) |
* Added master server to source, based on dpmaster
* Removed gametype, fraglimit and dmflags cvars
* Removed CD key authentication stuff
* Implemented a means to save and restore cmd context
* Bumped protocol version up to 69 (same as 68)
* Removed various references to punkbuster
* Maps on create server menu now sorted by name
* Fixed some warnings
Diffstat (limited to 'src/qcommon/qcommon.h')
-rw-r--r-- | src/qcommon/qcommon.h | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/src/qcommon/qcommon.h b/src/qcommon/qcommon.h index 11c332ce..843f04ef 100644 --- a/src/qcommon/qcommon.h +++ b/src/qcommon/qcommon.h @@ -227,27 +227,20 @@ PROTOCOL ============================================================== */ -#define PROTOCOL_VERSION 68 -// 1.31 - 67 +// 69 is identical in every way to 68 - the change is to avoid +// confusing connecting Q3 clients +#define PROTOCOL_VERSION 69 // maintain a list of compatible protocols for demo playing // NOTE: that stuff only works with two digits protocols extern int demo_protocols[]; -#define UPDATE_SERVER_NAME "update.quake3arena.com" // override on command line, config files etc. #ifndef MASTER_SERVER_NAME -#define MASTER_SERVER_NAME "master.quake3arena.com" -#endif -#ifndef AUTHORIZE_SERVER_NAME -#define AUTHORIZE_SERVER_NAME "authorize.quake3arena.com" +#define MASTER_SERVER_NAME "master.tremulous.net" #endif #define PORT_MASTER 27950 -#define PORT_UPDATE 27951 -#ifndef PORT_AUTHORIZE -#define PORT_AUTHORIZE 27952 -#endif #define PORT_SERVER 27960 #define NUM_SERVER_PORTS 4 // broadcast scan this many ports after // PORT_SERVER so a single machine can @@ -424,6 +417,8 @@ void Cmd_ExecuteString( const char *text ); // Parses a single line of text into arguments and tries to execute it // as if it was typed at the console +void Cmd_SaveCmdContext( void ); +void Cmd_RestoreCmdContext( void ); /* ============================================================== @@ -693,10 +688,6 @@ MISC #define Q_vsnprintf vsnprintf #endif -// centralizing the declarations for cl_cdkey -// https://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=470 -extern char cl_cdkey[34]; - // returnbed by Sys_GetProcessorId #define CPUID_GENERIC 0 // any unrecognized processor @@ -916,7 +907,6 @@ qboolean SV_GameCommand( void ); // UI interface // qboolean UI_GameCommand( void ); -qboolean UI_usesUniqueCDKey(void); /* ============================================================== |