[97ebf8] | 1 | /*
|
---|
| 2 | * FragmentationAction.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: May 9, 2010
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[112b09] | 8 | #include "Helpers/MemDebug.hpp"
|
---|
| 9 |
|
---|
[97ebf8] | 10 | #include "Actions/FragmentationAction/FragmentationAction.hpp"
|
---|
| 11 | #include "atom.hpp"
|
---|
[a3fded] | 12 | #include "bondgraph.hpp"
|
---|
[97ebf8] | 13 | #include "config.hpp"
|
---|
| 14 | #include "log.hpp"
|
---|
| 15 | #include "molecule.hpp"
|
---|
| 16 | #include "Descriptors/MoleculeDescriptor.hpp"
|
---|
| 17 | #include "stackclass.hpp"
|
---|
| 18 | #include "World.hpp"
|
---|
| 19 |
|
---|
| 20 | #include <iostream>
|
---|
| 21 | #include <string>
|
---|
| 22 |
|
---|
| 23 | using namespace std;
|
---|
| 24 |
|
---|
| 25 | #include "UIElements/UIFactory.hpp"
|
---|
| 26 | #include "UIElements/Dialog.hpp"
|
---|
[70d9b9] | 27 | #include "UIElements/ValueStorage.hpp"
|
---|
[97ebf8] | 28 |
|
---|
[e4b5de] | 29 | const char FragmentationFragmentationAction::NAME[] = "fragment-mol";
|
---|
[97ebf8] | 30 |
|
---|
| 31 | FragmentationFragmentationAction::FragmentationFragmentationAction() :
|
---|
| 32 | Action(NAME)
|
---|
| 33 | {}
|
---|
| 34 |
|
---|
| 35 | FragmentationFragmentationAction::~FragmentationFragmentationAction()
|
---|
| 36 | {}
|
---|
| 37 |
|
---|
[70d9b9] | 38 | Dialog* FragmentationFragmentationAction::createDialog() {
|
---|
[97ebf8] | 39 | Dialog *dialog = UIFactory::getInstance().makeDialog();
|
---|
[70d9b9] | 40 |
|
---|
| 41 | dialog->queryString(NAME, ValueStorage::getInstance().getDescription(NAME));
|
---|
| 42 | dialog->queryDouble("distance", ValueStorage::getInstance().getDescription("distance"));
|
---|
| 43 | dialog->queryInt("order", ValueStorage::getInstance().getDescription("order"));
|
---|
| 44 |
|
---|
| 45 | return dialog;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | Action::state_ptr FragmentationFragmentationAction::performCall() {
|
---|
[e4b5de] | 49 | clock_t start,end;
|
---|
| 50 | molecule *mol = NULL;
|
---|
| 51 | double distance = -1.;
|
---|
| 52 | int order = 0;
|
---|
[35b698] | 53 | std::string path;
|
---|
[e4b5de] | 54 | config *configuration = World::getInstance().getConfig();
|
---|
| 55 | int ExitFlag = 0;
|
---|
| 56 |
|
---|
[70d9b9] | 57 | ValueStorage::getInstance().queryCurrentValue(NAME, path);
|
---|
| 58 | ValueStorage::getInstance().queryCurrentValue("distance", distance);
|
---|
| 59 | ValueStorage::getInstance().queryCurrentValue("order", order);
|
---|
[97ebf8] | 60 |
|
---|
[70d9b9] | 61 | for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) {
|
---|
| 62 | mol = iter->second;
|
---|
[e4b5de] | 63 | ASSERT(mol != NULL, "No molecule has been picked for fragmentation.");
|
---|
| 64 | DoLog(0) && (Log() << Verbose(0) << "Fragmenting molecule with bond distance " << distance << " angstroem, order of " << order << "." << endl);
|
---|
| 65 | DoLog(0) && (Log() << Verbose(0) << "Creating connection matrix..." << endl);
|
---|
| 66 | start = clock();
|
---|
| 67 | mol->CreateAdjacencyList(distance, configuration->GetIsAngstroem(), &BondGraph::CovalentMinMaxDistance, NULL);
|
---|
| 68 | DoLog(0) && (Log() << Verbose(0) << "Fragmenting molecule with current connection matrix ..." << endl);
|
---|
| 69 | if (mol->hasBondStructure()) {
|
---|
[35b698] | 70 | ExitFlag = mol->FragmentMolecule(order, path);
|
---|
[e4b5de] | 71 | }
|
---|
| 72 | World::getInstance().setExitFlag(ExitFlag);
|
---|
| 73 | end = clock();
|
---|
| 74 | DoLog(0) && (Log() << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl);
|
---|
[97ebf8] | 75 | }
|
---|
[70d9b9] | 76 | return Action::success;
|
---|
[97ebf8] | 77 | }
|
---|
| 78 |
|
---|
| 79 | Action::state_ptr FragmentationFragmentationAction::performUndo(Action::state_ptr _state) {
|
---|
[70d9b9] | 80 | return Action::success;
|
---|
[97ebf8] | 81 | }
|
---|
| 82 |
|
---|
| 83 | Action::state_ptr FragmentationFragmentationAction::performRedo(Action::state_ptr _state){
|
---|
[70d9b9] | 84 | return Action::success;
|
---|
[97ebf8] | 85 | }
|
---|
| 86 |
|
---|
| 87 | bool FragmentationFragmentationAction::canUndo() {
|
---|
[70d9b9] | 88 | return true;
|
---|
[97ebf8] | 89 | }
|
---|
| 90 |
|
---|
| 91 | bool FragmentationFragmentationAction::shouldUndo() {
|
---|
[70d9b9] | 92 | return true;
|
---|
[97ebf8] | 93 | }
|
---|
| 94 |
|
---|
| 95 | const string FragmentationFragmentationAction::getName() {
|
---|
| 96 | return NAME;
|
---|
| 97 | }
|
---|