1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2014 Frederik Heber. 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 | * FillVolumeAction.cpp
|
---|
25 | *
|
---|
26 | * Created on: Sep 03, 2014
|
---|
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 "Actions/UndoRedoHelpers.hpp"
|
---|
38 | #include "Atom/atom.hpp"
|
---|
39 | #include "Atom/AtomicInfo.hpp"
|
---|
40 | #include "Atom/CopyAtoms/CopyAtoms_withBonds.hpp"
|
---|
41 | #include "Bond/BondInfo.hpp"
|
---|
42 | #include "CodePatterns/Log.hpp"
|
---|
43 | #include "Descriptors/MoleculeOrderDescriptor.hpp"
|
---|
44 | #include "Filling/Cluster.hpp"
|
---|
45 | #include "Filling/Filler.hpp"
|
---|
46 | #include "Filling/Preparators/ShapeVolumeFillerPreparator.hpp"
|
---|
47 | #include "molecule.hpp"
|
---|
48 | #include "MoleculeListClass.hpp"
|
---|
49 | #include "Parser/FormatParserInterface.hpp"
|
---|
50 | #include "Parser/FormatParserStorage.hpp"
|
---|
51 | #include "Shapes/Shape.hpp"
|
---|
52 | #include "Shapes/ShapeRegistry.hpp"
|
---|
53 | #include "Shapes/ShapeType.hpp"
|
---|
54 | #include "World.hpp"
|
---|
55 |
|
---|
56 | #include <algorithm>
|
---|
57 | #include <iostream>
|
---|
58 | #include <string>
|
---|
59 | #include <vector>
|
---|
60 |
|
---|
61 | #include "Actions/FillAction/FillVolumeAction.hpp"
|
---|
62 |
|
---|
63 | using namespace MoleCuilder;
|
---|
64 |
|
---|
65 | // and construct the stuff
|
---|
66 | #include "FillVolumeAction.def"
|
---|
67 | #include "Action_impl_pre.hpp"
|
---|
68 | /** =========== define the function ====================== */
|
---|
69 | ActionState::ptr FillVolumeAction::performCall() {
|
---|
70 | typedef std::vector<atom*> AtomVector;
|
---|
71 |
|
---|
72 | // get the filler molecule
|
---|
73 | std::vector<AtomicInfo> movedatoms;
|
---|
74 | const std::vector< molecule *> molecules = World::getInstance().getSelectedMolecules();
|
---|
75 | if (molecules.size() != 1) {
|
---|
76 | STATUS("No exactly one molecule selected, aborting,");
|
---|
77 | return Action::failure;
|
---|
78 | }
|
---|
79 | molecule *filler = *(molecules.begin());
|
---|
80 | for(molecule::const_iterator iter = const_cast<const molecule *>(filler)->begin();
|
---|
81 | iter != const_cast<const molecule *>(filler)->end();
|
---|
82 | ++iter)
|
---|
83 | movedatoms.push_back( AtomicInfo(*(*iter)) );
|
---|
84 | LOG(1, "INFO: Chosen molecule has " << filler->size() << " atoms.");
|
---|
85 |
|
---|
86 | // center filler's tip at origin
|
---|
87 | filler->CenterEdge();
|
---|
88 |
|
---|
89 | // prepare the filler preparator
|
---|
90 | if (ShapeRegistry::getInstance().countSelectedShapes() != (size_t)1) {
|
---|
91 | STATUS("Not exactly one shape selected.");
|
---|
92 | return Action::failure;
|
---|
93 | }
|
---|
94 | const std::vector<Shape*> shapes = ShapeRegistry::getInstance().getSelectedShapes();
|
---|
95 | const Shape &shape = **shapes.begin();
|
---|
96 |
|
---|
97 | // hard check whether shape is of allowed type, not all are implemented
|
---|
98 | // but these only fail with an assertion, hence not with disable-debug
|
---|
99 | switch (shape.getType()) {
|
---|
100 | case NowhereType:
|
---|
101 | case EverywhereType:
|
---|
102 | case SphereType:
|
---|
103 | case CuboidType:
|
---|
104 | STATUS("The shape type "+toString(shape.getType())+" is currently not supported.");
|
---|
105 | return Action::failure;
|
---|
106 | break;
|
---|
107 | default:
|
---|
108 | break;
|
---|
109 | }
|
---|
110 |
|
---|
111 | ShapeVolumeFillerPreparator filler_preparator(filler);
|
---|
112 | if (params.SphereRadius.get() != 0.) {
|
---|
113 | if (World::getInstance().beginAtomSelection() == World::getInstance().endAtomSelection()) {
|
---|
114 | STATUS("You have given a sphere radius "+toString(params.SphereRadius.get())
|
---|
115 | +" != 0, but have not select any atoms.");
|
---|
116 | return Action::failure;
|
---|
117 | }
|
---|
118 | std::vector<atom*> atoms(World::getInstance().getSelectedAtoms());
|
---|
119 | filler_preparator.addSurfacePredicate(
|
---|
120 | params.SphereRadius.get(),
|
---|
121 | atoms);
|
---|
122 | }
|
---|
123 | filler_preparator.addVoidPredicate(params.mindistance.get());
|
---|
124 | filler_preparator.addRandomInserter(
|
---|
125 | params.RandAtomDisplacement.get(),
|
---|
126 | params.RandMoleculeDisplacement.get(),
|
---|
127 | params.DoRotate.get());
|
---|
128 | filler_preparator.addShapeMesh(
|
---|
129 | shape,
|
---|
130 | params.N.get());
|
---|
131 | if (!filler_preparator()) {
|
---|
132 | STATUS("Filler was not fully constructed.");
|
---|
133 | return Action::failure;
|
---|
134 | }
|
---|
135 |
|
---|
136 | // use filler
|
---|
137 | bool successflag = false;
|
---|
138 | FillVolumeState *UndoState = NULL;
|
---|
139 | {
|
---|
140 | // fill
|
---|
141 | Filler *fillerFunction = filler_preparator.obtainFiller();
|
---|
142 | // TODO: When molecule::getBoundingSphere() does not use a sphere anymore,
|
---|
143 | // we need to check whether we rotate the molecule randomly. For this to
|
---|
144 | // work we need a sphere!
|
---|
145 | const Shape s = filler->getBoundingSphere(params.RandAtomDisplacement.get());
|
---|
146 | ClusterInterface::Cluster_impl cluster( new Cluster(filler->getAtomIds(), s) );
|
---|
147 | CopyAtoms_withBonds copyMethod;
|
---|
148 | Filler::ClusterVector_t ClonedClusters;
|
---|
149 | successflag = (*fillerFunction)(copyMethod, cluster, ClonedClusters);
|
---|
150 | delete fillerFunction;
|
---|
151 |
|
---|
152 | // append each cluster's atoms to clonedatoms (however not selected ones)
|
---|
153 | std::vector<const atom *> clonedatoms;
|
---|
154 | std::vector<AtomicInfo> clonedatominfos;
|
---|
155 | for (Filler::ClusterVector_t::const_iterator iter = ClonedClusters.begin();
|
---|
156 | iter != ClonedClusters.end(); ++iter) {
|
---|
157 | const AtomIdSet &atoms = (*iter)->getAtomIds();
|
---|
158 | clonedatoms.reserve(clonedatoms.size()+atoms.size());
|
---|
159 | for (AtomIdSet::const_iterator atomiter = atoms.begin(); atomiter != atoms.end(); ++atomiter)
|
---|
160 | if (!filler->containsAtom(*atomiter)) {
|
---|
161 | clonedatoms.push_back( *atomiter );
|
---|
162 | clonedatominfos.push_back( AtomicInfo(*(*atomiter)) );
|
---|
163 | }
|
---|
164 | }
|
---|
165 | std::vector< BondInfo > clonedbonds;
|
---|
166 | StoreBondInformationFromAtoms(clonedatoms, clonedbonds);
|
---|
167 | LOG(2, "DEBUG: There are " << clonedatominfos.size() << " newly created atoms.");
|
---|
168 |
|
---|
169 | if (!successflag) {
|
---|
170 | STATUS("Insertion failed, removing inserted clusters, translating original one back");
|
---|
171 | RemoveAtomsFromAtomicInfo(clonedatominfos);
|
---|
172 | clonedatoms.clear();
|
---|
173 | SetAtomsFromAtomicInfo(movedatoms);
|
---|
174 | } else {
|
---|
175 | std::vector<Vector> MovedToVector(filler->size(), zeroVec);
|
---|
176 | std::transform(filler->begin(), filler->end(), MovedToVector.begin(),
|
---|
177 | boost::bind(&AtomInfo::getPosition, _1) );
|
---|
178 | UndoState = new FillVolumeState(clonedatominfos,clonedbonds,movedatoms,MovedToVector,params);
|
---|
179 | }
|
---|
180 | }
|
---|
181 |
|
---|
182 | if (successflag)
|
---|
183 | return ActionState::ptr(UndoState);
|
---|
184 | else {
|
---|
185 | return Action::failure;
|
---|
186 | }
|
---|
187 | }
|
---|
188 |
|
---|
189 | ActionState::ptr FillVolumeAction::performUndo(ActionState::ptr _state) {
|
---|
190 | FillVolumeState *state = assert_cast<FillVolumeState*>(_state.get());
|
---|
191 |
|
---|
192 | // remove all created atoms
|
---|
193 | RemoveAtomsFromAtomicInfo(state->clonedatoms);
|
---|
194 | // add the original cluster
|
---|
195 | SetAtomsFromAtomicInfo(state->movedatoms);
|
---|
196 |
|
---|
197 | return ActionState::ptr(_state);
|
---|
198 | }
|
---|
199 |
|
---|
200 | ActionState::ptr FillVolumeAction::performRedo(ActionState::ptr _state){
|
---|
201 | FillVolumeState *state = assert_cast<FillVolumeState*>(_state.get());
|
---|
202 |
|
---|
203 | // place filler cluster again at new spot
|
---|
204 | ResetAtomPosition(state->movedatoms, state->MovedToVector);
|
---|
205 |
|
---|
206 | // re-create all clusters
|
---|
207 | bool statusflag = AddAtomsFromAtomicInfo(state->clonedatoms);
|
---|
208 |
|
---|
209 | // re-create the bonds
|
---|
210 | if (statusflag)
|
---|
211 | AddBondsFromBondInfo(state->clonedbonds);
|
---|
212 | if (statusflag)
|
---|
213 | return ActionState::ptr(_state);
|
---|
214 | else {
|
---|
215 | STATUS("Failed re-adding filled in atoms.");
|
---|
216 | return Action::failure;
|
---|
217 | }
|
---|
218 | }
|
---|
219 |
|
---|
220 | bool FillVolumeAction::canUndo() {
|
---|
221 | return true;
|
---|
222 | }
|
---|
223 |
|
---|
224 | bool FillVolumeAction::shouldUndo() {
|
---|
225 | return true;
|
---|
226 | }
|
---|
227 | /** =========== end of function ====================== */
|
---|