Changeset 288
- Timestamp:
- 06/27/08 09:30:13 (4 months ago)
- Files:
-
- GtkRadiant/trunk/COMPILING (modified) (1 diff)
- GtkRadiant/trunk/radiant/preferences.cpp (modified) (3 diffs)
- GtkRadiant/trunk/radiant/preferences.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
GtkRadiant/trunk/COMPILING
r260 r288 14 14 Change the current directory to the desired location for the source. 15 15 svn checkout https://zerowing.idsoftware.com/svn/radiant/GtkRadiant/trunk/ ./GtkRadiant 16 svn checkout https://zerowing.idsoftware.com/svn/radiant.gamepacks/Q3Pack/trunk/ ./GtkRadiant/games/Q3Pack17 svn checkout https://zerowing.idsoftware.com/svn/radiant.gamepacks/UFOAIPack/trunk/ ./GtkRadiant/games/UFOAIPack18 16 17 Download the desired game packs: 18 cd ./GtkRadiant/install/installs 19 svn checkout https://zerowing.idsoftware.com/svn/radiant.gamepacks/Q3Pack/trunk/ ./Q3Pack 20 svn checkout https://zerowing.idsoftware.com/svn/radiant.gamepacks/UFOAIPack/trunk/ ./UFOAIPack 21 svn checkout https://zerowing.idsoftware.com/svn/radiant.gamepacks/TremulousPack/trunk/ ./TremulousPack 19 22 20 23 Linux/OSX(using X-windows) GtkRadiant/trunk/radiant/preferences.cpp
r286 r288 3249 3249 gtk_combo_box_append_text( GTK_COMBO_BOX( combo ), _("Nexuiz") ); 3250 3250 break; 3251 case GAME_TREMULOUS: 3252 gtk_combo_box_append_text( GTK_COMBO_BOX( combo ), _("Tremulous") ); 3253 break; 3251 3254 } 3252 3255 iGame++; … … 3415 3418 break; 3416 3419 } 3420 case GAME_TREMULOUS: { 3421 fprintf( fg, " gametools=\"%sinstalls/TremulousPack/game\"\n", g_strAppPath.GetBuffer() ); 3422 fprintf( fg, " prefix=\".tremulous\"\n" ); 3423 Str source = g_strAppPath.GetBuffer(); 3424 source += "installs/"; 3425 source += TREMULOUS_PACK; 3426 source += "/install/"; 3427 Str dest = m_strEngine.GetBuffer(); 3428 CopyTree( source.GetBuffer(), dest.GetBuffer() ); 3429 fprintf( fg, " basegame=\"base\"\n" ); 3430 break; 3431 } 3417 3432 } 3418 3433 fprintf( fg, "/>\n" ); … … 3455 3470 m_availGames[ iGame++ ] = GAME_Q2; 3456 3471 } 3472 if ( stricmp( dirname, TREMULOUS_PACK ) == 0 ) { 3473 m_availGames[ iGame++ ] = GAME_TREMULOUS; 3474 } 3457 3475 } 3458 3476 } GtkRadiant/trunk/radiant/preferences.h
r286 r288 207 207 #define NEXUIZ_PACK "NexuizPack" 208 208 #define Q2_PACK "Q2Pack" 209 #define TREMULOUS_PACK "TremulousPack" 209 210 210 211 class CGameInstall : public Dialog { … … 227 228 GAME_NEXUIZ, 228 229 GAME_Q2, 230 GAME_TREMULOUS, 229 231 GAME_COUNT 230 232 };
