[57dd40] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2012 University of Bonn. All rights reserved.
|
---|
[7e51e1] | 5 | * Copyright (C) 2013-2014 Frederik Heber. All rights reserved.
|
---|
[94d5ac6] | 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/>.
|
---|
[57dd40] | 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 |
|
---|
[7e51e1] | 41 | #include <boost/bind.hpp>
|
---|
[57dd40] | 42 | #include <boost/foreach.hpp>
|
---|
[7e51e1] | 43 | #include <boost/function.hpp>
|
---|
[57dd40] | 44 |
|
---|
| 45 | #include "Atom/atom.hpp"
|
---|
[8ea3e7] | 46 | #include "molecule.hpp"
|
---|
[57dd40] | 47 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
[8ea3e7] | 48 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
[57dd40] | 49 | #include "CodePatterns/Assert.hpp"
|
---|
| 50 | #include "CodePatterns/Log.hpp"
|
---|
| 51 | #include "World.hpp"
|
---|
[7e51e1] | 52 | #include "WorldTime.hpp"
|
---|
[57dd40] | 53 |
|
---|
[596cfa] | 54 | bool MoleCuilder::AddAtomsFromAtomicInfo(const std::vector<AtomicInfo> &atoms)
|
---|
[57dd40] | 55 | {
|
---|
| 56 | size_t i=0;
|
---|
| 57 | for (; i<atoms.size(); ++i) {
|
---|
| 58 | // re-create the atom
|
---|
[af9be32] | 59 | LOG(3, "DEBUG: Re-adding atom " << atoms[i].getId() << ".");
|
---|
[8ad68b] | 60 | atom *Walker = World::getInstance().recreateAtom(atoms[i].getId());
|
---|
| 61 | if ((Walker != NULL) && (!atoms[i].setAtom(*Walker))) {
|
---|
[57dd40] | 62 | ELOG(1, "Failed to set id.");
|
---|
[8ad68b] | 63 | if (Walker != NULL)
|
---|
| 64 | World::getInstance().destroyAtom(Walker);
|
---|
[57dd40] | 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 |
|
---|
[596cfa] | 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 << ".");
|
---|
[8ad68b] | 85 | molecule *mol_Walker = World::getInstance().recreateMolecule(iter->first);
|
---|
| 86 | status &= (mol_Walker != NULL);
|
---|
[596cfa] | 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 |
|
---|
[57dd40] | 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 |
|
---|
[af9be32] | 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;
|
---|
[917300] | 130 | std::vector< BondInfo >::const_iterator iter = bonds.begin();
|
---|
| 131 | for(;iter != bonds.end(); ++iter) {
|
---|
| 132 | if (!(*iter).RecreateBond()) {
|
---|
[af9be32] | 133 | status = false;
|
---|
[917300] | 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 | }
|
---|
[af9be32] | 144 | return status;
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[7e51e1] | 147 | void MoleCuilder::SetAtomsFromAtomicInfo(const std::vector<AtomicInfo> &_movedatoms)
|
---|
[57dd40] | 148 | {
|
---|
[7e51e1] | 149 | BOOST_FOREACH( const AtomicInfo &_atominfo, _movedatoms) {
|
---|
[57dd40] | 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 |
|
---|
[7e51e1] | 159 | void MoleCuilder::SelectAtomsFromAtomicInfo(const std::vector<AtomicInfo> &_movedatoms)
|
---|
[57dd40] | 160 | {
|
---|
[7e51e1] | 161 | BOOST_FOREACH( const AtomicInfo &_atominfo, _movedatoms) {
|
---|
[57dd40] | 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)
|
---|
[7e51e1] | 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)
|
---|
[57dd40] | 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.");
|
---|
[7e51e1] | 204 | setter(_atom, *positer );
|
---|
[57dd40] | 205 | ++positer;
|
---|
| 206 | }
|
---|
| 207 | }
|
---|
[8ea3e7] | 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) {
|
---|
[a7aebd] | 213 | molecule * mol = World::getInstance().getMolecule(MoleculeById(*iter));
|
---|
[8ea3e7] | 214 | if (mol != NULL) {
|
---|
[a7aebd] | 215 | removeAtomsinMolecule(mol);
|
---|
| 216 | // molecules are automatically removed when empty
|
---|
[8ea3e7] | 217 | }
|
---|
| 218 | }
|
---|
| 219 | }
|
---|
[7e51e1] | 220 |
|
---|
[8cc22f] | 221 | void MoleCuilder::removeLastStep(const std::vector<atomId_t> &_atoms, const unsigned int _step)
|
---|
[7e51e1] | 222 | {
|
---|
| 223 | for (size_t i=0; i<_atoms.size(); ++i) {
|
---|
| 224 | atom * const _atom = World::getInstance().getAtom(AtomById(_atoms[i]));
|
---|
[8cc22f] | 225 | _atom->removeStep(_step);
|
---|
[7e51e1] | 226 | }
|
---|
| 227 | }
|
---|
| 228 |
|
---|
[8cc22f] | 229 | void MoleCuilder::addNewStep(const std::vector<AtomicInfo> &_movedatoms, const unsigned int _step)
|
---|
[7e51e1] | 230 | {
|
---|
| 231 | for(size_t i=0; i< _movedatoms.size(); ++i) {
|
---|
| 232 | atom * const _atom = World::getInstance().getAtom(AtomById(_movedatoms[i].getId()));
|
---|
[8cc22f] | 233 | _atom->UpdateStep(_step);
|
---|
[7e51e1] | 234 | }
|
---|
| 235 | }
|
---|
| 236 |
|
---|
[8cc22f] | 237 | void MoleCuilder::addNewStep(const std::vector<atomId_t> &_ids, const unsigned int _step)
|
---|
[7e51e1] | 238 | {
|
---|
| 239 | for(size_t i=0; i< _ids.size(); ++i) {
|
---|
| 240 | atom * const _atom = World::getInstance().getAtom(AtomById(_ids[i]));
|
---|
[8cc22f] | 241 | _atom->UpdateStep(_step);
|
---|
[7e51e1] | 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 | }
|
---|