Ignore:
File:
1 edited

Legend:

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

    r4f7f34e r86cff86  
    3838  MoleculeListClass *molecules = World::getInstance().getMolecules();
    3939  molecule *mol = NULL;
    40   string filename;
     40  std::string filename;
    4141  std::ifstream test;
    4242
     
    4545  if(dialog->display()) {
    4646    DoLog(0) && (Log() << Verbose(0) << "Config file given." << endl);
    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);
     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());
    5374    } else {
    54       DoLog(1) && (Log() << Verbose(1) << "Specified config file found, parsing ... ");
    55       FormatParserStorage::getInstance().getPcp().load(&test);
    56       test.close();
     75      DoeLog(1) && (eLog() << Verbose(1) << "Input file does not have a suffix, cannot recognize format." << endl);
    5776    }
    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());
    7277    delete dialog;
    7378    return Action::success;
Note: See TracChangeset for help on using the changeset viewer.