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