1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
|
/*
Copyright (C) 2009-2011 wxLauncher Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "generated/configure_launcher.h"
#include "apis/FlagListManager.h"
#include "apis/ProfileManager.h"
#include "apis/TCManager.h"
#include "datastructures/FSOExecutable.h"
#include "global/ProfileKeys.h"
#include "global/MemoryDebugging.h"
/** \class FlagListManager
FlagListManager is used to notify controls that have registered with it
that the flag file processing's status has changed. It also extracts
the data in flag files generated by FS2 Open executables. */
LAUNCHER_DEFINE_EVENT_TYPE(EVT_FLAG_FILE_PROCESSING_STATUS_CHANGED);
#include <wx/arrimpl.cpp> // Magic Incantation
WX_DEFINE_OBJARRAY(FlagFileArray);
EventHandlers FlagListManager::ffProcessingStatusChangedHandlers;
void FlagListManager::RegisterFlagFileProcessingStatusChanged(wxEvtHandler *handler) {
wxASSERT(FlagListManager::IsInitialized());
wxASSERT_MSG(ffProcessingStatusChangedHandlers.IndexOf(handler) == wxNOT_FOUND,
wxString::Format(
_T("RegisterFlagFileProcessingStatusChanged(): Handler at %p already registered."),
handler));
FlagListManager::ffProcessingStatusChangedHandlers.Append(handler);
}
void FlagListManager::UnRegisterFlagFileProcessingStatusChanged(wxEvtHandler *handler) {
wxASSERT(FlagListManager::IsInitialized());
wxASSERT_MSG(ffProcessingStatusChangedHandlers.IndexOf(handler) != wxNOT_FOUND,
wxString::Format(
_T("UnRegisterFlagFileProcessingStatusChanged(): Handler at %p not registered."),
handler));
FlagListManager::ffProcessingStatusChangedHandlers.DeleteObject(handler);
}
void FlagListManager::GenerateFlagFileProcessingStatusChanged(const FlagFileProcessingStatus& status) {
wxASSERT(FlagListManager::IsInitialized());
wxCommandEvent event(EVT_FLAG_FILE_PROCESSING_STATUS_CHANGED, wxID_NONE);
event.SetInt(status);
wxLogDebug(_T("Generating EVT_FLAG_FILE_PROCESSING_STATUS_CHANGED event"));
for (EventHandlers::iterator
iter = FlagListManager::ffProcessingStatusChangedHandlers.begin(),
end = FlagListManager::ffProcessingStatusChangedHandlers.end();
iter != end; ++iter) {
wxEvtHandler* current = *iter;
current->AddPendingEvent(event);
wxLogDebug(_T(" Sent EVT_FLAG_FILE_PROCESSING_STATUS_CHANGED event to %p"), current);
}
}
FlagListManager* FlagListManager::flagListManager = NULL;
bool FlagListManager::Initialize() {
wxASSERT(!FlagListManager::IsInitialized());
FlagListManager::flagListManager = new FlagListManager();
return true;
}
void FlagListManager::DeInitialize() {
wxASSERT(FlagListManager::IsInitialized());
if (!FlagListManager::ffProcessingStatusChangedHandlers.IsEmpty()) {
wxLogDebug(_T("FlagListManager::DeInitialize(): contents of handler list:"));
for (EventHandlers::const_iterator
iter = FlagListManager::ffProcessingStatusChangedHandlers.begin(),
end = FlagListManager::ffProcessingStatusChangedHandlers.end();
iter != end; ++iter) {
wxLogDebug(_T(" handler at %p"), *iter);
}
FlagListManager::ffProcessingStatusChangedHandlers.Clear();
}
FlagListManager* temp = FlagListManager::flagListManager;
FlagListManager::flagListManager = NULL;
delete temp;
}
bool FlagListManager::IsInitialized() {
return (FlagListManager::flagListManager != NULL);
}
FlagListManager* FlagListManager::GetFlagListManager() {
wxCHECK_MSG(FlagListManager::IsInitialized(),
NULL,
_T("Attempt to get flag list manager when it has not been initialized."));
return FlagListManager::flagListManager;
}
FlagListManager::FlagListManager()
: data(NULL), proxyData(NULL), buildCaps(0) {
TCManager::RegisterTCBinaryChanged(this);
}
FlagListManager::~FlagListManager() {
TCManager::UnRegisterTCBinaryChanged(this);
this->DeleteExistingData();
}
BEGIN_EVENT_TABLE(FlagListManager, wxEvtHandler)
EVT_COMMAND(wxID_NONE, EVT_TC_BINARY_CHANGED, FlagListManager::OnBinaryChanged)
END_EVENT_TABLE()
void FlagListManager::OnBinaryChanged(wxCommandEvent& event) {
wxCHECK_RET(this->GetProcessingStatus() != WAITING_FOR_FLAG_FILE,
_T("Received binary changed event in middle of flag file processing."));
this->DeleteExistingData();
this->SetProcessingStatus(INITIAL_STATUS);
}
void FlagListManager::DeleteExistingData() {
if (this->data != NULL) {
FlagFileData* temp = this->data;
this->data = NULL;
delete temp;
}
if (this->proxyData != NULL) {
ProxyFlagData* temp = this->proxyData;
this->proxyData = NULL;
delete temp;
}
this->buildCaps = 0;
}
void FlagListManager::BeginFlagFileProcessing() {
wxCHECK_RET(this->GetProcessingStatus() != WAITING_FOR_FLAG_FILE,
_T("Began flag file processing while processing was underway."));
this->DeleteExistingData(); // don't leak any existing data
this->data = new FlagFileData();
this->proxyData = new ProxyFlagData();
wxString tcPath, exeName;
wxFileName exeFilename;
wxLogDebug(_T("Initializing flag file processing."));
if ( !ProMan::GetProfileManager()->ProfileRead(PRO_CFG_TC_ROOT_FOLDER, &tcPath) ) {
this->SetProcessingStatus(MISSING_TC);
return;
}
if (!wxFileName::DirExists(tcPath)) {
this->SetProcessingStatus(NONEXISTENT_TC);
return;
}
if (!FSOExecutable::HasFSOExecutables(wxFileName(tcPath, wxEmptyString))) {
this->SetProcessingStatus(INVALID_TC);
return;
}
if ( !ProMan::GetProfileManager()->ProfileRead(PRO_CFG_TC_CURRENT_BINARY, &exeName)) {
this->SetProcessingStatus(MISSING_EXE);
return;
}
#if IS_APPLE // needed because on OSX exeName is a relative path from TC root dir
exeFilename.Assign(tcPath + wxFileName::GetPathSeparator() + exeName);
#else
exeFilename.Assign(tcPath, exeName);
#endif
wxLogDebug(_T("exeName: ") + exeName);
wxLogDebug(_T("exeFilename: ") + exeFilename.GetFullPath());
if (!exeFilename.FileExists()) {
this->SetProcessingStatus(INVALID_BINARY);
return;
}
// Make sure that the directory that I am going to change to exists
wxFileName tempExecutionLocation;
tempExecutionLocation.AssignDir(GetProfileStorageFolder());
tempExecutionLocation.AppendDir(_T("temp_flag_folder"));
if ( !tempExecutionLocation.DirExists()
&& !tempExecutionLocation.Mkdir() ) {
wxLogError(_T("Unable to create flag folder at %s"),
tempExecutionLocation.GetFullPath().c_str());
this->SetProcessingStatus(CANNOT_CREATE_FLAGFILE_FOLDER);
return;
}
FlagFileArray flagFileLocations;
flagFileLocations.Add(wxFileName(tcPath, _T("flags.lch")));
flagFileLocations.Add(wxFileName(tempExecutionLocation.GetFullPath(), _T("flags.lch")));
// remove potential flag files to eliminate any confusion.
for( size_t i = 0; i < flagFileLocations.Count(); i++ ) {
bool exists = flagFileLocations[i].FileExists();
if (exists) {
::wxRemoveFile(flagFileLocations[i].GetFullPath());
wxLogDebug(_T(" Cleaned up %s ... %s"),
flagFileLocations[i].GetFullPath().c_str(),
(flagFileLocations[i].FileExists())? _T("Failed") : _T("Removed"));
}
}
wxString commandline;
// use "" to correct for spaces in path to exeFilename
if (exeFilename.GetFullPath().Find(_T(" ")) != wxNOT_FOUND) {
commandline = _T("\"") + exeFilename.GetFullPath() + _T("\"") + _T(" -get_flags");
} else {
commandline = exeFilename.GetFullPath() + _T(" -get_flags");
}
wxLogDebug(_T(" Called FS2 Open with command line '%s'."), commandline.c_str());
FlagProcess *process = new FlagProcess(flagFileLocations);
#if wxCHECK_VERSION(2, 9, 2)
wxExecuteEnv env;
env.cwd = tempExecutionLocation.GetFullPath();
::wxExecute(commandline, wxEXEC_ASYNC, process, &env);
#else
wxString previousWorkingDir(::wxGetCwd());
// hopefully this doesn't goof anything up
if (!::wxSetWorkingDirectory(tempExecutionLocation.GetFullPath())) {
wxLogError(_T("Unable to change working directory to %s"),
tempExecutionLocation.GetFullPath().c_str());
this->SetProcessingStatus(CANNOT_CHANGE_WORKING_FOLDER);
delete process;
return;
}
::wxExecute(commandline, wxEXEC_ASYNC, process);
if ( !::wxSetWorkingDirectory(previousWorkingDir) ) {
wxLogError(_T("Unable to change back to working directory %s"),
previousWorkingDir.c_str());
this->SetProcessingStatus(CANNOT_CHANGE_WORKING_FOLDER);
return;
}
#endif
this->SetProcessingStatus(WAITING_FOR_FLAG_FILE);
}
wxString FlagListManager::GetStatusMessage() const {
wxCHECK_MSG(!this->IsProcessingOK(), wxEmptyString,
_T("status message requested, even though processing succeeded"));
wxString msg;
switch(this->GetProcessingStatus()) {
case INITIAL_STATUS:
msg = _("Waiting for flag file processing to be initialized.");
break;
case MISSING_TC:
msg = _("No FS2 Open game has been selected.\n\nSelect the root folder of an FS2 Open game on the Basic Settings page.");
break;
case NONEXISTENT_TC:
msg = _("The selected root folder does not exist.\n\nSelect a different FS2 Open game on the Basic Settings page.");
break;
case INVALID_TC:
msg = wxString(_("The selected root folder does not contain any FS2 Open executables.\n\n")) +
_("On the Basic Settings page, either select a different root folder, or add FS2 Open executables to the selected root folder and press the Refresh button.");
break;
case MISSING_EXE:
msg = _("No FS2 Open executable has been selected.\n\nSelect an executable on the Basic Settings page.");
break;
case INVALID_BINARY:
msg = _("The selected FS2 Open executable does not exist.\n\nSelect another on the Basic Settings page.");
break;
case WAITING_FOR_FLAG_FILE:
msg = _("Waiting for flag file to be generated and parsed.");
break;
case FLAG_FILE_NOT_GENERATED:
msg = _("The executable did not generate a flag file.\n\nMake sure that the executable is an FS2 Open executable.");
break;
case FLAG_FILE_NOT_VALID:
msg = _("Generated flag file was not complete.\n\nPlease talk to a maintainer of this launcher, since you probably found a bug.");
break;
case FLAG_FILE_NOT_SUPPORTED:
msg = _("Generated flag file is not supported.\n\nUpdate the launcher or talk to a maintainer of this launcher if you have the most recent version.");
break;
default:
msg = wxString::Format(
_("Unknown error (%d) occurred while obtaining the flag file from the FS2 Open executable."),
this->GetProcessingStatus());
break;
}
return msg;
}
FlagFileData* FlagListManager::GetFlagFileData() {
wxCHECK_MSG(this->IsProcessingOK(), NULL,
_T("attempt to get flag file data even though processing hasn't succeeded"));
wxCHECK_MSG(this->data != NULL, NULL,
_T("attempt to get flag file data after it has already been retrieved"));
FlagFileData* temp = this->data;
this->data = NULL;
return temp;
}
ProxyFlagData* FlagListManager::GetProxyFlagData() {
wxCHECK_MSG(this->IsProcessingOK(), NULL,
_T("attempt to get proxy flag data list even though processing hasn't succeeded"));
wxCHECK_MSG(this->proxyData != NULL, NULL,
_T("attempt to get proxy flag data list after it has already been retrieved"));
ProxyFlagData* temp = this->proxyData;
this->proxyData = NULL;
return temp;
}
wxByte FlagListManager::GetBuildCaps() const {
wxCHECK_MSG(this->IsProcessingOK(), 0,
_T("attempt to get build caps even though processing hasn't succeeded"));
return this->buildCaps;
}
FlagListManager::ProcessingStatus FlagListManager::ParseFlagFile(const wxFileName& flagfilename) {
if (!flagfilename.FileExists()) {
wxLogError(_T("The FS2 Open executable did not generate a flag file."));
return FLAG_FILE_NOT_GENERATED;
}
wxFile flagfile(flagfilename.GetFullPath());
wxLogDebug(_T("Reading flag file %s."), flagfilename.GetFullPath().c_str());
// Flagfile requires that we use 32 bit little-endian numbers
wxInt32 easy_flag_size, flag_size, num_easy_flags, num_flags;
size_t bytesRead;
bytesRead = flagfile.Read(&easy_flag_size, sizeof(easy_flag_size));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(easy_flag_size) ) {
wxLogError(_T(" Flag file is too short (failed to read easy_flag_size)"));
return FLAG_FILE_NOT_VALID;
}
if ( easy_flag_size != 32 ) {
wxLogError(_T(" Easy flag size (%d) is not supported"), easy_flag_size);
return FLAG_FILE_NOT_SUPPORTED;
}
bytesRead = flagfile.Read(&flag_size, sizeof(flag_size));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(flag_size) ) {
wxLogError(_T(" Flag file is too short (failed to read flag_size)"));
return FLAG_FILE_NOT_VALID;
}
if ( flag_size != 344 ) {
wxLogError(_T(" Exe flag structure (%d) size is not supported"), flag_size);
return FLAG_FILE_NOT_SUPPORTED;
}
bytesRead = flagfile.Read(&num_easy_flags, sizeof(num_easy_flags));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(num_easy_flags) ) {
wxLogError(_T(" Flag file is too short (failed to read num_easy_flags)"));
return FLAG_FILE_NOT_VALID;
}
for ( int i = 0; i < num_easy_flags; i++ ) {
char easy_flag[32];
bytesRead = flagfile.Read(&easy_flag, sizeof(easy_flag));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(easy_flag) ) {
wxLogError(_T(" Flag file is too short, expected %d, got %ld bytes (easy_flag)"), sizeof(easy_flag), bytesRead);
return FLAG_FILE_NOT_VALID;
}
wxString easyFlagStr(easy_flag, wxConvUTF8, strlen(easy_flag));
this->data->AddEasyFlag(easyFlagStr);
}
bytesRead = flagfile.Read(&num_flags, sizeof(num_flags));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(num_flags) ) {
wxLogError(_T(" Flag file is too short (failed to read num_flags)"));
return FLAG_FILE_NOT_VALID;
}
for ( int i = 0; i < num_flags; i++ ) {
char flag_string[20];
char description[40];
wxInt32 fso_only, easy_on_flags, easy_off_flags;
char easy_catagory[16], web_url[256];
bytesRead = flagfile.Read(&flag_string, sizeof(flag_string));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(flag_string) ) {
wxLogError(_T(" Flag file is too short, expected %d, got %ld bytes (flag_string)"), sizeof(flag_string), bytesRead);
return FLAG_FILE_NOT_VALID;
}
bytesRead = flagfile.Read(&description, sizeof(description));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(description) ) {
wxLogError(_T(" Flag file is too short, expected %d, got %ld bytes (description)"), sizeof(description), bytesRead);
return FLAG_FILE_NOT_VALID;
}
bytesRead = flagfile.Read(&fso_only, sizeof(fso_only));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(fso_only) ) {
wxLogError(_T(" Flag file is too short, expected %d, got %ld bytes (fso_only)"), sizeof(fso_only), bytesRead);
return FLAG_FILE_NOT_VALID;
}
bytesRead = flagfile.Read(&easy_on_flags, sizeof(easy_on_flags));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(easy_on_flags) ) {
wxLogError(_T(" Flag file is too short, expected %d, got %ld bytes (easy_on_flags)"), sizeof(easy_on_flags), bytesRead);
return FLAG_FILE_NOT_VALID;
}
bytesRead = flagfile.Read(&easy_off_flags, sizeof(easy_off_flags));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(easy_off_flags) ) {
wxLogError(_T(" Flag file is too short, expected %d, got %ld bytes (easy_off_flags)"), sizeof(easy_off_flags), bytesRead);
return FLAG_FILE_NOT_VALID;
}
bytesRead = flagfile.Read(&easy_catagory, sizeof(easy_catagory));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(easy_catagory) ) {
wxLogError(_T(" Flag file is too short, expected %d, got %ld bytes (easy_category)"), sizeof(easy_catagory), bytesRead);
return FLAG_FILE_NOT_VALID;
}
bytesRead = flagfile.Read(&web_url, sizeof(web_url));
if ( (size_t)wxInvalidOffset == bytesRead || bytesRead != sizeof(web_url) ) {
wxLogError(_T(" Flag file is too short, expected %d, got %ld bytes (web_url)"), sizeof(web_url), bytesRead);
return FLAG_FILE_NOT_VALID;
}
flag_string[sizeof(flag_string)-1] = _T('\0');
description[sizeof(description)-1] = _T('\0');
easy_catagory[sizeof(easy_catagory)-1] = _T('\0');
web_url[sizeof(web_url)-1] = _T('\0');
Flag* flag = new Flag();
flag->flagString = wxString(flag_string, wxConvUTF8, strlen(flag_string));
flag->shortDescription = wxString(description, wxConvUTF8, strlen(description));
flag->webURL = wxString(web_url, wxConvUTF8, strlen(web_url));
flag->fsoCatagory = wxString(easy_catagory, wxConvUTF8, strlen(easy_catagory));
flag->isRecomendedFlag = false; // much better from a UI point of view than "true"
flag->easyEnable = easy_on_flags;
flag->easyDisable = easy_off_flags;
this->data->AddFlag(flag);
}
wxLogDebug(_T(" easy_flag_size: %d, %lu; flag_size: %d, %lu; num_easy_flags: %d, %lu; num_flags: %d, %lu"),
easy_flag_size, sizeof(easy_flag_size),
flag_size, sizeof(flag_size),
num_easy_flags, sizeof(num_easy_flags),
num_flags, sizeof(num_flags));
// build capabilities, which are needed for supporting the new sound code
wxByte buildCaps;
bytesRead = flagfile.Read(&buildCaps, sizeof(buildCaps));
if ( (size_t)wxInvalidOffset == bytesRead ) {
wxLogInfo(_T(" Old build that does not output its capabilities, must not support OpenAL"));
buildCaps = 0;
}
this->buildCaps = buildCaps;
this->data->GenerateFlagSets();
this->proxyData = this->data->GenerateProxyFlagData();
return PROCESSING_OK;
}
void FlagListManager::SetProcessingStatus(const ProcessingStatus& processingStatus) {
this->processingStatus = processingStatus;
wxLogDebug(_T("current flag file processing status: %d"), processingStatus);
this->GenerateFlagFileProcessingStatusChanged(this->GetFlagFileProcessingStatus());
}
FlagListManager::FlagFileProcessingStatus FlagListManager::GetFlagFileProcessingStatus() const {
const ProcessingStatus& processingStatus = this->GetProcessingStatus();
if (processingStatus == PROCESSING_OK) {
return FlagListManager::FLAG_FILE_PROCESSING_OK;
} else if (processingStatus == WAITING_FOR_FLAG_FILE) {
return FlagListManager::FLAG_FILE_PROCESSING_WAITING;
} else if (processingStatus == INITIAL_STATUS) {
return FlagListManager::FLAG_FILE_PROCESSING_RESET;
} else {
return FlagListManager::FLAG_FILE_PROCESSING_ERROR;
}
}
FlagListManager::FlagProcess::FlagProcess(FlagFileArray flagFileLocations)
: flagFileLocations(flagFileLocations) {
}
void FlagListManager::FlagProcess::OnTerminate(int pid, int status) {
wxLogDebug(_T(" FS2 Open returned %d when polled for the flags"), status);
// Find the flag file
wxFileName flagfile;
for( size_t i = 0; i < flagFileLocations.Count(); i++ ) {
bool exists = flagFileLocations[i].FileExists();
if (exists) {
flagfile = flagFileLocations[i];
wxLogDebug(_T(" Searching for flag file at %s ... %s"),
flagFileLocations[i].GetFullPath().c_str(),
(flagFileLocations[i].FileExists())? _T("Located") : _T("Not Here"));
}
}
if ( !flagfile.FileExists() ) {
FlagListManager::GetFlagListManager()->SetProcessingStatus(FLAG_FILE_NOT_GENERATED);
wxLogError(_T(" FS2 Open did not generate a flag file."));
return;
}
FlagListManager::GetFlagListManager()->SetProcessingStatus(
FlagListManager::GetFlagListManager()->ParseFlagFile(flagfile));
if ( FlagListManager::GetFlagListManager()->IsProcessingOK() ) {
::wxRemoveFile(flagfile.GetFullPath());
}
delete this;
}
|