From 9aad6b35602637dc06f6c04fbd01664b6c1896bb Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sun, 23 Sep 2007 11:06:06 +0000 Subject: * Do a second pass when compiling map rotation scripts to catch incorrect map and/or rotation names --- src/game/g_maprotation.c | 62 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 47 insertions(+), 15 deletions(-) diff --git a/src/game/g_maprotation.c b/src/game/g_maprotation.c index b1972258..adc7793d 100644 --- a/src/game/g_maprotation.c +++ b/src/game/g_maprotation.c @@ -47,6 +47,26 @@ static qboolean G_MapExists( char *name ) return qfalse; } +/* +=============== +G_RotationExists + +Check if a rotation exists +=============== +*/ +static qboolean G_RotationExists( char *name ) +{ + int i; + + for( i = 0; i < mapRotations.numRotations; i++ ) + { + if( Q_strncmp( mapRotations.rotations[ i ].name, name, MAX_QPATH ) == 0 ) + return qtrue; + } + + return qfalse; +} + /* =============== G_ParseCommandSection @@ -161,12 +181,6 @@ static qboolean G_ParseMapRotation( mapRotation_t *mr, char **text_p ) mrc = &mre->conditions[ mre->numConditions ]; mrc->unconditional = qtrue; - - if( !G_MapExists( token ) ) - { - G_Printf( S_COLOR_RED "ERROR: map \"%s\" doesn't exist\n", token ); - return qfalse; - } Q_strncpyz( mrc->dest, token, sizeof( mrc->dest ) ); if( mre->numConditions == MAX_MAP_ROTATION_CONDS ) @@ -277,12 +291,6 @@ static qboolean G_ParseMapRotation( mapRotation_t *mr, char **text_p ) else mr->numMaps++; - if( !G_MapExists( token ) ) - { - G_Printf( S_COLOR_RED "ERROR: map \"%s\" doesn't exist\n", token ); - return qfalse; - } - Q_strncpyz( mre->name, token, sizeof( mre->name ) ); mnSet = qtrue; } @@ -300,7 +308,7 @@ Load the map rotations from a map rotation file static qboolean G_ParseMapRotationFile( const char *fileName ) { char *text_p; - int i; + int i, j, k; int len; char *token; char text[ 20000 ]; @@ -392,6 +400,32 @@ static qboolean G_ParseMapRotationFile( const char *fileName ) } } + for( i = 0; i < mapRotations.numRotations; i++ ) + { + for( j = 0; j < mapRotations.rotations[ i ].numMaps; j++ ) + { + if( !G_MapExists( mapRotations.rotations[ i ].maps[ j ].name ) ) + { + G_Printf( S_COLOR_RED "ERROR: map \"%s\" doesn't exist\n", + mapRotations.rotations[ i ].maps[ j ].name ); + return qfalse; + } + + for( k = 0; k < mapRotations.rotations[ i ].maps[ j ].numConditions; k++ ) + { + if( !G_MapExists( mapRotations.rotations[ i ].maps[ j ].conditions[ k ].dest ) && + !G_RotationExists( mapRotations.rotations[ i ].maps[ j ].conditions[ k ].dest ) ) + { + G_Printf( S_COLOR_RED "ERROR: conditional destination \"%s\" doesn't exist\n", + mapRotations.rotations[ i ].maps[ j ].conditions[ k ].dest ); + return qfalse; + } + + } + + } + } + return qtrue; } @@ -575,8 +609,6 @@ static mapConditionType_t G_ResolveConditionDestination( int *n, char *name ) } } - //this should probably be prevented by a 2nd pass at compile time - //but i'm lazy (FIXME) return MCT_ERR; } -- cgit