diff options
author | M. Kristall <mkpdev@gmail.com> | 2009-10-03 12:43:00 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:10 +0000 |
commit | caa7860f1ec9adffccedbec1510535d8b5737028 (patch) | |
tree | 59e64621a534fdddc54801838fac138b5da75ac3 /src/cgame | |
parent | f7eea82401117ba6f5dcf3eebf35578abf296588 (diff) |
* Fix a new formatting issue from revision 1189
* Use client list functions for ready code
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_main.c | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/src/cgame/cg_main.c b/src/cgame/cg_main.c index 3bca625d..2dd07ba2 100644 --- a/src/cgame/cg_main.c +++ b/src/cgame/cg_main.c @@ -1437,28 +1437,11 @@ static clientInfo_t * CG_InfoFromScoreIndex( int index, int team, int *scoreInde static qboolean CG_ClientIsReady( int clientNum ) { - // CS_CLIENTS_READY is a hex string, each character of which is 4 bits - // the highest bit of the first char is a toggle for client 0, the second - // highest for client 1, etc. - // there are exactly four bits of information in each character - int val; - const char *s = CG_ConfigString( CS_CLIENTS_READY ); - - // select the appropriate character without passing the end of the string - for( val = clientNum / 4; *s && val > 0; s++, val-- ); - - // convert hex -> int - if( isdigit( *s ) ) - val = *s - '0'; - else if( *s >= 'a' && *s <= 'f' ) - val = 10 + *s - 'a'; - else if( *s >= 'A' && *s <= 'F' ) - val = 10 + *s - 'A'; - else - return qfalse; + clientList_t ready; + + BG_ClientListParse( &ready, CG_ConfigString( CS_CLIENTS_READY ) ); - // select appropriate bit - return ( ( val & 1 << ( 3 - clientNum % 4 ) ) != 0 ); + return BG_ClientListTest( &ready, clientNum ); } static const char *CG_FeederItemText( float feederID, int index, int column, qhandle_t *handle ) |