mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-13 00:24:29 +00:00
Merge pull request #221 from merlin1991/WolfPack
Add support for RTCW to the game setup dialog
This commit is contained in:
commit
5095d3d8eb
3 changed files with 27 additions and 1 deletions
|
@ -28,7 +28,7 @@ class Config:
|
||||||
# platforms for which to assemble a setup
|
# platforms for which to assemble a setup
|
||||||
self.setup_platforms = [ 'local', 'x86', 'x64', 'win32' ]
|
self.setup_platforms = [ 'local', 'x86', 'x64', 'win32' ]
|
||||||
# paks to assemble in the setup
|
# paks to assemble in the setup
|
||||||
self.setup_packs = [ 'Q3Pack', 'UrTPack', 'ETPack', 'QLPack', 'Q2Pack', 'Q2WPack', 'JAPack', 'STVEFPack' ]
|
self.setup_packs = [ 'Q3Pack', 'UrTPack', 'ETPack', 'QLPack', 'Q2Pack', 'Q2WPack', 'JAPack', 'STVEFPack', 'WolfPack' ]
|
||||||
|
|
||||||
def __repr__( self ):
|
def __repr__( self ):
|
||||||
return 'config: target=%s config=%s' % ( self.target_selected, self.config_selected )
|
return 'config: target=%s config=%s' % ( self.target_selected, self.config_selected )
|
||||||
|
|
|
@ -3432,6 +3432,9 @@ void CGameInstall::BuildDialog() {
|
||||||
case GAME_STVEF:
|
case GAME_STVEF:
|
||||||
gtk_combo_box_append_text( GTK_COMBO_BOX( combo ), _( "Star Trek - Voyager: Elite Force" ) );
|
gtk_combo_box_append_text( GTK_COMBO_BOX( combo ), _( "Star Trek - Voyager: Elite Force" ) );
|
||||||
break;
|
break;
|
||||||
|
case GAME_WOLF:
|
||||||
|
gtk_combo_box_append_text( GTK_COMBO_BOX( combo ), _( "Return To Castle Wolfenstein" ) );
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
iGame++;
|
iGame++;
|
||||||
}
|
}
|
||||||
|
@ -3580,6 +3583,10 @@ void CGameInstall::Run() {
|
||||||
gamePack = STVEF_PACK;
|
gamePack = STVEF_PACK;
|
||||||
gameFilePath += STVEF_GAME;
|
gameFilePath += STVEF_GAME;
|
||||||
break;
|
break;
|
||||||
|
case GAME_WOLF:
|
||||||
|
gamePack = WOLF_PACK;
|
||||||
|
gameFilePath += WOLF_GAME;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
Error( "Invalid game selected: %d", m_availGames[ m_nComboSelect ] );
|
Error( "Invalid game selected: %d", m_availGames[ m_nComboSelect ] );
|
||||||
}
|
}
|
||||||
|
@ -3738,6 +3745,19 @@ void CGameInstall::Run() {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case GAME_WOLF: {
|
||||||
|
fprintf( fg, " prefix=\".wolf\"\n" );
|
||||||
|
fprintf( fg, " basegame=\"main\"\n" );
|
||||||
|
// Hardcoded fix for "missing" shaderlist in gamepack
|
||||||
|
Str dest = m_strEngine.GetBuffer();
|
||||||
|
dest += "/main/scripts/shaderlist.txt";
|
||||||
|
if( CheckFile( dest.GetBuffer() ) != PATH_FILE ) {
|
||||||
|
Str source = gameInstallPath.GetBuffer();
|
||||||
|
source += "main/scripts/default_shaderlist.txt";
|
||||||
|
radCopyFile( source.GetBuffer(), dest.GetBuffer() );
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fprintf( fg, "/>\n" );
|
fprintf( fg, "/>\n" );
|
||||||
fclose( fg );
|
fclose( fg );
|
||||||
|
@ -3796,6 +3816,9 @@ void CGameInstall::ScanGames() {
|
||||||
if ( stricmp( dirname, STVEF_PACK ) == 0 ) {
|
if ( stricmp( dirname, STVEF_PACK ) == 0 ) {
|
||||||
m_availGames[ iGame++ ] = GAME_STVEF;
|
m_availGames[ iGame++ ] = GAME_STVEF;
|
||||||
}
|
}
|
||||||
|
if ( stricmp( dirname, WOLF_PACK ) == 0) {
|
||||||
|
m_availGames[ iGame++ ] = GAME_WOLF;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Sys_Printf( "No installable games found in: %s\n",
|
Sys_Printf( "No installable games found in: %s\n",
|
||||||
pakPaths.GetBuffer() );
|
pakPaths.GetBuffer() );
|
||||||
|
|
|
@ -215,6 +215,7 @@ void Dump();
|
||||||
#define ET_GAME "et.game"
|
#define ET_GAME "et.game"
|
||||||
#define QL_GAME "ql.game"
|
#define QL_GAME "ql.game"
|
||||||
#define STVEF_GAME "stvef.game"
|
#define STVEF_GAME "stvef.game"
|
||||||
|
#define WOLF_GAME "wolf.game"
|
||||||
|
|
||||||
#define Q3_PACK "Q3Pack"
|
#define Q3_PACK "Q3Pack"
|
||||||
#define URT_PACK "UrTPack"
|
#define URT_PACK "UrTPack"
|
||||||
|
@ -229,6 +230,7 @@ void Dump();
|
||||||
#define ET_PACK "ETPack"
|
#define ET_PACK "ETPack"
|
||||||
#define QL_PACK "QLPack"
|
#define QL_PACK "QLPack"
|
||||||
#define STVEF_PACK "STVEFPack"
|
#define STVEF_PACK "STVEFPack"
|
||||||
|
#define WOLF_PACK "WolfPack"
|
||||||
|
|
||||||
class CGameInstall : public Dialog {
|
class CGameInstall : public Dialog {
|
||||||
public:
|
public:
|
||||||
|
@ -256,6 +258,7 @@ enum gameType_e {
|
||||||
GAME_ET,
|
GAME_ET,
|
||||||
GAME_QL,
|
GAME_QL,
|
||||||
GAME_STVEF,
|
GAME_STVEF,
|
||||||
|
GAME_WOLF,
|
||||||
GAME_COUNT
|
GAME_COUNT
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue