diff options
author | Tim Angus <tim@ngus.net> | 2009-10-03 11:41:24 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:14 +0000 |
commit | 614a658030e59212335611596adb196b93e5b437 (patch) | |
tree | b627256cb9b7f4d8c55490111a149d059da5053d /src/ui/ui_main.c | |
parent | ea433462e65a861b7123942151e882954f55f052 (diff) |
* Merge clientSession_t::sessionTeam and clientSession_t::spectatorState
* Remove existing team_t (TEAM_FREE, TEAM_SPECTATOR)
* s/pTeam_t/team_t/;s/buildableTeam_t/team_t/;s/WUTeam_t/team_t/
* s/pClass_t/class_t/
* s/PERS_TEAM/PERS_SPECSTATE/
* s/STAT_PTEAM/STAT_TEAM/;s/STAT_PCLASS/STAT_CLASS/
Diffstat (limited to 'src/ui/ui_main.c')
-rw-r--r-- | src/ui/ui_main.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/ui/ui_main.c b/src/ui/ui_main.c index 11971f2a..5907a3ef 100644 --- a/src/ui/ui_main.c +++ b/src/ui/ui_main.c @@ -1605,11 +1605,11 @@ static void UI_DrawInfoPane( menuItem_t *item, rectDef_t *rect, float text_x, fl switch( BG_FindTeamForBuildable( item->v.buildable ) ) { - case BIT_ALIENS: + case TEAM_ALIENS: string = "Sentience"; break; - case BIT_HUMANS: + case TEAM_HUMANS: string = "Power"; break; @@ -1941,7 +1941,7 @@ static qboolean UI_OwnerDrawVisible( int flags ) { qboolean vis = qtrue; uiClientState_t cs; - pTeam_t team; + team_t team; char info[ MAX_INFO_STRING ]; trap_GetClientState( &cs ); @@ -1953,7 +1953,7 @@ static qboolean UI_OwnerDrawVisible( int flags ) { if( flags & UI_SHOW_NOTSPECTATING ) { - if( team == PTE_NONE ) + if( team == TEAM_NONE ) vis = qfalse; flags &= ~UI_SHOW_NOTSPECTATING; @@ -1977,12 +1977,12 @@ static qboolean UI_OwnerDrawVisible( int flags ) if( flags & UI_SHOW_TEAMVOTEACTIVE ) { - if( team == PTE_ALIENS ) + if( team == TEAM_ALIENS ) { if( !trap_Cvar_VariableValue( "ui_alienTeamVoteActive" ) ) vis = qfalse; } - else if( team == PTE_HUMANS ) + else if( team == TEAM_HUMANS ) { if( !trap_Cvar_VariableValue( "ui_humanTeamVoteActive" ) ) vis = qfalse; @@ -1993,12 +1993,12 @@ static qboolean UI_OwnerDrawVisible( int flags ) if( flags & UI_SHOW_CANTEAMVOTE ) { - if( team == PTE_ALIENS ) + if( team == TEAM_ALIENS ) { if( trap_Cvar_VariableValue( "ui_alienTeamVoteActive" ) ) vis = qfalse; } - else if( team == PTE_HUMANS ) + else if( team == TEAM_HUMANS ) { if( trap_Cvar_VariableValue( "ui_humanTeamVoteActive" ) ) vis = qfalse; @@ -2162,7 +2162,7 @@ UI_AddClass =============== */ -static void UI_AddClass( pClass_t class ) +static void UI_AddClass( class_t class ) { uiInfo.alienClassList[ uiInfo.alienClassCount ].text = @@ -2313,7 +2313,7 @@ static void UI_LoadHumanArmouryBuys( void ) for( i = WP_NONE + 1; i < WP_NUM_WEAPONS; i++ ) { - if( BG_FindTeamForWeapon( i ) == WUT_HUMANS && + if( BG_FindTeamForWeapon( i ) == TEAM_HUMANS && BG_FindPurchasableForWeapon( i ) && BG_FindStagesForWeapon( i, stage ) && BG_WeaponIsAllowed( i ) && @@ -2335,7 +2335,7 @@ static void UI_LoadHumanArmouryBuys( void ) for( i = UP_NONE + 1; i < UP_NUM_UPGRADES; i++ ) { - if( BG_FindTeamForUpgrade( i ) == WUT_HUMANS && + if( BG_FindTeamForUpgrade( i ) == TEAM_HUMANS && BG_FindPurchasableForUpgrade( i ) && BG_FindStagesForUpgrade( i, stage ) && BG_UpgradeIsAllowed( i ) && @@ -2474,7 +2474,7 @@ static void UI_LoadAlienBuilds( void ) for( i = BA_NONE + 1; i < BA_NUM_BUILDABLES; i++ ) { - if( BG_FindTeamForBuildable( i ) == BIT_ALIENS && + if( BG_FindTeamForBuildable( i ) == TEAM_ALIENS && BG_FindBuildWeaponForBuildable( i ) & uiInfo.weapons && BG_FindStagesForBuildable( i, stage ) && BG_BuildableIsAllowed( i ) ) @@ -2510,7 +2510,7 @@ static void UI_LoadHumanBuilds( void ) for( i = BA_NONE + 1; i < BA_NUM_BUILDABLES; i++ ) { - if( BG_FindTeamForBuildable( i ) == BIT_HUMANS && + if( BG_FindTeamForBuildable( i ) == TEAM_HUMANS && BG_FindBuildWeaponForBuildable( i ) & uiInfo.weapons && BG_FindStagesForBuildable( i, stage ) && BG_BuildableIsAllowed( i ) ) |