1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2012 University of Bonn. All rights reserved.
|
---|
5 | * Copyright (C) 2013-2014 Frederik Heber. All rights reserved.
|
---|
6 | *
|
---|
7 | *
|
---|
8 | * This file is part of MoleCuilder.
|
---|
9 | *
|
---|
10 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
11 | * it under the terms of the GNU General Public License as published by
|
---|
12 | * the Free Software Foundation, either version 2 of the License, or
|
---|
13 | * (at your option) any later version.
|
---|
14 | *
|
---|
15 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
18 | * GNU General Public License for more details.
|
---|
19 | *
|
---|
20 | * You should have received a copy of the GNU General Public License
|
---|
21 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
22 | */
|
---|
23 |
|
---|
24 | /*
|
---|
25 | * UndoRedoHelpers.cpp
|
---|
26 | *
|
---|
27 | * Created on: Apr 5, 2012
|
---|
28 | * Author: heber
|
---|
29 | */
|
---|
30 |
|
---|
31 |
|
---|
32 | // include config.h
|
---|
33 | #ifdef HAVE_CONFIG_H
|
---|
34 | #include <config.h>
|
---|
35 | #endif
|
---|
36 |
|
---|
37 | #include "CodePatterns/MemDebug.hpp"
|
---|
38 |
|
---|
39 | #include "UndoRedoHelpers.hpp"
|
---|
40 |
|
---|
41 | #include <boost/bind.hpp>
|
---|
42 | #include <boost/foreach.hpp>
|
---|
43 | #include <boost/function.hpp>
|
---|
44 |
|
---|
45 | #include "Atom/atom.hpp"
|
---|
46 | #include "molecule.hpp"
|
---|
47 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
48 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
49 | #include "CodePatterns/Assert.hpp"
|
---|
50 | #include "CodePatterns/Log.hpp"
|
---|
51 | #include "World.hpp"
|
---|
52 | #include "WorldTime.hpp"
|
---|
53 |
|
---|
54 | bool MoleCuilder::AddAtomsFromAtomicInfo(const std::vector<AtomicInfo> &atoms)
|
---|
55 | {
|
---|
56 | size_t i=0;
|
---|
57 | for (; i<atoms.size(); ++i) {
|
---|
58 | // re-create the atom
|
---|
59 | LOG(3, "DEBUG: Re-adding atom " << atoms[i].getId() << ".");
|
---|
60 | atom *Walker = World::getInstance().recreateAtom(atoms[i].getId());
|
---|
61 | if ((Walker != NULL) && (!atoms[i].setAtom(*Walker))) {
|
---|
62 | ELOG(1, "Failed to set id.");
|
---|
63 | if (Walker != NULL)
|
---|
64 | World::getInstance().destroyAtom(Walker);
|
---|
65 | break;
|
---|
66 | }
|
---|
67 | }
|
---|
68 | if (i<atoms.size()) {
|
---|
69 | // remove all previous ones, too
|
---|
70 | for (size_t j=0;j<i;++j)
|
---|
71 | World::getInstance().destroyAtom(atoms[j].getId());
|
---|
72 | // and announce the failure
|
---|
73 | return false;
|
---|
74 | }
|
---|
75 | return true;
|
---|
76 | }
|
---|
77 |
|
---|
78 | bool MoleCuilder::AddMoleculesFromAtomicInfo(std::map< moleculeId_t, std::vector<AtomicInfo> > &mol_atoms)
|
---|
79 | {
|
---|
80 | bool status = true;
|
---|
81 | for (std::map< moleculeId_t, std::vector<AtomicInfo> >::const_iterator iter = mol_atoms.begin();
|
---|
82 | iter != mol_atoms.end(); ++iter) {
|
---|
83 | // re-create the atom
|
---|
84 | LOG(3, "DEBUG: Re-adding molecule " << iter->first << ".");
|
---|
85 | molecule *mol_Walker = World::getInstance().recreateMolecule(iter->first);
|
---|
86 | status &= (mol_Walker != NULL);
|
---|
87 |
|
---|
88 | // add all its atoms
|
---|
89 | status &= AddAtomsFromAtomicInfo(iter->second);
|
---|
90 | }
|
---|
91 | if (!status) {
|
---|
92 | // remove all molecules again
|
---|
93 | for (std::map< moleculeId_t, std::vector<AtomicInfo> >::const_iterator iter = mol_atoms.begin();
|
---|
94 | iter != mol_atoms.end(); ++iter) {
|
---|
95 | molecule * mol = World::getInstance().getMolecule(MoleculeById(iter->first));
|
---|
96 | if (mol != NULL)
|
---|
97 | removeAtomsinMolecule(mol);
|
---|
98 | }
|
---|
99 | // and announce the failure
|
---|
100 | return false;
|
---|
101 | }
|
---|
102 | return true;
|
---|
103 | }
|
---|
104 |
|
---|
105 | void MoleCuilder::RemoveAtomsFromAtomicInfo(std::vector<AtomicInfo> &atoms)
|
---|
106 | {
|
---|
107 | BOOST_FOREACH(const AtomicInfo &_atom, atoms) {
|
---|
108 | World::getInstance().destroyAtom(_atom.getId());
|
---|
109 | }
|
---|
110 | }
|
---|
111 |
|
---|
112 | void MoleCuilder::StoreBondInformationFromAtoms(
|
---|
113 | const std::vector<const atom*> &atoms,
|
---|
114 | std::vector< BondInfo > &bonds)
|
---|
115 | {
|
---|
116 | ASSERT( bonds.empty(),
|
---|
117 | "StoreBondInformationFromAtoms() - give bonds vector is not empty.");
|
---|
118 | bonds.reserve(atoms.size()*4);
|
---|
119 | for (std::vector<const atom*>::const_iterator atomiter = atoms.begin();
|
---|
120 | atomiter != atoms.end(); ++atomiter) {
|
---|
121 | const BondList & _atom_bonds = (*atomiter)->getListOfBonds();
|
---|
122 | for(BondList::const_iterator iter = _atom_bonds.begin(); iter != _atom_bonds.end(); ++iter)
|
---|
123 | bonds.push_back( BondInfo(*iter) );
|
---|
124 | }
|
---|
125 | }
|
---|
126 |
|
---|
127 | bool MoleCuilder::AddBondsFromBondInfo(const std::vector< BondInfo > &bonds)
|
---|
128 | {
|
---|
129 | bool status = true;
|
---|
130 | std::vector< BondInfo >::const_iterator iter = bonds.begin();
|
---|
131 | for(;iter != bonds.end(); ++iter) {
|
---|
132 | if (!(*iter).RecreateBond()) {
|
---|
133 | status = false;
|
---|
134 | break;
|
---|
135 | }
|
---|
136 | }
|
---|
137 | if (!status) {
|
---|
138 | // remove all added bonds again
|
---|
139 | for(std::vector< BondInfo >::const_iterator removeiter = bonds.begin();
|
---|
140 | removeiter != iter; ++removeiter) {
|
---|
141 | removeiter->RemoveBond();
|
---|
142 | }
|
---|
143 | }
|
---|
144 | return status;
|
---|
145 | }
|
---|
146 |
|
---|
147 | void MoleCuilder::SetAtomsFromAtomicInfo(const std::vector<AtomicInfo> &_movedatoms)
|
---|
148 | {
|
---|
149 | BOOST_FOREACH( const AtomicInfo &_atominfo, _movedatoms) {
|
---|
150 | const atomId_t id = _atominfo.getId();
|
---|
151 | atom * const _atom = World::getInstance().getAtom(AtomById(id));
|
---|
152 | ASSERT( _atom != NULL,
|
---|
153 | "MoleCuilder::SetAtomsFromAtomicInfo() - cannot find atom with id "
|
---|
154 | +toString(id)+" in the world.");
|
---|
155 | _atominfo.setAtom( *_atom );
|
---|
156 | }
|
---|
157 | }
|
---|
158 |
|
---|
159 | void MoleCuilder::SelectAtomsFromAtomicInfo(const std::vector<AtomicInfo> &_movedatoms)
|
---|
160 | {
|
---|
161 | BOOST_FOREACH( const AtomicInfo &_atominfo, _movedatoms) {
|
---|
162 | const atomId_t id = _atominfo.getId();
|
---|
163 | World::getInstance().selectAtom(id);
|
---|
164 | }
|
---|
165 | }
|
---|
166 |
|
---|
167 | void MoleCuilder::ResetAtomPosition(const std::vector<AtomicInfo> &movedatoms, const std::vector<Vector> &MovedToVector)
|
---|
168 | {
|
---|
169 | boost::function<void(atom *, const Vector&)> setter =
|
---|
170 | boost::bind(&atom::setPosition, _1, _2);
|
---|
171 | ResetByFunction(movedatoms, MovedToVector, setter);
|
---|
172 | }
|
---|
173 |
|
---|
174 | void MoleCuilder::ResetAtomVelocity(const std::vector<AtomicInfo> &movedatoms, const std::vector<Vector> &VelocityVector)
|
---|
175 | {
|
---|
176 | boost::function<void(atom *, const Vector&)> setter =
|
---|
177 | boost::bind(&atom::setAtomicVelocity, _1, _2);
|
---|
178 | ResetByFunction(movedatoms, VelocityVector, setter);
|
---|
179 | }
|
---|
180 |
|
---|
181 | void MoleCuilder::ResetAtomForce(const std::vector<AtomicInfo> &movedatoms, const std::vector<Vector> &ForceVector)
|
---|
182 | {
|
---|
183 | boost::function<void(atom *, const Vector&)> setter =
|
---|
184 | boost::bind(&atom::setAtomicForce, _1, _2);
|
---|
185 | ResetByFunction(movedatoms, ForceVector, setter);
|
---|
186 | }
|
---|
187 |
|
---|
188 | void MoleCuilder::ResetByFunction(
|
---|
189 | const std::vector<AtomicInfo> &movedatoms,
|
---|
190 | const std::vector<Vector> &MovedToVector,
|
---|
191 | boost::function<void(atom *, const Vector&)> &setter)
|
---|
192 | {
|
---|
193 | std::vector<Vector>::const_iterator positer = MovedToVector.begin();
|
---|
194 | ASSERT(movedatoms.size() == MovedToVector.size(),
|
---|
195 | "MoleCuilder::ResetAtomPosition() - the number of atoms "
|
---|
196 | +toString(movedatoms.size())+" and the number of positions "
|
---|
197 | +toString(MovedToVector.size())+" is not the same.");
|
---|
198 | BOOST_FOREACH( const AtomicInfo &_atominfo, movedatoms) {
|
---|
199 | const atomId_t id = _atominfo.getId();
|
---|
200 | atom * const _atom = World::getInstance().getAtom(AtomById(id));
|
---|
201 | ASSERT( _atom != NULL,
|
---|
202 | "FillSphericalSurfaceAction::performRedo() - cannot find atom with id "
|
---|
203 | +toString(id)+" in the world.");
|
---|
204 | setter(_atom, *positer );
|
---|
205 | ++positer;
|
---|
206 | }
|
---|
207 | }
|
---|
208 |
|
---|
209 | void MoleCuilder::RemoveMoleculesWithAtomsByIds(const std::vector<moleculeId_t> &ids)
|
---|
210 | {
|
---|
211 | for (std::vector<moleculeId_t>::const_iterator iter = ids.begin();
|
---|
212 | iter != ids.end(); ++iter) {
|
---|
213 | molecule * mol = World::getInstance().getMolecule(MoleculeById(*iter));
|
---|
214 | if (mol != NULL) {
|
---|
215 | removeAtomsinMolecule(mol);
|
---|
216 | // molecules are automatically removed when empty
|
---|
217 | }
|
---|
218 | }
|
---|
219 | }
|
---|
220 |
|
---|
221 | void MoleCuilder::removeLastStep(const std::vector<atomId_t> &_atoms, const unsigned int _step)
|
---|
222 | {
|
---|
223 | for (size_t i=0; i<_atoms.size(); ++i) {
|
---|
224 | atom * const _atom = World::getInstance().getAtom(AtomById(_atoms[i]));
|
---|
225 | _atom->removeStep(_step);
|
---|
226 | }
|
---|
227 | }
|
---|
228 |
|
---|
229 | void MoleCuilder::addNewStep(const std::vector<AtomicInfo> &_movedatoms, const unsigned int _step)
|
---|
230 | {
|
---|
231 | for(size_t i=0; i< _movedatoms.size(); ++i) {
|
---|
232 | atom * const _atom = World::getInstance().getAtom(AtomById(_movedatoms[i].getId()));
|
---|
233 | _atom->UpdateStep(_step);
|
---|
234 | }
|
---|
235 | }
|
---|
236 |
|
---|
237 | void MoleCuilder::addNewStep(const std::vector<atomId_t> &_ids, const unsigned int _step)
|
---|
238 | {
|
---|
239 | for(size_t i=0; i< _ids.size(); ++i) {
|
---|
240 | atom * const _atom = World::getInstance().getAtom(AtomById(_ids[i]));
|
---|
241 | _atom->UpdateStep(_step);
|
---|
242 | }
|
---|
243 | }
|
---|
244 |
|
---|
245 | std::vector<atomId_t> MoleCuilder::getIdsFromAtomicInfo(const std::vector<AtomicInfo> &movedatoms)
|
---|
246 | {
|
---|
247 | std::vector<atomId_t> ids(movedatoms.size(), (size_t)-1);
|
---|
248 | std::transform(
|
---|
249 | movedatoms.begin(), movedatoms.end(),
|
---|
250 | ids.begin(),
|
---|
251 | boost::bind(&AtomicInfo::getId, _1));
|
---|
252 | return ids;
|
---|
253 | }
|
---|