* applied Shamus Jedi Academy patch for Zeroradiant (gamepack will follow soon)

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@324 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
mattn 2008-12-16 22:33:22 +00:00
parent 28bbf5a00b
commit 6aa8384add
3 changed files with 22 additions and 2 deletions

View file

@ -33,7 +33,7 @@ class Config:
# platforms for which to assemble a setup
self.setup_platforms = [ 'local', 'x86', 'x64', 'win32' ]
# paks to assemble in the setup
self.setup_packs = [ 'Q3Pack', 'UrTPack', 'UFOAIPack', 'Q2WPack' ]
self.setup_packs = [ 'Q3Pack', 'UrTPack', 'UFOAIPack', 'Q2WPack', 'JAPack' ]
def __repr__( self ):
return 'config: target=%s config=%s' % ( self.target_selected, self.config_selected )
@ -262,7 +262,7 @@ class Config:
def FetchGamePaks( self, path ):
for pak in self.setup_packs:
if ( pak == 'Q3Pack' or pak == 'UrTPack' or pak == 'UFOAIPack' or pak == 'Q2WPack' ):
if ( pak == 'Q3Pack' or pak == 'UrTPack' or pak == 'UFOAIPack' or pak == 'Q2WPack' or pak == 'JAPack' ):
svnurl = 'https://zerowing.idsoftware.com/svn/radiant.gamepacks/%s/trunk' % pak
self.CheckoutOrUpdate( svnurl, os.path.join( path, 'installs', pak ) )

View file

@ -3295,6 +3295,9 @@ void CGameInstall::BuildDialog() {
case GAME_TREMULOUS:
gtk_combo_box_append_text( GTK_COMBO_BOX( combo ), _("Tremulous") );
break;
case GAME_JA:
gtk_combo_box_append_text( GTK_COMBO_BOX( combo ), _("Jedi Academy and mods") );
break;
}
iGame++;
}
@ -3473,6 +3476,18 @@ void CGameInstall::Run() {
fprintf( fg, " basegame=\"base\"\n" );
break;
}
case GAME_JA: {
fprintf( fg, " "TOOLS_ATTRIBUTE"=\"%sinstalls/JAPack/game\"\n", g_strAppPath.GetBuffer() );
fprintf( fg, " prefix=\".ja\"\n" );
Str source = g_strAppPath.GetBuffer();
source += "installs/";
source += JA_PACK;
source += "/install/";
Str dest = m_strEngine.GetBuffer();
CopyTree( source.GetBuffer(), dest.GetBuffer() );
fprintf( fg, " basegame=\"base\"\n" );
break;
}
}
fprintf( fg, "/>\n" );
fclose( fg );
@ -3516,6 +3531,9 @@ void CGameInstall::ScanGames() {
if ( stricmp( dirname, TREMULOUS_PACK ) == 0 ) {
m_availGames[ iGame++ ] = GAME_TREMULOUS;
}
if ( stricmp( dirname, JA_PACK ) == 0 ) {
m_availGames[ iGame++ ] = GAME_JA;
}
}
}

View file

@ -208,6 +208,7 @@ select games, copy editing assets and write out configuration files
#define NEXUIZ_PACK "NexuizPack"
#define Q2_PACK "Q2Pack"
#define TREMULOUS_PACK "TremulousPack"
#define JA_PACK "JAPack"
class CGameInstall : public Dialog {
public:
@ -229,6 +230,7 @@ public:
GAME_NEXUIZ,
GAME_Q2,
GAME_TREMULOUS,
GAME_JA,
GAME_COUNT
};