1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
5 | *
|
---|
6 | *
|
---|
7 | * This file is part of MoleCuilder.
|
---|
8 | *
|
---|
9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
10 | * it under the terms of the GNU General Public License as published by
|
---|
11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
12 | * (at your option) any later version.
|
---|
13 | *
|
---|
14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | * GNU General Public License for more details.
|
---|
18 | *
|
---|
19 | * You should have received a copy of the GNU General Public License
|
---|
20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | /*
|
---|
24 | * FillWithMoleculeAction.cpp
|
---|
25 | *
|
---|
26 | * Created on: May 10, 2010
|
---|
27 | * Author: heber
|
---|
28 | */
|
---|
29 |
|
---|
30 | // include config.h
|
---|
31 | #ifdef HAVE_CONFIG_H
|
---|
32 | #include <config.h>
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | #include "CodePatterns/MemDebug.hpp"
|
---|
36 |
|
---|
37 | #include "Atom/atom.hpp"
|
---|
38 | #include "CodePatterns/Verbose.hpp"
|
---|
39 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
40 | #include "Descriptors/MoleculeOrderDescriptor.hpp"
|
---|
41 | #include "Graph/BondGraph.hpp"
|
---|
42 | #include "molecule.hpp"
|
---|
43 | #include "MoleculeListClass.hpp"
|
---|
44 | #include "Parser/FormatParserInterface.hpp"
|
---|
45 | #include "Parser/FormatParserStorage.hpp"
|
---|
46 | #include "Tesselation/boundary.hpp"
|
---|
47 | #include "World.hpp"
|
---|
48 |
|
---|
49 | #include <iostream>
|
---|
50 | #include <string>
|
---|
51 |
|
---|
52 | #include "Actions/MoleculeAction/FillWithMoleculeAction.hpp"
|
---|
53 |
|
---|
54 | using namespace MoleCuilder;
|
---|
55 |
|
---|
56 | // and construct the stuff
|
---|
57 | #include "FillWithMoleculeAction.def"
|
---|
58 | #include "Action_impl_pre.hpp"
|
---|
59 | /** =========== define the function ====================== */
|
---|
60 | ActionState::ptr MoleculeFillWithMoleculeAction::performCall() {
|
---|
61 |
|
---|
62 | LOG(1, "INFO: Filling Box with water molecules, "
|
---|
63 | << " minimum distance to molecules" << params.boundary.get()
|
---|
64 | << ", random atom displacement " << params.RandAtomDisplacement.get()
|
---|
65 | << ", random molecule displacement " << params.RandMoleculeDisplacement.get()
|
---|
66 | << ", distances between fillers (" << params.distances.get()[0] << "," << params.distances.get()[1] << "," << params.distances.get()[2]
|
---|
67 | << "), MinDistance " << params.MaxDistance.get()
|
---|
68 | << ", DoRotate " << params.DoRotate.get() << ".");
|
---|
69 | // construct water molecule
|
---|
70 | std::vector<molecule *> presentmolecules = World::getInstance().getAllMolecules();
|
---|
71 | // LOG(0, presentmolecules.size() << " molecules initially are present.");
|
---|
72 | std::string FilenameSuffix = params.fillername.get().string().substr(params.fillername.get().string().find_last_of('.')+1, params.fillername.get().string().length());
|
---|
73 | ifstream input;
|
---|
74 | LOG(0, "STATUS: Loading filler molecule " << params.fillername.get().string().c_str()
|
---|
75 | << " of suffix " << FilenameSuffix << ".");
|
---|
76 | input.open(params.fillername.get().string().c_str());
|
---|
77 | FormatParserStorage::getInstance().load(input, FilenameSuffix);
|
---|
78 | input.close();
|
---|
79 |
|
---|
80 | // search the filler molecule that has been just parsed
|
---|
81 | molecule *filler = World::getInstance().getMolecule(MoleculeByOrder(-1)); // get last molecule
|
---|
82 | ASSERT(filler != NULL,
|
---|
83 | "MoleculeFillWithMoleculeAction::performCall() - no last molecule found, nothing parsed?.");
|
---|
84 | filler->SetNameFromFilename(params.fillername.get().string().c_str());
|
---|
85 | World::AtomComposite Set = filler->getAtomSet();
|
---|
86 | LOG(1, "INFO: The filler molecules has " << Set.size() << " atoms.");
|
---|
87 | World::getInstance().getBondGraph()->CreateAdjacency(Set);
|
---|
88 |
|
---|
89 | // TODO: Remove the erasure of molecule when saving does not depend on them anymore.
|
---|
90 | World::getInstance().getMolecules()->erase(filler); // remove it, Parser adds it automatically
|
---|
91 |
|
---|
92 | // call routine
|
---|
93 | double distance[NDIM];
|
---|
94 | for (int i=0;i<NDIM;i++)
|
---|
95 | distance[i] = params.distances.get()[i];
|
---|
96 | FillBoxWithMolecule(
|
---|
97 | World::getInstance().getMolecules(),
|
---|
98 | filler, *(World::getInstance().getConfig()),
|
---|
99 | params.MaxDistance.get(),
|
---|
100 | distance,
|
---|
101 | params.boundary.get(),
|
---|
102 | params.RandAtomDisplacement.get(),
|
---|
103 | params.RandMoleculeDisplacement.get(),
|
---|
104 | params.DoRotate.get());
|
---|
105 | for (molecule::iterator iter = filler->begin(); !filler->empty(); iter = filler->begin()) {
|
---|
106 | atom *Walker = *iter;
|
---|
107 | World::getInstance().destroyAtom(Walker);
|
---|
108 | }
|
---|
109 | World::getInstance().destroyMolecule(filler);
|
---|
110 |
|
---|
111 | // generate list of newly created molecules
|
---|
112 | // (we can in general remove more quickly from a list than a vector)
|
---|
113 | std::vector<molecule *> fillermolecules = World::getInstance().getAllMolecules();
|
---|
114 | // LOG(0, fillermolecules.size() << " molecules are present.");
|
---|
115 | std::list<molecule *> fillermolecules_list;
|
---|
116 | std::copy( fillermolecules.begin(), fillermolecules.end(), std::back_inserter( fillermolecules_list ));
|
---|
117 | // LOG(0, fillermolecules_list.size() << " molecules have been copied.");
|
---|
118 | for (std::vector<molecule *>::const_iterator iter = presentmolecules.begin();
|
---|
119 | iter != presentmolecules.end();
|
---|
120 | ++iter) {
|
---|
121 | fillermolecules_list.remove(*iter);
|
---|
122 | }
|
---|
123 | // LOG(0, fillermolecules_list.size() << " molecules left after removal.");
|
---|
124 | fillermolecules.clear();
|
---|
125 | std::copy(fillermolecules_list.begin(), fillermolecules_list.end(), std::back_inserter( fillermolecules ));
|
---|
126 |
|
---|
127 | // LOG(0, fillermolecules.size() << " molecules have been inserted.");
|
---|
128 |
|
---|
129 | return ActionState::ptr(new MoleculeFillWithMoleculeState(fillermolecules,params));
|
---|
130 | }
|
---|
131 |
|
---|
132 | ActionState::ptr MoleculeFillWithMoleculeAction::performUndo(ActionState::ptr _state) {
|
---|
133 | MoleculeFillWithMoleculeState *state = assert_cast<MoleculeFillWithMoleculeState*>(_state.get());
|
---|
134 |
|
---|
135 | MoleculeListClass *MolList = World::getInstance().getMolecules();
|
---|
136 |
|
---|
137 | BOOST_FOREACH(molecule *_mol, state->fillermolecules) {
|
---|
138 | MolList->erase(_mol);
|
---|
139 | if ((_mol != NULL) && (!(World::getInstance().getAllMolecules(MoleculeById(_mol->getId()))).empty())) {
|
---|
140 | for(molecule::iterator iter = _mol->begin();
|
---|
141 | !_mol->empty();
|
---|
142 | iter = _mol->begin()) {
|
---|
143 | atom *Walker = *iter;
|
---|
144 | World::getInstance().destroyAtom(Walker);
|
---|
145 | }
|
---|
146 | World::getInstance().destroyMolecule(_mol);
|
---|
147 | }
|
---|
148 | }
|
---|
149 |
|
---|
150 | // as molecules and atoms from state are removed, we have to create a new one
|
---|
151 | std::vector<molecule *> fillermolecules;
|
---|
152 | return ActionState::ptr(new MoleculeFillWithMoleculeState(fillermolecules,state->params));
|
---|
153 | }
|
---|
154 |
|
---|
155 | ActionState::ptr MoleculeFillWithMoleculeAction::performRedo(ActionState::ptr _state){
|
---|
156 | //MoleculeFillWithMoleculeState *state = assert_cast<MoleculeFillWithMoleculeState*>(_state.get());
|
---|
157 |
|
---|
158 | STATUS("Redo of MoleculeFillWithMoleculeAction not implemented.");
|
---|
159 | return Action::failure;
|
---|
160 | //return ActionState::ptr(_state);
|
---|
161 | }
|
---|
162 |
|
---|
163 | bool MoleculeFillWithMoleculeAction::canUndo() {
|
---|
164 | return true;
|
---|
165 | }
|
---|
166 |
|
---|
167 | bool MoleculeFillWithMoleculeAction::shouldUndo() {
|
---|
168 | return true;
|
---|
169 | }
|
---|
170 | /** =========== end of function ====================== */
|
---|