Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/WorldAction/InputAction.cpp

    r86cff86 r4f7f34e  
    3838  MoleculeListClass *molecules = World::getInstance().getMolecules();
    3939  molecule *mol = NULL;
    40   std::string filename;
     40  string filename;
    4141  std::ifstream test;
    4242
     
    4545  if(dialog->display()) {
    4646    DoLog(0) && (Log() << Verbose(0) << "Config file given." << endl);
    47     if (filename.find('.') != string::npos) {
    48       std::string FilenamePrefix = filename.substr(0,filename.find_last_of('.'));
    49       std::string FilenameSuffix = filename.substr(filename.find_last_of('.')+1, filename.length());
    50       DoLog(1) && (Log() << Verbose(1) << "Setting config file name prefix to " << FilenamePrefix << "." << endl);
    51       test.open(filename.c_str());
    52       if (test == NULL) {
    53         DoLog(1) && (Log() << Verbose(1) << "Specified config file " << filename << " not found." << endl);
    54       } else {
    55         DoLog(1) && (Log() << Verbose(1) << "Specified config file found, parsing ... ");
    56         FormatParserStorage::getInstance().get((std::istream &)test, FilenameSuffix);
    57         test.close();
    58       }
    59       FormatParserStorage::getInstance().SetOutputPrefixForAll(FilenamePrefix);
    60       // set mol to first active molecule
    61       if (molecules->ListOfMolecules.size() != 0) {
    62         for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
    63           if ((*ListRunner)->ActiveFlag) {
    64             mol = *ListRunner;
    65             break;
    66           }
    67       }
    68       if (mol == NULL) {
    69         mol = World::getInstance().createMolecule();
    70         mol->ActiveFlag = true;
    71         molecules->insert(mol);
    72       }
    73       mol->SetNameFromFilename(filename.substr(0,filename.find('.')).c_str());
     47    std::string FilenamePrefix = filename.substr(0,filename.find('.'));
     48    FormatParserStorage::getInstance().SetOutputPrefixForAll(FilenamePrefix);
     49    DoLog(1) && (Log() << Verbose(1) << "Setting config file name prefix to " << FilenamePrefix << "." << endl);
     50    test.open(filename.c_str());
     51    if (test == NULL) {
     52      DoLog(1) && (Log() << Verbose(1) << "Specified config file " << filename << " not found." << endl);
    7453    } else {
    75       DoeLog(1) && (eLog() << Verbose(1) << "Input file does not have a suffix, cannot recognize format." << endl);
     54      DoLog(1) && (Log() << Verbose(1) << "Specified config file found, parsing ... ");
     55      FormatParserStorage::getInstance().getPcp().load(&test);
     56      test.close();
    7657    }
     58    // set mol to first active molecule
     59    if (molecules->ListOfMolecules.size() != 0) {
     60      for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++)
     61        if ((*ListRunner)->ActiveFlag) {
     62          mol = *ListRunner;
     63          break;
     64        }
     65    }
     66    if (mol == NULL) {
     67      mol = World::getInstance().createMolecule();
     68      mol->ActiveFlag = true;
     69      molecules->insert(mol);
     70    }
     71    mol->SetNameFromFilename(filename.c_str());
    7772    delete dialog;
    7873    return Action::success;
Note: See TracChangeset for help on using the changeset viewer.