| Line 439... |
Line 439... |
| 439 |
sType = "Ship";
|
439 |
sType = "Ship";
|
| 440 |
else
|
440 |
else
|
| 441 |
sType = "Package";
|
441 |
sType = "Package";
|
| 442 |
|
442 |
|
| 443 |
printf ( "%s Name: %s\n", sType.c_str(), pBaseFile->GetName ().c_str() );
|
443 |
printf ( "%s Name: %s\n", sType.c_str(), pBaseFile->GetName ().c_str() );
|
| 444 |
if ( !pBaseFile->GetEmail().Empty() )
|
444 |
if ( !pBaseFile->email().empty() )
|
| 445 |
printf ( "%s Author: %s (%s)\n", sType.c_str(), pBaseFile->GetAuthor().c_str(), pBaseFile->GetEmail().c_str() );
|
445 |
printf ( "%s Author: %s (%s)\n", sType.c_str(), pBaseFile->GetAuthor().c_str(), pBaseFile->email().c_str() );
|
| 446 |
else
|
446 |
else
|
| 447 |
printf ( "%s Author: %s\n", sType.c_str(), pBaseFile->GetAuthor().c_str() );
|
447 |
printf ( "%s Author: %s\n", sType.c_str(), pBaseFile->GetAuthor().c_str() );
|
| 448 |
if ( !pBaseFile->GetVersion().Empty() ) printf ( "%s Version: %s\n", sType.c_str(), pBaseFile->GetVersion().c_str() );
|
448 |
if ( !pBaseFile->GetVersion().Empty() ) printf ( "%s Version: %s\n", sType.c_str(), pBaseFile->GetVersion().c_str() );
|
| 449 |
|
449 |
|
| 450 |
//for game
|
450 |
//for game
|
| Line 544... |
Line 544... |
| 544 |
if ( !desc.Empty() )
|
544 |
if ( !desc.Empty() )
|
| 545 |
printf ( "\tDescription: %s\n", desc.c_str() );
|
545 |
printf ( "\tDescription: %s\n", desc.c_str() );
|
| 546 |
}
|
546 |
}
|
| 547 |
}
|
547 |
}
|
| 548 |
}
|
548 |
}
|
| 549 |
if ( !pBaseFile->GetForumLink().Empty() ) printf ( "Forum Link: %s\n", pBaseFile->GetForumLink().c_str() );
|
549 |
if ( !pBaseFile->forumLink().empty() ) printf ( "Forum Link: %s\n", pBaseFile->forumLink().c_str() );
|
| 550 |
if ( !pBaseFile->GetWebSite().Empty() ) printf ( "Web Site Address: %s\n", pBaseFile->GetWebSite().c_str() );
|
550 |
if ( !pBaseFile->webSite().empty() ) printf ( "Web Site Address: %s\n", pBaseFile->webSite().c_str() );
|
| 551 |
if ( !pBaseFile->GetWebAddress().Empty() ) printf ( "Update Address: %s\n", pBaseFile->GetWebAddress().c_str() );
|
551 |
if ( !pBaseFile->webAddress().empty() ) printf ( "Update Address: %s\n", pBaseFile->webAddress().c_str() );
|
| 552 |
|
552 |
|
| 553 |
if ( pBaseFile->AnyWebMirrors() )
|
553 |
if ( pBaseFile->AnyWebMirrors() )
|
| 554 |
{
|
554 |
{
|
| 555 |
printf("Update Mirror Addresses:\n");
|
555 |
printf("Update Mirror Addresses:\n");
|
| 556 |
for ( int i = 0; i < pBaseFile->GetMaxWebMirrors(); i++ )
|
556 |
for ( int i = 0; i < pBaseFile->GetMaxWebMirrors(); i++ )
|