1 | /*
|
---|
2 | * FragmentationAction.cpp
|
---|
3 | *
|
---|
4 | * Created on: May 9, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "Helpers/MemDebug.hpp"
|
---|
9 |
|
---|
10 | #include "Actions/FragmentationAction/FragmentationAction.hpp"
|
---|
11 | #include "atom.hpp"
|
---|
12 | #include "bondgraph.hpp"
|
---|
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"
|
---|
27 | #include "UIElements/ValueStorage.hpp"
|
---|
28 |
|
---|
29 | const char FragmentationFragmentationAction::NAME[] = "fragment-mol";
|
---|
30 |
|
---|
31 | FragmentationFragmentationAction::FragmentationFragmentationAction() :
|
---|
32 | Action(NAME)
|
---|
33 | {}
|
---|
34 |
|
---|
35 | FragmentationFragmentationAction::~FragmentationFragmentationAction()
|
---|
36 | {}
|
---|
37 |
|
---|
38 | Dialog* FragmentationFragmentationAction::createDialog() {
|
---|
39 | Dialog *dialog = UIFactory::getInstance().makeDialog();
|
---|
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() {
|
---|
49 | clock_t start,end;
|
---|
50 | molecule *mol = NULL;
|
---|
51 | double distance = -1.;
|
---|
52 | int order = 0;
|
---|
53 | std::string path;
|
---|
54 | config *configuration = World::getInstance().getConfig();
|
---|
55 | int ExitFlag = 0;
|
---|
56 |
|
---|
57 | ValueStorage::getInstance().queryCurrentValue(NAME, path);
|
---|
58 | ValueStorage::getInstance().queryCurrentValue("distance", distance);
|
---|
59 | ValueStorage::getInstance().queryCurrentValue("order", order);
|
---|
60 |
|
---|
61 | for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) {
|
---|
62 | mol = iter->second;
|
---|
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()) {
|
---|
70 | ExitFlag = mol->FragmentMolecule(order, path);
|
---|
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);
|
---|
75 | }
|
---|
76 | return Action::success;
|
---|
77 | }
|
---|
78 |
|
---|
79 | Action::state_ptr FragmentationFragmentationAction::performUndo(Action::state_ptr _state) {
|
---|
80 | return Action::success;
|
---|
81 | }
|
---|
82 |
|
---|
83 | Action::state_ptr FragmentationFragmentationAction::performRedo(Action::state_ptr _state){
|
---|
84 | return Action::success;
|
---|
85 | }
|
---|
86 |
|
---|
87 | bool FragmentationFragmentationAction::canUndo() {
|
---|
88 | return true;
|
---|
89 | }
|
---|
90 |
|
---|
91 | bool FragmentationFragmentationAction::shouldUndo() {
|
---|
92 | return true;
|
---|
93 | }
|
---|
94 |
|
---|
95 | const string FragmentationFragmentationAction::getName() {
|
---|
96 | return NAME;
|
---|
97 | }
|
---|