| [5d1611] | 1 | /* | 
|---|
|  | 2 | * World.cpp | 
|---|
|  | 3 | * | 
|---|
|  | 4 | *  Created on: Feb 3, 2010 | 
|---|
|  | 5 | *      Author: crueger | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
|  | 8 | #include "World.hpp" | 
|---|
|  | 9 |  | 
|---|
| [d346b6] | 10 | #include "atom.hpp" | 
|---|
| [354859] | 11 | #include "molecule.hpp" | 
|---|
|  | 12 | #include "periodentafel.hpp" | 
|---|
| [fc1b24] | 13 | #include "Descriptors/AtomDescriptor.hpp" | 
|---|
| [865a945] | 14 | #include "Descriptors/AtomDescriptor_impl.hpp" | 
|---|
| [7c4e29] | 15 | #include "Actions/ManipulateAtomsProcess.hpp" | 
|---|
| [d346b6] | 16 |  | 
|---|
|  | 17 | using namespace std; | 
|---|
| [4d9c01] | 18 |  | 
|---|
| [5d1611] | 19 | /******************************* getter and setter ************************/ | 
|---|
| [354859] | 20 | periodentafel *&World::getPeriode(){ | 
|---|
| [5d1611] | 21 | return periode; | 
|---|
|  | 22 | } | 
|---|
|  | 23 |  | 
|---|
| [7a1ce5] | 24 | atom* World::getAtom(AtomDescriptor descriptor){ | 
|---|
| [fc1b24] | 25 | return descriptor.find(); | 
|---|
|  | 26 | } | 
|---|
|  | 27 |  | 
|---|
| [7a1ce5] | 28 | vector<atom*> World::getAllAtoms(AtomDescriptor descriptor){ | 
|---|
| [fc1b24] | 29 | return descriptor.findAll(); | 
|---|
|  | 30 | } | 
|---|
|  | 31 |  | 
|---|
| [0e2a47] | 32 | vector<atom*> World::getAllAtoms(){ | 
|---|
|  | 33 | return getAllAtoms(AllAtoms()); | 
|---|
|  | 34 | } | 
|---|
|  | 35 |  | 
|---|
| [354859] | 36 | int World::numAtoms(){ | 
|---|
|  | 37 | return atoms.size(); | 
|---|
|  | 38 | } | 
|---|
|  | 39 |  | 
|---|
|  | 40 | int World::numMolecules(){ | 
|---|
|  | 41 | return molecules_deprecated->ListOfMolecules.size(); | 
|---|
|  | 42 | } | 
|---|
|  | 43 |  | 
|---|
| [afb47f] | 44 | /******************** Methods to change World state *********************/ | 
|---|
|  | 45 |  | 
|---|
| [354859] | 46 | molecule* World::createMolecule(){ | 
|---|
|  | 47 | OBSERVE; | 
|---|
|  | 48 | molecule *mol = NULL; | 
|---|
|  | 49 | mol = new molecule(periode); | 
|---|
|  | 50 | molecules_deprecated->insert(mol); | 
|---|
| [d2dbac0] | 51 | assert(!molecules.count(currMoleculeId)); | 
|---|
| [244d26] | 52 | // store the molecule by ID | 
|---|
| [d2dbac0] | 53 | molecules[currMoleculeId++] = mol; | 
|---|
| [354859] | 54 | mol->signOn(this); | 
|---|
|  | 55 | return mol; | 
|---|
|  | 56 | } | 
|---|
|  | 57 |  | 
|---|
| [7c4e29] | 58 |  | 
|---|
| [46d958] | 59 | atom *World::createAtom(){ | 
|---|
|  | 60 | OBSERVE; | 
|---|
|  | 61 | atom *res = NewAtom(); | 
|---|
| [d2dbac0] | 62 | assert(!atoms.count(currAtomId)); | 
|---|
| [46d958] | 63 | res->setId(currAtomId++); | 
|---|
|  | 64 | res->setWorld(this); | 
|---|
| [244d26] | 65 | // store the atom by ID | 
|---|
| [46d958] | 66 | atoms[res->getId()] = res; | 
|---|
|  | 67 | return res; | 
|---|
|  | 68 | } | 
|---|
|  | 69 |  | 
|---|
|  | 70 | int World::registerAtom(atom *atom){ | 
|---|
|  | 71 | OBSERVE; | 
|---|
| [d2dbac0] | 72 | assert(!atoms.count(currAtomId)); | 
|---|
| [46d958] | 73 | atom->setId(currAtomId++); | 
|---|
|  | 74 | atom->setWorld(this); | 
|---|
|  | 75 | atoms[atom->getId()] = atom; | 
|---|
|  | 76 | return atom->getId(); | 
|---|
|  | 77 | } | 
|---|
|  | 78 |  | 
|---|
|  | 79 | void World::destroyAtom(atom* atom){ | 
|---|
|  | 80 | OBSERVE; | 
|---|
|  | 81 | int id = atom->getId(); | 
|---|
|  | 82 | destroyAtom(id); | 
|---|
|  | 83 | } | 
|---|
|  | 84 |  | 
|---|
|  | 85 | void World::destroyAtom(int id) { | 
|---|
|  | 86 | OBSERVE; | 
|---|
|  | 87 | atom *atom = atoms[id]; | 
|---|
|  | 88 | assert(atom); | 
|---|
|  | 89 | DeleteAtom(atom); | 
|---|
|  | 90 | atoms.erase(id); | 
|---|
|  | 91 | } | 
|---|
|  | 92 |  | 
|---|
| [7c4e29] | 93 | ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name,AtomDescriptor descr){ | 
|---|
|  | 94 | return new ManipulateAtomsProcess(op, descr,name,true); | 
|---|
|  | 95 | } | 
|---|
|  | 96 |  | 
|---|
| [0e2a47] | 97 | ManipulateAtomsProcess* World::manipulateAtoms(boost::function<void(atom*)> op,std::string name){ | 
|---|
|  | 98 | return manipulateAtoms(op,name,AllAtoms()); | 
|---|
|  | 99 | } | 
|---|
|  | 100 |  | 
|---|
| [afb47f] | 101 | /********************* Internal Change methods for double Callback and Observer mechanism ********/ | 
|---|
|  | 102 |  | 
|---|
|  | 103 | void World::doManipulate(ManipulateAtomsProcess *proc){ | 
|---|
|  | 104 | proc->signOn(this); | 
|---|
|  | 105 | { | 
|---|
|  | 106 | OBSERVE; | 
|---|
|  | 107 | proc->doManipulate(this); | 
|---|
|  | 108 | } | 
|---|
|  | 109 | proc->signOff(this); | 
|---|
|  | 110 | } | 
|---|
|  | 111 |  | 
|---|
| [865a945] | 112 | /******************************* Iterators ********************************/ | 
|---|
|  | 113 |  | 
|---|
| [d2dbac0] | 114 | /* | 
|---|
|  | 115 | * Actual Implementation of the iterators can be found in WorldIterators.cpp | 
|---|
|  | 116 | */ | 
|---|
| [865a945] | 117 |  | 
|---|
|  | 118 | World::AtomIterator World::getAtomIter(AtomDescriptor descr){ | 
|---|
|  | 119 | return AtomIterator(descr,this); | 
|---|
|  | 120 | } | 
|---|
| [354859] | 121 |  | 
|---|
| [d2dbac0] | 122 | World::AtomSet::iterator World::atomEnd(){ | 
|---|
| [7c4e29] | 123 | return atoms.end(); | 
|---|
|  | 124 | } | 
|---|
|  | 125 |  | 
|---|
| [5d1611] | 126 | /******************************* Singleton Stuff **************************/ | 
|---|
|  | 127 |  | 
|---|
| [4d9c01] | 128 | // TODO: Hide boost-thread using Autotools stuff when no threads are used | 
|---|
| [5d1611] | 129 | World* World::theWorld = 0; | 
|---|
| [4d9c01] | 130 | boost::mutex World::worldLock; | 
|---|
|  | 131 |  | 
|---|
| [7a1ce5] | 132 | World::World() : | 
|---|
| [46d958] | 133 | currAtomId(0), | 
|---|
| [d2dbac0] | 134 | currMoleculeId(0), | 
|---|
| [354859] | 135 | periode(new periodentafel), | 
|---|
| [7c4e29] | 136 | molecules_deprecated(new MoleculeListClass), | 
|---|
| [d2dbac0] | 137 | atoms(), | 
|---|
|  | 138 | molecules() | 
|---|
| [7dad10] | 139 | { | 
|---|
|  | 140 | molecules_deprecated->signOn(this); | 
|---|
|  | 141 | } | 
|---|
| [5d1611] | 142 |  | 
|---|
|  | 143 | World::~World() | 
|---|
| [354859] | 144 | { | 
|---|
| [46d958] | 145 | delete molecules_deprecated; | 
|---|
| [354859] | 146 | delete periode; | 
|---|
| [d2dbac0] | 147 | AtomSet::iterator iter; | 
|---|
| [46d958] | 148 | for(iter=atoms.begin();iter!=atoms.end();++iter){ | 
|---|
|  | 149 | DeleteAtom((*iter).second); | 
|---|
|  | 150 | } | 
|---|
|  | 151 | atoms.clear(); | 
|---|
| [354859] | 152 | } | 
|---|
| [5d1611] | 153 |  | 
|---|
|  | 154 | World* World::get(){ | 
|---|
|  | 155 | // boost supports RAII-Style locking, so we don't need to unlock | 
|---|
|  | 156 | boost::mutex::scoped_lock guard(worldLock); | 
|---|
|  | 157 | if(!theWorld) { | 
|---|
|  | 158 | theWorld = new World(); | 
|---|
|  | 159 | } | 
|---|
|  | 160 | return theWorld; | 
|---|
|  | 161 | } | 
|---|
|  | 162 |  | 
|---|
|  | 163 | void World::destroy(){ | 
|---|
|  | 164 | // boost supports RAII-Style locking, so we don't need to unlock | 
|---|
|  | 165 | boost::mutex::scoped_lock guard(worldLock); | 
|---|
|  | 166 | delete theWorld; | 
|---|
|  | 167 | theWorld = 0; | 
|---|
|  | 168 | } | 
|---|
|  | 169 |  | 
|---|
|  | 170 | World* World::reset(){ | 
|---|
|  | 171 | World* oldWorld = 0; | 
|---|
|  | 172 | { | 
|---|
|  | 173 | // boost supports RAII-Style locking, so we don't need to unlock | 
|---|
|  | 174 | boost::mutex::scoped_lock guard(worldLock); | 
|---|
|  | 175 |  | 
|---|
|  | 176 | oldWorld = theWorld; | 
|---|
|  | 177 | theWorld = new World(); | 
|---|
|  | 178 | // oldworld does not need protection any more, | 
|---|
|  | 179 | // since we should have the only reference | 
|---|
|  | 180 |  | 
|---|
|  | 181 | // worldLock handles access to the pointer, | 
|---|
|  | 182 | // not to the object | 
|---|
|  | 183 | } // scope-end releases the lock | 
|---|
|  | 184 |  | 
|---|
|  | 185 | // we have to let all the observers know that the | 
|---|
|  | 186 | // oldWorld was destroyed. oldWorld calls subjectKilled | 
|---|
|  | 187 | // upon destruction. Every Observer getting that signal | 
|---|
|  | 188 | // should see that it gets the updated new world | 
|---|
|  | 189 | delete oldWorld; | 
|---|
|  | 190 | } | 
|---|
|  | 191 |  | 
|---|
|  | 192 | /******************************* deprecated Legacy Stuff ***********************/ | 
|---|
|  | 193 |  | 
|---|
| [354859] | 194 | MoleculeListClass *&World::getMolecules() { | 
|---|
|  | 195 | return molecules_deprecated; | 
|---|
| [5d1611] | 196 | } | 
|---|