| [bcf653] | 1 | /* | 
|---|
|  | 2 | * Project: MoleCuilder | 
|---|
|  | 3 | * Description: creates and alters molecular systems | 
|---|
| [0aa122] | 4 | * Copyright (C)  2010-2012 University of Bonn. All rights reserved. | 
|---|
| [5aaa43] | 5 | * Copyright (C)  2013 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/>. | 
|---|
| [bcf653] | 22 | */ | 
|---|
|  | 23 |  | 
|---|
| [5d1611] | 24 | /* | 
|---|
|  | 25 | * World.cpp | 
|---|
|  | 26 | * | 
|---|
|  | 27 | *  Created on: Feb 3, 2010 | 
|---|
|  | 28 | *      Author: crueger | 
|---|
|  | 29 | */ | 
|---|
|  | 30 |  | 
|---|
| [bf3817] | 31 | // include config.h | 
|---|
|  | 32 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 33 | #include <config.h> | 
|---|
|  | 34 | #endif | 
|---|
|  | 35 |  | 
|---|
| [ad011c] | 36 | #include "CodePatterns/MemDebug.hpp" | 
|---|
| [112b09] | 37 |  | 
|---|
| [5d1611] | 38 | #include "World.hpp" | 
|---|
|  | 39 |  | 
|---|
| [90c4280] | 40 | #include <functional> | 
|---|
| [5d1611] | 41 |  | 
|---|
| [3139b2] | 42 | #include "Actions/ActionTrait.hpp" | 
|---|
| [d297a3] | 43 | #include "Actions/ManipulateAtomsProcess.hpp" | 
|---|
| [6f0841] | 44 | #include "Atom/atom.hpp" | 
|---|
| [d297a3] | 45 | #include "Box.hpp" | 
|---|
|  | 46 | #include "CodePatterns/Assert.hpp" | 
|---|
| [8e1f7af] | 47 | #include "config.hpp" | 
|---|
| [fc1b24] | 48 | #include "Descriptors/AtomDescriptor.hpp" | 
|---|
| [865a945] | 49 | #include "Descriptors/AtomDescriptor_impl.hpp" | 
|---|
| [c1d837] | 50 | #include "Descriptors/AtomIdDescriptor.hpp" | 
|---|
| [ebc499] | 51 | #include "Descriptors/AtomSelectionDescriptor.hpp" | 
|---|
| [1c51c8] | 52 | #include "Descriptors/MoleculeDescriptor.hpp" | 
|---|
|  | 53 | #include "Descriptors/MoleculeDescriptor_impl.hpp" | 
|---|
| [c1d837] | 54 | #include "Descriptors/MoleculeIdDescriptor.hpp" | 
|---|
| [ebc499] | 55 | #include "Descriptors/MoleculeSelectionDescriptor.hpp" | 
|---|
| [feb5d0] | 56 | #include "Descriptors/SelectiveConstIterator_impl.hpp" | 
|---|
| [6e97e5] | 57 | #include "Descriptors/SelectiveIterator_impl.hpp" | 
|---|
| [42127c] | 58 | #include "Element/periodentafel.hpp" | 
|---|
| [98dbee] | 59 | #include "Fragmentation/Homology/HomologyContainer.hpp" | 
|---|
| [3139b2] | 60 | #include "Graph/BondGraph.hpp" | 
|---|
| [4b8630] | 61 | #include "Graph/DepthFirstSearchAnalysis.hpp" | 
|---|
| [e4fe8d] | 62 | #include "Helpers/defs.hpp" | 
|---|
| [d297a3] | 63 | #include "LinearAlgebra/RealSpaceMatrix.hpp" | 
|---|
| [4834f4] | 64 | #include "LinkedCell/LinkedCell_Controller.hpp" | 
|---|
|  | 65 | #include "LinkedCell/PointCloudAdaptor.hpp" | 
|---|
| [d297a3] | 66 | #include "molecule.hpp" | 
|---|
| [42127c] | 67 | #include "MoleculeListClass.hpp" | 
|---|
| [ab26c3] | 68 | #include "Thermostats/ThermoStatContainer.hpp" | 
|---|
| [d297a3] | 69 | #include "WorldTime.hpp" | 
|---|
| [d346b6] | 70 |  | 
|---|
| [3e4fb6] | 71 | #include "IdPool_impl.hpp" | 
|---|
|  | 72 |  | 
|---|
| [4834f4] | 73 | #include "CodePatterns/IteratorAdaptors.hpp" | 
|---|
| [ad011c] | 74 | #include "CodePatterns/Singleton_impl.hpp" | 
|---|
| [02ce36] | 75 | #include "CodePatterns/Observer/Channels.hpp" | 
|---|
|  | 76 | #include "CodePatterns/Observer/ObservedContainer_impl.hpp" | 
|---|
| [23b547] | 77 |  | 
|---|
| [ce7fdc] | 78 | using namespace MoleCuilder; | 
|---|
| [4d9c01] | 79 |  | 
|---|
| [7188b1] | 80 | /******************************* Notifications ************************/ | 
|---|
|  | 81 |  | 
|---|
|  | 82 |  | 
|---|
|  | 83 | atom* World::_lastchangedatom = NULL; | 
|---|
|  | 84 | molecule* World::_lastchangedmol = NULL; | 
|---|
|  | 85 |  | 
|---|
| [5d1611] | 86 | /******************************* getter and setter ************************/ | 
|---|
| [f71baf] | 87 | periodentafel *&World::getPeriode() | 
|---|
|  | 88 | { | 
|---|
| [5d1611] | 89 | return periode; | 
|---|
|  | 90 | } | 
|---|
|  | 91 |  | 
|---|
| [f71baf] | 92 | BondGraph *&World::getBondGraph() | 
|---|
|  | 93 | { | 
|---|
|  | 94 | return BG; | 
|---|
|  | 95 | } | 
|---|
|  | 96 |  | 
|---|
| [98dbee] | 97 | HomologyContainer &World::getHomologies() | 
|---|
|  | 98 | { | 
|---|
|  | 99 | return *homologies; | 
|---|
|  | 100 | } | 
|---|
|  | 101 |  | 
|---|
|  | 102 | void World::resetHomologies(HomologyContainer *&_homologies) | 
|---|
|  | 103 | { | 
|---|
|  | 104 | HomologyContainer *oldhomologies = homologies; | 
|---|
|  | 105 |  | 
|---|
|  | 106 | // install new instance, resetting given pointer | 
|---|
|  | 107 | homologies = _homologies; | 
|---|
|  | 108 | _homologies = NULL; | 
|---|
|  | 109 |  | 
|---|
|  | 110 | // delete old instance which also informs all observers | 
|---|
|  | 111 | delete oldhomologies; | 
|---|
|  | 112 | } | 
|---|
|  | 113 |  | 
|---|
| [f71baf] | 114 | void World::setBondGraph(BondGraph *_BG){ | 
|---|
|  | 115 | delete (BG); | 
|---|
|  | 116 | BG = _BG; | 
|---|
|  | 117 | } | 
|---|
|  | 118 |  | 
|---|
| [8e1f7af] | 119 | config *&World::getConfig(){ | 
|---|
|  | 120 | return configuration; | 
|---|
|  | 121 | } | 
|---|
|  | 122 |  | 
|---|
| [1c51c8] | 123 | // Atoms | 
|---|
|  | 124 |  | 
|---|
| [7a1ce5] | 125 | atom* World::getAtom(AtomDescriptor descriptor){ | 
|---|
| [fc1b24] | 126 | return descriptor.find(); | 
|---|
|  | 127 | } | 
|---|
|  | 128 |  | 
|---|
| [795c0f] | 129 | const atom* World::getAtom(AtomDescriptor descriptor) const{ | 
|---|
|  | 130 | return const_cast<const AtomDescriptor &>(descriptor).find(); | 
|---|
|  | 131 | } | 
|---|
|  | 132 |  | 
|---|
| [4d72e4] | 133 | World::AtomComposite World::getAllAtoms(AtomDescriptor descriptor){ | 
|---|
| [fc1b24] | 134 | return descriptor.findAll(); | 
|---|
|  | 135 | } | 
|---|
|  | 136 |  | 
|---|
| [795c0f] | 137 | World::ConstAtomComposite World::getAllAtoms(AtomDescriptor descriptor) const { | 
|---|
|  | 138 | return const_cast<const AtomDescriptor &>(descriptor).findAll(); | 
|---|
|  | 139 | } | 
|---|
|  | 140 |  | 
|---|
| [4d72e4] | 141 | World::AtomComposite World::getAllAtoms(){ | 
|---|
| [0e2a47] | 142 | return getAllAtoms(AllAtoms()); | 
|---|
|  | 143 | } | 
|---|
|  | 144 |  | 
|---|
| [795c0f] | 145 | World::ConstAtomComposite World::getAllAtoms() const { | 
|---|
|  | 146 | return getAllAtoms(AllAtoms()); | 
|---|
|  | 147 | } | 
|---|
|  | 148 |  | 
|---|
|  | 149 | int World::numAtoms() const { | 
|---|
| [354859] | 150 | return atoms.size(); | 
|---|
|  | 151 | } | 
|---|
|  | 152 |  | 
|---|
| [1c51c8] | 153 | // Molecules | 
|---|
|  | 154 |  | 
|---|
|  | 155 | molecule *World::getMolecule(MoleculeDescriptor descriptor){ | 
|---|
|  | 156 | return descriptor.find(); | 
|---|
|  | 157 | } | 
|---|
|  | 158 |  | 
|---|
| [97445f] | 159 | const molecule *World::getMolecule(MoleculeDescriptor descriptor) const { | 
|---|
|  | 160 | return const_cast<const MoleculeDescriptor &>(descriptor).find(); | 
|---|
|  | 161 | } | 
|---|
|  | 162 |  | 
|---|
| [1c51c8] | 163 | std::vector<molecule*> World::getAllMolecules(MoleculeDescriptor descriptor){ | 
|---|
|  | 164 | return descriptor.findAll(); | 
|---|
|  | 165 | } | 
|---|
|  | 166 |  | 
|---|
| [97445f] | 167 | std::vector<const molecule*> World::getAllMolecules(MoleculeDescriptor descriptor) const { | 
|---|
|  | 168 | return const_cast<const MoleculeDescriptor &>(descriptor).findAll(); | 
|---|
|  | 169 | } | 
|---|
|  | 170 |  | 
|---|
| [97ebf8] | 171 | std::vector<molecule*> World::getAllMolecules(){ | 
|---|
|  | 172 | return getAllMolecules(AllMolecules()); | 
|---|
|  | 173 | } | 
|---|
|  | 174 |  | 
|---|
| [97445f] | 175 | std::vector<const molecule*> World::getAllMolecules() const { | 
|---|
|  | 176 | return getAllMolecules(AllMolecules()); | 
|---|
|  | 177 | } | 
|---|
|  | 178 |  | 
|---|
|  | 179 | int World::numMolecules() const { | 
|---|
| [354859] | 180 | return molecules_deprecated->ListOfMolecules.size(); | 
|---|
|  | 181 | } | 
|---|
|  | 182 |  | 
|---|
| [5f612ee] | 183 | // system | 
|---|
|  | 184 |  | 
|---|
| [84c494] | 185 | Box& World::getDomain() { | 
|---|
|  | 186 | return *cell_size; | 
|---|
|  | 187 | } | 
|---|
|  | 188 |  | 
|---|
| [cca9ef] | 189 | void World::setDomain(const RealSpaceMatrix &mat){ | 
|---|
| [be97a8] | 190 | OBSERVE; | 
|---|
| [84c494] | 191 | *cell_size = mat; | 
|---|
| [5f612ee] | 192 | } | 
|---|
|  | 193 |  | 
|---|
|  | 194 | void World::setDomain(double * matrix) | 
|---|
|  | 195 | { | 
|---|
| [b9c847] | 196 | OBSERVE; | 
|---|
| [cca9ef] | 197 | RealSpaceMatrix M = ReturnFullMatrixforSymmetric(matrix); | 
|---|
| [84c494] | 198 | cell_size->setM(M); | 
|---|
| [5f612ee] | 199 | } | 
|---|
|  | 200 |  | 
|---|
| [03abd0] | 201 | LinkedCell::LinkedCell_View World::getLinkedCell(double distance) | 
|---|
| [4834f4] | 202 | { | 
|---|
| [d067e35] | 203 | ASSERT( distance >= 0, | 
|---|
| [03abd0] | 204 | "World::getLinkedCell() - distance is not positive."); | 
|---|
|  | 205 | if (distance < 1.) { | 
|---|
|  | 206 | ELOG(2, "Linked cell grid with length less than 1. is very memory-intense!"); | 
|---|
|  | 207 | distance = 1.; | 
|---|
|  | 208 | } | 
|---|
| [4834f4] | 209 | // we have to grope past the ObservedContainer mechanism and transmorph the map | 
|---|
|  | 210 | // into a traversable list for the adaptor | 
|---|
|  | 211 | PointCloudAdaptor< AtomSet::set_t, MapValueIterator<AtomSet::set_t::iterator> > atomset( | 
|---|
|  | 212 | &(atoms.getContent()), | 
|---|
|  | 213 | std::string("WorldsAtoms")); | 
|---|
|  | 214 | return LCcontroller->getView(distance, atomset); | 
|---|
|  | 215 | } | 
|---|
|  | 216 |  | 
|---|
| [2a8731] | 217 | const unsigned World::getTime() const | 
|---|
|  | 218 | { | 
|---|
|  | 219 | return WorldTime::getTime(); | 
|---|
|  | 220 | } | 
|---|
|  | 221 |  | 
|---|
| [388ddd] | 222 | bool areBondsPresent(const unsigned int _step) | 
|---|
|  | 223 | { | 
|---|
|  | 224 | bool status = false; | 
|---|
|  | 225 |  | 
|---|
|  | 226 | for (World::AtomConstIterator iter = const_cast<const World &>(World::getInstance()).getAtomIter(); | 
|---|
|  | 227 | (!status) && (iter != const_cast<const World &>(World::getInstance()).atomEnd()); ++iter) { | 
|---|
|  | 228 | const atom * const Walker = *iter; | 
|---|
|  | 229 | status |= !Walker->getListOfBondsAtStep(_step).empty(); | 
|---|
|  | 230 | } | 
|---|
|  | 231 |  | 
|---|
|  | 232 | return status; | 
|---|
|  | 233 | } | 
|---|
|  | 234 |  | 
|---|
|  | 235 | void copyBondgraph(const unsigned int _srcstep, const unsigned int _deststep) | 
|---|
|  | 236 | { | 
|---|
|  | 237 | // gather all bonds from _srcstep | 
|---|
|  | 238 | std::set<bond *> SetOfBonds; | 
|---|
|  | 239 | for (World::AtomConstIterator iter = const_cast<const World &>(World::getInstance()).getAtomIter(); | 
|---|
|  | 240 | iter != const_cast<const World &>(World::getInstance()).atomEnd(); ++iter) { | 
|---|
|  | 241 | const atom * const Walker = *iter; | 
|---|
|  | 242 | const BondList bonds = Walker->getListOfBondsAtStep(_srcstep); | 
|---|
|  | 243 | BOOST_FOREACH( bond::ptr bondptr, bonds) { | 
|---|
|  | 244 | SetOfBonds.insert(bondptr.get()); | 
|---|
|  | 245 | } | 
|---|
|  | 246 | } | 
|---|
|  | 247 | LOG(4, "DEBUG: We gathered " << SetOfBonds.size() << " bonds in total."); | 
|---|
|  | 248 |  | 
|---|
|  | 249 | // copy bond to new time step | 
|---|
|  | 250 | for (std::set<bond *>::const_iterator bonditer = SetOfBonds.begin(); | 
|---|
|  | 251 | bonditer != SetOfBonds.end(); ++bonditer) { | 
|---|
|  | 252 | const atom * const Walker = (*bonditer)->leftatom; | 
|---|
|  | 253 | const atom * const OtherWalker = (*bonditer)->rightatom; | 
|---|
| [0763ce] | 254 | bond::ptr const _bond = | 
|---|
|  | 255 | const_cast<atom *>(Walker)->addBond(_deststep, const_cast<atom *>(OtherWalker)); | 
|---|
|  | 256 | _bond->setDegree((*bonditer)->getDegree()); | 
|---|
| [388ddd] | 257 | } | 
|---|
|  | 258 | } | 
|---|
|  | 259 |  | 
|---|
| [d297a3] | 260 | void World::setTime(const unsigned int _step) | 
|---|
|  | 261 | { | 
|---|
| [76163d] | 262 | if (_step != WorldTime::getTime()) { | 
|---|
| [388ddd] | 263 | const unsigned int oldstep = WorldTime::getTime(); | 
|---|
| [46ce1c] | 264 |  | 
|---|
|  | 265 | // 1. copy bond graph (such not each addBond causes GUI update) | 
|---|
|  | 266 | if (!areBondsPresent(_step)) { | 
|---|
|  | 267 | //      AtomComposite Set = getAllAtoms(); | 
|---|
|  | 268 | //      BG->cleanAdjacencyList(Set); | 
|---|
|  | 269 | copyBondgraph(oldstep, _step); | 
|---|
|  | 270 | } | 
|---|
|  | 271 |  | 
|---|
|  | 272 | // 2. set new time | 
|---|
| [040a5c] | 273 | WorldTime::getInstance().setTime(_step); | 
|---|
| [46ce1c] | 274 |  | 
|---|
|  | 275 | // 4. scan for connected subgraphs => molecules | 
|---|
| [4b8630] | 276 | DepthFirstSearchAnalysis DFS; | 
|---|
|  | 277 | DFS(); | 
|---|
|  | 278 | DFS.UpdateMoleculeStructure(); | 
|---|
| [76163d] | 279 | } | 
|---|
| [d297a3] | 280 | } | 
|---|
|  | 281 |  | 
|---|
| [387b36] | 282 | std::string World::getDefaultName() { | 
|---|
| [5f612ee] | 283 | return defaultName; | 
|---|
|  | 284 | } | 
|---|
|  | 285 |  | 
|---|
| [387b36] | 286 | void World::setDefaultName(std::string name) | 
|---|
| [5f612ee] | 287 | { | 
|---|
| [be97a8] | 288 | OBSERVE; | 
|---|
| [387b36] | 289 | defaultName = name; | 
|---|
| [5f612ee] | 290 | }; | 
|---|
|  | 291 |  | 
|---|
| [43dad6] | 292 | class ThermoStatContainer * World::getThermostats() | 
|---|
|  | 293 | { | 
|---|
|  | 294 | return Thermostats; | 
|---|
|  | 295 | } | 
|---|
|  | 296 |  | 
|---|
|  | 297 |  | 
|---|
| [e4b5de] | 298 | int World::getExitFlag() { | 
|---|
|  | 299 | return ExitFlag; | 
|---|
|  | 300 | } | 
|---|
|  | 301 |  | 
|---|
|  | 302 | void World::setExitFlag(int flag) { | 
|---|
|  | 303 | if (ExitFlag < flag) | 
|---|
|  | 304 | ExitFlag = flag; | 
|---|
|  | 305 | } | 
|---|
| [5f612ee] | 306 |  | 
|---|
| [afb47f] | 307 | /******************** Methods to change World state *********************/ | 
|---|
|  | 308 |  | 
|---|
| [354859] | 309 | molecule* World::createMolecule(){ | 
|---|
|  | 310 | OBSERVE; | 
|---|
|  | 311 | molecule *mol = NULL; | 
|---|
| [cbc5fb] | 312 | mol = NewMolecule(); | 
|---|
| [3e4fb6] | 313 | moleculeId_t id = moleculeIdPool.getNextId(); | 
|---|
| [127a8e] | 314 | ASSERT(!molecules.count(id),"proposed id did not specify an unused ID"); | 
|---|
|  | 315 | mol->setId(id); | 
|---|
| [244d26] | 316 | // store the molecule by ID | 
|---|
| [cbc5fb] | 317 | molecules[mol->getId()] = mol; | 
|---|
| [7188b1] | 318 | _lastchangedmol = mol; | 
|---|
|  | 319 | NOTIFY(MoleculeInserted); | 
|---|
| [354859] | 320 | return mol; | 
|---|
|  | 321 | } | 
|---|
|  | 322 |  | 
|---|
| [cbc5fb] | 323 | void World::destroyMolecule(molecule* mol){ | 
|---|
| [fa7989] | 324 | ASSERT(mol,"Molecule that was meant to be destroyed did not exist"); | 
|---|
| [cbc5fb] | 325 | destroyMolecule(mol->getId()); | 
|---|
|  | 326 | } | 
|---|
|  | 327 |  | 
|---|
|  | 328 | void World::destroyMolecule(moleculeId_t id){ | 
|---|
|  | 329 | molecule *mol = molecules[id]; | 
|---|
| [6d574a] | 330 | ASSERT(mol,"Molecule id that was meant to be destroyed did not exist"); | 
|---|
| [38f991] | 331 | // give notice about immediate removal | 
|---|
|  | 332 | { | 
|---|
|  | 333 | OBSERVE; | 
|---|
|  | 334 | _lastchangedmol = mol; | 
|---|
|  | 335 | NOTIFY(MoleculeRemoved); | 
|---|
|  | 336 | } | 
|---|
| [a7aebd] | 337 | // TODO: removed when depcreated MoleculeListClass is gone | 
|---|
|  | 338 | molecules_deprecated->erase(mol); | 
|---|
| [cbc5fb] | 339 | DeleteMolecule(mol); | 
|---|
| [38f991] | 340 | if (isMoleculeSelected(id)) | 
|---|
|  | 341 | selectedMolecules.erase(id); | 
|---|
| [cbc5fb] | 342 | molecules.erase(id); | 
|---|
| [3e4fb6] | 343 | moleculeIdPool.releaseId(id); | 
|---|
| [cbc5fb] | 344 | } | 
|---|
|  | 345 |  | 
|---|
| [46d958] | 346 | atom *World::createAtom(){ | 
|---|
|  | 347 | OBSERVE; | 
|---|
| [3e4fb6] | 348 | atomId_t id = atomIdPool.getNextId(); | 
|---|
| [127a8e] | 349 | ASSERT(!atoms.count(id),"proposed id did not specify an unused ID"); | 
|---|
| [88d586] | 350 | atom *res = NewAtom(id); | 
|---|
| [46d958] | 351 | res->setWorld(this); | 
|---|
| [244d26] | 352 | // store the atom by ID | 
|---|
| [46d958] | 353 | atoms[res->getId()] = res; | 
|---|
| [7188b1] | 354 | _lastchangedatom = res; | 
|---|
|  | 355 | NOTIFY(AtomInserted); | 
|---|
| [46d958] | 356 | return res; | 
|---|
|  | 357 | } | 
|---|
|  | 358 |  | 
|---|
| [5f612ee] | 359 |  | 
|---|
| [46d958] | 360 | int World::registerAtom(atom *atom){ | 
|---|
|  | 361 | OBSERVE; | 
|---|
| [3e4fb6] | 362 | atomId_t id = atomIdPool.getNextId(); | 
|---|
| [88d586] | 363 | atom->setId(id); | 
|---|
| [46d958] | 364 | atom->setWorld(this); | 
|---|
|  | 365 | atoms[atom->getId()] = atom; | 
|---|
| [65d7ca] | 366 | _lastchangedatom = atom; | 
|---|
|  | 367 | NOTIFY(AtomInserted); | 
|---|
| [46d958] | 368 | return atom->getId(); | 
|---|
|  | 369 | } | 
|---|
|  | 370 |  | 
|---|
|  | 371 | void World::destroyAtom(atom* atom){ | 
|---|
|  | 372 | int id = atom->getId(); | 
|---|
|  | 373 | destroyAtom(id); | 
|---|
|  | 374 | } | 
|---|
|  | 375 |  | 
|---|
| [cbc5fb] | 376 | void World::destroyAtom(atomId_t id) { | 
|---|
| [46d958] | 377 | atom *atom = atoms[id]; | 
|---|
| [6d574a] | 378 | ASSERT(atom,"Atom ID that was meant to be destroyed did not exist"); | 
|---|
| [ab4a33] | 379 | // give notice about immediate removal | 
|---|
|  | 380 | { | 
|---|
|  | 381 | OBSERVE; | 
|---|
|  | 382 | _lastchangedatom = atom; | 
|---|
|  | 383 | NOTIFY(AtomRemoved); | 
|---|
|  | 384 | } | 
|---|
| [a7aebd] | 385 | // check if it's the last atom | 
|---|
| [270bdf] | 386 | molecule *_mol = const_cast<molecule *>(atom->getMolecule()); | 
|---|
| [cad383] | 387 | if ((_mol == NULL) || (_mol->getAtomCount() > 1)) | 
|---|
| [a7aebd] | 388 | _mol = NULL; | 
|---|
| [46d958] | 389 | DeleteAtom(atom); | 
|---|
| [38f991] | 390 | if (isAtomSelected(id)) | 
|---|
|  | 391 | selectedAtoms.erase(id); | 
|---|
| [46d958] | 392 | atoms.erase(id); | 
|---|
| [3e4fb6] | 393 | atomIdPool.releaseId(id); | 
|---|
| [a7aebd] | 394 | // remove molecule if empty | 
|---|
|  | 395 | if (_mol != NULL) | 
|---|
|  | 396 | destroyMolecule(_mol); | 
|---|
| [88d586] | 397 | } | 
|---|
|  | 398 |  | 
|---|
|  | 399 | bool World::changeAtomId(atomId_t oldId, atomId_t newId, atom* target){ | 
|---|
|  | 400 | OBSERVE; | 
|---|
|  | 401 | // in case this call did not originate from inside the atom, we redirect it, | 
|---|
|  | 402 | // to also let it know that it has changed | 
|---|
|  | 403 | if(!target){ | 
|---|
|  | 404 | target = atoms[oldId]; | 
|---|
| [6d574a] | 405 | ASSERT(target,"Atom with that ID not found"); | 
|---|
| [88d586] | 406 | return target->changeId(newId); | 
|---|
|  | 407 | } | 
|---|
|  | 408 | else{ | 
|---|
| [3e4fb6] | 409 | if(atomIdPool.reserveId(newId)){ | 
|---|
| [88d586] | 410 | atoms.erase(oldId); | 
|---|
|  | 411 | atoms.insert(pair<atomId_t,atom*>(newId,target)); | 
|---|
|  | 412 | return true; | 
|---|
|  | 413 | } | 
|---|
|  | 414 | else{ | 
|---|
|  | 415 | return false; | 
|---|
|  | 416 | } | 
|---|
|  | 417 | } | 
|---|
| [46d958] | 418 | } | 
|---|
|  | 419 |  | 
|---|
| [a7a087] | 420 | bool World::changeMoleculeId(moleculeId_t oldId, moleculeId_t newId, molecule* target){ | 
|---|
|  | 421 | OBSERVE; | 
|---|
|  | 422 | // in case this call did not originate from inside the atom, we redirect it, | 
|---|
|  | 423 | // to also let it know that it has changed | 
|---|
|  | 424 | if(!target){ | 
|---|
|  | 425 | target = molecules[oldId]; | 
|---|
|  | 426 | ASSERT(target,"Molecule with that ID not found"); | 
|---|
|  | 427 | return target->changeId(newId); | 
|---|
|  | 428 | } | 
|---|
|  | 429 | else{ | 
|---|
| [3e4fb6] | 430 | if(moleculeIdPool.reserveId(newId)){ | 
|---|
| [a7a087] | 431 | molecules.erase(oldId); | 
|---|
|  | 432 | molecules.insert(pair<moleculeId_t,molecule*>(newId,target)); | 
|---|
|  | 433 | return true; | 
|---|
|  | 434 | } | 
|---|
|  | 435 | else{ | 
|---|
|  | 436 | return false; | 
|---|
|  | 437 | } | 
|---|
|  | 438 | } | 
|---|
|  | 439 | } | 
|---|
|  | 440 |  | 
|---|
| [7c4e29] | 441 | ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name,AtomDescriptor descr){ | 
|---|
| [3139b2] | 442 | ActionTrait manipulateTrait(name); | 
|---|
| [126867] | 443 | return new ManipulateAtomsProcess(op, descr,manipulateTrait); | 
|---|
| [7c4e29] | 444 | } | 
|---|
|  | 445 |  | 
|---|
| [0e2a47] | 446 | ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name){ | 
|---|
|  | 447 | return manipulateAtoms(op,name,AllAtoms()); | 
|---|
|  | 448 | } | 
|---|
|  | 449 |  | 
|---|
| [afb47f] | 450 | /********************* Internal Change methods for double Callback and Observer mechanism ********/ | 
|---|
|  | 451 |  | 
|---|
|  | 452 | void World::doManipulate(ManipulateAtomsProcess *proc){ | 
|---|
|  | 453 | proc->signOn(this); | 
|---|
|  | 454 | { | 
|---|
|  | 455 | OBSERVE; | 
|---|
|  | 456 | proc->doManipulate(this); | 
|---|
|  | 457 | } | 
|---|
|  | 458 | proc->signOff(this); | 
|---|
|  | 459 | } | 
|---|
| [865a945] | 460 | /******************************* Iterators ********************************/ | 
|---|
|  | 461 |  | 
|---|
| [fa0b18] | 462 | // external parts with observers | 
|---|
|  | 463 |  | 
|---|
| [feb5d0] | 464 | CONSTRUCT_SELECTIVE_ITERATOR(atom*,World::AtomSet,AtomDescriptor) | 
|---|
|  | 465 |  | 
|---|
|  | 466 | CONSTRUCT_SELECTIVE_CONST_ITERATOR(atom*,World::AtomSet,AtomDescriptor) | 
|---|
| [6e97e5] | 467 |  | 
|---|
| [fa0b18] | 468 | World::AtomIterator | 
|---|
|  | 469 | World::getAtomIter(AtomDescriptor descr){ | 
|---|
|  | 470 | return AtomIterator(descr,atoms); | 
|---|
|  | 471 | } | 
|---|
| [865a945] | 472 |  | 
|---|
| [feb5d0] | 473 | World::AtomConstIterator | 
|---|
|  | 474 | World::getAtomIter(AtomDescriptor descr) const{ | 
|---|
|  | 475 | return AtomConstIterator(descr,atoms); | 
|---|
|  | 476 | } | 
|---|
|  | 477 |  | 
|---|
| [fa0b18] | 478 | World::AtomIterator | 
|---|
|  | 479 | World::getAtomIter(){ | 
|---|
|  | 480 | return AtomIterator(AllAtoms(),atoms); | 
|---|
| [865a945] | 481 | } | 
|---|
| [354859] | 482 |  | 
|---|
| [feb5d0] | 483 | World::AtomConstIterator | 
|---|
|  | 484 | World::getAtomIter() const{ | 
|---|
|  | 485 | return AtomConstIterator(AllAtoms(),atoms); | 
|---|
|  | 486 | } | 
|---|
|  | 487 |  | 
|---|
| [fa0b18] | 488 | World::AtomIterator | 
|---|
|  | 489 | World::atomEnd(){ | 
|---|
| [6e97e5] | 490 | return AtomIterator(AllAtoms(),atoms,atoms.end()); | 
|---|
| [7c4e29] | 491 | } | 
|---|
|  | 492 |  | 
|---|
| [feb5d0] | 493 | World::AtomConstIterator | 
|---|
|  | 494 | World::atomEnd() const{ | 
|---|
|  | 495 | return AtomConstIterator(AllAtoms(),atoms,atoms.end()); | 
|---|
|  | 496 | } | 
|---|
|  | 497 |  | 
|---|
|  | 498 | CONSTRUCT_SELECTIVE_ITERATOR(molecule*,World::MoleculeSet,MoleculeDescriptor) | 
|---|
|  | 499 |  | 
|---|
|  | 500 | CONSTRUCT_SELECTIVE_CONST_ITERATOR(molecule*,World::MoleculeSet,MoleculeDescriptor) | 
|---|
| [6e97e5] | 501 |  | 
|---|
| [5d880e] | 502 | World::MoleculeIterator | 
|---|
|  | 503 | World::getMoleculeIter(MoleculeDescriptor descr){ | 
|---|
|  | 504 | return MoleculeIterator(descr,molecules); | 
|---|
|  | 505 | } | 
|---|
|  | 506 |  | 
|---|
| [feb5d0] | 507 | World::MoleculeConstIterator | 
|---|
|  | 508 | World::getMoleculeIter(MoleculeDescriptor descr) const{ | 
|---|
|  | 509 | return MoleculeConstIterator(descr,molecules); | 
|---|
|  | 510 | } | 
|---|
|  | 511 |  | 
|---|
| [5d880e] | 512 | World::MoleculeIterator | 
|---|
|  | 513 | World::getMoleculeIter(){ | 
|---|
|  | 514 | return MoleculeIterator(AllMolecules(),molecules); | 
|---|
| [1c51c8] | 515 | } | 
|---|
|  | 516 |  | 
|---|
| [feb5d0] | 517 | World::MoleculeConstIterator | 
|---|
|  | 518 | World::getMoleculeIter() const{ | 
|---|
|  | 519 | return MoleculeConstIterator(AllMolecules(),molecules); | 
|---|
|  | 520 | } | 
|---|
|  | 521 |  | 
|---|
| [5d880e] | 522 | World::MoleculeIterator | 
|---|
|  | 523 | World::moleculeEnd(){ | 
|---|
| [6e97e5] | 524 | return MoleculeIterator(AllMolecules(),molecules,molecules.end()); | 
|---|
| [1c51c8] | 525 | } | 
|---|
|  | 526 |  | 
|---|
| [feb5d0] | 527 | World::MoleculeConstIterator | 
|---|
|  | 528 | World::moleculeEnd() const{ | 
|---|
|  | 529 | return MoleculeConstIterator(AllMolecules(),molecules,molecules.end()); | 
|---|
|  | 530 | } | 
|---|
|  | 531 |  | 
|---|
| [fa0b18] | 532 | // Internal parts, without observers | 
|---|
|  | 533 |  | 
|---|
|  | 534 | // Build the AtomIterator from template | 
|---|
|  | 535 | CONSTRUCT_SELECTIVE_ITERATOR(atom*,World::AtomSet::set_t,AtomDescriptor); | 
|---|
|  | 536 |  | 
|---|
|  | 537 |  | 
|---|
|  | 538 | World::internal_AtomIterator | 
|---|
|  | 539 | World::getAtomIter_internal(AtomDescriptor descr){ | 
|---|
|  | 540 | return internal_AtomIterator(descr,atoms.getContent()); | 
|---|
|  | 541 | } | 
|---|
|  | 542 |  | 
|---|
|  | 543 | World::internal_AtomIterator | 
|---|
|  | 544 | World::atomEnd_internal(){ | 
|---|
|  | 545 | return internal_AtomIterator(AllAtoms(),atoms.getContent(),atoms.end_internal()); | 
|---|
|  | 546 | } | 
|---|
|  | 547 |  | 
|---|
| [6e97e5] | 548 | // build the MoleculeIterator from template | 
|---|
| [e3d865] | 549 | CONSTRUCT_SELECTIVE_ITERATOR(molecule*,World::MoleculeSet::set_t,MoleculeDescriptor); | 
|---|
| [6e97e5] | 550 |  | 
|---|
| [e3d865] | 551 | World::internal_MoleculeIterator World::getMoleculeIter_internal(MoleculeDescriptor descr){ | 
|---|
|  | 552 | return internal_MoleculeIterator(descr,molecules.getContent()); | 
|---|
| [1c51c8] | 553 | } | 
|---|
|  | 554 |  | 
|---|
| [e3d865] | 555 | World::internal_MoleculeIterator World::moleculeEnd_internal(){ | 
|---|
|  | 556 | return internal_MoleculeIterator(AllMolecules(),molecules.getContent(),molecules.end_internal()); | 
|---|
| [1c51c8] | 557 | } | 
|---|
|  | 558 |  | 
|---|
| [90c4280] | 559 | /************************** Selection of Atoms and molecules ******************/ | 
|---|
|  | 560 |  | 
|---|
|  | 561 | // Atoms | 
|---|
|  | 562 |  | 
|---|
|  | 563 | void World::clearAtomSelection(){ | 
|---|
| [69643a] | 564 | OBSERVE; | 
|---|
|  | 565 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 566 | selectedAtoms.clear(); | 
|---|
|  | 567 | } | 
|---|
|  | 568 |  | 
|---|
| [ebc499] | 569 | void World::invertAtomSelection(){ | 
|---|
|  | 570 | // get all atoms not selected | 
|---|
|  | 571 | AtomComposite invertedSelection(getAllAtoms()); | 
|---|
|  | 572 | bool (World::*predicate)(const atom*) const = &World::isSelected; // needed for type resolution of overloaded function | 
|---|
|  | 573 | AtomComposite::iterator iter = | 
|---|
|  | 574 | std::remove_if(invertedSelection.begin(), invertedSelection.end(), | 
|---|
|  | 575 | std::bind1st(std::mem_fun(predicate), this)); | 
|---|
|  | 576 | invertedSelection.erase(iter, invertedSelection.end()); | 
|---|
|  | 577 | // apply new selection | 
|---|
|  | 578 | selectedAtoms.clear(); | 
|---|
|  | 579 | void (World::*selector)(const atom*) = &World::selectAtom; // needed for type resolution of overloaded function | 
|---|
|  | 580 | std::for_each(invertedSelection.begin(),invertedSelection.end(), | 
|---|
|  | 581 | std::bind1st(std::mem_fun(selector),this)); // func is select... see above | 
|---|
|  | 582 | } | 
|---|
|  | 583 |  | 
|---|
| [cad383] | 584 | void World::popAtomSelection(){ | 
|---|
|  | 585 | OBSERVE; | 
|---|
|  | 586 | NOTIFY(SelectionChanged); | 
|---|
| [c1d837] | 587 | const atomIdsVector_t atomids = selectedAtoms_Stack.top(); | 
|---|
|  | 588 | boost::function<void (const atomId_t)> IdSelector = | 
|---|
|  | 589 | boost::bind(static_cast<void (World::*)(const atomId_t)>(&World::selectAtom), this, _1); | 
|---|
|  | 590 | selectedAtoms.clear(); | 
|---|
|  | 591 | std::for_each(atomids.begin(),atomids.end(), IdSelector); | 
|---|
| [cad383] | 592 | selectedAtoms_Stack.pop(); | 
|---|
|  | 593 | } | 
|---|
|  | 594 |  | 
|---|
|  | 595 | void World::pushAtomSelection(){ | 
|---|
|  | 596 | OBSERVE; | 
|---|
|  | 597 | NOTIFY(SelectionChanged); | 
|---|
| [c1d837] | 598 | atomIdsVector_t atomids(countSelectedAtoms(), (atomId_t)-1); | 
|---|
|  | 599 | std::copy( | 
|---|
|  | 600 | MapKeyIterator<AtomSelectionConstIterator>(beginAtomSelection()), | 
|---|
|  | 601 | MapKeyIterator<AtomSelectionConstIterator>(endAtomSelection()), | 
|---|
|  | 602 | atomids.begin()); | 
|---|
|  | 603 | selectedAtoms_Stack.push( atomids ); | 
|---|
| [cad383] | 604 | selectedAtoms.clear(); | 
|---|
|  | 605 | } | 
|---|
|  | 606 |  | 
|---|
| [e4afb4] | 607 | void World::selectAtom(const atom *_atom){ | 
|---|
| [69643a] | 608 | OBSERVE; | 
|---|
|  | 609 | NOTIFY(SelectionChanged); | 
|---|
| [e4afb4] | 610 | // atom * is unchanged in this function, but we do store entity as changeable | 
|---|
|  | 611 | ASSERT(_atom,"Invalid pointer in selection of atom"); | 
|---|
|  | 612 | selectedAtoms[_atom->getId()]=const_cast<atom *>(_atom); | 
|---|
| [90c4280] | 613 | } | 
|---|
|  | 614 |  | 
|---|
| [e4afb4] | 615 | void World::selectAtom(const atomId_t id){ | 
|---|
| [69643a] | 616 | OBSERVE; | 
|---|
|  | 617 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 618 | ASSERT(atoms.count(id),"Atom Id selected that was not in the world"); | 
|---|
|  | 619 | selectedAtoms[id]=atoms[id]; | 
|---|
|  | 620 | } | 
|---|
|  | 621 |  | 
|---|
|  | 622 | void World::selectAllAtoms(AtomDescriptor descr){ | 
|---|
| [69643a] | 623 | OBSERVE; | 
|---|
|  | 624 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 625 | internal_AtomIterator begin = getAtomIter_internal(descr); | 
|---|
|  | 626 | internal_AtomIterator end = atomEnd_internal(); | 
|---|
| [e4afb4] | 627 | void (World::*func)(const atom*) = &World::selectAtom; // needed for type resolution of overloaded function | 
|---|
| [90c4280] | 628 | for_each(begin,end,bind1st(mem_fun(func),this)); // func is select... see above | 
|---|
|  | 629 | } | 
|---|
|  | 630 |  | 
|---|
| [e4afb4] | 631 | void World::selectAtomsOfMolecule(const molecule *_mol){ | 
|---|
| [69643a] | 632 | OBSERVE; | 
|---|
|  | 633 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 634 | ASSERT(_mol,"Invalid pointer to molecule in selection of Atoms of Molecule"); | 
|---|
|  | 635 | // need to make it const to get the fast iterators | 
|---|
|  | 636 | const molecule *mol = _mol; | 
|---|
| [e4afb4] | 637 | void (World::*func)(const atom*) = &World::selectAtom; // needed for type resolution of overloaded function | 
|---|
| [90c4280] | 638 | for_each(mol->begin(),mol->end(),bind1st(mem_fun(func),this)); // func is select... see above | 
|---|
|  | 639 | } | 
|---|
|  | 640 |  | 
|---|
| [e4afb4] | 641 | void World::selectAtomsOfMolecule(const moleculeId_t id){ | 
|---|
| [69643a] | 642 | OBSERVE; | 
|---|
|  | 643 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 644 | ASSERT(molecules.count(id),"No molecule with the given id upon Selection of atoms from molecule"); | 
|---|
|  | 645 | selectAtomsOfMolecule(molecules[id]); | 
|---|
|  | 646 | } | 
|---|
|  | 647 |  | 
|---|
| [e4afb4] | 648 | void World::unselectAtom(const atom *_atom){ | 
|---|
| [69643a] | 649 | OBSERVE; | 
|---|
|  | 650 | NOTIFY(SelectionChanged); | 
|---|
| [e4afb4] | 651 | ASSERT(_atom,"Invalid pointer in unselection of atom"); | 
|---|
|  | 652 | unselectAtom(_atom->getId()); | 
|---|
| [61d655e] | 653 | } | 
|---|
|  | 654 |  | 
|---|
| [e4afb4] | 655 | void World::unselectAtom(const atomId_t id){ | 
|---|
| [69643a] | 656 | OBSERVE; | 
|---|
|  | 657 | NOTIFY(SelectionChanged); | 
|---|
| [61d655e] | 658 | ASSERT(atoms.count(id),"Atom Id unselected that was not in the world"); | 
|---|
|  | 659 | selectedAtoms.erase(id); | 
|---|
|  | 660 | } | 
|---|
|  | 661 |  | 
|---|
|  | 662 | void World::unselectAllAtoms(AtomDescriptor descr){ | 
|---|
| [69643a] | 663 | OBSERVE; | 
|---|
|  | 664 | NOTIFY(SelectionChanged); | 
|---|
| [61d655e] | 665 | internal_AtomIterator begin = getAtomIter_internal(descr); | 
|---|
|  | 666 | internal_AtomIterator end = atomEnd_internal(); | 
|---|
| [e4afb4] | 667 | void (World::*func)(const atom*) = &World::unselectAtom; // needed for type resolution of overloaded function | 
|---|
| [61d655e] | 668 | for_each(begin,end,bind1st(mem_fun(func),this)); // func is unselect... see above | 
|---|
|  | 669 | } | 
|---|
|  | 670 |  | 
|---|
| [e4afb4] | 671 | void World::unselectAtomsOfMolecule(const molecule *_mol){ | 
|---|
| [69643a] | 672 | OBSERVE; | 
|---|
|  | 673 | NOTIFY(SelectionChanged); | 
|---|
| [61d655e] | 674 | ASSERT(_mol,"Invalid pointer to molecule in selection of Atoms of Molecule"); | 
|---|
|  | 675 | // need to make it const to get the fast iterators | 
|---|
|  | 676 | const molecule *mol = _mol; | 
|---|
| [e4afb4] | 677 | void (World::*func)(const atom*) = &World::unselectAtom; // needed for type resolution of overloaded function | 
|---|
| [992bd5] | 678 | for_each(mol->begin(),mol->end(),bind1st(mem_fun(func),this)); // func is unselect... see above | 
|---|
| [61d655e] | 679 | } | 
|---|
|  | 680 |  | 
|---|
| [e4afb4] | 681 | void World::unselectAtomsOfMolecule(const moleculeId_t id){ | 
|---|
| [69643a] | 682 | OBSERVE; | 
|---|
|  | 683 | NOTIFY(SelectionChanged); | 
|---|
| [61d655e] | 684 | ASSERT(molecules.count(id),"No molecule with the given id upon Selection of atoms from molecule"); | 
|---|
|  | 685 | unselectAtomsOfMolecule(molecules[id]); | 
|---|
|  | 686 | } | 
|---|
|  | 687 |  | 
|---|
| [e472eab] | 688 | size_t World::countSelectedAtoms() const { | 
|---|
| [eacc3b] | 689 | size_t count = 0; | 
|---|
| [e472eab] | 690 | for (AtomSet::const_iterator iter = selectedAtoms.begin(); iter != selectedAtoms.end(); ++iter) | 
|---|
| [eacc3b] | 691 | count++; | 
|---|
|  | 692 | return count; | 
|---|
|  | 693 | } | 
|---|
|  | 694 |  | 
|---|
| [e4afb4] | 695 | bool World::isSelected(const atom *_atom) const { | 
|---|
| [89643d] | 696 | return isAtomSelected(_atom->getId()); | 
|---|
|  | 697 | } | 
|---|
|  | 698 |  | 
|---|
|  | 699 | bool World::isAtomSelected(const atomId_t no) const { | 
|---|
|  | 700 | return selectedAtoms.find(no) != selectedAtoms.end(); | 
|---|
| [e0e156] | 701 | } | 
|---|
|  | 702 |  | 
|---|
| [99db9b] | 703 | std::vector<atom *> World::getSelectedAtoms() { | 
|---|
| [e472eab] | 704 | std::vector<atom *> returnAtoms; | 
|---|
| [99db9b] | 705 | std::transform( | 
|---|
|  | 706 | selectedAtoms.begin(), | 
|---|
|  | 707 | selectedAtoms.end(), | 
|---|
|  | 708 | back_inserter(returnAtoms), | 
|---|
|  | 709 | _take<atom*,World::AtomSet::value_type>::get); | 
|---|
|  | 710 | return returnAtoms; | 
|---|
|  | 711 | } | 
|---|
|  | 712 |  | 
|---|
|  | 713 | std::vector<const atom *> World::getSelectedAtoms() const { | 
|---|
|  | 714 | std::vector<const atom *> returnAtoms; | 
|---|
|  | 715 | std::transform( | 
|---|
|  | 716 | selectedAtoms.begin(), | 
|---|
|  | 717 | selectedAtoms.end(), | 
|---|
|  | 718 | back_inserter(returnAtoms), | 
|---|
|  | 719 | _take<atom*,World::AtomSet::value_type>::get); | 
|---|
| [e472eab] | 720 | return returnAtoms; | 
|---|
|  | 721 | } | 
|---|
|  | 722 |  | 
|---|
|  | 723 |  | 
|---|
| [90c4280] | 724 | // Molecules | 
|---|
|  | 725 |  | 
|---|
|  | 726 | void World::clearMoleculeSelection(){ | 
|---|
| [69643a] | 727 | OBSERVE; | 
|---|
|  | 728 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 729 | selectedMolecules.clear(); | 
|---|
|  | 730 | } | 
|---|
|  | 731 |  | 
|---|
| [ebc499] | 732 | void World::invertMoleculeSelection(){ | 
|---|
|  | 733 | // get all molecules not selected | 
|---|
|  | 734 | typedef std::vector<molecule *> MoleculeVector_t; | 
|---|
|  | 735 | MoleculeVector_t invertedSelection(getAllMolecules()); | 
|---|
|  | 736 | bool (World::*predicate)(const molecule*) const = &World::isSelected; // needed for type resolution of overloaded function | 
|---|
|  | 737 | MoleculeVector_t::iterator iter = | 
|---|
|  | 738 | std::remove_if(invertedSelection.begin(), invertedSelection.end(), | 
|---|
|  | 739 | std::bind1st(std::mem_fun(predicate), this)); | 
|---|
|  | 740 | invertedSelection.erase(iter, invertedSelection.end()); | 
|---|
|  | 741 | // apply new selection | 
|---|
|  | 742 | selectedMolecules.clear(); | 
|---|
|  | 743 | void (World::*selector)(const molecule*) = &World::selectMolecule; // needed for type resolution of overloaded function | 
|---|
|  | 744 | std::for_each(invertedSelection.begin(),invertedSelection.end(), | 
|---|
|  | 745 | std::bind1st(std::mem_fun(selector),this)); // func is select... see above | 
|---|
|  | 746 | } | 
|---|
|  | 747 |  | 
|---|
| [cad383] | 748 | void World::popMoleculeSelection(){ | 
|---|
|  | 749 | OBSERVE; | 
|---|
|  | 750 | NOTIFY(SelectionChanged); | 
|---|
| [c1d837] | 751 | const moleculeIdsVector_t moleculeids = selectedMolecules_Stack.top(); | 
|---|
|  | 752 | boost::function<void (const moleculeId_t)> IdSelector = | 
|---|
|  | 753 | boost::bind(static_cast<void (World::*)(const moleculeId_t)>(&World::selectMolecule), this, _1); | 
|---|
|  | 754 | selectedMolecules.clear(); | 
|---|
|  | 755 | std::for_each(moleculeids.begin(),moleculeids.end(), IdSelector); | 
|---|
| [cad383] | 756 | selectedMolecules_Stack.pop(); | 
|---|
|  | 757 | } | 
|---|
|  | 758 |  | 
|---|
|  | 759 | void World::pushMoleculeSelection(){ | 
|---|
|  | 760 | OBSERVE; | 
|---|
|  | 761 | NOTIFY(SelectionChanged); | 
|---|
| [c1d837] | 762 | moleculeIdsVector_t moleculeids(countSelectedMolecules(), (moleculeId_t)-1); | 
|---|
|  | 763 | boost::function<moleculeId_t (const molecule*)> IdRetriever = | 
|---|
|  | 764 | boost::bind(&molecule::getId, _1); | 
|---|
|  | 765 | std::copy( | 
|---|
|  | 766 | MapKeyIterator<MoleculeSelectionConstIterator>(beginMoleculeSelection()), | 
|---|
|  | 767 | MapKeyIterator<MoleculeSelectionConstIterator>(endMoleculeSelection()), | 
|---|
|  | 768 | moleculeids.begin()); | 
|---|
|  | 769 | selectedMolecules_Stack.push( moleculeids ); | 
|---|
| [cad383] | 770 | selectedMolecules.clear(); | 
|---|
|  | 771 | } | 
|---|
|  | 772 |  | 
|---|
| [e4afb4] | 773 | void World::selectMolecule(const molecule *_mol){ | 
|---|
| [69643a] | 774 | OBSERVE; | 
|---|
|  | 775 | NOTIFY(SelectionChanged); | 
|---|
| [e4afb4] | 776 | // molecule * is unchanged in this function, but we do store entity as changeable | 
|---|
|  | 777 | ASSERT(_mol,"Invalid pointer to molecule in selection"); | 
|---|
|  | 778 | selectedMolecules[_mol->getId()]=const_cast<molecule *>(_mol); | 
|---|
| [90c4280] | 779 | } | 
|---|
|  | 780 |  | 
|---|
| [e4afb4] | 781 | void World::selectMolecule(const moleculeId_t id){ | 
|---|
| [69643a] | 782 | OBSERVE; | 
|---|
|  | 783 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 784 | ASSERT(molecules.count(id),"Molecule Id selected that was not in the world"); | 
|---|
|  | 785 | selectedMolecules[id]=molecules[id]; | 
|---|
|  | 786 | } | 
|---|
|  | 787 |  | 
|---|
| [e472eab] | 788 | void World::selectAllMolecules(MoleculeDescriptor descr){ | 
|---|
| [69643a] | 789 | OBSERVE; | 
|---|
|  | 790 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 791 | internal_MoleculeIterator begin = getMoleculeIter_internal(descr); | 
|---|
|  | 792 | internal_MoleculeIterator end = moleculeEnd_internal(); | 
|---|
| [e4afb4] | 793 | void (World::*func)(const molecule*) = &World::selectMolecule; // needed for type resolution of overloaded function | 
|---|
| [90c4280] | 794 | for_each(begin,end,bind1st(mem_fun(func),this)); // func is select... see above | 
|---|
|  | 795 | } | 
|---|
|  | 796 |  | 
|---|
| [e4afb4] | 797 | void World::selectMoleculeOfAtom(const atom *_atom){ | 
|---|
| [69643a] | 798 | OBSERVE; | 
|---|
|  | 799 | NOTIFY(SelectionChanged); | 
|---|
| [e4afb4] | 800 | ASSERT(_atom,"Invalid atom pointer in selection of MoleculeOfAtom"); | 
|---|
| [270bdf] | 801 | const molecule *mol=_atom->getMolecule(); | 
|---|
| [90c4280] | 802 | // the atom might not be part of a molecule | 
|---|
|  | 803 | if(mol){ | 
|---|
|  | 804 | selectMolecule(mol); | 
|---|
|  | 805 | } | 
|---|
|  | 806 | } | 
|---|
|  | 807 |  | 
|---|
| [e4afb4] | 808 | void World::selectMoleculeOfAtom(const atomId_t id){ | 
|---|
| [69643a] | 809 | OBSERVE; | 
|---|
|  | 810 | NOTIFY(SelectionChanged); | 
|---|
| [90c4280] | 811 | ASSERT(atoms.count(id),"No such atom with given ID in selection of Molecules of Atom");\ | 
|---|
|  | 812 | selectMoleculeOfAtom(atoms[id]); | 
|---|
|  | 813 | } | 
|---|
|  | 814 |  | 
|---|
| [e4afb4] | 815 | void World::unselectMolecule(const molecule *_mol){ | 
|---|
| [69643a] | 816 | OBSERVE; | 
|---|
|  | 817 | NOTIFY(SelectionChanged); | 
|---|
| [e4afb4] | 818 | ASSERT(_mol,"invalid pointer in unselection of molecule"); | 
|---|
|  | 819 | unselectMolecule(_mol->getId()); | 
|---|
| [61d655e] | 820 | } | 
|---|
|  | 821 |  | 
|---|
| [e4afb4] | 822 | void World::unselectMolecule(const moleculeId_t id){ | 
|---|
| [69643a] | 823 | OBSERVE; | 
|---|
|  | 824 | NOTIFY(SelectionChanged); | 
|---|
| [61d655e] | 825 | ASSERT(molecules.count(id),"No such molecule with ID in unselection"); | 
|---|
|  | 826 | selectedMolecules.erase(id); | 
|---|
|  | 827 | } | 
|---|
|  | 828 |  | 
|---|
| [e472eab] | 829 | void World::unselectAllMolecules(MoleculeDescriptor descr){ | 
|---|
| [69643a] | 830 | OBSERVE; | 
|---|
|  | 831 | NOTIFY(SelectionChanged); | 
|---|
| [61d655e] | 832 | internal_MoleculeIterator begin = getMoleculeIter_internal(descr); | 
|---|
|  | 833 | internal_MoleculeIterator end = moleculeEnd_internal(); | 
|---|
| [e4afb4] | 834 | void (World::*func)(const molecule*) = &World::unselectMolecule; // needed for type resolution of overloaded function | 
|---|
| [61d655e] | 835 | for_each(begin,end,bind1st(mem_fun(func),this)); // func is unselect... see above | 
|---|
|  | 836 | } | 
|---|
|  | 837 |  | 
|---|
| [e4afb4] | 838 | void World::unselectMoleculeOfAtom(const atom *_atom){ | 
|---|
| [69643a] | 839 | OBSERVE; | 
|---|
|  | 840 | NOTIFY(SelectionChanged); | 
|---|
| [e4afb4] | 841 | ASSERT(_atom,"Invalid atom pointer in selection of MoleculeOfAtom"); | 
|---|
| [270bdf] | 842 | const molecule *mol=_atom->getMolecule(); | 
|---|
| [61d655e] | 843 | // the atom might not be part of a molecule | 
|---|
|  | 844 | if(mol){ | 
|---|
|  | 845 | unselectMolecule(mol); | 
|---|
|  | 846 | } | 
|---|
|  | 847 | } | 
|---|
|  | 848 |  | 
|---|
| [e4afb4] | 849 | void World::unselectMoleculeOfAtom(const atomId_t id){ | 
|---|
| [69643a] | 850 | OBSERVE; | 
|---|
|  | 851 | NOTIFY(SelectionChanged); | 
|---|
| [61d655e] | 852 | ASSERT(atoms.count(id),"No such atom with given ID in selection of Molecules of Atom");\ | 
|---|
|  | 853 | unselectMoleculeOfAtom(atoms[id]); | 
|---|
|  | 854 | } | 
|---|
|  | 855 |  | 
|---|
| [e472eab] | 856 | size_t World::countSelectedMolecules() const { | 
|---|
| [eacc3b] | 857 | size_t count = 0; | 
|---|
| [e472eab] | 858 | for (MoleculeSet::const_iterator iter = selectedMolecules.begin(); iter != selectedMolecules.end(); ++iter) | 
|---|
| [eacc3b] | 859 | count++; | 
|---|
|  | 860 | return count; | 
|---|
|  | 861 | } | 
|---|
|  | 862 |  | 
|---|
| [e4afb4] | 863 | bool World::isSelected(const molecule *_mol) const { | 
|---|
| [89643d] | 864 | return isMoleculeSelected(_mol->getId()); | 
|---|
|  | 865 | } | 
|---|
|  | 866 |  | 
|---|
|  | 867 | bool World::isMoleculeSelected(const moleculeId_t no) const { | 
|---|
|  | 868 | return selectedMolecules.find(no) != selectedMolecules.end(); | 
|---|
| [e0e156] | 869 | } | 
|---|
|  | 870 |  | 
|---|
| [97445f] | 871 | std::vector<molecule *> World::getSelectedMolecules() { | 
|---|
| [e472eab] | 872 | std::vector<molecule *> returnMolecules; | 
|---|
| [97445f] | 873 | std::transform( | 
|---|
|  | 874 | selectedMolecules.begin(), | 
|---|
|  | 875 | selectedMolecules.end(), | 
|---|
|  | 876 | back_inserter(returnMolecules), | 
|---|
|  | 877 | _take<molecule*,World::MoleculeSet::value_type>::get); | 
|---|
|  | 878 | return returnMolecules; | 
|---|
|  | 879 | } | 
|---|
|  | 880 |  | 
|---|
|  | 881 | std::vector<const molecule *> World::getSelectedMolecules() const { | 
|---|
|  | 882 | std::vector<const molecule *> returnMolecules; | 
|---|
|  | 883 | std::transform( | 
|---|
|  | 884 | selectedMolecules.begin(), | 
|---|
|  | 885 | selectedMolecules.end(), | 
|---|
|  | 886 | back_inserter(returnMolecules), | 
|---|
|  | 887 | _take<molecule*,World::MoleculeSet::value_type>::get); | 
|---|
| [e472eab] | 888 | return returnMolecules; | 
|---|
|  | 889 | } | 
|---|
|  | 890 |  | 
|---|
| [3839e5] | 891 | /******************* Iterators over Selection *****************************/ | 
|---|
|  | 892 | World::AtomSelectionIterator World::beginAtomSelection(){ | 
|---|
|  | 893 | return selectedAtoms.begin(); | 
|---|
|  | 894 | } | 
|---|
|  | 895 |  | 
|---|
|  | 896 | World::AtomSelectionIterator World::endAtomSelection(){ | 
|---|
|  | 897 | return selectedAtoms.end(); | 
|---|
|  | 898 | } | 
|---|
|  | 899 |  | 
|---|
| [38f991] | 900 | World::AtomSelectionConstIterator World::beginAtomSelection() const{ | 
|---|
|  | 901 | return selectedAtoms.begin(); | 
|---|
|  | 902 | } | 
|---|
|  | 903 |  | 
|---|
|  | 904 | World::AtomSelectionConstIterator World::endAtomSelection() const{ | 
|---|
|  | 905 | return selectedAtoms.end(); | 
|---|
|  | 906 | } | 
|---|
|  | 907 |  | 
|---|
| [3839e5] | 908 |  | 
|---|
|  | 909 | World::MoleculeSelectionIterator World::beginMoleculeSelection(){ | 
|---|
|  | 910 | return selectedMolecules.begin(); | 
|---|
|  | 911 | } | 
|---|
|  | 912 |  | 
|---|
|  | 913 | World::MoleculeSelectionIterator World::endMoleculeSelection(){ | 
|---|
|  | 914 | return selectedMolecules.end(); | 
|---|
|  | 915 | } | 
|---|
|  | 916 |  | 
|---|
| [38f991] | 917 | World::MoleculeSelectionConstIterator World::beginMoleculeSelection() const{ | 
|---|
|  | 918 | return selectedMolecules.begin(); | 
|---|
|  | 919 | } | 
|---|
|  | 920 |  | 
|---|
|  | 921 | World::MoleculeSelectionConstIterator World::endMoleculeSelection() const{ | 
|---|
|  | 922 | return selectedMolecules.end(); | 
|---|
|  | 923 | } | 
|---|
|  | 924 |  | 
|---|
| [5d1611] | 925 | /******************************* Singleton Stuff **************************/ | 
|---|
|  | 926 |  | 
|---|
| [7a1ce5] | 927 | World::World() : | 
|---|
| [cd5047] | 928 | Observable("World"), | 
|---|
| [f71baf] | 929 | BG(new BondGraph(true)),  // assume Angstroem for the moment | 
|---|
| [4ae823] | 930 | periode(new periodentafel(true)), | 
|---|
| [8e1f7af] | 931 | configuration(new config), | 
|---|
| [98dbee] | 932 | homologies(new HomologyContainer()), | 
|---|
| [43dad6] | 933 | Thermostats(new ThermoStatContainer), | 
|---|
| [e4b5de] | 934 | ExitFlag(0), | 
|---|
| [fa0b18] | 935 | atoms(this), | 
|---|
| [90c4280] | 936 | selectedAtoms(this), | 
|---|
| [3e4fb6] | 937 | atomIdPool(0, 20, 100), | 
|---|
| [51be2a] | 938 | molecules(this), | 
|---|
| [90c4280] | 939 | selectedMolecules(this), | 
|---|
| [3e4fb6] | 940 | moleculeIdPool(0, 20,100), | 
|---|
| [24a5e0] | 941 | molecules_deprecated(new MoleculeListClass(this)) | 
|---|
| [7dad10] | 942 | { | 
|---|
| [84c494] | 943 | cell_size = new Box; | 
|---|
| [cca9ef] | 944 | RealSpaceMatrix domain; | 
|---|
| [84c494] | 945 | domain.at(0,0) = 20; | 
|---|
|  | 946 | domain.at(1,1) = 20; | 
|---|
|  | 947 | domain.at(2,2) = 20; | 
|---|
|  | 948 | cell_size->setM(domain); | 
|---|
| [4834f4] | 949 | LCcontroller = new LinkedCell::LinkedCell_Controller(*cell_size); | 
|---|
| [387b36] | 950 | defaultName = "none"; | 
|---|
| [02ce36] | 951 | Channels *OurChannel = new Channels; | 
|---|
| [708277] | 952 | NotificationChannels.insert( std::make_pair( static_cast<Observable *>(this), OurChannel) ); | 
|---|
| [7188b1] | 953 | for (size_t type = 0; type < (size_t)NotificationType_MAX; ++type) | 
|---|
| [02ce36] | 954 | OurChannel->addChannel(type); | 
|---|
| [7dad10] | 955 | } | 
|---|
| [5d1611] | 956 |  | 
|---|
|  | 957 | World::~World() | 
|---|
| [354859] | 958 | { | 
|---|
| [4834f4] | 959 | delete LCcontroller; | 
|---|
| [84c494] | 960 | delete cell_size; | 
|---|
| [46d958] | 961 | delete molecules_deprecated; | 
|---|
| [cbc5fb] | 962 | MoleculeSet::iterator molIter; | 
|---|
|  | 963 | for(molIter=molecules.begin();molIter!=molecules.end();++molIter){ | 
|---|
|  | 964 | DeleteMolecule((*molIter).second); | 
|---|
|  | 965 | } | 
|---|
|  | 966 | molecules.clear(); | 
|---|
|  | 967 | AtomSet::iterator atIter; | 
|---|
|  | 968 | for(atIter=atoms.begin();atIter!=atoms.end();++atIter){ | 
|---|
|  | 969 | DeleteAtom((*atIter).second); | 
|---|
| [46d958] | 970 | } | 
|---|
|  | 971 | atoms.clear(); | 
|---|
| [7188b1] | 972 |  | 
|---|
| [f71baf] | 973 | delete BG; | 
|---|
| [6cb9c76] | 974 | delete periode; | 
|---|
|  | 975 | delete configuration; | 
|---|
|  | 976 | delete Thermostats; | 
|---|
| [09f615] | 977 | delete homologies; | 
|---|
| [354859] | 978 | } | 
|---|
| [5d1611] | 979 |  | 
|---|
| [23b547] | 980 | // Explicit instantiation of the singleton mechanism at this point | 
|---|
| [5d1611] | 981 |  | 
|---|
| [3e4fb6] | 982 | // moleculeId_t und atomId_t sind gleicher Basistyp, deswegen nur einen von beiden konstruieren | 
|---|
| [b97a60] | 983 | CONSTRUCT_IDPOOL(atomId_t, uniqueId) | 
|---|
|  | 984 | CONSTRUCT_IDPOOL(moleculeId_t, continuousId) | 
|---|
| [3e4fb6] | 985 |  | 
|---|
| [23b547] | 986 | CONSTRUCT_SINGLETON(World) | 
|---|
| [5d1611] | 987 |  | 
|---|
| [5f1d5b8] | 988 | CONSTRUCT_OBSERVEDCONTAINER(World::AtomSTLSet) | 
|---|
|  | 989 |  | 
|---|
|  | 990 | CONSTRUCT_OBSERVEDCONTAINER(World::MoleculeSTLSet) | 
|---|
|  | 991 |  | 
|---|
| [5d1611] | 992 | /******************************* deprecated Legacy Stuff ***********************/ | 
|---|
|  | 993 |  | 
|---|
| [354859] | 994 | MoleculeListClass *&World::getMolecules() { | 
|---|
|  | 995 | return molecules_deprecated; | 
|---|
| [5d1611] | 996 | } | 
|---|